Changeset 3541 for trunk/kStuff/kDbg/kDbgModPE.cpp
- Timestamp:
- Aug 25, 2007, 5:46:14 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kStuff/kDbg/kDbgModPE.cpp
r3537 r3541 151 151 } 152 152 #endif 153 rc = K DBG_ERR_NOT_IMPLEMENTED;153 rc = KERR_NOT_IMPLEMENTED; 154 154 } 155 155 return rc; … … 215 215 } 216 216 #endif 217 rc = K DBG_ERR_NOT_IMPLEMENTED;217 rc = KERR_NOT_IMPLEMENTED; 218 218 } 219 219 return rc; … … 235 235 //kDbgAssertMsgFailed(("SymInitialize failed: Err=%d rc=%Rrc\n", Err, rc)); 236 236 //return rc; 237 return KDBG_ERR_NOT_IMPLEMENTED; 238 } 239 240 241 /** 242 * Methods for a PE module. 243 */ 244 static const KDBGMODOPS g_kDbgModPeOps = 245 { 246 "PE", 247 kDbgModPeClose, 248 kDbgModPeQuerySymbol, 249 kDbgModPeQueryLine 250 }; 237 return KERR_NOT_IMPLEMENTED; 238 } 251 239 252 240 … … 286 274 */ 287 275 PKDBGMODPE pModPe = (PKDBGMODPE)kDbgHlpAlloc(KDBG_OFFSETOF(KDBGMODPE, aSections[FHdr.NumberOfSections + 2])); 288 kDbgAssertReturn(pModPe, K DBG_ERR_NO_MEMORY);276 kDbgAssertReturn(pModPe, KERR_NO_MEMORY); 289 277 pModPe->Core.u32Magic = KDBGMOD_MAGIC; 290 278 pModPe->Core.pOps = &g_kDbgModPeOps; … … 368 356 } 369 357 #endif 370 rc = K DBG_ERR_NOT_IMPLEMENTED;358 rc = KERR_NOT_IMPLEMENTED; 371 359 } 372 360 else … … 377 365 } 378 366 367 368 /** 369 * Methods for a PE module. 370 */ 371 const KDBGMODOPS g_kDbgModPeOps = 372 { 373 "PE", 374 kDbgModPeClose, 375 kDbgModPeQuerySymbol, 376 kDbgModPeQueryLine 377 }; 378 379 380
Note:
See TracChangeset
for help on using the changeset viewer.