Ignore:
Timestamp:
10/12/13 14:56:55 (10 years ago)
Author:
nit
Message:

[tithek] add titheklog

File:
1 edited

Legend:

Unmodified
Added
Removed
  • titan/plugins/tithek/tithek_header.h

    r24002 r24234  
    11#ifndef TITHEK_HEADER_H
    22#define TITHEK_HEADER_H
     3
     4void titheklog(int debuglevel, char* name1, char* name2, char* content)
     5{
     6        char* tmpstr = NULL;
     7       
     8        if(debuglevel != 99) return;
     9
     10        tmpstr = ostrcat(name1, name2, 0, 0);
     11        writesys(tmpstr, content, 0);
     12        free(tmpstr);
     13}
    314
    415void screentithekplay(char* titheklink, char* title, int first);
Note: See TracChangeset for help on using the changeset viewer.