mirror of https://github.com/tongzx/nt5src
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.
46 lines
905 B
46 lines
905 B
// Copyright (c) 1997-2001 Microsoft Corporation
|
|
//
|
|
// File: WINSInstallationUnit.h
|
|
//
|
|
// Synopsis: Declares a WINSInstallationUnit
|
|
// This object has the knowledge for installing the
|
|
// WINS service
|
|
//
|
|
// History: 02/06/2001 JeffJon Created
|
|
|
|
#ifndef __CYS_WINSINSTALLATIONUNIT_H
|
|
#define __CYS_WINSINSTALLATIONUNIT_H
|
|
|
|
#include "NetworkServiceInstallationBase.h"
|
|
|
|
class WINSInstallationUnit : public NetworkServiceInstallationBase
|
|
{
|
|
public:
|
|
|
|
// Constructor
|
|
|
|
WINSInstallationUnit();
|
|
|
|
// Destructor
|
|
|
|
virtual
|
|
~WINSInstallationUnit();
|
|
|
|
|
|
// Installation Unit overrides
|
|
|
|
virtual
|
|
InstallationReturnType
|
|
InstallService(HANDLE logfileHandle, HWND hwnd);
|
|
|
|
virtual
|
|
bool
|
|
IsServiceInstalled();
|
|
|
|
virtual
|
|
bool
|
|
GetFinishText(String& message);
|
|
|
|
};
|
|
|
|
#endif // __CYS_WINSINSTALLATIONUNIT_H
|