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.

30 lines
487 B

  1. #ifndef _WINSWRITER_HPP
  2. #define _WINSWRITER_HPP
  3. #ifdef CPLUSPLUS
  4. extern "C" {
  5. #endif //CPLUSPLUS
  6. #define WINSWRITER_NAME TEXT("WINS Jet Writer")
  7. DWORD _cdecl WinsWriterInit();
  8. DWORD _cdecl WinsWriterTerm();
  9. #ifdef CPLUSPLUS
  10. }
  11. #endif //CPLUSPLUS
  12. // this class could be refrerenced only from C++ code
  13. #ifdef CPLUSPLUS
  14. class CWinsVssJetWriter : public CVssJetWriter
  15. {
  16. public:
  17. HRESULT Initialize();
  18. HRESULT Terminate();
  19. };
  20. #endif //CPLUSPLUS
  21. #endif