Changeset 57898 in vbox
- Timestamp:
- Sep 25, 2015 2:58:47 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 102868
- Location:
- trunk/src/bldprogs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bldprogs/Makefile.kmk
r57809 r57898 62 62 endif 63 63 64 BLDPROGS.win += VBoxPeSetVersion 64 ifeq ($(KBUILD_TARGET),win) 65 BLDPROGS += VBoxPeSetVersion 66 endif 65 67 VBoxPeSetVersion_TEMPLATE = VBoxBldProg 66 68 VBoxPeSetVersion_SOURCES = VBoxPeSetVersion.cpp -
trunk/src/bldprogs/VBoxPeSetVersion.cpp
r57809 r57898 20 20 * Header Files * 21 21 *********************************************************************************************************************************/ 22 #include <Windows.h> 22 #ifdef RT_OS_WINDOWS 23 # include <Windows.h> 24 #else 25 # include <iprt/stdint.h> 26 # include "../VBox/Runtime/include/internal/ldrPE.h" 27 # include "../VBox/Runtime/include/internal/ldrMZ.h" 28 #endif 23 29 #include <stdio.h> 24 30 #include <string.h>
Note:
See TracChangeset
for help on using the changeset viewer.