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.
20 lines
409 B
20 lines
409 B
#ifndef _SETUP_H_
|
|
#define _SETUP_H_
|
|
|
|
class INETSTP_OPTION: public OPTION_STATE
|
|
{
|
|
public:
|
|
P_SetupINetStp m_pSetupINetStp;
|
|
P_RemoveINetStp m_pRemoveINetStp;
|
|
|
|
INETSTP_OPTION( MACHINE *pMachine );
|
|
virtual INT Install();
|
|
virtual INT Remove();
|
|
INT RemoveFiles();
|
|
void ResetOption();
|
|
virtual void GetBatchInstallMode( CString strInfName );
|
|
};
|
|
|
|
#endif // _SETUP_H_
|
|
|
|
|