Changeset 5562 for trunk/include/VBox/cdefs.h
- Timestamp:
- 10/30/07 18:51:50 (1 year ago)
- Files:
-
- trunk/include/VBox/cdefs.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/include/VBox/cdefs.h
r4071 r5562 109 109 #define IN_USB_R0 110 110 #define IN_USB_R3 111 #define IN_USBLIB 111 112 #define IN_VGADEVICE_GC 112 113 #define IN_VGADEVICE_R3 … … 914 915 915 916 917 /** @def IN_USBLIB 918 * Used to indicate whether we're inside the same link module as the USBLib. 919 */ 920 /** @def USBLIB_DECL 921 * USBLIB export or import declaration. 922 * @param type The return type of the function declaration. 923 */ 924 #ifdef IN_RING0 925 # define USBLIB_DECL(type) type VBOXCALL 926 #elif defined(IN_USBLIB) 927 # define USBLIB_DECL(type) DECLEXPORT(type) VBOXCALL 928 #else 929 # define USBLIB_DECL(type) DECLIMPORT(type) VBOXCALL 930 #endif 931 932 933 916 934 /** @def IN_INTNET_R3 917 935 * Used to indicate whether we're inside the same link module as the Ring 3

