Skip to content

Commit 4eef705

Browse files
authored
Fix REG_DWORD_LITTLE_ENDIAN definition.
REG_DWORD_LITTLE_ENDIAN is 4 not 6. according to c:/program files (x86)/Windows Kits/8.0/Include/um/winnt.h
1 parent eae9acf commit 4eef705

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/windef.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ module.exports = {
3939
REG_BINARY: 3,
4040
REG_DWORD: 4,
4141
REG_DWORD_BIG_ENDIAN: 5,
42-
REG_DWORD_LITTLE_ENDIAN: 6,
42+
REG_DWORD_LITTLE_ENDIAN: 4,
4343
REG_LINK: 6,
4444
REG_MULTI_SZ: 7,
4545
REG_RESOURCE_LIST: 8

0 commit comments

Comments
 (0)