Changeset 310
- Timestamp:
- 01/25/07 16:58:01 (2 years ago)
- Files:
-
- trunk/include/iprt/heap.h (modified) (2 diffs)
- trunk/include/iprt/types.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/include/iprt/heap.h
r288 r310 20 20 */ 21 21 22 23 /* >>> heap.h */24 22 #ifndef __iprt_heap_h__ 25 23 #define __iprt_heap_h__ … … 27 25 #include <iprt/cdefs.h> 28 26 #include <iprt/types.h> 29 30 /* >>> types.h */31 /** Handle to a simple heap. */32 typedef struct RTHEAPSIMPLEINTERNAL *RTHEAPSIMPLE;33 /** Pointer to a handle to a simple heap. */34 typedef RTHEAPSIMPLE *PRTHEAPSIMPLE;35 36 /** NIL simple heap handle. */37 #define NIL_RTHEAPSIMPLE ((RTHEAPSIMPLE)0)38 /* <<< types.h */39 27 40 28 __BEGIN_DECLS trunk/include/iprt/types.h
r231 r310 966 966 #define NIL_RTTHREAD 0 967 967 968 968 /** Handle to a simple heap. */ 969 typedef struct RTHEAPSIMPLEINTERNAL *RTHEAPSIMPLE; 970 /** Pointer to a handle to a simple heap. */ 971 typedef RTHEAPSIMPLE *PRTHEAPSIMPLE; 972 /** NIL simple heap handle. */ 973 #define NIL_RTHEAPSIMPLE ((RTHEAPSIMPLE)0) 969 974 970 975

