mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-04 12:59:39 +08:00
cc05b877a2
first commit acl to github
18 lines
250 B
C++
18 lines
250 B
C++
#pragma once
|
|
#include "acl_cpp_define.hpp"
|
|
|
|
namespace acl
|
|
{
|
|
|
|
/**
|
|
* 在 WIN32 dos 窗口下,如果需要使用套接口操作,
|
|
* 则需要先调用此函数进行初始化
|
|
*/
|
|
ACL_CPP_API void acl_cpp_init(void);
|
|
|
|
#ifdef WIN32
|
|
ACL_CPP_API void open_dos(void);
|
|
#endif
|
|
|
|
}
|