Leaked source code of windows server 2003
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.

36 lines
1.1 KiB

  1. // --------------------------------------------------------------------------
  2. // Module Name: ThemeService.h
  3. //
  4. // Copyright (c) 2001, Microsoft Corporation
  5. //
  6. // This file contains functions that are called from the shell services DLL
  7. // to interact with the theme service.
  8. //
  9. // History: 2001-01-02 vtan created
  10. // --------------------------------------------------------------------------
  11. #ifndef _ThemeService_
  12. #define _ThemeService_
  13. // --------------------------------------------------------------------------
  14. // CThemeService
  15. //
  16. // Purpose: Class that implements entry points for the common shell
  17. // service to invoke theme service functionality.
  18. //
  19. // History: 2001-01-02 vtan created
  20. // --------------------------------------------------------------------------
  21. class CThemeService
  22. {
  23. public:
  24. static BOOL Main (DWORD dwReason);
  25. static NTSTATUS RegisterServer (void);
  26. static NTSTATUS UnregisterServer (void);
  27. private:
  28. static NTSTATUS _ProcessAttach();
  29. };
  30. #endif /* _ThemeService_ */