lyfzLoadLibrary.cpp 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  1. #include "StdAfx.h"
  2. #include "lyfzLoadLibrary.h"
  3. namespace lyfzLibrary
  4. {
  5. CString g_strCloundHost = _T("http://121.42.170.207"); // 云服务器主机地址;
  6. HMODULE g_hCloudSelectionLib = NULL;
  7. API_uploadorder g_uploadorder = NULL;
  8. API_uploadgoodinfo g_uploadgoodinfo = NULL;
  9. API_uploadimg g_uploadimg = NULL;
  10. API_getcloundresult g_getcloundresult = NULL;
  11. BOOL LoadCloudSelectionLib()
  12. {
  13. if ( g_hCloudSelectionLib == NULL )
  14. g_hCloudSelectionLib = LoadLibrary(_T("lyfzCloudSelection.dll"));
  15. if ( !g_hCloudSelectionLib )
  16. {
  17. //AfxMessageBox(_T("打开云链接库失败"));
  18. return FALSE;
  19. }
  20. g_uploadorder = (API_uploadorder)GetProcAddress(g_hCloudSelectionLib, "uploadorder");
  21. if ( g_uploadorder == NULL )
  22. {
  23. //AfxMessageBox(_T("获取生成云接口失败"));
  24. return FALSE;
  25. }
  26. g_uploadgoodinfo = (API_uploadgoodinfo)GetProcAddress(g_hCloudSelectionLib, "uploadgoodinfo");
  27. if ( g_uploadgoodinfo == NULL )
  28. {
  29. //AfxMessageBox(_T("获取生成云接口失败"));
  30. return FALSE;
  31. }
  32. g_uploadimg = (API_uploadimg)GetProcAddress(g_hCloudSelectionLib, "uploadImg");
  33. if ( g_uploadimg == NULL )
  34. {
  35. //AfxMessageBox(_T("获取生成云接口失败"));
  36. return FALSE;
  37. }
  38. g_getcloundresult = (API_getcloundresult)GetProcAddress(g_hCloudSelectionLib, "getresult");
  39. if ( g_getcloundresult == NULL )
  40. {
  41. return FALSE;
  42. }
  43. return TRUE;
  44. }
  45. void FreeCloudSelectionLib()
  46. {
  47. if ( g_hCloudSelectionLib )
  48. {
  49. if ( FreeLibrary(g_hCloudSelectionLib) )
  50. {
  51. g_hCloudSelectionLib = NULL;
  52. g_uploadorder = NULL;
  53. g_uploadgoodinfo = NULL;
  54. g_uploadimg = NULL;
  55. g_getcloundresult = NULL;
  56. }
  57. }
  58. }
  59. //////////////////////////////////////////////////////////////////////////
  60. HMODULE g_hQRCodeLibrary = NULL;
  61. API_GetQRCodeImg g_GetQRCodeImg = NULL;
  62. API_ShowQRCodeBitmap g_ShowQRCodeBitmap = NULL;
  63. API_ShowQRCodeOnDC g_ShowQRCodeOnDC = NULL;
  64. BOOL LoadQRCodeLibrary()
  65. {
  66. if ( g_hQRCodeLibrary == NULL )
  67. {
  68. g_hQRCodeLibrary = ( HMODULE )LoadLibrary(_T("QRCode.dll"));
  69. if ( g_hQRCodeLibrary == NULL )
  70. return FALSE;
  71. }
  72. g_GetQRCodeImg = (API_GetQRCodeImg)GetProcAddress(g_hQRCodeLibrary, "GetQRCodeBitmap");
  73. if ( g_GetQRCodeImg == NULL )
  74. {
  75. FreeLibrary(g_hQRCodeLibrary);
  76. return FALSE;
  77. }
  78. g_ShowQRCodeBitmap = (API_ShowQRCodeBitmap)GetProcAddress(g_hQRCodeLibrary, "ShowQRCodeBitmap");
  79. if ( g_ShowQRCodeBitmap == NULL )
  80. {
  81. FreeLibrary(g_hQRCodeLibrary);
  82. return FALSE;
  83. }
  84. g_ShowQRCodeOnDC = (API_ShowQRCodeOnDC)GetProcAddress(g_hQRCodeLibrary, "ShowQRCodeOnDC");
  85. if ( g_ShowQRCodeOnDC == NULL )
  86. {
  87. FreeLibrary(g_hQRCodeLibrary);
  88. return FALSE;
  89. }
  90. return TRUE;
  91. }
  92. void FreeQRCodeLibrary()
  93. {
  94. if ( g_hQRCodeLibrary )
  95. {
  96. if ( FreeLibrary(g_hQRCodeLibrary) )
  97. {
  98. g_hQRCodeLibrary = NULL;
  99. g_GetQRCodeImg = NULL;
  100. g_ShowQRCodeBitmap = NULL;
  101. }
  102. }
  103. }
  104. //////////////////////////////////////////////////////////////////////////
  105. // 微信模块;
  106. HMODULE g_hWeiXinLibaray = NULL;
  107. API_ShowWeiXingDialog g_PtrShowWeiXinDialog = NULL;
  108. API_ShowWeiXingDialog g_PtrShowWXMsgconfigDialog = NULL;
  109. API_ShowWeiXingDialog g_PtrShowWXMsgRcordDialog = NULL;
  110. API_ShowSoftRunTimeDialog g_PtrShowSoftRunTimeDialog = NULL;
  111. BOOL LoadWeiXinLibaray()
  112. {
  113. if ( g_hWeiXinLibaray == NULL )
  114. {
  115. g_hWeiXinLibaray = (HMODULE)LoadLibrary(_T("lyfzWeiXin"));
  116. if (!g_hWeiXinLibaray)
  117. return FALSE;
  118. }
  119. g_PtrShowWeiXinDialog = (API_ShowWeiXingDialog) GetProcAddress(g_hWeiXinLibaray, "ShowWeiXinDialog");
  120. if ( !g_PtrShowWeiXinDialog )
  121. {
  122. FreeLibrary(g_hWeiXinLibaray);
  123. return FALSE;
  124. }
  125. g_PtrShowWXMsgconfigDialog = (API_ShowWeiXingDialog) GetProcAddress(g_hWeiXinLibaray, "ShowWXMsgConfigDialog");
  126. if ( !g_PtrShowWXMsgconfigDialog )
  127. {
  128. FreeLibrary(g_hWeiXinLibaray);
  129. return FALSE;
  130. }
  131. g_PtrShowWXMsgRcordDialog = (API_ShowWeiXingDialog) GetProcAddress(g_hWeiXinLibaray, "ShowWXMsgRecordDialog");
  132. if ( !g_PtrShowWXMsgRcordDialog )
  133. {
  134. FreeLibrary(g_hWeiXinLibaray);
  135. return FALSE;
  136. }
  137. g_PtrShowSoftRunTimeDialog = (API_ShowSoftRunTimeDialog) GetProcAddress(g_hWeiXinLibaray, "ShowSoftRunTimeDialog");
  138. if ( !g_PtrShowSoftRunTimeDialog )
  139. {
  140. FreeLibrary(g_hWeiXinLibaray);
  141. return FALSE;
  142. }
  143. return TRUE;
  144. }
  145. void FreeWeiXinLibaray()
  146. {
  147. if ( g_hWeiXinLibaray )
  148. {
  149. if ( FreeLibrary(g_hWeiXinLibaray) )
  150. {
  151. g_hWeiXinLibaray = NULL;
  152. g_PtrShowWeiXinDialog = NULL;
  153. g_PtrShowWXMsgconfigDialog = NULL;
  154. g_PtrShowWXMsgRcordDialog = NULL;
  155. g_PtrShowSoftRunTimeDialog = NULL;
  156. }
  157. }
  158. }
  159. //////////////////////////////////////////////////////////////////////////
  160. // 微信模块;
  161. HMODULE g_hMD5Libaray = NULL;
  162. API_GetStringMD5 g_PtrGetStringMD5 = NULL;
  163. API_GetStringMD5W g_PtrGetStringMD5W = NULL;
  164. API_GetFileMD5 g_PtrGetFileMD5 = NULL;
  165. API_GetFileMD5W g_PtrGetFileMD5W = NULL;
  166. BOOL LoadMD5Libaray()
  167. {
  168. if ( g_hMD5Libaray == NULL )
  169. {
  170. g_hMD5Libaray = (HMODULE)LoadLibrary(_T("lyfzMD5.dll"));
  171. if (!g_hMD5Libaray)
  172. return FALSE;
  173. }
  174. g_PtrGetStringMD5 = (API_GetStringMD5) GetProcAddress(g_hMD5Libaray, "GetStringMD5");
  175. if ( !g_PtrGetStringMD5 )
  176. {
  177. FreeLibrary(g_hMD5Libaray);
  178. return FALSE;
  179. }
  180. g_PtrGetStringMD5W = (API_GetStringMD5W) GetProcAddress(g_hMD5Libaray, "GetStringMD5W");
  181. if ( !g_PtrGetStringMD5W )
  182. {
  183. FreeLibrary(g_hMD5Libaray);
  184. return FALSE;
  185. }
  186. g_PtrGetFileMD5 = (API_GetFileMD5) GetProcAddress(g_hMD5Libaray, "GetFileMD5");
  187. if ( !g_PtrGetFileMD5 )
  188. {
  189. FreeLibrary(g_hMD5Libaray);
  190. return FALSE;
  191. }
  192. g_PtrGetFileMD5W = (API_GetFileMD5W) GetProcAddress(g_hMD5Libaray, "GetFileMD5W");
  193. if ( !g_PtrGetFileMD5W )
  194. {
  195. FreeLibrary(g_hMD5Libaray);
  196. return FALSE;
  197. }
  198. return TRUE;
  199. }
  200. void FreeMD5Libaray()
  201. {
  202. if ( g_hMD5Libaray )
  203. {
  204. if ( FreeLibrary(g_hMD5Libaray) )
  205. {
  206. g_hMD5Libaray = NULL;
  207. g_PtrGetStringMD5 = NULL;
  208. g_PtrGetStringMD5W = NULL;
  209. g_PtrGetFileMD5 = NULL;
  210. g_PtrGetFileMD5W = NULL;
  211. }
  212. }
  213. }
  214. };