Changeset 11198 in vbox for trunk/include
- Timestamp:
- Aug 6, 2008 10:47:36 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/cdefs.h
r11154 r11198 577 577 #endif 578 578 579 /** @def DECL GCCALLBACKMEMBER580 * How to declare an call back function pointer member - GC Ptr.579 /** @def DECLRCCALLBACKMEMBER 580 * How to declare an call back function pointer member - RC Ptr. 581 581 * @param type The return type of the function declaration. 582 582 * @param name The name of the struct/union/class member. … … 584 584 */ 585 585 #ifdef IN_GC 586 # define DECLGCCALLBACKMEMBER(type, name, args) type (RTCALL * name) args 587 #else 588 # define DECLGCCALLBACKMEMBER(type, name, args) RTRCPTR name 589 #endif 586 # define DECLRCCALLBACKMEMBER(type, name, args) type (RTCALL * name) args 587 #else 588 # define DECLRCCALLBACKMEMBER(type, name, args) RTRCPTR name 589 #endif 590 /** @deprecated */ 591 #define DECLGCCALLBACKMEMBER(type, name, args) DECLRCCALLBACKMEMBER(type, name, args) 590 592 591 593 /** @def DECLR0CALLBACKMEMBER
Note:
See TracChangeset
for help on using the changeset viewer.