Changeset 20366 in vbox for trunk/src/VBox/HostDrivers/VBoxNetFlt
- Timestamp:
- Jun 8, 2009 12:21:10 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 48289
- Location:
- trunk/src/VBox/HostDrivers/VBoxNetFlt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxNetFlt/VBoxNetFltInternal.h
r18810 r20366 29 29 30 30 31 __BEGIN_DECLS31 RT_BEGIN_DECLS 32 32 33 33 /** Pointer to the globals. */ … … 419 419 420 420 421 __END_DECLS422 423 #endif 424 421 RT_END_DECLS 422 423 #endif 424 -
trunk/src/VBox/HostDrivers/VBoxNetFlt/darwin/VBoxNetFlt-darwin.cpp
r18098 r20366 58 58 #include <sys/kern_event.h> 59 59 #include <net/kpi_interface.h> 60 __BEGIN_DECLS /* Buggy 10.4 headers, fixed in 10.5. */60 RT_BEGIN_DECLS /* Buggy 10.4 headers, fixed in 10.5. */ 61 61 #include <sys/kpi_mbuf.h> 62 62 #include <net/kpi_interfacefilter.h> 63 __END_DECLS63 RT_END_DECLS 64 64 #include <net/if.h> 65 65 … … 84 84 * Internal Functions * 85 85 *******************************************************************************/ 86 __BEGIN_DECLS86 RT_BEGIN_DECLS 87 87 static kern_return_t VBoxNetFltDarwinStart(struct kmod_info *pKModInfo, void *pvData); 88 88 static kern_return_t VBoxNetFltDarwinStop(struct kmod_info *pKModInfo, void *pvData); 89 __END_DECLS89 RT_END_DECLS 90 90 91 91 … … 118 118 * Declare the module stuff. 119 119 */ 120 __BEGIN_DECLS120 RT_BEGIN_DECLS 121 121 extern kern_return_t _start(struct kmod_info *pKModInfo, void *pvData); 122 122 extern kern_return_t _stop(struct kmod_info *pKModInfo, void *pvData); … … 126 126 DECLHIDDEN(kmod_stop_func_t *) _antimain = VBoxNetFltDarwinStop; 127 127 DECLHIDDEN(int) _kext_apple_cc = __APPLE_CC__; 128 __END_DECLS128 RT_END_DECLS 129 129 130 130
Note:
See TracChangeset
for help on using the changeset viewer.