Changeset 3570
- Timestamp:
- Aug 31, 2007, 4:27:16 AM (18 years ago)
- Location:
- trunk/kStuff
- Files:
-
- 28 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/kStuff/include/k/kLdr.h
r3569 r3570 25 25 */ 26 26 27 #ifndef ___k Ldr_h___28 #define ___k Ldr_h___27 #ifndef ___k_kLdr_h___ 28 #define ___k_kLdr_h___ 29 29 30 30 #ifdef __cplusplus -
trunk/kStuff/kLdr/Makefile.kmk
r3567 r3570 230 230 # Generate case statements for kLdrErrStr(). 231 231 # 232 $(PATH_TARGET)/kldrErrConsts.h: kLdr.h Makefile.kmk | $(call DIRDEP,$(PATH_TARGET))232 $(PATH_TARGET)/kldrErrConsts.h: ../include/k/kLdr.h Makefile.kmk | $(call DIRDEP,$(PATH_TARGET)) 233 233 $(RM) -f $@ 234 234 $(SED) \ … … 237 237 -e '/KLDR_ERR_BASE/d' \ 238 238 -e '/KLDR_ERR_[^_]*_BASE/d' \ 239 kLdr.h > $@240 239 ../include/k/kLdr.h > $@ 240 -
trunk/kStuff/kLdr/kLdr-os2.c
r3537 r3570 33 33 #include <os2.h> 34 34 35 #include <k Ldr.h>35 #include <k/kLdr.h> 36 36 #include "kLdrInternal.h" 37 37 #include "kLdrHlp.h" -
trunk/kStuff/kLdr/kLdr-win.c
r3537 r3570 32 32 #include <Windows.h> 33 33 34 #include <k Ldr.h>34 #include <k/kLdr.h> 35 35 #include "kLdrInternal.h" 36 36 #include "kLdrHlp.h" -
trunk/kStuff/kLdr/kLdr.c
r3537 r3570 51 51 * Header Files * 52 52 *******************************************************************************/ 53 #include "kLdr.h"53 #include <k/kLdr.h> 54 54 #include "kLdrHlp.h" 55 55 #include "kLdrInternal.h" -
trunk/kStuff/kLdr/kLdrDyld.c
r3569 r3570 29 29 * Header Files * 30 30 *******************************************************************************/ 31 #include <k Ldr.h>31 #include <k/kLdr.h> 32 32 #include "kLdrHlp.h" 33 33 #include "kLdrInternal.h" -
trunk/kStuff/kLdr/kLdrDyldFind.c
r3567 r3570 51 51 #endif 52 52 53 #include <k Ldr.h>53 #include <k/kLdr.h> 54 54 #include "kLdrHlp.h" 55 55 #include "kLdrInternal.h" -
trunk/kStuff/kLdr/kLdrDyldMod.c
r3569 r3570 30 30 * Header Files * 31 31 *******************************************************************************/ 32 #include <k Ldr.h>32 #include <k/kLdr.h> 33 33 #include "kLdrInternal.h" 34 34 #include "kLdrHlp.h" -
trunk/kStuff/kLdr/kLdrDyldOS.c
r3567 r3570 39 39 #endif 40 40 41 #include <k Ldr.h>41 #include <k/kLdr.h> 42 42 #include "kLdrHlp.h" 43 43 #include "kLdrInternal.h" -
trunk/kStuff/kLdr/kLdrErr.c
r3537 r3570 29 29 * Header Files * 30 30 *******************************************************************************/ 31 #include <k Ldr.h>31 #include <k/kLdr.h> 32 32 33 33 34 34 /** 35 * Translate the error code into a string containing 36 * the error constant. 37 * 35 * Translate the error code into a string containing 36 * the error constant. 37 * 38 38 * @returns Read only string with the constant name. 39 39 * @param rc The error code. -
trunk/kStuff/kLdr/kLdrExeStub-os2.c
r3537 r3570 29 29 * Header Files * 30 30 *******************************************************************************/ 31 #include <k Ldr.h>31 #include <k/kLdr.h> 32 32 #include <os2.h> 33 33 -
trunk/kStuff/kLdr/kLdrExeStub-win.c
r3537 r3570 29 29 * Header Files * 30 30 *******************************************************************************/ 31 #include <k Ldr.h>31 #include <k/kLdr.h> 32 32 #include <Windows.h> 33 33 -
trunk/kStuff/kLdr/kLdrHlp-gcc.c
r3567 r3570 25 25 */ 26 26 27 #include <k Ldr.h>27 #include <k/kLdr.h> 28 28 #include "kLdrHlp.h" 29 29 -
trunk/kStuff/kLdr/kLdrHlp.c
r3567 r3570 39 39 #endif 40 40 41 #include <k Ldr.h>41 #include <k/kLdr.h> 42 42 #include "kLdrHlp.h" 43 43 -
trunk/kStuff/kLdr/kLdrHlpHeap.c
r3569 r3570 40 40 #endif 41 41 42 #include <k Ldr.h>42 #include <k/kLdr.h> 43 43 #include "kLdrHlp.h" 44 44 -
trunk/kStuff/kLdr/kLdrHlpMem.c
r3569 r3570 39 39 #endif 40 40 41 #include <k Ldr.h>41 #include <k/kLdr.h> 42 42 #include "kLdrHlp.h" 43 43 -
trunk/kStuff/kLdr/kLdrHlpPath.c
r3537 r3570 29 29 * Header Files * 30 30 *******************************************************************************/ 31 #include <k Ldr.h>31 #include <k/kLdr.h> 32 32 #include "kLdrHlp.h" 33 33 -
trunk/kStuff/kLdr/kLdrHlpSem.c
r3537 r3570 39 39 #endif 40 40 41 #include <k Ldr.h>41 #include <k/kLdr.h> 42 42 #include "kLdrHlp.h" 43 43 -
trunk/kStuff/kLdr/kLdrHlpStr.c
r3567 r3570 29 29 * Header Files * 30 30 *******************************************************************************/ 31 #include <k Ldr.h>31 #include <k/kLdr.h> 32 32 #include "kLdrHlp.h" 33 33 -
trunk/kStuff/kLdr/kLdrMisc.c
r3537 r3570 29 29 * Header Files * 30 30 *******************************************************************************/ 31 #include "kLdr.h"31 #include <k/kLdr.h> 32 32 #include "kLdrHlp.h" 33 33 #include "kLdrInternal.h" -
trunk/kStuff/kLdr/kLdrMod.c
r3569 r3570 29 29 * Header Files * 30 30 *******************************************************************************/ 31 #include <k Ldr.h>31 #include <k/kLdr.h> 32 32 #include "kLdrHlp.h" 33 33 #include "kLdrInternal.h" -
trunk/kStuff/kLdr/kLdrModLX.c
r3569 r3570 29 29 * Header Files * 30 30 *******************************************************************************/ 31 #include <k Ldr.h>31 #include <k/kLdr.h> 32 32 #include "kLdrHlp.h" 33 33 #include "kLdrInternal.h" -
trunk/kStuff/kLdr/kLdrModMachO.c
r3569 r3570 29 29 * Header Files * 30 30 *******************************************************************************/ 31 #include <k Ldr.h>31 #include <k/kLdr.h> 32 32 #include "kLdrHlp.h" 33 33 #include "kLdrInternal.h" -
trunk/kStuff/kLdr/kLdrModNative.c
r3569 r3570 29 29 * Header Files * 30 30 *******************************************************************************/ 31 #include <k Ldr.h>31 #include <k/kLdr.h> 32 32 #include "kLdrHlp.h" 33 33 #include "kLdrInternal.h" -
trunk/kStuff/kLdr/kLdrModPE.c
r3569 r3570 29 29 * Header Files * 30 30 *******************************************************************************/ 31 #include <k Ldr.h>31 #include <k/kLdr.h> 32 32 #include "kLdrHlp.h" 33 33 #include "kLdrInternal.h" -
trunk/kStuff/kLdr/kLdrRdr.c
r3567 r3570 29 29 * Header Files * 30 30 *******************************************************************************/ 31 #include <k Ldr.h>31 #include <k/kLdr.h> 32 32 #include "kLdrInternal.h" 33 33 -
trunk/kStuff/kLdr/kLdrRdrFile.c
r3569 r3570 152 152 #endif 153 153 154 #include <k Ldr.h>154 #include <k/kLdr.h> 155 155 #include "kLdrHlp.h" 156 156 -
trunk/kStuff/kLdr/tstkLdrHeap.c
r3537 r3570 29 29 * Header Files * 30 30 *******************************************************************************/ 31 #include <k Ldr.h>31 #include <k/kLdr.h> 32 32 #include "kLdrHlp.h" 33 33 -
trunk/kStuff/kLdr/tstkLdrMod.c
r3567 r3570 29 29 * Header Files * 30 30 *******************************************************************************/ 31 #include <k Ldr.h>31 #include <k/kLdr.h> 32 32 #include <stdarg.h> 33 33 #include <stdio.h>
Note:
See TracChangeset
for help on using the changeset viewer.