Replaced SetDlgItemText by GetDlgItem
Added .onStaticCtlBkColor and un.onStaticCtlBkColor Added CreateFont git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@704 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
20f9102321
commit
018ec00790
1 changed files with 6 additions and 2 deletions
|
@ -65,10 +65,10 @@ enum
|
|||
EW_INTFMT, // IntFmt: [output, format, input]
|
||||
EW_PUSHPOP, // Push/Pop/Exchange: 3 [variable/string, ?pop:push, ?exch]
|
||||
|
||||
EW_FINDWINDOW, // FindWindow: 5, [outputvar,window class,window name, window_parent, window_after]
|
||||
EW_FINDWINDOW, // FindWindow: 5, [outputvar, window class,window name, window_parent, window_after]
|
||||
EW_SENDMESSAGE, // SendMessage: 5 [output, hwnd, msg, lparam, wparam]
|
||||
EW_ISWINDOW, // IsWindow: 3 [hwnd, jump_if_window, jump_if_notwindow]
|
||||
EW_SETDLGITEMTEXT, // SetDlgItemText: 3 [outer? item_id, text]
|
||||
EW_GETDLGITEM, // GetDlgItem: 3 [outputvar, dialog, item_id]
|
||||
|
||||
EW_SHELLEXEC, // ShellExecute program: 4, [shell action, complete commandline, parameters, showwindow]
|
||||
|
||||
|
@ -118,6 +118,8 @@ enum
|
|||
|
||||
EW_SETBRANDINGIMAGE, // SetBrandingImage: 1: [Bitmap file]
|
||||
|
||||
EW_CREATEFONT, // CreateFont: 5: [handle output, face name, height, weight, flags]
|
||||
|
||||
// instructions not actually implemented in exehead, but used in compiler.
|
||||
EW_GETLABELADDR, // both of these get converted to EW_ASSIGNVAR
|
||||
EW_GETFUNCTIONADDR,
|
||||
|
@ -126,6 +128,7 @@ enum
|
|||
|
||||
};
|
||||
|
||||
|
||||
// used for section->default_state
|
||||
#define DFS_SET 0x80000000
|
||||
#define DFS_RO 0x40000000
|
||||
|
@ -243,6 +246,7 @@ typedef struct
|
|||
int code_onInstFailed;
|
||||
int code_onUserAbort;
|
||||
int code_onNextPage;
|
||||
int code_onStaticCtlBkColor;
|
||||
#endif//NSIS_SUPPORT_CODECALLBACKS
|
||||
|
||||
char show_details;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue