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.
27 lines
619 B
27 lines
619 B
//+-------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
//
|
|
// Copyright (C) Microsoft Corporation, 2000
|
|
//
|
|
// File: aucpl.h
|
|
//
|
|
//--------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
STDAPI_(void) DllAddRef(void);
|
|
STDAPI_(void) DllRelease(void);
|
|
|
|
extern HINSTANCE g_hInstance;
|
|
|
|
class AUSetup {
|
|
public:
|
|
HRESULT m_SetupNewAU(void);
|
|
private:
|
|
static const LPCTSTR mc_WUFilesToDelete[] ;
|
|
static const LPCTSTR mc_WUDirsToDelete[];
|
|
void mi_CleanUpWUDir();
|
|
HRESULT mi_CreateAUService(BOOL fStandalone);
|
|
// BOOL m_IsWin2K();
|
|
};
|