VirtualBox

Changeset 76519 in vbox


Ignore:
Timestamp:
Dec 30, 2018 5:39:14 AM (6 years ago)
Author:
vboxsync
Message:

Devices: Header guard fixing preps. bugref:9344

Location:
trunk/src/VBox/Devices
Files:
18 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/EFI/.scm-settings

    r69430 r76519  
    2020
    2121/Firmware/*:     --external-copyright --dont-set-svn-keywords --no-convert-tabs --no-strip-trailing-blanks \
    22                  --strip-no-trailing-lines --no-force-final-eol --no-fix-todos
     22                 --strip-no-trailing-lines --no-force-final-eol --no-fix-todos --no-fix-header-guards
    2323/Firmware/*.kmk: --no-external-copyright --set-svn-keywords --convert-tabs --strip-trailing-blanks --strip-trailing-lines \
    2424                 --force-final-eol --fix-todos --license-ose-dual
  • trunk/src/VBox/Devices/Graphics/.scm-settings

    r69421 r76519  
    4242
    4343/shaderlib/*: --external-copyright --lgpl-disclaimer --no-convert-tabs --no-fix-todos --no-strip-trailing-blanks
    44 /shaderlib/wine/include/*.idl:       --treat-as .h
    45 /shaderlib/wine/include/*.rh:        --treat-as .h
    46 /shaderlib/wine/include/*.h.in:      --treat-as .h
    47 /shaderlib/wine/include/*-h.in:      --treat-as .h
    48 /shaderlib/wine/include/*.inl:       --treat-as .h
    49 /shaderlib/wine/include/*.x:         --treat-as .h
     44/shaderlib/wine/include/*.idl:       --treat-as .h --no-fix-header-guards
     45/shaderlib/wine/include/*.rh:        --treat-as .h --no-fix-header-guards
     46/shaderlib/wine/include/*.h.in:      --treat-as .h --no-fix-header-guards
     47/shaderlib/wine/include/*-h.in:      --treat-as .h --no-fix-header-guards
     48/shaderlib/wine/include/*.inl:       --treat-as .h --no-fix-header-guards
     49/shaderlib/wine/include/*.x:         --treat-as .h --no-fix-header-guards
    5050/shaderlib/wine/include/Makefile.in: --treat-as Makefile
     51/shaderlib/wine/include/*.h:         --no-fix-header-guards
     52/shaderlib/libWineStub/include/*.h:  --no-fix-header-guards
     53/shaderlib/libWineStub/include/wine/*.h: --no-fix-header-guards
     54/shaderlib/wine/vbox/libWineStub/include/*.h: --no-fix-header-guards
     55/shaderlib/wine/vbox/libWineStub/include/wine/*.h: --no-fix-header-guards
    5156
    5257/shaderlib/shaderapi.c:                  --no-external-copyright --no-lgpl-disclaimer --convert-tabs --fix-todos --strip-trailing-blanks
     
    6267/vmsvga_glext/*.h: --external-copyright --no-convert-tabs --no-strip-trailing-blanks
    6368
     69/DevVGATmpl.h:                          --no-fix-header-guards
  • trunk/src/VBox/Devices/Graphics/BIOS/inlines.h

    r69500 r76519  
    1515 */
    1616
     17#ifndef VBOX_INCLUDED_Graphics_BIOS_inlines_h
     18#define VBOX_INCLUDED_Graphics_BIOS_inlines_h
    1719
    1820extern unsigned inp(unsigned port);
     
    143145    parm [es] [di] [dx] [si] [cx];
    144146
     147#endif
     148
  • trunk/src/VBox/Devices/Graphics/BIOS/vgadefs.h

    r43115 r76519  
     1#ifndef VBOX_INCLUDED_Graphics_vgadefs_h
     2#define VBOX_INCLUDED_Graphics_vgadefs_h
     3
    14/*
    25 *
     
    6871#define VGAREG_CGA_PALETTE             0x3d9
    6972
     73#endif
     74
  • trunk/src/VBox/Devices/Graphics/BIOS/vgafonts.h

    r43115 r76519  
    44 * The individual fonts are public domain
    55 */
     6
     7#ifndef VBOX_INCLUDED_Graphics_vgafonts_h
     8#define VBOX_INCLUDED_Graphics_vgafonts_h
     9
    610static uint8_t vgafont8[256*8]=
    711{
     
    867871 0x00
    868872};
     873
     874#endif
     875
  • trunk/src/VBox/Devices/Graphics/BIOS/vgatables.h

    r67851 r76519  
     1#ifndef VBOX_INCLUDED_Graphics_vgatables_h
     2#define VBOX_INCLUDED_Graphics_vgatables_h
    13
    24/* Video memory */
     
    556558 /* f */ 0x00   // reserved
    557559};
     560
     561#endif
     562
  • trunk/src/VBox/Devices/Graphics/DevVGA.h

    r74474 r76519  
    4040 * THE SOFTWARE.
    4141 */
     42
     43#ifndef VBOX_INCLUDED_Graphics_DevVGA_h
     44#define VBOX_INCLUDED_Graphics_DevVGA_h
    4245
    4346/** Use VBE bytewise I/O. Only needed for Windows Longhorn/Vista betas and backwards compatibility. */
     
    626629#endif /* !VBOX */
    627630
     631#endif
     632
  • trunk/src/VBox/Devices/Graphics/DevVGAModes.h

    r69500 r76519  
    1919 */
    2020
     21#ifndef VBOX_INCLUDED_Graphics_DevVGAModes_h
     22#define VBOX_INCLUDED_Graphics_DevVGAModes_h
     23
    2124#include <VBoxVideoVBE.h>
    2225#include <VBoxVideoVBEPrivate.h>
     
    2528
    2629#define MODE_INFO_SIZE ( sizeof(mode_info_list) / sizeof(ModeInfoListItem) )
     30
     31#endif
     32
  • trunk/src/VBox/Devices/Network/.scm-settings

    r69426 r76519  
    3737/slirp/libalias/*:          --external-copyright --no-convert-tabs
    3838/slirp/bsd/*:               --external-copyright --no-convert-tabs --dont-set-svn-keywords
     39/slirp/*:                   --no-fix-header-guards
    3940
    4041# well...
  • trunk/src/VBox/Devices/Network/DevE1000Phy.h

    r69500 r76519  
    1515 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
    1616 */
     17
     18#ifndef VBOX_INCLUDED_Network_DevE1000_h
     19#define VBOX_INCLUDED_Network_DevE1000_h
    1720
    1821#include <VBox/types.h>
     
    106109
    107110/* Interface *****************************************************************/
    108 namespace Phy {
     111namespace Phy
     112{
    109113    /** Initialize PHY. */
    110114    void     init(PPHY pPhy, int iNICInstance, uint16_t u16EPid);
     
    129133}
    130134
     135#endif
     136
  • trunk/src/VBox/Devices/Network/DevEEPROM.h

    r69500 r76519  
    1616 */
    1717
    18 /* Interface */
     18#ifndef VBOX_INCLUDED_Network_DevEEPROM_h
     19#define VBOX_INCLUDED_Network_DevEEPROM_h
     20
    1921#include <iprt/types.h>
    2022
     
    133135#endif /* IN_RING3 */
    134136};
     137
     138#endif
  • trunk/src/VBox/Devices/PC/.scm-settings

    r69474 r76519  
    5656/PXE/*.asm:     --external-copyright --no-convert-tabs --no-strip-trailing-blanks
    5757/PXE/*.c:       --external-copyright --no-convert-tabs --no-strip-trailing-blanks
    58 /PXE/*.h:       --external-copyright --no-convert-tabs --no-strip-trailing-blanks --dont-set-svn-keywords
     58/PXE/*.h:       --external-copyright --no-convert-tabs --no-strip-trailing-blanks --dont-set-svn-keywords --no-fix-header-guards
    5959/PXE/*.inc:     --external-copyright --no-convert-tabs --no-strip-trailing-blanks
    6060/PXE/*.i:       --external-copyright --no-convert-tabs --no-strip-trailing-blanks --strip-no-trailing-lines --treat-as .inc
     
    8282/ipxe/contrib/vm/cow:            --treat-as .sh
    8383/ipxe/contrib/vm/serial-console: --treat-as .pl
     84/ipxe/*:                         --no-fix-header-guards
    8485
    8586--filter-out-files /ipxe/*.txt
  • trunk/src/VBox/Devices/PC/BIOS/ata.h

    r70333 r76519  
    5353 */
    5454
     55#ifndef VBOX_INCLUDED_PC_BIOS_ata_h
     56#define VBOX_INCLUDED_PC_BIOS_ata_h
    5557
    5658#define ATA_DATA_NO      0x00
     
    181183
    182184extern void     ata_reset(uint16_t device);
     185
     186#endif
     187
  • trunk/src/VBox/Devices/PC/BIOS/biosint.h

    r69501 r76519  
    5353 */
    5454
     55#ifndef VBOX_INCLUDED_BIOS_biosint_h
     56#define VBOX_INCLUDED_BIOS_biosint_h
    5557
    5658/* Compile-time assertion macro. */
     
    302304#define PIC_CMD_RD_ISR      0x0B
    303305#define PIC_CMD_INIT        0x11
     306
     307#endif
     308
  • trunk/src/VBox/Devices/PC/BIOS/ebda.h

    r71426 r76519  
    5353 */
    5454
     55#ifndef VBOX_INCLUDED_BIOS_ebda_h
     56#define VBOX_INCLUDED_BIOS_ebda_h
    5557
    5658#include <stdint.h>
     
    374376
    375377#endif
     378#endif
     379
  • trunk/src/VBox/Devices/PC/BIOS/inlines.h

    r74613 r76519  
    1616 */
    1717
     18#ifndef VBOX_INCLUDED_BIOS_inlines_h
     19#define VBOX_INCLUDED_BIOS_inlines_h
    1820
    1921extern unsigned inp(unsigned port);
     
    238240
    239241#endif
     242
     243#endif
     244
  • trunk/src/VBox/Devices/PC/BIOS/pciutil.h

    r69501 r76519  
    1616 */
    1717
     18#ifndef VBOX_INCLUDED_BIOS_pciutils_h
     19#define VBOX_INCLUDED_BIOS_pciutils_h
     20
    1821extern  uint16_t    pci_find_device(uint16_t v_id, uint16_t d_id);
    1922/* Warning: pci_find_classcode destroys the high bits of ECX. */
     
    2831extern  void        pci_write_config_dword(uint8_t bus, uint8_t dev_fn, uint8_t reg, uint32_t val);
    2932
     33#endif
     34
  • trunk/src/VBox/Devices/PC/BIOS/vds.h

    r69500 r76519  
    1616 */
    1717
     18#ifndef VBOX_INCLUDED_BIOS_vds_h
     19#define VBOX_INCLUDED_BIOS_vds_h
    1820
    1921/* Virtual DMA Services (VDS) */
     
    114116uint32_t vds_real_to_lin( void __far *ptr );
    115117
     118#endif
     119
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