16 lines
298 B
C
16 lines
298 B
C
|
|
#ifndef _UTILS_H
|
|
#define _UTILS_H
|
|
|
|
#include "public.h"
|
|
|
|
int killprg(char *prgname,int sig);
|
|
int CreateIdFile(char* pszProgName);
|
|
void stopPrg(char* pszProgName);
|
|
int TestPrgStat(char* pszProgName);
|
|
int DaemonStart();
|
|
int ScanDir(const char *pszDirName, struct dirent ***pstruDirentList);
|
|
|
|
#endif
|
|
|