11 lines
219 B
C
11 lines
219 B
C
|
#ifndef _TASKINFO_H
|
||
|
#define _TASKINFO_H
|
||
|
|
||
|
char *get_sysinfo(void); /* Get System Info */
|
||
|
char *get_lastcallercount(void); /* Get Lastcallers count */
|
||
|
char *get_lastcallerrec(int); /* Get Lastcaller record */
|
||
|
|
||
|
|
||
|
#endif
|
||
|
|