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
27 lines
535 B
#pragma once
|
|
#include <fstream>
|
|
#include <functional>
|
|
#include <iostream>
|
|
#include <list>
|
|
#include <map>
|
|
#include <memory>
|
|
#include <mutex>
|
|
#include <set>
|
|
#include <sstream>
|
|
#include <string>
|
|
#include <thread>
|
|
#include <vector>
|
|
|
|
//
|
|
#include "i_xsync_udp.hpp"
|
|
#include "ixsync.hpp"
|
|
#define VERSION(main, sub, fix) (main << 16 | sub << 8 | fix << 0)
|
|
#define PC_VERSION VERSION(3, 3, 0)
|
|
|
|
namespace xsync {
|
|
using namespace std;
|
|
|
|
void XsyncInit(I_XSUDPFactory *xsync_udp_factory);
|
|
IXsync *XsyncIns();
|
|
|
|
} // namespace xsync
|