123456789101112131415161718192021222324252627282930 |
- #pragma once
- #include <afxwin.h>
- 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();
|