Changeset 20374 in vbox for trunk/src/VBox/HostDrivers/Support/darwin
- Timestamp:
- Jun 8, 2009 12:43:21 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 48298
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/darwin/SUPDrv-darwin.cpp
r20366 r20374 71 71 72 72 #ifdef VBOX_WITH_HOST_VMX 73 RT_ BEGIN_DECLS73 RT_C_DECLS_BEGIN 74 74 # include <i386/vmx.h> 75 RT_ END_DECLS75 RT_C_DECLS_END 76 76 #endif 77 77 … … 89 89 * Internal Functions * 90 90 *******************************************************************************/ 91 RT_ BEGIN_DECLS91 RT_C_DECLS_BEGIN 92 92 static kern_return_t VBoxDrvDarwinStart(struct kmod_info *pKModInfo, void *pvData); 93 93 static kern_return_t VBoxDrvDarwinStop(struct kmod_info *pKModInfo, void *pvData); … … 101 101 102 102 static IOReturn VBoxDrvDarwinSleepHandler(void *pvTarget, void *pvRefCon, UInt32 uMessageType, IOService *pProvider, void *pvMessageArgument, vm_size_t argSize); 103 RT_ END_DECLS103 RT_C_DECLS_END 104 104 105 105 … … 162 162 * Declare the module stuff. 163 163 */ 164 RT_ BEGIN_DECLS164 RT_C_DECLS_BEGIN 165 165 extern kern_return_t _start(struct kmod_info *pKModInfo, void *pvData); 166 166 extern kern_return_t _stop(struct kmod_info *pKModInfo, void *pvData); … … 170 170 DECLHIDDEN(kmod_stop_func_t *) _antimain = VBoxDrvDarwinStop; 171 171 DECLHIDDEN(int) _kext_apple_cc = __APPLE_CC__; 172 RT_ END_DECLS172 RT_C_DECLS_END 173 173 174 174
Note:
See TracChangeset
for help on using the changeset viewer.