Destroy the header font
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@7220 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
75a41ba8d7
commit
0f2f08439d
3 changed files with 12 additions and 3 deletions
|
@ -32,6 +32,14 @@
|
|||
#endif
|
||||
#define COUNTOF(a) (sizeof(a)/sizeof(a[0]))
|
||||
|
||||
#if defined(_MSC_VER) && _MSC_VER >= 1200
|
||||
EXTERN_C IMAGE_DOS_HEADER __ImageBase;
|
||||
#define HINST_THISCOMPONENT ( (HINSTANCE) &__ImageBase )
|
||||
#define HINST_APPLICATION HINST_THISCOMPONENT
|
||||
#else
|
||||
#define HINST_APPLICATION ( (HINSTANCE) GetModuleHandle(NULL) )
|
||||
#endif
|
||||
|
||||
#define MRU_LIST_SIZE 5
|
||||
#define MRU_DISPLAY_LENGTH 40
|
||||
#define SYMSETNAME_MAXLEN 40
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue