Changeset 95960 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Aug 1, 2022 1:54:40 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 152717
- Location:
- trunk/src/VBox/Additions/WINNT/VBoxTray
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxTray/Makefile.kmk
r95959 r95960 86 86 endif 87 87 ifdef VBOX_WITH_WDDM 88 VBoxTray_DEFS += VBOX_WITH_WDDM 89 # VBoxTray_DEFS += LOG_ENABLED 88 VBoxTray_DEFS += VBOX_WITH_WDDM 90 89 VBoxTray_SOURCES += $(PATH_ROOT)/src/VBox/Additions/WINNT/Graphics/Video/disp/wddm/shared/VBoxDispKmt.cpp 91 90 endif -
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxDisplay.cpp
r93299 r95960 30 30 #endif 31 31 #include <iprt/system.h> 32 33 #ifdef DEBUG /** @todo r=bird: these are all default values. sigh. */34 # define LOG_ENABLED35 # define LOG_GROUP LOG_GROUP_DEFAULT36 #endif37 #include <VBox/log.h>38 32 39 33 #include <VBoxDisplay.h> -
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxDnDDataObject.cpp
r95836 r95960 18 18 19 19 #define LOG_GROUP LOG_GROUP_GUEST_DND 20 #include <VBox/log.h> 21 20 22 #include <iprt/win/windows.h> 21 23 #include <new> /* For bad_alloc. */ … … 26 28 #include <iprt/uri.h> 27 29 #include <iprt/utf16.h> 28 29 #include <VBox/log.h>30 30 31 31 #include "VBoxTray.h" -
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxDnDDropTarget.cpp
r93115 r95960 17 17 18 18 #define LOG_GROUP LOG_GROUP_GUEST_DND 19 #include <VBox/log.h> 20 19 21 #include <iprt/win/windows.h> 20 22 #include <new> /* For bad_alloc. */ … … 31 33 #include <iprt/utf16.h> 32 34 #include <iprt/uri.h> 33 #include <VBox/log.h>34 35 35 36 36 -
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxDnDEnumFormat.cpp
r95836 r95960 16 16 */ 17 17 18 19 /********************************************************************************************************************************* 20 * Header Files * 21 *********************************************************************************************************************************/ 18 22 #include <iprt/win/windows.h> 19 23 #include <new> /* For bad_alloc. */ … … 22 26 #include "VBoxHelpers.h" 23 27 #include "VBoxDnD.h" 24 25 #ifdef DEBUG26 # define LOG_ENABLED27 # define LOG_GROUP LOG_GROUP_DEFAULT28 #endif29 #include <VBox/log.h>30 31 28 32 29 -
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxHostVersion.cpp
r95866 r95960 22 22 23 23 #include <VBox/VBoxGuestLib.h> 24 25 #ifdef DEBUG26 # define LOG_ENABLED27 # define LOG_GROUP LOG_GROUP_DEFAULT28 #endif29 #include <VBox/log.h>30 31 24 32 25 -
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxIPC.cpp
r93115 r95960 37 37 #include <iprt/mem.h> 38 38 #include <iprt/process.h> 39 40 #ifdef DEBUG /** @todo r=bird: these are all default settings... */41 # define LOG_ENABLED42 # define LOG_GROUP LOG_GROUP_DEFAULT43 #endif44 #include <VBox/log.h>45 39 46 40 -
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxLA.cpp
r94184 r95960 16 16 */ 17 17 18 #define _WIN32_WINNT 0x0501 19 #include <iprt/win/windows.h> 20 21 #include "VBoxTray.h" 22 #include "VBoxLA.h" 23 18 19 /********************************************************************************************************************************* 20 * Header Files * 21 *********************************************************************************************************************************/ 24 22 #include <iprt/assert.h> 25 23 #include <iprt/alloc.h> … … 28 26 #include <iprt/utf16.h> 29 27 30 #ifdef DEBUG 31 # define LOG_ENABLED 32 # define LOG_GROUP LOG_GROUP_DEFAULT 33 #endif 34 #include <VBox/log.h> 35 36 37 28 #define _WIN32_WINNT 0x0501 29 #include <iprt/win/windows.h> 30 31 #include "VBoxTray.h" 32 #include "VBoxLA.h" 33 34 35 /********************************************************************************************************************************* 36 * Defines * 37 *********************************************************************************************************************************/ 38 38 #define REG_KEY_LEN 1024 39 39 #define MAX_CLIENT_NAME_CHARS 1024 -
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxSeamless.cpp
r95868 r95960 20 20 * Header Files * 21 21 *********************************************************************************************************************************/ 22 #define LOG_GROUP LOG_GROUP_DEFAULT23 #define _WIN32_WINNT 0x050024 #include <iprt/win/windows.h>25 26 #include <VBox/log.h>27 28 22 #include <iprt/assert.h> 29 23 #include <iprt/ldr.h> 30 24 #include <iprt/mem.h> 31 25 #include <iprt/system.h> 26 27 #define _WIN32_WINNT 0x0500 28 #include <iprt/win/windows.h> 32 29 33 30 #include <VBoxDisplay.h> /** @todo r=bird: Presumably the ../include/VBoxDisplay.h file rather than ./VBoxDisplay.h. WTF??? */ -
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxVRDP.cpp
r93115 r95960 16 16 */ 17 17 18 #include <iprt/assert.h> 19 #include <iprt/ldr.h> 20 18 21 /* 0x0501 for SPI_SETDROPSHADOW */ 19 22 #define _WIN32_WINNT 0x0501 20 23 #include <iprt/win/windows.h> 24 25 #include <VBox/VMMDev.h> /* for VMMDEV_EVENT_VRDP and VRDP_EXPERIENCE_LEVEL_XXX */ 26 21 27 #include "VBoxTray.h" 22 28 #include "VBoxHelpers.h" 23 29 #include "VBoxVRDP.h" 24 25 #include <VBox/VMMDev.h> /* for VMMDEV_EVENT_VRDP and VRDP_EXPERIENCE_LEVEL_XXX */26 #ifdef DEBUG27 # define LOG_ENABLED28 # define LOG_GROUP LOG_GROUP_DEFAULT29 #endif30 #include <VBox/log.h>31 32 #include <iprt/assert.h>33 #include <iprt/ldr.h>34 30 35 31
Note:
See TracChangeset
for help on using the changeset viewer.