MyFunction.h 901 B

123456789101112131415161718192021222324252627282930
  1. #pragma once
  2. #include <afxwin.h>
  3. using namespace std;
  4. #ifdef MYDECODEFUNC_EXPORTS
  5. #define MYDECODEFUNC_API __declspec(dllexport)
  6. #else
  7. #define MYDECODEFUNC_API __declspec(dllimport)
  8. #endif
  9. /************************************************************************/
  10. /* 加密() */
  11. /************************************************************************/
  12. MYDECODEFUNC_API CString EncryptionContent(CString content);
  13. /************************************************************************/
  14. /* 网页合成数据 */
  15. /************************************************************************/
  16. MYDECODEFUNC_API CString MarkHttpData();
  17. /************************************************************************/
  18. /* http header合成数据 */
  19. /************************************************************************/
  20. MYDECODEFUNC_API CString MarkHttpHeaderData();