Skip to content

Commit

Permalink
Fixed help for a couple of functions, corrent names of some registry …
Browse files Browse the repository at this point in the history
…functions
  • Loading branch information
tyranid committed Dec 10, 2006
1 parent a777e43 commit 12bf4ab
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
12 changes: 4 additions & 8 deletions functions.txt
Original file line number Diff line number Diff line change
Expand Up @@ -463,14 +463,10 @@ sceRegGetKeysNum|REGHANDLE hd, int *num|int
sceRegOpenRegistry|struct RegParam *reg, int mode, REGHANDLE *h|int
sceRegRemoveRegistry|struct RegParam *reg|int
sceRegSetKeyValue|REGHANDLE hd, const char *name, const void *buf, SceSize size|int
sceReg_0CAE832B|REGHANDLE hd|int
sceReg_0D69BF40|REGHANDLE hd|int
sceReg_1D8A762E|REGHANDLE h, const char *name, int mode, REGHANDLE *hd|int
sceReg_4CA16893|REGHANDLE h, const char *name|int
sceReg_driver_0CAE832B|REGHANDLE hd|int
sceReg_driver_0D69BF40|REGHANDLE hd|int
sceReg_driver_1D8A762E|REGHANDLE h, const char *name, int mode, REGHANDLE *hd|int
sceReg_driver_4CA16893|REGHANDLE h, const char *name|int
sceRegCloseCategory|REGHANDLE hd|int
sceRegFlushCategory|REGHANDLE hd|int
sceRegOpenCategory|REGHANDLE h, const char *name, int mode, REGHANDLE *hd|int
sceRegRemoveCategory|REGHANDLE h, const char *name|int
sceRtcCheckValid|const pspTime* date|int
sceRtcCompareTick|const u64* tick1, const u64* tick2|int
sceRtcConvertLocalTimeToUTC|const u64* tickLocal, u64* tickUTC|int
Expand Down
6 changes: 4 additions & 2 deletions main.C
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,10 @@ static struct ArgEntry cmd_options[] = {
" : Specify the offset of the data section in the file for binary disassembly"},
{"reloc", 'r', ARG_TYPE_INT, ARG_OPT_REQUIRED, (void*) &g_dwBase, 0,
"addr : Relocate the PRX to a different address"},
{"symbols", 'y', ARG_TYPE_INT, ARG_OPT_NONE, (void*) &g_outputMode, OUTPUT_SYMBOLS, NULL},
{"funcs", 'z', ARG_TYPE_STR, ARG_OPT_REQUIRED, (void*) &g_pFuncfile, 0, NULL},
{"symbols", 'y', ARG_TYPE_INT, ARG_OPT_NONE, (void*) &g_outputMode, OUTPUT_SYMBOLS,
"Output a symbol file based on the input file"},
{"funcs", 'z', ARG_TYPE_STR, ARG_OPT_REQUIRED, (void*) &g_pFuncfile, 0,
"Specify a functions file for disassembly"},
};

void DoOutput(OutputLevel level, const char *str)
Expand Down

0 comments on commit 12bf4ab

Please sign in to comment.