Changeset 8850 in vbox
- Timestamp:
- May 15, 2008 1:45:38 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 30871
- Location:
- trunk/src/VBox/Additions/WINNT/VBoxService
- Files:
-
- 8 edited
- 3 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxService/Makefile.kmk
r8760 r8850 1 1 # $Id$ 2 2 ## @file 3 # Sub-Makefile for VBox Service.3 # Sub-Makefile for VBoxTray. 4 4 # 5 5 … … 24 24 include $(KBUILD_PATH)/subheader.kmk 25 25 26 PROGRAMS += VBox Service27 VBox Service_TEMPLATE = VBOXW32GUESTR326 PROGRAMS += VBoxTray 27 VBoxTray_TEMPLATE = VBOXW32GUESTR3 28 28 ifdef VBOX_SIGN_ADDITIONS 29 VBox Service_NOINST = true29 VBoxTray_NOINST = true 30 30 endif 31 VBox Service_DEFS = VBOX_HGCM LOG_TO_BACKDOOR32 VBox Service_INCS = ../include33 VBox Service_SOURCES = \34 VBox Service.cpp \31 VBoxTray_DEFS = VBOX_HGCM LOG_TO_BACKDOOR 32 VBoxTray_INCS = ../include 33 VBoxTray_SOURCES = \ 34 VBoxTray.cpp \ 35 35 VBoxSeamless.cpp \ 36 36 VBoxClipboard.cpp \ … … 41 41 VBoxMemBalloon.cpp \ 42 42 helpers.cpp \ 43 VBox Service.rc43 VBoxTray.rc 44 44 45 VBox Service_LIBS = \45 VBoxTray_LIBS = \ 46 46 $(PATH_LIB)/additions/RuntimeW32GuestR3.lib 47 47 48 # VBox Service.cpp uses VBOX_SVN_REV.49 VBox Service.cpp_DEFS += VBOX_SVN_REV=$(VBOX_SVN_REV)50 VBox Service.cpp_DEPS = $(VBOX_SVN_REV_KMK)48 # VBoxTray.cpp uses VBOX_SVN_REV. 49 VBoxTray.cpp_DEFS += VBOX_SVN_REV=$(VBOX_SVN_REV) 50 VBoxTray.cpp_DEPS = $(VBOX_SVN_REV_KMK) 51 51 52 52 # The icon location is configurable. 53 VBox Service.rc_INCS = $(PATH_VBoxService)54 VBox Service.rc_DEPS = $(PATH_VBoxService)/VBoxService-icon.rc55 VBox Service.rc_CLEAN = $(PATH_VBoxService)/VBoxService-icon.rc53 VBoxTray.rc_INCS = $(PATH_VBoxTray) 54 VBoxTray.rc_DEPS = $(PATH_VBoxTray)/VBoxTray-icon.rc 55 VBoxTray.rc_CLEAN = $(PATH_VBoxTray)/VBoxTray-icon.rc 56 56 57 57 … … 59 59 60 60 # Icon include file. 61 $(PATH_VBox Service)/VBoxService-icon.rc: $(VBOX_WINDOWS_ICON_FILE) Makefile.kmk | $$(call DIRDEP,$$(@D))61 $(PATH_VBoxTray)/VBoxTray-icon.rc: $(VBOX_WINDOWS_ICON_FILE) Makefile.kmk | $$(call DIRDEP,$$(@D)) 62 62 $(RM) -f $@ 63 63 $(APPEND) $@ 'IDI_VIRTUALBOX ICON DISCARDABLE "$(subst /,\\,$(VBOX_WINDOWS_ICON_FILE))"' -
trunk/src/VBox/Additions/WINNT/VBoxService/VBoxClipboard.cpp
r8155 r8850 21 21 */ 22 22 23 #include "VBox Service.h"23 #include "VBoxTray.h" 24 24 #include <VBox/HostServices/VBoxClipboardSvc.h> 25 25 #include "helpers.h" -
trunk/src/VBox/Additions/WINNT/VBoxService/VBoxDisplay.cpp
r8434 r8850 22 22 #define _WIN32_WINNT 0x0500 23 23 #include <windows.h> 24 #include "VBox Service.h"24 #include "VBoxTray.h" 25 25 #include "VBoxSeamless.h" 26 26 #include <VBoxHook.h> -
trunk/src/VBox/Additions/WINNT/VBoxService/VBoxMemBalloon.cpp
r8387 r8850 23 23 #include <windows.h> 24 24 #include <psapi.h> 25 #include "VBox Service.h"25 #include "VBoxTray.h" 26 26 #include "VBoxMemBalloon.h" 27 27 #include <VBoxDisplay.h> -
trunk/src/VBox/Additions/WINNT/VBoxService/VBoxRestore.cpp
r8387 r8850 22 22 #define _WIN32_WINNT 0x0500 23 23 #include <windows.h> 24 #include "VBox Service.h"24 #include "VBoxTray.h" 25 25 #include "VBoxRestore.h" 26 26 #include <VBoxDisplay.h> -
trunk/src/VBox/Additions/WINNT/VBoxService/VBoxSeamless.cpp
r8387 r8850 22 22 #define _WIN32_WINNT 0x0500 23 23 #include <windows.h> 24 #include "VBox Service.h"24 #include "VBoxTray.h" 25 25 #include "VBoxSeamless.h" 26 26 #include <VBoxHook.h> -
trunk/src/VBox/Additions/WINNT/VBoxService/VBoxStatistics.cpp
r8387 r8850 23 23 #include <windows.h> 24 24 #include <psapi.h> 25 #include "VBox Service.h"25 #include "VBoxTray.h" 26 26 #include "VBoxStatistics.h" 27 27 #include "VBoxMemBalloon.h" -
trunk/src/VBox/Additions/WINNT/VBoxService/VBoxTray.cpp
r8784 r8850 1 1 /** @file 2 * VBox Service - Guest Additions Service2 * VBoxTray - Guest Additions Tray Application 3 3 */ 4 4 … … 19 19 */ 20 20 21 #include "VBox Service.h"21 #include "VBoxTray.h" 22 22 #include "VBoxSeamless.h" 23 23 #include "VBoxClipboard.h" -
trunk/src/VBox/Additions/WINNT/VBoxService/VBoxTray.rc
r8784 r8850 37 37 BEGIN 38 38 VALUE "CompanyName", VBOX_RC_COMPANY_NAME 39 VALUE "FileDescription", "VirtualBox Guest Additions Service\0"39 VALUE "FileDescription", "VirtualBox Guest Additions Tray Application\0" 40 40 VALUE "FileVersion", VBOX_VERSION_MAJOR "." VBOX_VERSION_MINOR "." VBOX_VERSION_BUILD "." VBOX_SVN_REV "\0" 41 VALUE "InternalName", "VBox Service\0"41 VALUE "InternalName", "VBoxTray\0" 42 42 VALUE "LegalCopyright", VBOX_RC_LEGAL_COPYRIGHT 43 VALUE "OriginalFilename", "VBox Service.exe\0"43 VALUE "OriginalFilename", "VBoxTray.exe\0" 44 44 VALUE "ProductName", "VirtualBox Guest Additions\0" 45 45 VALUE "ProductVersion", VBOX_VERSION_MAJOR "." VBOX_VERSION_MINOR "." VBOX_VERSION_BUILD "." VBOX_SVN_REV "\0" … … 52 52 END 53 53 54 #include "VBox Service-icon.rc"54 #include "VBoxTray-icon.rc" 55 55 -
trunk/src/VBox/Additions/WINNT/VBoxService/VBoxVRDP.cpp
r8155 r8850 24 24 #define _WIN32_WINNT 0x0501 25 25 #include <windows.h> 26 #include "VBox Service.h"26 #include "VBoxTray.h" 27 27 #include "VBoxVRDP.h" 28 28 #include <VBox/VBoxDev.h>
Note:
See TracChangeset
for help on using the changeset viewer.