VirtualBox

Changeset 68672 in vbox for trunk


Ignore:
Timestamp:
Sep 6, 2017 9:11:14 AM (7 years ago)
Author:
vboxsync
Message:

include file build fixes (kmk -C include)

Location:
trunk/include/VBox/Graphics
Files:
10 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/VBox/Graphics/HGSMI.h

    r66544 r68672  
    11/** @file
    2  *
    3  * VBox Host Guest Shared Memory Interface (HGSMI).
    4  * Host/Guest shared part.
     2 * VBox Host Guest Shared Memory Interface (HGSMI) - Host/Guest shared part.
    53 */
    64
     
    3129#define ___VBox_Graphics_HGSMI_h
    3230
    33 #include <VBoxVideoIPRT.h>
    34 
    35 #include <HGSMIDefs.h>
    36 #include <HGSMIChannels.h>
    37 #include <HGSMIMemAlloc.h>
     31#include "VBoxVideoIPRT.h"
     32
     33#include "HGSMIDefs.h"
     34#include "HGSMIChannels.h"
     35#include "HGSMIMemAlloc.h"
    3836
    3937/*
  • trunk/include/VBox/Graphics/HGSMIBase.h

    r67066 r68672  
    11/** @file
    2  * VBox Host Guest Shared Memory Interface (HGSMI) buffer management.
     2 * VBox Host Guest Shared Memory Interface (HGSMI) - buffer management.
    33 */
    44
     
    2828#define ___VBox_Graphics_HGSMIBase_h___
    2929
    30 #include <HGSMI.h>
    31 #include <HGSMIContext.h>
    32 #include <VBoxVideoIPRT.h>
     30#include "HGSMI.h"
     31#include "HGSMIContext.h"
     32#include "VBoxVideoIPRT.h"
    3333
    3434RT_C_DECLS_BEGIN
  • trunk/include/VBox/Graphics/HGSMIChSetup.h

    r66544 r68672  
    11/** @file
    2  * VBox Host Guest Shared Memory Interface (HGSMI), sHost/Guest shared part.
     2 * VBox Host Guest Shared Memory Interface (HGSMI), Host/Guest shared part.
    33 */
    44
     
    2727#ifndef ___VBox_Graphics_HGSMIChSetup_h
    2828#define ___VBox_Graphics_HGSMIChSetup_h
     29
     30#include "HGSMIDefs.h"
    2931
    3032/* HGSMI setup and configuration channel commands and data structures. */
  • trunk/include/VBox/Graphics/HGSMIContext.h

    r67066 r68672  
    11/** @file
    2  * VBox Host Guest Shared Memory Interface (HGSMI) command contexts.
     2 * VBox Host Guest Shared Memory Interface (HGSMI) - command contexts.
    33 */
    44
     
    2828#define ___VBox_Graphics_HGSMIContext_h___
    2929
    30 #include <HGSMI.h>
    31 #include <HGSMIChSetup.h>
    32 #include <VBoxVideoIPRT.h>
     30#include "HGSMI.h"
     31#include "HGSMIChSetup.h"
     32#include "VBoxVideoIPRT.h"
    3333
    3434#ifdef VBOX_WDDM_MINIPORT
     
    105105
    106106#endif
     107
  • trunk/include/VBox/Graphics/HGSMIDefs.h

    r66544 r68672  
    11/** @file
    2  *
    3  * VBox Host Guest Shared Memory Interface (HGSMI).
    4  * Host/Guest shared part: types and defines.
     2 * VBox Host Guest Shared Memory Interface (HGSMI) - shared part - types and defines.
    53 */
    64
     
    3129#define ___VBox_Graphics_HGSMIDefs_h
    3230
    33 #include <VBoxVideoIPRT.h>
     31#include "VBoxVideoIPRT.h"
    3432
    3533/* HGSMI uses 32 bit offsets and sizes. */
     
    6159
    6260
    63 #pragma pack(1)
     61#pragma pack(1) /** @todo not necessary. use AssertCompileSize instead. */
    6462/* 16 bytes buffer header. */
    6563typedef struct HGSMIBUFFERHEADER
     
    122120
    123121#endif /* !___VBox_Graphics_HGSMIDefs_h */
     122
  • trunk/include/VBox/Graphics/HGSMIHostCmd.h

    r67066 r68672  
    11/** @file
    2  * VBox Host Guest Shared Memory Interface (HGSMI) buffer management.
     2 * VBox Host Guest Shared Memory Interface (HGSMI) - buffer management.
    33 */
    44
     
    2828#define ___VBox_Graphics_HGSMIHostCmd_h___
    2929
    30 #include <HGSMI.h>
    31 #include <HGSMIContext.h>
    32 #include <VBoxVideoIPRT.h>
     30#include "HGSMI.h"
     31#include "HGSMIContext.h"
     32#include "VBoxVideoIPRT.h"
    3333
    3434RT_C_DECLS_BEGIN
  • trunk/include/VBox/Graphics/HGSMIMemAlloc.h

    r66506 r68672  
    11/** @file
    2  *
    3  * VBox Host Guest Shared Memory Interface (HGSMI).
    4  * Memory allocator.
     2 * VBox Host Guest Shared Memory Interface (HGSMI) - Memory allocator.
    53 */
    64
     
    3028#define ___VBox_Graphics_HGSMIMemAlloc_h
    3129
    32 #include <HGSMIDefs.h>
    33 #include <VBoxVideoIPRT.h>
     30#include "HGSMIDefs.h"
     31#include "VBoxVideoIPRT.h"
    3432
    3533
  • trunk/include/VBox/Graphics/VBoxCrHgsmi.h

    r68550 r68672  
     1/** @file
     2 * Document me, pretty please.
     3 */
     4
    15/*
    26 * Copyright (C) 2010-2016 Oracle Corporation
     
    2327
    2428#include <iprt/cdefs.h>
    25 #include <VBoxUhgsmi.h>
     29#include "VBoxUhgsmi.h"
    2630
    2731RT_C_DECLS_BEGIN
  • trunk/include/VBox/Graphics/VBoxVideoGuest.h

    r67066 r68672  
    11/** @file
    2  * VBox Host Guest Shared Memory Interface (HGSMI).
    3  * OS-independent guest structures.
     2 * VBox Host Guest Shared Memory Interface (HGSMI) - OS-independent guest structures.
    43 */
    54
     
    3029#define ___VBox_Graphics_VBoxVideoGuest_h___
    3130
    32 #include <HGSMIBase.h>
    33 #include <VBoxVideo.h>
    34 #include <VBoxVideoIPRT.h>
     31#include "HGSMIBase.h"
     32#include "VBoxVideo.h"
     33#include "VBoxVideoIPRT.h"
    3534
    3635RT_C_DECLS_BEGIN
  • trunk/include/VBox/Graphics/VBoxVideoIPRT.h

    r68657 r68672  
    11/** @file
    2  * VirtualBox Video driver, common code - iprt and VirtualBox macros and
    3  * definitions.
     2 * VirtualBox Video driver, common code - iprt and VirtualBox macros and definitions.
    43 */
    54
Note: See TracChangeset for help on using the changeset viewer.

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