env.h 329 B

12345678910111213
  1. #ifndef ENV_H
  2. #define ENV_H
  3. TCHAR *copy_environment_block(TCHAR *);
  4. TCHAR *useful_environment(TCHAR *);
  5. TCHAR *expand_environment_string(TCHAR *);
  6. int set_environment_block(TCHAR *);
  7. int clear_environment();
  8. int duplicate_environment(TCHAR *);
  9. int test_environment(TCHAR *);
  10. void duplicate_environment_strings(TCHAR *);
  11. #endif