Changeset 3067 in vbox for trunk/src/VBox/Additions/WINNT
- Timestamp:
- Jun 6, 2007 1:13:51 PM (18 years ago)
- Location:
- trunk/src/VBox/Additions/WINNT/MouseFilter
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/MouseFilter/Makefile.kmk
r2981 r3067 33 33 VBoxMouse_CFLAGS = -Od 34 34 VBoxMouse_LDFLAGS = -Entry:DriverEntry@8 35 VBoxMouse_SOURCES = VBoxMouse.cpp 35 VBoxMouse_SOURCES = VBoxMouse.cpp \ 36 VBoxMouse.rc 37 36 38 VBoxMouse_LIBS = \ 37 39 $(PATH_SDK_W2K3DDKX86_LIB)/int64.lib \ -
trunk/src/VBox/Additions/WINNT/MouseFilter/VBoxMouse.rc
r2988 r3067 16 16 17 17 #include <windows.h> 18 #include <ntverp.h> 19 #include <VBox/version.h> 18 20 19 #include <ntverp.h> 20 21 #define VER_FILETYPE VFT_DRV 22 #define VER_FILESUBTYPE VFT2_DRV_SYSTEM 23 #define VER_FILEDESCRIPTION_STR "VirtualBox Mouse Filter" 24 #define VER_INTERNALNAME_STR "VBoxMouse.sys" 21 #define VER_FILETYPE VFT_DRV 22 #define VER_FILESUBTYPE VFT2_DRV_SYSTEM 23 #define VER_FILEDESCRIPTION_STR "VirtualBox Mouse Filter" 24 #define VER_INTERNALNAME_STR "VBoxMouse.sys" 25 #define VER_ORIGINALFILENAME_STR "VBoxMouse.sys" 26 #define VER_LEGALCOPYRIGHT_STR VBOX_RC_LEGAL_COPYRIGHT 27 #define VER_PRODUCTNAME_STR "VirtualBox Guest Additions" 28 #define VER_PRODUCTVERSION_STR VBOX_RC_PRODUCT_VERSION_STR 29 #define VER_FILEVERSION_STR VBOX_RC_FILE_VERSION_STR 30 #define VER_PRODUCTVERSION VBOX_RC_PRODUCT_VERSION 31 #define VER_FILEVERSION VBOX_RC_FILE_VERSION 32 #define VER_COMPANYNAME_STR VBOX_RC_COMPANY_NAME 25 33 26 34 #include "common.ver"
Note:
See TracChangeset
for help on using the changeset viewer.