Added string lookup tool
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@7251 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
79df77fa82
commit
60ab777e21
10 changed files with 426 additions and 43 deletions
|
@ -39,6 +39,9 @@
|
|||
#define SupportsW95() ( FALSE && SupportsW9X() && !DpiAwarePerMonitor() )
|
||||
#define SupportsW2000() ( sizeof(void*) == 4 )
|
||||
|
||||
static bool IsWin9598ME() { return SupportsW9X() && (int) GetVersion() < 0; }
|
||||
static bool IsWin95() { return SupportsW95() && (GetVersion() & (0x8000FFFF & ~0x0300)) == 0x80000004; }
|
||||
|
||||
// Defines
|
||||
#define NSIS_URL "https://nsis.sourceforge.io/"
|
||||
#define NSIS_FORUM_URL "http://forums.winamp.com/forumdisplay.php?forumid=65"
|
||||
|
@ -220,7 +223,6 @@ typedef struct NSISScriptData {
|
|||
char *brandingv;
|
||||
TCHAR **symbols;
|
||||
int retcode;
|
||||
bool userSelectCompressor;
|
||||
unsigned char verbosity;
|
||||
DWORD logLength;
|
||||
DWORD warnings;
|
||||
|
@ -265,4 +267,8 @@ typedef struct ToolTipStruct {
|
|||
HHOOK hook;
|
||||
} NTOOLTIP;
|
||||
|
||||
|
||||
extern INT_PTR ShowWndSpy(HWND hOwner);
|
||||
extern INT_PTR ShowLookupDialog(HWND hOwner);
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue