- Timestamp:
- Apr 29, 2011 3:52:47 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 71478
- Location:
- trunk/src/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxTray/Makefile.kmk
r35385 r36899 54 54 $(VBOX_LIB_VBGL_R3) 55 55 56 include $(KBUILD_PATH)/sdks/WINDDK.kmk 57 VBoxTray_INCS += $(PATH_SDK_WINDDK_INC_API) $(PATH_SDK_WINDDK_INC_DDK) 58 56 59 ifdef VBOX_WITH_WDDM 57 60 VBoxTray_DEFS += VBOX_WITH_WDDM 58 61 # VBoxTray_DEFS += LOG_ENABLED 59 # we need only includes for PFND3DKMT stuff as all we link dynamicaly to it60 include $(KBUILD_PATH)/sdks/WINDDK.kmk61 VBoxTray_INCS += $(PATH_SDK_WINDDK_INC_API) $(PATH_SDK_WINDDK_INC_DDK)62 62 endif 63 63 64 # VBoxTray.cpp uses VBOX_SVN_REV. 64 65 VBoxTray.cpp_DEFS += VBOX_SVN_REV=$(VBOX_SVN_REV) -
trunk/src/VBox/Devices/Graphics/DevVGA.h
r34399 r36899 280 280 #endif 281 281 282 #if HC_ARCH_BITS == 32 283 # if defined(VBOX_WITH_HGSMI) != defined(VBOX_WITH_VDMA) 284 uint32_t Padding3; 285 # endif 286 #endif 287 288 282 289 uint32_t cMonitors; 283 290 /** Current refresh timer interval. */ … … 309 316 #else 310 317 # if HC_ARCH_BITS == 32 311 uint32_t Padding 3;318 uint32_t Padding4; 312 319 # endif 313 320 #endif … … 345 352 /** VBE Extra Data write address one byte buffer */ 346 353 uint8_t cbWriteVBEExtraAddress; 347 uint8_t Padding 4;354 uint8_t Padding5; 348 355 # else 349 uint8_t Padding 4[2];356 uint8_t Padding5[2]; 350 357 # endif 351 358 #endif … … 353 360 /** Retrace emulation state */ 354 361 bool fRealRetrace; 355 bool Padding 5[HC_ARCH_BITS == 64 ? 7 : 3];362 bool Padding6[HC_ARCH_BITS == 64 ? 7 : 3]; 356 363 vga_retrace_s retrace_state; 357 364 … … 363 370 /** The VBE BIOS current memory address. */ 364 371 uint16_t u16VBEExtraAddress; 365 uint16_t Padding 6[2];372 uint16_t Padding7[2]; 366 373 #endif 367 374 /** Current logo data offset. */ … … 393 400 /** Clear screen flag. */ 394 401 uint8_t fLogoClearScreen; 395 uint8_t Padding 7[7];402 uint8_t Padding8[7]; 396 403 /** Palette data. */ 397 404 uint32_t au32LogoPalette[256]; … … 407 414 RTIOPORT IOPortBase; 408 415 #ifdef VBOX_WITH_WDDM 409 uint8_t Padding 8[2];416 uint8_t Padding9[2]; 410 417 /* specifies guest driver caps, i.e. whether it can handle IRQs from the adapter, 411 418 * the way it can handle async HGSMI command completion, etc. */ 412 419 uint32_t fGuestCaps; 413 420 #else 414 uint8_t Padding 8[6];421 uint8_t Padding10[6]; 415 422 #endif 416 423 #endif /* VBOX_WITH_HGSMI */
Note:
See TracChangeset
for help on using the changeset viewer.