Beispiel #1
0
void
psmove_html_trace_array_item_at(int index, char* target, char* value)
{
    tracker_trace_printf("%s[%d]='%s';\n", target, index, value);
}
Beispiel #2
0
void
psmove_html_trace_put_text_var(const char* var, const char* value)
{
    tracker_trace_printf("%s='%s';\n", var, value);
}
Beispiel #3
0
void
psmove_html_trace_put_int_var(const char* var, int value)
{
    tracker_trace_printf("%s=%d;\n", var, value);
}
Beispiel #4
0
void
psmove_html_trace_put_text(const char* text)
{
    tracker_trace_printf("%s\n", text);
}
Beispiel #5
0
void
psmove_html_trace_put_log_entry(const char* type, const char* value)
{
    tracker_trace_printf("log_table.push({type:'%s', value:'%s'});\n", type, value);
}
Beispiel #6
0
void
psmove_html_trace_array_item(char* target, const char* value)
{
    tracker_trace_printf("%s.push('%s');\n", target, value);
}