env.h 244 B

1234567891011
  1. #ifndef ENV_H
  2. #define ENV_H
  3. TCHAR *useful_environment(TCHAR *);
  4. TCHAR *expand_environment_string(TCHAR *);
  5. int set_environment_block(TCHAR *);
  6. int clear_environment();
  7. int duplicate_environment(TCHAR *);
  8. int test_environment(TCHAR *);
  9. #endif