Merge branch 'phoenix' of github.com:InvictusInnovations/fc into phoenix
This commit is contained in:
commit
ee8125050b
3 changed files with 12 additions and 0 deletions
|
|
@ -66,7 +66,11 @@ namespace fc {
|
||||||
static char separator_char;
|
static char separator_char;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
#ifdef _WIN64
|
||||||
|
fwd<boost::filesystem::path,40> _p;
|
||||||
|
#else
|
||||||
fwd<boost::filesystem::path,32> _p;
|
fwd<boost::filesystem::path,32> _p;
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
class directory_iterator {
|
class directory_iterator {
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,11 @@ namespace fc {
|
||||||
~file_mapping();
|
~file_mapping();
|
||||||
private:
|
private:
|
||||||
friend class mapped_region;
|
friend class mapped_region;
|
||||||
|
#ifdef _WIN64
|
||||||
|
fc::fwd<boost::interprocess::file_mapping,0x38> my;
|
||||||
|
#else
|
||||||
fc::fwd<boost::interprocess::file_mapping,0x24> my;
|
fc::fwd<boost::interprocess::file_mapping,0x24> my;
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
class mapped_region {
|
class mapped_region {
|
||||||
|
|
|
||||||
|
|
@ -32,7 +32,11 @@ namespace fc {
|
||||||
private:
|
private:
|
||||||
friend class tcp_server;
|
friend class tcp_server;
|
||||||
class impl;
|
class impl;
|
||||||
|
#ifdef _WIN64
|
||||||
|
fc::fwd<impl,0x68> my;
|
||||||
|
#else
|
||||||
fc::fwd<impl,0x44> my;
|
fc::fwd<impl,0x44> my;
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
typedef std::shared_ptr<tcp_socket> tcp_socket_ptr;
|
typedef std::shared_ptr<tcp_socket> tcp_socket_ptr;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue