SDL_getenv.h
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:1k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* Not all environments have a working getenv()/putenv() */
  2. #if defined(macintosh) || defined(_WIN32_WCE)
  3. #define NEED_SDL_GETENV
  4. #endif
  5. #ifdef NEED_SDL_GETENV
  6. #include "begin_code.h"
  7. /* Set up for C function definitions, even when using C++ */
  8. #ifdef __cplusplus
  9. extern "C" {
  10. #endif
  11. /* Put a variable of the form "name=value" into the environment */
  12. extern DECLSPEC int SDLCALL SDL_putenv(const char *variable);
  13. #define putenv(X)   SDL_putenv(X)
  14. /* Retrieve a variable named "name" from the environment */
  15. extern DECLSPEC char * SDLCALL SDL_getenv(const char *name);
  16. #define getenv(X)     SDL_getenv(X)
  17. /* Ends C function definitions when using C++ */
  18. #ifdef __cplusplus
  19. }
  20. #endif
  21. #include "close_code.h"
  22. #endif /* NEED_GETENV */