Ignore:
Timestamp:
Aug 26, 2007, 4:15:22 AM (18 years ago)
Author:
bird
Message:

kDbgDump can open itself now, not bad.

Location:
trunk/kStuff/include/k
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/kStuff/include/k/kHlpAlloc.h

    r3550 r3552  
    2828#define ___k_kHlpAlloc_h___
    2929
    30 #include <k/kDefs.h>
     30#include <k/kHlpDefs.h>
    3131#include <k/kTypes.h>
    3232
     
    5050#endif
    5151
    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 void    kHlpFree(void *pv);
     52KHLP_DECL(void *)   kHlpAlloc(KSIZE cb);
     53KHLP_DECL(void *)   kHlpAllocZ(KSIZE cb);
     54KHLP_DECL(void *)   kHlpDup(const void *pv, KSIZE cb);
     55KHLP_DECL(char *)   kHlpStrDup(const char *psz);
     56KHLP_DECL(void *)   kHlpRealloc(void *pv, KSIZE cb);
     57KHLP_DECL(void)     kHlpFree(void *pv);
    5858
    59 int     kHlpPageAlloc(void **ppv, KSIZE cb, KPROT enmProt, KBOOL fFixed);
    60 int     kHlpPageProtect(void *pv, KSIZE cb, KPROT enmProt);
    61 int     kHlpPageFree(void *pv, KSIZE cb);
     59KHLP_DECL(int)      kHlpPageAlloc(void **ppv, KSIZE cb, KPROT enmProt, KBOOL fFixed);
     60KHLP_DECL(int)      kHlpPageProtect(void *pv, KSIZE cb, KPROT enmProt);
     61KHLP_DECL(int)      kHlpPageFree(void *pv, KSIZE cb);
    6262
    6363#ifdef __cplusplus
  • trunk/kStuff/include/k/kHlpString.h

    r3550 r3552  
    2727#ifndef ___k_kHlpString_h___
    2828#define ___k_kHlpString_h___
     29
     30#include <k/kDefs.h>
     31#include <k/kTypes.h>
    2932
    3033#if 0 /* optimize / fix this later */
Note: See TracChangeset for help on using the changeset viewer.