home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Programmierung / SOURCE.mdf / programm / windows / c / con_32 / win32con.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-04-30  |  462 b   |  19 lines

  1. // public prototypes for WIN32sCON.LIB
  2. // ⌐ 1994 by Michael Staab
  3. #ifdef __cplusplus
  4. extern "C"
  5. {
  6. #endif
  7. // the following three are defined for access to the parsed command line
  8. // from a WinMain function
  9. extern  int       _RTLENTRY _EXPDATA _argc;
  10. extern  char    **_RTLENTRY _EXPDATA _argv;
  11. extern  char    **_RTLENTRY _EXPDATA _environ;
  12.  
  13. extern int WIN32sCON_AutoFinish;
  14. void    WIN32sCON_ForceConsoleInit( void );
  15.  
  16. #ifdef __cplusplus
  17. }
  18. #endif
  19.