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.

47 lines
819 B

  1. //+--------------------------------------------------------------------------
  2. //
  3. // Copyright (c) 1997-1999 Microsoft Corporation
  4. //
  5. // File: postsrv.h
  6. //
  7. // Contents:
  8. //
  9. // History:
  10. //
  11. //---------------------------------------------------------------------------
  12. #ifndef __POSTSERVICE_H__
  13. #define __POSTSERVICE_H__
  14. #include "server.h"
  15. #include "vss.h"
  16. #include "vswriter.h"
  17. #include "jetwriter.h"
  18. class CTlsVssJetWriter : public CVssJetWriter
  19. {
  20. public:
  21. CTlsVssJetWriter();
  22. ~CTlsVssJetWriter();
  23. HRESULT Initialize();
  24. void Uninitialize();
  25. virtual bool STDMETHODCALLTYPE OnIdentify(IN IVssCreateWriterMetadata *pMetadata);
  26. };
  27. #ifdef __cplusplus
  28. extern "C" {
  29. #endif
  30. DWORD
  31. PostServiceInit();
  32. #ifdef __cplusplus
  33. }
  34. #endif
  35. #endif