AipApiManager.h 488 B

12345678910111213141516
  1. #include <string>
  2. #pragma once
  3. #ifdef AIPAPIMANAGER_EXPORTS
  4. #define AIPAPIMANAGER_API __declspec(dllexport)
  5. #else
  6. #define AIPAPIMANAGER_API __declspec(dllimport)
  7. #endif
  8. extern "C" {
  9. AIPAPIMANAGER_API std::string __stdcall AipApiEncrpyt(const char* AEncMessage); //¾Ïȣȭ
  10. AIPAPIMANAGER_API int __stdcall AipApiDecrypt(const char* ADecMessage, char* AEncMessage); //º¹È£È­
  11. AIPAPIMANAGER_API std::string __stdcall AipApiDecrypt2(const char* ADecMessage); //º¹È£È­
  12. }