home *** CD-ROM | disk | FTP | other *** search
/ PC-Online 1998 February / PCOnline_02_1998.iso / filesbbs / win3x / pgpjn.exe / JNSOURCE.ZIP / WINEXEJN.H < prev   
Text File  |  1995-12-02  |  533b  |  22 lines

  1. //    WINEXEJN.H
  2. //
  3. //    Execute another application and wait until it completes.
  4. //
  5. //    Adapted by John Navas from code made available by Microsoft.
  6.  
  7. // return values
  8. #define RAN_OK            (0)
  9. #define NOT_FOUND        (-1)
  10. #define INVALID_NAME    (-2)
  11. #define SOME_ERROR        (-3)
  12.  
  13. int                                        // return value
  14. WinExeJN(
  15. const char* pszPath,                    // pathname of program to execute
  16. const char* pszParams,                    // command line parameters
  17. const char* pszCWD,                        // working directory
  18. UINT fiCmdShow                            // window state
  19. );
  20.  
  21. //    WINEXEJN.H
  22.