git.stg.codes
/
stg.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Public interfaces: part 4
[stg.git]
/
libs
/
scriptexecuter
/
include
/
stg
/
scriptexecuter.h
1
#ifndef SCRIPT_EXECUTER_H
2
#define SCRIPT_EXECUTER_H
3
4
#ifdef __cplusplus
5
extern "C" {
6
#endif
7
8
int ScriptExec(const char * str);
9
#if defined(LINUX) || defined(DARWIN)
10
void Executer(int msgID, pid_t pid, char * procName);
11
#else
12
void Executer(int msgID, pid_t pid);
13
#endif
14
15
#ifdef __cplusplus
16
}
17
#endif
18
19
#endif