1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-13 00:04:19 +00:00

Introjucer: Added code to the win32 resource file to allow custom rc files to be included.

This commit is contained in:
jules 2012-06-01 16:26:10 +01:00
parent 51e99b31f9
commit 4cabc9095e
14 changed files with 86 additions and 2 deletions

View file

@ -1,3 +1,7 @@
#ifdef JUCE_USER_DEFINED_RC_FILE
#include JUCE_USER_DEFINED_RC_FILE
#else
#undef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
@ -21,3 +25,5 @@ BEGIN
VALUE "Translation", 0x409, 65001
END
END
#endif