- Timestamp:
- Mar 12, 2010 8:00:26 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 58727
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Config.kmk
r27151 r27314 3776 3776 TEMPLATE_VBOXGUESTR3XF86MOD_LIBS = \ 3777 3777 $(VBOX_LIB_VBGL_R3_XFREE86) 3778 TEMPLATE_VBOXGUESTR3XF86MOD_DEFS = $(TEMPLATE_VBOXGUESTR3DLL_DEFS) LOG_TO_BACKDOOR 3778 TEMPLATE_VBOXGUESTR3XF86MOD_DEFS = $(TEMPLATE_VBOXGUESTR3DLL_DEFS) LOG_TO_BACKDOOR VBOX_GUESTR3XF86MOD 3779 3779 3780 3780 … … 3788 3788 TEMPLATE_VBOXGUESTR3XORGMOD_LIBS.$(KBUILD_TARGET) = $(NO_SUCH_VARIABLE) 3789 3789 TEMPLATE_VBOXGUESTR3XORGMOD_CFLAGS = $(TEMPLATE_VBOXGUESTR3DLL_CFLAGS) -std=c99 3790 TEMPLATE_VBOXGUESTR3XORGMOD_DEFS = $(TEMPLATE_VBOXGUESTR3DLL_DEFS) LOG_TO_BACKDOOR 3790 TEMPLATE_VBOXGUESTR3XORGMOD_DEFS = $(TEMPLATE_VBOXGUESTR3DLL_DEFS) LOG_TO_BACKDOOR VBOX_GUESTR3XORGMOD 3791 3791 ifeq ($(KBUILD_TARGET_ARCH),amd64) 3792 3792 TEMPLATE_VBOXGUESTR3XORGMOD_DEFS += _XSERVER64 -
trunk/include/VBox/VBoxGuestLib.h
r27083 r27314 435 435 VBGLR3DECL(int) VbglR3SeamlessWaitEvent(VMMDevSeamlessMode *pMode); 436 436 VBGLR3DECL(int) VbglR3SeamlessSendRects(uint32_t cRects, PRTRECT pRects); 437 VBGLR3DECL(int) VbglR3SeamlessGetLastEvent(VMMDevSeamlessMode *pMode); 438 437 439 /** @} */ 438 440 -
trunk/src/VBox/Additions/x11/vboxvideo/vboxutils.c
r27309 r27314 1018 1018 } 1019 1019 1020 #ifdef VBOX_GUESTR3XORGMOD 1021 /** 1022 * Check if any seamless mode is enabled. 1023 * Seamless is only relevant for the newer Xorg modules. 1024 * 1025 * @returns the result of the query 1026 * (true = seamless enabled, false = seamless not enabled) 1027 * @param pScrn Screen info pointer. 1028 */ 1020 1029 Bool 1021 1030 vboxGuestIsSeamless(ScrnInfoPtr pScrn) … … 1030 1039 return (mode != VMMDev_Seamless_Disabled); 1031 1040 } 1041 #endif 1032 1042 1033 1043 /**
Note:
See TracChangeset
for help on using the changeset viewer.