Browse Source

bin: win32 resources: Fix manifest embeding

RT_MANIFEST is a macro that wasn't being substituted
2 was the magic number that corresponds to
ISOLATIONAWARE_MANIFEST_RESOURCE_ID, which should be used for DLLs.
Instead, use CREATEPROCESS_MANIFEST_RESOURCE_ID as we are creating a
process
pull/54/merge
Hugo Beauzée-Luyssen 10 years ago
parent
commit
083b4c517b
  1. 4
      bin/vlc_win32_rc.rc.in

4
bin/vlc_win32_rc.rc.in

@ -1,6 +1,8 @@
#define VERSION_NUMBER @VERSION_MAJOR@,@VERSION_MINOR@,@VERSION_REVISION@,@VERSION_EXTRA@
#define VERSION_NUMBER_STR "@VERSION_MAJOR@,@VERSION_MINOR@,@VERSION_REVISION@,@VERSION_EXTRA@"
#include <winuser.h>
VLC_ICON ICON "vlc.ico"
1 VERSIONINFO
@ -30,4 +32,4 @@ BEGIN
END
END
2 RT_MANIFEST "vlc.exe.manifest"
CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "vlc.exe.manifest"

Loading…
Cancel
Save