Changeset 76519 in vbox
- Timestamp:
- Dec 30, 2018 5:39:14 AM (6 years ago)
- Location:
- trunk/src/VBox/Devices
- Files:
-
- 18 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/.scm-settings
r69430 r76519 20 20 21 21 /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 23 23 /Firmware/*.kmk: --no-external-copyright --set-svn-keywords --convert-tabs --strip-trailing-blanks --strip-trailing-lines \ 24 24 --force-final-eol --fix-todos --license-ose-dual -
trunk/src/VBox/Devices/Graphics/.scm-settings
r69421 r76519 42 42 43 43 /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 50 50 /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 51 56 52 57 /shaderlib/shaderapi.c: --no-external-copyright --no-lgpl-disclaimer --convert-tabs --fix-todos --strip-trailing-blanks … … 62 67 /vmsvga_glext/*.h: --external-copyright --no-convert-tabs --no-strip-trailing-blanks 63 68 69 /DevVGATmpl.h: --no-fix-header-guards -
trunk/src/VBox/Devices/Graphics/BIOS/inlines.h
r69500 r76519 15 15 */ 16 16 17 #ifndef VBOX_INCLUDED_Graphics_BIOS_inlines_h 18 #define VBOX_INCLUDED_Graphics_BIOS_inlines_h 17 19 18 20 extern unsigned inp(unsigned port); … … 143 145 parm [es] [di] [dx] [si] [cx]; 144 146 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 1 4 /* 2 5 * … … 68 71 #define VGAREG_CGA_PALETTE 0x3d9 69 72 73 #endif 74 -
trunk/src/VBox/Devices/Graphics/BIOS/vgafonts.h
r43115 r76519 4 4 * The individual fonts are public domain 5 5 */ 6 7 #ifndef VBOX_INCLUDED_Graphics_vgafonts_h 8 #define VBOX_INCLUDED_Graphics_vgafonts_h 9 6 10 static uint8_t vgafont8[256*8]= 7 11 { … … 867 871 0x00 868 872 }; 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 1 3 2 4 /* Video memory */ … … 556 558 /* f */ 0x00 // reserved 557 559 }; 560 561 #endif 562 -
trunk/src/VBox/Devices/Graphics/DevVGA.h
r74474 r76519 40 40 * THE SOFTWARE. 41 41 */ 42 43 #ifndef VBOX_INCLUDED_Graphics_DevVGA_h 44 #define VBOX_INCLUDED_Graphics_DevVGA_h 42 45 43 46 /** Use VBE bytewise I/O. Only needed for Windows Longhorn/Vista betas and backwards compatibility. */ … … 626 629 #endif /* !VBOX */ 627 630 631 #endif 632 -
trunk/src/VBox/Devices/Graphics/DevVGAModes.h
r69500 r76519 19 19 */ 20 20 21 #ifndef VBOX_INCLUDED_Graphics_DevVGAModes_h 22 #define VBOX_INCLUDED_Graphics_DevVGAModes_h 23 21 24 #include <VBoxVideoVBE.h> 22 25 #include <VBoxVideoVBEPrivate.h> … … 25 28 26 29 #define MODE_INFO_SIZE ( sizeof(mode_info_list) / sizeof(ModeInfoListItem) ) 30 31 #endif 32 -
trunk/src/VBox/Devices/Network/.scm-settings
r69426 r76519 37 37 /slirp/libalias/*: --external-copyright --no-convert-tabs 38 38 /slirp/bsd/*: --external-copyright --no-convert-tabs --dont-set-svn-keywords 39 /slirp/*: --no-fix-header-guards 39 40 40 41 # well... -
trunk/src/VBox/Devices/Network/DevE1000Phy.h
r69500 r76519 15 15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. 16 16 */ 17 18 #ifndef VBOX_INCLUDED_Network_DevE1000_h 19 #define VBOX_INCLUDED_Network_DevE1000_h 17 20 18 21 #include <VBox/types.h> … … 106 109 107 110 /* Interface *****************************************************************/ 108 namespace Phy { 111 namespace Phy 112 { 109 113 /** Initialize PHY. */ 110 114 void init(PPHY pPhy, int iNICInstance, uint16_t u16EPid); … … 129 133 } 130 134 135 #endif 136 -
trunk/src/VBox/Devices/Network/DevEEPROM.h
r69500 r76519 16 16 */ 17 17 18 /* Interface */ 18 #ifndef VBOX_INCLUDED_Network_DevEEPROM_h 19 #define VBOX_INCLUDED_Network_DevEEPROM_h 20 19 21 #include <iprt/types.h> 20 22 … … 133 135 #endif /* IN_RING3 */ 134 136 }; 137 138 #endif -
trunk/src/VBox/Devices/PC/.scm-settings
r69474 r76519 56 56 /PXE/*.asm: --external-copyright --no-convert-tabs --no-strip-trailing-blanks 57 57 /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 59 59 /PXE/*.inc: --external-copyright --no-convert-tabs --no-strip-trailing-blanks 60 60 /PXE/*.i: --external-copyright --no-convert-tabs --no-strip-trailing-blanks --strip-no-trailing-lines --treat-as .inc … … 82 82 /ipxe/contrib/vm/cow: --treat-as .sh 83 83 /ipxe/contrib/vm/serial-console: --treat-as .pl 84 /ipxe/*: --no-fix-header-guards 84 85 85 86 --filter-out-files /ipxe/*.txt -
trunk/src/VBox/Devices/PC/BIOS/ata.h
r70333 r76519 53 53 */ 54 54 55 #ifndef VBOX_INCLUDED_PC_BIOS_ata_h 56 #define VBOX_INCLUDED_PC_BIOS_ata_h 55 57 56 58 #define ATA_DATA_NO 0x00 … … 181 183 182 184 extern void ata_reset(uint16_t device); 185 186 #endif 187 -
trunk/src/VBox/Devices/PC/BIOS/biosint.h
r69501 r76519 53 53 */ 54 54 55 #ifndef VBOX_INCLUDED_BIOS_biosint_h 56 #define VBOX_INCLUDED_BIOS_biosint_h 55 57 56 58 /* Compile-time assertion macro. */ … … 302 304 #define PIC_CMD_RD_ISR 0x0B 303 305 #define PIC_CMD_INIT 0x11 306 307 #endif 308 -
trunk/src/VBox/Devices/PC/BIOS/ebda.h
r71426 r76519 53 53 */ 54 54 55 #ifndef VBOX_INCLUDED_BIOS_ebda_h 56 #define VBOX_INCLUDED_BIOS_ebda_h 55 57 56 58 #include <stdint.h> … … 374 376 375 377 #endif 378 #endif 379 -
trunk/src/VBox/Devices/PC/BIOS/inlines.h
r74613 r76519 16 16 */ 17 17 18 #ifndef VBOX_INCLUDED_BIOS_inlines_h 19 #define VBOX_INCLUDED_BIOS_inlines_h 18 20 19 21 extern unsigned inp(unsigned port); … … 238 240 239 241 #endif 242 243 #endif 244 -
trunk/src/VBox/Devices/PC/BIOS/pciutil.h
r69501 r76519 16 16 */ 17 17 18 #ifndef VBOX_INCLUDED_BIOS_pciutils_h 19 #define VBOX_INCLUDED_BIOS_pciutils_h 20 18 21 extern uint16_t pci_find_device(uint16_t v_id, uint16_t d_id); 19 22 /* Warning: pci_find_classcode destroys the high bits of ECX. */ … … 28 31 extern void pci_write_config_dword(uint8_t bus, uint8_t dev_fn, uint8_t reg, uint32_t val); 29 32 33 #endif 34 -
trunk/src/VBox/Devices/PC/BIOS/vds.h
r69500 r76519 16 16 */ 17 17 18 #ifndef VBOX_INCLUDED_BIOS_vds_h 19 #define VBOX_INCLUDED_BIOS_vds_h 18 20 19 21 /* Virtual DMA Services (VDS) */ … … 114 116 uint32_t vds_real_to_lin( void __far *ptr ); 115 117 118 #endif 119
Note:
See TracChangeset
for help on using the changeset viewer.