#pragma once #include using namespace std; #ifdef MYDECODEFUNC_EXPORTS #define MYDECODEFUNC_API __declspec(dllexport) #else #define MYDECODEFUNC_API __declspec(dllimport) #endif /************************************************************************/ /* 加密() */ /************************************************************************/ MYDECODEFUNC_API CString EncryptionContent(CString content); /************************************************************************/ /* 网页合成数据 */ /************************************************************************/ MYDECODEFUNC_API CString MarkHttpData(); /************************************************************************/ /* http header合成数据 */ /************************************************************************/ MYDECODEFUNC_API CString MarkHttpHeaderData();