mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
658 B
28 lines
658 B
//*********************************************************************
|
|
//* Microsoft Windows **
|
|
//* Copyright(c) Microsoft Corp., 1994-1995 **
|
|
//*********************************************************************
|
|
|
|
//
|
|
// WEXTRACT.H - global header file for self-extracting EXE launcher
|
|
//
|
|
//
|
|
|
|
// HISTORY:
|
|
//
|
|
// 6/1/95 jeremys Created.
|
|
//
|
|
|
|
|
|
#ifndef _WEXTRACT_H_
|
|
#define _WEXTRACT_H_
|
|
|
|
// return codes from self-extracting EXE
|
|
|
|
#define RC_DO_NOTHING 0
|
|
#define RC_DELETE_FILE 1
|
|
#define RC_RESTART_WINDOWS 2
|
|
#define RC_DELETE_FILE_AND_RESTART 3
|
|
|
|
#endif // _WEXTRACT_H_
|
|
|