[go: up one dir, main page]

Menu

[897c37]: / modules / debug.lpc  Maximize  Restore  History

Download this file

43 lines (31 with data), 437 Bytes

#if 0
/*
 *
 * LPC / C interface
 * 
 * Debugger and other supporting functions
 *
 */
#endif

int handle;

reset()
{
    int x;

    handle = load_shared_object("debug.so");
}

query_destruct()
{
    unload_shared_object(handle);
}


int function_exists(object ob, string func)
{
}

string disassemble(object ob, string func)
{
}

string next(object ob, string func, int instr)
{
}

string step(object ob, string func, int instr)
{
}