Implement 40250 classic client port

This commit is contained in:
shenlei
2026-09-01 18:49:28 +09:00
parent 2277b1dd60
commit 8f61990a83
481 changed files with 169826 additions and 293 deletions
+22
View File
@@ -0,0 +1,22 @@
#ifndef _CRYPTOPPLIBLINK_H_
#define _CRYPTOPPLIBLINK_H_
#ifdef _DLL
#ifndef CRYPTOPP_IMPORTS
#define CRYPTOPP_IMPORTS
#endif
#endif
#if defined(CRYPTOPP_IMPORTS)
#include "dll.h"
#else
#ifdef _WIN32
#ifdef _DEBUG
#pragma comment( lib, "Cryptopp_lib_debug.lib" )
#else
#pragma comment( lib, "Cryptopp_lib_release.lib" )
#endif
#endif
#endif
#endif /* !_CRYPTOPPLIBLINK_H_ */