env.h 407 B

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