mirror of http://git.nssm.cc/nssm/nssm.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
396 B
C
14 lines
396 B
C
#ifndef ENV_H
|
|
#define ENV_H
|
|
|
|
TCHAR *useful_environment(TCHAR *);
|
|
TCHAR *expand_environment_string(TCHAR *);
|
|
int set_environment_block(TCHAR *);
|
|
int clear_environment();
|
|
int duplicate_environment(TCHAR *);
|
|
int format_environment(TCHAR *, unsigned long, TCHAR **, unsigned long *);
|
|
int unformat_environment(TCHAR *, unsigned long, TCHAR **, unsigned long *);
|
|
int test_environment(TCHAR *);
|
|
|
|
#endif
|