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
626 B

  1. /*++
  2. Copyright (c) 1994 Microsoft Corporation
  3. Module Name:
  4. Repl.h
  5. Abstract:
  6. Author:
  7. Arthur Hanson (arth) Dec 07, 1994
  8. Environment:
  9. Revision History:
  10. --*/
  11. #ifndef _LLS_REPL_H
  12. #define _LLS_REPL_H
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16. //
  17. // Maximum number of records we will send over to the server at once.
  18. //
  19. #define MAX_REPL_SIZE 25
  20. #define REPL_VERSION 0x0102
  21. extern HANDLE ReplicationEvent;
  22. NTSTATUS ReplicationInit();
  23. VOID ReplicationManager ( IN PVOID ThreadParameter );
  24. VOID ReplicationTimeSet ( );
  25. #ifdef __cplusplus
  26. }
  27. #endif
  28. #endif