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.

33 lines
1.0 KiB

  1. // --------------------------------------------------------------------------
  2. // Module Name: BAMService.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 FUS service.
  8. //
  9. // History: 2001-01-02 vtan created
  10. // --------------------------------------------------------------------------
  11. #ifndef _BAMService_
  12. #define _BAMService_
  13. // --------------------------------------------------------------------------
  14. // CThemeService
  15. //
  16. // Purpose: Class that implements entry points for the common shell
  17. // service to invoke BAM service functionality.
  18. //
  19. // History: 2001-01-02 vtan created
  20. // --------------------------------------------------------------------------
  21. class CBAMService
  22. {
  23. public:
  24. static NTSTATUS Main (DWORD dwReason);
  25. static NTSTATUS RegisterServer (void);
  26. static NTSTATUS UnregisterServer (void);
  27. };
  28. #endif /* _BAMService_ */