From b0c4fb1ac40a1938a8383636b3c04280b7d32b97 Mon Sep 17 00:00:00 2001 From: rainwater Date: Wed, 25 Sep 2002 13:08:42 +0000 Subject: [PATCH] Prevent multiple inclusion of !defines git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1182 212acab6-be3b-0410-9dea-997c60f758d6 --- Examples/WinMessages.NSH | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Examples/WinMessages.NSH b/Examples/WinMessages.NSH index 9f13cc11..0f2ac832 100644 --- a/Examples/WinMessages.NSH +++ b/Examples/WinMessages.NSH @@ -1,4 +1,6 @@ ; KiCHiK put together this list of WM_ messages. +!ifndef WINMESSAGES_NSH +!define WINMESSAGES_NSH !define HWND_BROADCAST 0xFFFF @@ -164,3 +166,5 @@ !define WM_IME_CHAR 0x286 !define WM_IME_KEYDOWN 0x290 !define WM_IME_KEYUP 0x291 + +!endif \ No newline at end of file