Changeset 28303 in vbox for trunk/src/VBox/Additions/common
- Timestamp:
- Apr 14, 2010 1:17:56 PM (15 years ago)
- Location:
- trunk/src/VBox/Additions/common/VBoxGuestLib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuestLib/Makefile.kmk
r27703 r28303 139 139 # C library is not available. 140 140 # 141 ## @todo We're quite probably using the wrong template here. 141 142 VBoxGuestR3LibXFree86_TEMPLATE = VBOXGUESTR3LIB 142 143 VBoxGuestR3LibXFree86_DEFS = \ 143 VBOX_WITH_HGCM VBOX_VBGLR3_XFREE86 \ 144 VBOX_WITH_HGCM \ 145 VBOX_VBGLR3_XFREE86 \ 146 RTMEM_NO_WRAP_TO_EF_APIS \ 144 147 $(if $(VBOX_WITH_GUEST_PROPS),VBOX_WITH_GUEST_PROPS,) 145 148 VBoxGuestR3LibXFree86_SOURCES = \ … … 152 155 VBoxGuestR3LibVideo.cpp \ 153 156 VBoxGuestR3LibRuntimeXF86.cpp 154 VBoxGuestR3LibRuntimeXF86.cpp_CXXFLAGS = -Wno-shadow155 157 VBoxGuestR3LibXFree86_INCS = \ 156 158 $(VBOX_PATH_X11_XFREE_4_3)/programs/Xserver/hw/xfree86/common/ \ … … 160 162 $(VBOX_PATH_X11_XFREE_4_3)/exports/include/X11 161 163 164 VBoxGuestR3LibRuntimeXF86.cpp_CXXFLAGS = -Wno-shadow 162 165 163 166 include $(KBUILD_PATH)/subfooter.kmk -
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibRuntimeXF86.cpp
r27687 r28303 2 2 /** @file 3 3 * VBoxGuestR3Lib - Ring-3 Support Library for VirtualBox guest additions, 4 * implements the minimum of runtime functions needed for XFree86 driver5 * code.4 * implements the minimum of runtime functions needed for 5 * XFree86 driver code. 6 6 */ 7 7 8 8 /* 9 * Copyright (C) 2007-20 09Sun Microsystems, Inc.9 * Copyright (C) 2007-2010 Sun Microsystems, Inc. 10 10 * 11 11 * This file is part of VirtualBox Open Source Edition (OSE), as … … 46 46 } 47 47 48 /* This is risky as it restricts call to the ANSI format type specifiers. */ 48 49 RTDECL(size_t) RTStrPrintf(char *pszBuffer, size_t cchBuffer, const char *pszFormat, ...) 49 50 { … … 140 141 xfree(pv); 141 142 } 143
Note:
See TracChangeset
for help on using the changeset viewer.