Source code of Windows XP (NT5)
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

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (C) Microsoft Corporation, 2000
  6. //
  7. // File: aucpl.h
  8. //
  9. //--------------------------------------------------------------------------
  10. #pragma once
  11. STDAPI_(void) DllAddRef(void);
  12. STDAPI_(void) DllRelease(void);
  13. extern HINSTANCE g_hInstance;
  14. class AUSetup {
  15. public:
  16. HRESULT m_SetupNewAU(void);
  17. private:
  18. static const LPCTSTR mc_WUFilesToDelete[] ;
  19. static const LPCTSTR mc_WUDirsToDelete[];
  20. void mi_CleanUpWUDir();
  21. HRESULT mi_CreateAUService(BOOL fStandalone);
  22. // BOOL m_IsWin2K();
  23. };