Changeset 310 in vbox
- Timestamp:
- Jan 25, 2007 3:58:01 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 17859
- Location:
- trunk/include/iprt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
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
Note:
See TracChangeset
for help on using the changeset viewer.