VirtualBox

Changeset 95960 in vbox for trunk/src/VBox/Additions


Ignore:
Timestamp:
Aug 1, 2022 1:54:40 PM (3 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
152717
Message:

Additions/VBoxTray: More logging cleanups: don't define default stuff which is already defined by default; include files reordering (IPRT/ first, VBox/ second).

Location:
trunk/src/VBox/Additions/WINNT/VBoxTray
Files:
10 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/WINNT/VBoxTray/Makefile.kmk

    r95959 r95960  
    8686endif
    8787ifdef VBOX_WITH_WDDM
    88  VBoxTray_DEFS   += VBOX_WITH_WDDM
    89  # VBoxTray_DEFS   += LOG_ENABLED
     88 VBoxTray_DEFS    += VBOX_WITH_WDDM
    9089 VBoxTray_SOURCES += $(PATH_ROOT)/src/VBox/Additions/WINNT/Graphics/Video/disp/wddm/shared/VBoxDispKmt.cpp
    9190endif
  • trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxDisplay.cpp

    r93299 r95960  
    3030#endif
    3131#include <iprt/system.h>
    32 
    33 #ifdef DEBUG /** @todo r=bird: these are all default values. sigh. */
    34 # define LOG_ENABLED
    35 # define LOG_GROUP LOG_GROUP_DEFAULT
    36 #endif
    37 #include <VBox/log.h>
    3832
    3933#include <VBoxDisplay.h>
  • trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxDnDDataObject.cpp

    r95836 r95960  
    1818
    1919#define LOG_GROUP LOG_GROUP_GUEST_DND
     20#include <VBox/log.h>
     21
    2022#include <iprt/win/windows.h>
    2123#include <new> /* For bad_alloc. */
     
    2628#include <iprt/uri.h>
    2729#include <iprt/utf16.h>
    28 
    29 #include <VBox/log.h>
    3030
    3131#include "VBoxTray.h"
  • trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxDnDDropTarget.cpp

    r93115 r95960  
    1717
    1818#define LOG_GROUP LOG_GROUP_GUEST_DND
     19#include <VBox/log.h>
     20
    1921#include <iprt/win/windows.h>
    2022#include <new> /* For bad_alloc. */
     
    3133#include <iprt/utf16.h>
    3234#include <iprt/uri.h>
    33 #include <VBox/log.h>
    34 
    3535
    3636
  • trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxDnDEnumFormat.cpp

    r95836 r95960  
    1616 */
    1717
     18
     19/*********************************************************************************************************************************
     20*   Header Files                                                                                                                 *
     21*********************************************************************************************************************************/
    1822#include <iprt/win/windows.h>
    1923#include <new> /* For bad_alloc. */
     
    2226#include "VBoxHelpers.h"
    2327#include "VBoxDnD.h"
    24 
    25 #ifdef DEBUG
    26 # define LOG_ENABLED
    27 # define LOG_GROUP LOG_GROUP_DEFAULT
    28 #endif
    29 #include <VBox/log.h>
    30 
    3128
    3229
  • trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxHostVersion.cpp

    r95866 r95960  
    2222
    2323#include <VBox/VBoxGuestLib.h>
    24 
    25 #ifdef DEBUG
    26 # define LOG_ENABLED
    27 # define LOG_GROUP LOG_GROUP_DEFAULT
    28 #endif
    29 #include <VBox/log.h>
    30 
    3124
    3225
  • trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxIPC.cpp

    r93115 r95960  
    3737#include <iprt/mem.h>
    3838#include <iprt/process.h>
    39 
    40 #ifdef DEBUG /** @todo r=bird: these are all default settings...  */
    41 # define LOG_ENABLED
    42 # define LOG_GROUP LOG_GROUP_DEFAULT
    43 #endif
    44 #include <VBox/log.h>
    4539
    4640
  • trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxLA.cpp

    r94184 r95960  
    1616 */
    1717
    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*********************************************************************************************************************************/
    2422#include <iprt/assert.h>
    2523#include <iprt/alloc.h>
     
    2826#include <iprt/utf16.h>
    2927
    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*********************************************************************************************************************************/
    3838#define REG_KEY_LEN 1024
    3939#define MAX_CLIENT_NAME_CHARS 1024
  • trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxSeamless.cpp

    r95868 r95960  
    2020*   Header Files                                                                                                                 *
    2121*********************************************************************************************************************************/
    22 #define LOG_GROUP LOG_GROUP_DEFAULT
    23 #define _WIN32_WINNT 0x0500
    24 #include <iprt/win/windows.h>
    25 
    26 #include <VBox/log.h>
    27 
    2822#include <iprt/assert.h>
    2923#include <iprt/ldr.h>
    3024#include <iprt/mem.h>
    3125#include <iprt/system.h>
     26
     27#define _WIN32_WINNT 0x0500
     28#include <iprt/win/windows.h>
    3229
    3330#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  
    1616 */
    1717
     18#include <iprt/assert.h>
     19#include <iprt/ldr.h>
     20
    1821/* 0x0501 for SPI_SETDROPSHADOW */
    1922#define _WIN32_WINNT 0x0501
    2023#include <iprt/win/windows.h>
     24
     25#include <VBox/VMMDev.h> /* for VMMDEV_EVENT_VRDP and VRDP_EXPERIENCE_LEVEL_XXX */
     26
    2127#include "VBoxTray.h"
    2228#include "VBoxHelpers.h"
    2329#include "VBoxVRDP.h"
    24 
    25 #include <VBox/VMMDev.h> /* for VMMDEV_EVENT_VRDP and VRDP_EXPERIENCE_LEVEL_XXX */
    26 #ifdef DEBUG
    27 # define LOG_ENABLED
    28 # define LOG_GROUP LOG_GROUP_DEFAULT
    29 #endif
    30 #include <VBox/log.h>
    31 
    32 #include <iprt/assert.h>
    33 #include <iprt/ldr.h>
    3430
    3531
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette