Changeset 3573 for trunk/kStuff/include
- Timestamp:
- Aug 31, 2007, 6:09:23 AM (18 years ago)
- Location:
- trunk/kStuff/include/k
- Files:
-
- 6 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kStuff/include/k/kErrors.h
r3550 r3573 38 38 */ 39 39 /** The base of the general status codes. */ 40 #define KERR_GENERAL_BASE (KERR_BASE 40 #define KERR_GENERAL_BASE (KERR_BASE) 41 41 /** Generic error. */ 42 42 #define KERR_GENERAL_FAILURE (KERR_GENERAL_BASE + 1) … … 45 45 /** Hit some unimplemented functionality - feel free to implement it :-) . */ 46 46 #define KERR_NOT_IMPLEMENTED (KERR_GENERAL_BASE + 3) 47 /** An environment variable wasn't found. */ 48 #define KERR_ENVVAR_NOT_FOUND (KERR_GENERAL_BASE + 4) 49 /** Buffer overflow. */ 50 #define KERR_BUFFER_OVERFLOW (KERR_GENERAL_BASE + 5) 47 51 /** @}*/ 48 52 … … 51 55 */ 52 56 /** The base of the input validation status codes. */ 53 #define KERR_INPUT_BASE (KERR_GENERAL_BASE + 4)57 #define KERR_INPUT_BASE (KERR_GENERAL_BASE + 6) 54 58 /** An API was given an invalid parameter. */ 55 59 #define KERR_INVALID_PARAMETER (KERR_INPUT_BASE + 0) -
trunk/kStuff/include/k/kHlpAlloc.h
r3552 r3573 61 61 KHLP_DECL(int) kHlpPageFree(void *pv, KSIZE cb); 62 62 63 KHLP_DECL(int) kHlpHeapInit(void); 64 KHLP_DECL(void) kHlpHeapTerm(void); 65 KHLP_DECL(void) kHlpHeapDonate(void *pv, KSIZE cb); 66 63 67 #ifdef __cplusplus 64 68 } -
trunk/kStuff/include/k/kHlpString.h
r3552 r3573 28 28 #define ___k_kHlpString_h___ 29 29 30 #include <k/k Defs.h>30 #include <k/kHlpDefs.h> 31 31 #include <k/kTypes.h> 32 32 … … 118 118 int kHlpStrIComp(const char *pv1, const char *pv2); 119 119 120 KHLP_DECL(char *) kHlpInt2Ascii(char *psz, KSIZE cch, long lVal, unsigned iBase); 121 120 122 #ifdef __cplusplus 121 123 } -
trunk/kStuff/include/k/kLdr.h
r3571 r3573 1019 1019 const char *pszName, KU32 idLang, PFNKLDRENUMRSRC pfnCallback, void *pvUser); 1020 1020 1021 1021 1022 /** @name OS/2 like API 1022 1023 * @{ */ … … 1116 1117 typedef const KLDREXEARGS *PCKLDREXEARGS; 1117 1118 1118 void kLdrLoadExe(PCKLDREXEARGS pArgs, void *pvOS); 1119 void kLdrLoadExe(PCKLDREXEARGS pArgs, void *pvOS); /** @todo fix this mess... */ 1120 void kLdrDyldLoadExe(PCKLDREXEARGS pArgs, void *pvOS); 1119 1121 1120 1122 /** @} */
Note:
See TracChangeset
for help on using the changeset viewer.