Changeset 3546 for trunk/kStuff/include/k/kRdr.h
- Timestamp:
- Aug 25, 2007, 7:28:50 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kStuff/include/k/kRdr.h
r3543 r3546 31 31 #include <k/kTypes.h> 32 32 33 #ifdef __cplusplus34 extern "C" {35 #endif36 37 38 33 /** @defgroup grp_kRdr kRdr - The File Provider 39 34 * @{ */ … … 43 38 /** Pointer to a file provider instance pointer. */ 44 39 typedef struct KRDR **PPKRDR; 40 41 #ifdef __cplusplus 42 extern "C" { 43 #endif 45 44 46 45 int kRdrOpen(PPKRDR ppRdr, const char *pszFilename); … … 56 55 KSIZE kRdrPageSize(PKRDR pRdr); 57 56 #ifndef ___k_kLdr___ 58 int kRdrMap( PKRDR pRdr, void **ppvBase, KU32 cSegments, PCKLDRSEG paSegments, unsignedfFixed);57 int kRdrMap( PKRDR pRdr, void **ppvBase, KU32 cSegments, PCKLDRSEG paSegments, KBOOL fFixed); 59 58 int kRdrRefresh( PKRDR pRdr, void *pvBase, KU32 cSegments, PCKLDRSEG paSegments); 60 int kRdrProtect( PKRDR pRdr, void *pvBase, KU32 cSegments, PCKLDRSEG paSegments, unsignedfUnprotectOrProtect);59 int kRdrProtect( PKRDR pRdr, void *pvBase, KU32 cSegments, PCKLDRSEG paSegments, KBOOL fUnprotectOrProtect); 61 60 int kRdrUnmap( PKRDR pRdr, void *pvBase, KU32 cSegments, PCKLDRSEG paSegments); 62 61 #endif /* !___k_kLdr___ */ 63 62 void kRdrDone( PKRDR pRdr); 64 65 /** @} */66 63 67 64 #ifdef __cplusplus … … 69 66 #endif 70 67 68 /** @} */ 69 71 70 #endif 72 71
Note:
See TracChangeset
for help on using the changeset viewer.