Compiles without Platform SDK

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@649 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2002-08-05 14:31:50 +00:00
parent d97a69b57b
commit 334dad1e15
4 changed files with 19 additions and 2 deletions

View file

@ -1,5 +1,5 @@
!define VER_MAJOR 2
!define VER_MINOR 0a3
!define VER_MINOR 0a4
!ifdef NO_COMPRESSION
SetCompress off
@ -170,6 +170,15 @@ Section "Splash"
NoShortCuts:
SectionEnd
Section "Splash w/transparency"
SectionIn 1 2
SetOutPath $INSTDIR\Contrib\MagicLime
SetOverwrite try
File ..\Contrib\MagicLime\splash.c
SetOutPath $INSTDIR\Bin
File ..\Bin\magiclime.exe
SectionEnd
Section "Zip2Exe"
SectionIn 1 2
DetailPrint "Extracting zip2exe source"

View file

@ -33,6 +33,10 @@
#include <StdExcept>
using namespace std;
#ifndef IS_INTRESOURCE
#define IS_INTRESOURCE(_r) (((ULONG_PTR)(_r) >> 16) == 0)
#endif
struct DialogItemTemplate {
DWORD dwHelpId; // Extended only

View file

@ -40,6 +40,10 @@
#include <StdExcept>
using namespace std;
#ifndef IS_INTRESOURCE
#define IS_INTRESOURCE(_r) (((ULONG_PTR)(_r) >> 16) == 0)
#endif
class CResourceDirectory;
class CResourceDirectoryEntry;
class CResourceDataEntry;

View file

@ -1,4 +1,4 @@
const char *NSIS_VERSION="v2.0a3";
const char *NSIS_VERSION="v2.0a4";
/*
Nullsoft "SuperPimp" Installation System - makensis.cpp - installer compiler code