Updated /pid plugin help

This commit is contained in:
James Booth
2016-02-18 22:02:22 +00:00
parent 9f5a7bee05
commit 7796e8df21

View File

@@ -18,5 +18,10 @@ cmd_pid(char **args)
void
prof_init(const char * const version, const char * const status)
{
prof_register_command("/pid", 0, 0, "/pid", "Get process ID", "Get process ID", cmd_pid);
const char *synopsis[] = { "/pid", NULL };
const char *description = "Show process ID and parent Process ID in the console window.";
const char *args[][2] = { { NULL, NULL } };
const char *examples[] = { NULL };
prof_register_command("/pid", 0, 0, synopsis, description, args, examples, cmd_pid);
}