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.

27 lines
535 B

1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
  1. #pragma once
  2. #include <fstream>
  3. #include <functional>
  4. #include <iostream>
  5. #include <list>
  6. #include <map>
  7. #include <memory>
  8. #include <mutex>
  9. #include <set>
  10. #include <sstream>
  11. #include <string>
  12. #include <thread>
  13. #include <vector>
  14. //
  15. #include "i_xsync_udp.hpp"
  16. #include "ixsync.hpp"
  17. #define VERSION(main, sub, fix) (main << 16 | sub << 8 | fix << 0)
  18. #define PC_VERSION VERSION(3, 2, 0)
  19. namespace xsync {
  20. using namespace std;
  21. void XsyncInit(I_XSUDPFactory *xsync_udp_factory);
  22. IXsync *XsyncIns();
  23. } // namespace xsync