Added GetKnownFolderPath
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@7154 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
1f355d992c
commit
68db5f04ee
10 changed files with 128 additions and 5 deletions
|
@ -193,9 +193,8 @@ enum
|
|||
// InstTypeGetFlags: 3: [idx, 1, output]
|
||||
#endif
|
||||
|
||||
// instructions not actually implemented in exehead, but used in compiler.
|
||||
EW_GETLABELADDR, // both of these get converted to EW_ASSIGNVAR
|
||||
EW_GETFUNCTIONADDR,
|
||||
EW_GETOSINFO, // 1+ [operation, ...]
|
||||
EW_RESERVEDOPCODE, // Free slot, feel free to use it for something
|
||||
|
||||
#ifdef NSIS_LOCKWINDOW_SUPPORT
|
||||
EW_LOCKWINDOW,
|
||||
|
@ -207,6 +206,10 @@ enum
|
|||
EW_FGETWS, // FileReadUTF16LE: 4 [handle, output, maxlen, ?getchar:gets]
|
||||
#endif//NSIS_SUPPORT_FILEFUNCTIONS
|
||||
#endif
|
||||
|
||||
// Opcodes listed here are not actually used in exehead. No exehead opcodes should be present after these!
|
||||
EW_GETLABELADDR, // --> EW_ASSIGNVAR
|
||||
EW_GETFUNCTIONADDR, // --> EW_ASSIGNVAR
|
||||
};
|
||||
|
||||
#pragma pack(push, 1) // fileform.cpp assumes no padding/alignment
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue