Changeset 3552 for trunk/kStuff/include/k
- Timestamp:
- Aug 26, 2007, 4:15:22 AM (18 years ago)
- Location:
- trunk/kStuff/include/k
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kStuff/include/k/kHlpAlloc.h
r3550 r3552 28 28 #define ___k_kHlpAlloc_h___ 29 29 30 #include <k/k Defs.h>30 #include <k/kHlpDefs.h> 31 31 #include <k/kTypes.h> 32 32 … … 50 50 #endif 51 51 52 void *kHlpAlloc(KSIZE cb);53 void *kHlpAllocZ(KSIZE cb);54 void *kHlpDup(const void *pv, KSIZE cb);55 const char *kHlpStrDup(const char *psz);56 void *kHlpRealloc(void *pv, KSIZE cb);57 voidkHlpFree(void *pv);52 KHLP_DECL(void *) kHlpAlloc(KSIZE cb); 53 KHLP_DECL(void *) kHlpAllocZ(KSIZE cb); 54 KHLP_DECL(void *) kHlpDup(const void *pv, KSIZE cb); 55 KHLP_DECL(char *) kHlpStrDup(const char *psz); 56 KHLP_DECL(void *) kHlpRealloc(void *pv, KSIZE cb); 57 KHLP_DECL(void) kHlpFree(void *pv); 58 58 59 intkHlpPageAlloc(void **ppv, KSIZE cb, KPROT enmProt, KBOOL fFixed);60 intkHlpPageProtect(void *pv, KSIZE cb, KPROT enmProt);61 intkHlpPageFree(void *pv, KSIZE cb);59 KHLP_DECL(int) kHlpPageAlloc(void **ppv, KSIZE cb, KPROT enmProt, KBOOL fFixed); 60 KHLP_DECL(int) kHlpPageProtect(void *pv, KSIZE cb, KPROT enmProt); 61 KHLP_DECL(int) kHlpPageFree(void *pv, KSIZE cb); 62 62 63 63 #ifdef __cplusplus -
trunk/kStuff/include/k/kHlpString.h
r3550 r3552 27 27 #ifndef ___k_kHlpString_h___ 28 28 #define ___k_kHlpString_h___ 29 30 #include <k/kDefs.h> 31 #include <k/kTypes.h> 29 32 30 33 #if 0 /* optimize / fix this later */
Note:
See TracChangeset
for help on using the changeset viewer.