Changeset 95961 in vbox
- Timestamp:
- Aug 1, 2022 2:08:20 PM (2 years ago)
- Location:
- trunk/src/VBox/Additions/WINNT/VBoxTray
- Files:
-
- 8 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxDispIf.cpp
r95868 r95961 22 22 #define _WIN32_WINNT 0x0601 23 23 #include "VBoxTray.h" 24 #include "VBoxTrayInternal.h" 24 25 25 26 #include <iprt/alloca.h> -
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxDisplay.cpp
r95960 r95961 29 29 # include <iprt/asm.h> 30 30 #endif 31 #include <iprt/log.h> 31 32 #include <iprt/system.h> 32 33 -
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxDnDEnumFormat.cpp
r95960 r95961 20 20 * Header Files * 21 21 *********************************************************************************************************************************/ 22 #define LOG_GROUP LOG_GROUP_GUEST_DND 23 #include <VBox/log.h> 24 22 25 #include <iprt/win/windows.h> 23 26 #include <new> /* For bad_alloc. */ -
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxHostVersion.cpp
r95960 r95961 17 17 */ 18 18 19 #include <VBox/log.h> 20 #include <VBox/VBoxGuestLib.h> 21 19 22 #include "VBoxHostVersion.h" 20 23 #include "VBoxTray.h" 21 24 #include "VBoxHelpers.h" 22 25 23 #include <VBox/VBoxGuestLib.h>24 26 25 27 -
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxIPC.cpp
r95960 r95961 22 22 * Header Files * 23 23 *********************************************************************************************************************************/ 24 #include <iprt/win/windows.h>25 #include "VBoxTray.h"26 #include "VBoxTrayMsg.h"27 #include "VBoxHelpers.h"28 #include "VBoxIPC.h"29 30 24 #include <iprt/asm.h> 31 25 #include <iprt/assert.h> … … 35 29 #include <iprt/list.h> 36 30 #include <iprt/localipc.h> 31 #include <iprt/log.h> 37 32 #include <iprt/mem.h> 38 33 #include <iprt/process.h> 34 #include <iprt/win/windows.h> 35 36 #include "VBoxTray.h" 37 #include "VBoxTrayMsg.h" 38 #include "VBoxHelpers.h" 39 #include "VBoxIPC.h" 39 40 40 41 -
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxLA.cpp
r95960 r95961 24 24 #include <iprt/list.h> 25 25 #include <iprt/ldr.h> 26 #include <iprt/log.h> 26 27 #include <iprt/utf16.h> 27 28 -
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxSeamless.cpp
r95960 r95961 22 22 #include <iprt/assert.h> 23 23 #include <iprt/ldr.h> 24 #include <iprt/log.h> 24 25 #include <iprt/mem.h> 25 26 #include <iprt/system.h> -
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxTrayInternal.h
r95960 r95961 16 16 */ 17 17 18 #ifndef GA_INCLUDED_SRC_WINNT_VBoxTray_ VBoxDisplay_h19 #define GA_INCLUDED_SRC_WINNT_VBoxTray_ VBoxDisplay_h18 #ifndef GA_INCLUDED_SRC_WINNT_VBoxTray_Internal_h 19 #define GA_INCLUDED_SRC_WINNT_VBoxTray_Internal_h 20 20 #ifndef RT_WITHOUT_PRAGMA_ONCE 21 21 # pragma once 22 22 #endif 23 24 /** @todo r=bird: This file has the same name as ../include/VBoxDisplay.h25 * which some of the VBoxTray source files also wish to include.26 *27 * The result is a certifiable mess. To quote a Tina Fey's character in28 * Ponyo: "BAKA BAKA BAKA BAKA BAKA BAKA BAKA BAKA BAKA BAKA BAKA!!!"29 *30 * There are too many 'ing header files here. Most of them can be merged31 * into VBoxTray.h (or a VBoxTrayInternal.h file).32 *33 */34 35 23 36 24 DWORD VBoxDisplayGetCount(); … … 48 36 #endif 49 37 50 #endif /* !GA_INCLUDED_SRC_WINNT_VBoxTray_ VBoxDisplay_h */38 #endif /* !GA_INCLUDED_SRC_WINNT_VBoxTray_Internal_h */ -
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxVRDP.cpp
r95960 r95961 18 18 #include <iprt/assert.h> 19 19 #include <iprt/ldr.h> 20 #include <VBox/log.h> 20 21 21 22 /* 0x0501 for SPI_SETDROPSHADOW */
Note:
See TracChangeset
for help on using the changeset viewer.