Commit c1f8cf65 by wuyang.zou

1.添加 FreemudWrapper.dll 包装Dll 的一些加载时输出环境变量相关日志

2.用于加载 sbkpay.dll [ 支付宝/微信 交易]

3.修订版本号: 2.2019.530.1
parent 1f3dff76
No preview for this file type
...@@ -81,6 +81,7 @@ HMODULE GetInstance() ...@@ -81,6 +81,7 @@ HMODULE GetInstance()
} }
//! 校验当前环境变量:case<1>: 当前环境变量不为空: 将DLL动态库添加到当前的环境变量[path]中; //! 校验当前环境变量:case<1>: 当前环境变量不为空: 将DLL动态库添加到当前的环境变量[path]中;
//! 思考在三,担心影响其他应用程序,还是将环境变量加在后面;
if (!dstEnvPath.empty()) { if (!dstEnvPath.empty()) {
ss.str(""); ss.str("");
ss << "Current path env: " << dstEnvPath.c_str() << std::endl; ss << "Current path env: " << dstEnvPath.c_str() << std::endl;
...@@ -91,7 +92,8 @@ HMODULE GetInstance() ...@@ -91,7 +92,8 @@ HMODULE GetInstance()
char conFilePath[MAX_PATH] = { 0 }; char conFilePath[MAX_PATH] = { 0 };
sprintf(conFilePath, "%s%s", mod, SBKPAYCONFIG); sprintf(conFilePath, "%s%s", mod, SBKPAYCONFIG);
printf("SbkPayWrapper: Set config file path: %s\n", conFilePath); printf("SbkPayWrapper: Set config file path: %s\n", conFilePath);
GetPrivateProfileString("ALL", "DLLPATH", mod, dllPath, MAX_PATH, conFilePath); int getConfigRet = GetPrivateProfileString("ALL", "DLLPATH", mod, dllPath, MAX_PATH, conFilePath);
getConfigRet = GetLastError();
printf("SbkPayWrapper: Get dll path: %s\n", dllPath); printf("SbkPayWrapper: Get dll path: %s\n", dllPath);
ss.str(""); ss.str("");
ss <<"FreemudWrapper GetInstance():: mod path: "<< mod <<" ; dllConfigPath: "<<conFilePath <<" ; DLLPATH: "<<dllPath<< std::endl; ss <<"FreemudWrapper GetInstance():: mod path: "<< mod <<" ; dllConfigPath: "<<conFilePath <<" ; DLLPATH: "<<dllPath<< std::endl;
...@@ -107,20 +109,30 @@ HMODULE GetInstance() ...@@ -107,20 +109,30 @@ HMODULE GetInstance()
//! Append moudle path //! Append moudle path
// 优先设置fmClient目录下dll库到环境变量的开头; // 优先设置fmClient目录下dll库到环境变量的开头;
std::string dstEnvNewPath = ""; std::string dstEnvNewPath = "";
if ( strcmp( mod_image_path.c_str(), mod_config_path.c_str() ) == 0 ) { std::string lastCharOfEnv = "";
dstEnvNewPath = mod_image_path ; lastCharOfEnv = dstEnvPath.back();
dstEnvNewPath += ";"; if ( mod_image_path== mod_config_path ) {
dstEnvNewPath += dstEnvPath; if (mod_image_path.length() ) {
dstEnvNewPath = dstEnvPath;
if (strcmp( lastCharOfEnv.c_str(), ";" ) != 0 ) {
dstEnvNewPath += ";";
}
dstEnvNewPath += mod_image_path;
}
} else { } else {
dstEnvNewPath = mod_image_path; dstEnvNewPath = dstEnvPath;
dstEnvNewPath += ";"; if (strcmp( lastCharOfEnv.c_str(), ";" ) != 0 ) {
dstEnvNewPath += mod_config_path; dstEnvNewPath += ";";
dstEnvNewPath += ";"; }
dstEnvNewPath += dstEnvPath; dstEnvNewPath += mod_image_path;
if (mod_config_path.length() ) {
dstEnvNewPath += ";";
dstEnvNewPath += mod_config_path;
}
} }
int setEnvRet = SetEnvironmentVariable("path", dstEnvNewPath.c_str()); int setEnvRet = SetEnvironmentVariable("path", dstEnvNewPath.c_str());
ss.str(""); ss.str("");
ss << "New path env: " << " setEnvRet: "<<setEnvRet << " path env: "<< dstEnvNewPath << std::endl; ss << "New path env: " << " setEnvRet: "<<setEnvRet << " setEnvErrorCase: "<<GetLastError()<< " New Path Env: "<< dstEnvNewPath << std::endl;
OutputDebugString(ss.str().c_str()); OutputDebugString(ss.str().c_str());
netDataLog.addLog(ss.str().c_str()); netDataLog.addLog(ss.str().c_str());
//! 获取DLL动态库的模块句柄; //! 获取DLL动态库的模块句柄;
......
No preview for this file type
...@@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 11.00 ...@@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010 # Visual Studio 2010
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FreemudWrapper", "FreemudWrapper.vcxproj", "{3AE5812C-93BD-444F-9766-DD042450BFF9}" Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FreemudWrapper", "FreemudWrapper.vcxproj", "{3AE5812C-93BD-444F-9766-DD042450BFF9}"
EndProject EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FreemudWrapperLoader", "..\FreemudWrapperLoader\FreemudWrapperLoader.vcxproj", "{DEB441B8-8A5B-48E8-BA8E-44E50CF272A0}" Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FreemudWrapperLoader", "FreemudWrapperLoader\FreemudWrapperLoader.vcxproj", "{DEB441B8-8A5B-48E8-BA8E-44E50CF272A0}"
EndProject EndProject
Global Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution GlobalSection(SolutionConfigurationPlatforms) = preSolution
......
No preview for this file type
// FreemudWrapperLoader.cpp : 定义控制台应用程序的入口点。
/*
* 此文件主要用于:模拟Sim_script 调用 Dll 请求数据;
*/
#include "stdafx.h"
#include <Windows.h>
#include <string>
#include <iostream>
//#ifdef _DEBUG
//#include <vld.h>
//#endif
using namespace std;
/*声明函数指针:用来存放动态库(OMSFreemudAPI)中拉单请求接口(FMGetResponse)*/
typedef int (_stdcall *FUNC_FREEMUDPAY)(const char*, char*);
/*控制台程序入口函数:*/
int _tmain(int argc, _TCHAR* argv[])
{
char *req = "{'reqType':351,'partnerId':1438,'storeId':'1713','stationId':'1','partnerOrderId':'1713120190523122407','fmId':null,'operatorId':'0','transId':0,'businessDate':'20190523','promotionTag':'','transAmount':0,'undiscountAmount':0,'code':null,'products':null,'trans':null}";
FUNC_FREEMUDPAY fpFreemudPay = (FUNC_FREEMUDPAY)GetProcAddress(LoadLibraryA("FreemudWrapper"), "FreemudPay");
char omsOrderMsg[2560]= {0};
int cnt = 5;
while(--cnt) {
/*模拟请求:req*/
fpFreemudPay((char*)req, omsOrderMsg);
Sleep(2000);
}
system("pause");
return 0;
}
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{DEB441B8-8A5B-48E8-BA8E-44E50CF272A0}</ProjectGuid>
<Keyword>Win32Proj</Keyword>
<RootNamespace>FreemudWrapperLoader</RootNamespace>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings">
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<LinkIncremental>true</LinkIncremental>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<LinkIncremental>false</LinkIncremental>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
<PrecompiledHeader>Use</PrecompiledHeader>
<WarningLevel>Level3</WarningLevel>
<Optimization>Disabled</Optimization>
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<PrecompiledHeader>Use</PrecompiledHeader>
<Optimization>MaxSpeed</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<None Include="ReadMe.txt" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="stdafx.h" />
<ClInclude Include="targetver.h" />
</ItemGroup>
<ItemGroup>
<ClCompile Include="FreemudWrapperLoader.cpp" />
<ClCompile Include="stdafx.cpp">
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader>
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader>
</ClCompile>
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<Filter Include="源文件">
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
<Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
</Filter>
<Filter Include="头文件">
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
<Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions>
</Filter>
<Filter Include="资源文件">
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
</Filter>
</ItemGroup>
<ItemGroup>
<None Include="ReadMe.txt" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="stdafx.h">
<Filter>头文件</Filter>
</ClInclude>
<ClInclude Include="targetver.h">
<Filter>头文件</Filter>
</ClInclude>
</ItemGroup>
<ItemGroup>
<ClCompile Include="stdafx.cpp">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="FreemudWrapperLoader.cpp">
<Filter>源文件</Filter>
</ClCompile>
</ItemGroup>
</Project>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
</Project>
\ No newline at end of file
========================================================================
控制台应用程序:FreemudWrapperLoader 项目概述
========================================================================
应用程序向导已为您创建了此 FreemudWrapperLoader 应用程序。
本文件概要介绍组成 FreemudWrapperLoader 应用程序的每个文件的内容。
FreemudWrapperLoader.vcxproj
这是使用应用程序向导生成的 VC++ 项目的主项目文件,
其中包含生成该文件的 Visual C++
的版本信息,以及有关使用应用程序向导选择的平台、配置和项目功能的信息。
FreemudWrapperLoader.vcxproj.filters
这是使用“应用程序向导”生成的 VC++ 项目筛选器文件。
它包含有关项目文件与筛选器之间的关联信息。 在 IDE
中,通过这种关联,在特定节点下以分组形式显示具有相似扩展名的文件。
例如,“.cpp”文件与“源文件”筛选器关联。
FreemudWrapperLoader.cpp
这是主应用程序源文件。
/////////////////////////////////////////////////////////////////////////////
其他标准文件:
StdAfx.h,StdAfx.cpp
这些文件用于生成名为 FreemudWrapperLoader.pch 的预编译头 (PCH) 文件和
名为 StdAfx.obj 的预编译类型文件。
/////////////////////////////////////////////////////////////////////////////
其他注释:
应用程序向导使用“TODO:”注释来指示应添加或自定义的源代码部分。
/////////////////////////////////////////////////////////////////////////////
[2019\5\25 14.30.0] Current path env: C:\Program Files (x86)\Razer Chroma SDK\bin;C:\Program Files\Razer Chroma SDK\bin;C:\Program Files\Microsoft MPI\Bin\;D:\Python\Python36\Scripts\;D:\Python\Python36\;C:\Program Files\Docker\Docker\Resources\bin;C:\ProgramData\Oracle\Java\javapath;C:\Program Files (x86)\Intel\iCLS Client\;C:\Program Files\Intel\iCLS Client\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;D:\Git\cmd;D:\PuTTY\;"E:\zouwuyang\java_project\soft\jdk1.8.0_144\bin;E:\zouwuyang\java_project\soft\jdk1.8.0_144\jre\bin";D:\VS2010\Visual Leak Detector\bin\Win32;D:\VS2010\Visual Leak Detector\bin\Win64;D:\ODB\odb-2.4.0-i686-windows\bin;C:\Program Files\nodejs\;C:\Program Files (x86)\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\ManagementStudio\;C:\Program Files\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;E:\zouwuyang\java_project\soft\apache-maven-3.5.3;E:\zouwuyang\java_project\soft\apache-maven-3.5.3\bin;E:\zouwuyang\java_project\soft\jdk1.8.0_144;E:\zouwuyang\java_project\soft\jdk1.8.0_144\bin;E:\zouwuyang\java_project\soft\JUnitTest;C:\WINDOWS\system32\config\systemprofile\AppData\Local\Microsoft\WindowsApps;C:\Program Files\MySQL\MySQL Server 5.5\bin;C:\Program Files\MySQL\MySQL Server 5.5;%MYSQL\include%;D:\VS2010\VC\bin;D:\Windows Kits\10\bin\10.0.16299.0\x86;D:\Qt\Qt5.5.1_msvc2010\5.5\msvc2010\bin\;C:\Program Files\dotnet\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Users\wuyang.zou.OFFICE\AppData\Local\Microsoft\WindowsApps;C:\Users\wuyang.zou.OFFICE\AppData\Roaming\npm;C:\Program Files\CMake\bin;D:\VS2010\;D:\VS2010\VC\bin
Module Path: E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\
[2019\5\25 14.30.0] FreemudWrapper GetInstance():: mod path E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\ ; dllConfigPath E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\sbkpay.ini
[2019\5\25 14.30.0] New path env: setEnvRet: 1 path env: E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\;C:\Program Files (x86)\Razer Chroma SDK\bin;C:\Program Files\Razer Chroma SDK\bin;C:\Program Files\Microsoft MPI\Bin\;D:\Python\Python36\Scripts\;D:\Python\Python36\;C:\Program Files\Docker\Docker\Resources\bin;C:\ProgramData\Oracle\Java\javapath;C:\Program Files (x86)\Intel\iCLS Client\;C:\Program Files\Intel\iCLS Client\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;D:\Git\cmd;D:\PuTTY\;"E:\zouwuyang\java_project\soft\jdk1.8.0_144\bin;E:\zouwuyang\java_project\soft\jdk1.8.0_144\jre\bin";D:\VS2010\Visual Leak Detector\bin\Win32;D:\VS2010\Visual Leak Detector\bin\Win64;D:\ODB\odb-2.4.0-i686-windows\bin;C:\Program Files\nodejs\;C:\Program Files (x86)\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\ManagementStudio\;C:\Program Files\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;E:\zouwuyang\java_project\soft\apache-maven-3.5.3;E:\zouwuyang\java_project\soft\apache-maven-3.5.3\bin;E:\zouwuyang\java_project\soft\jdk1.8.0_144;E:\zouwuyang\java_project\soft\jdk1.8.0_144\bin;E:\zouwuyang\java_project\soft\JUnitTest;C:\WINDOWS\system32\config\systemprofile\AppData\Local\Microsoft\WindowsApps;C:\Program Files\MySQL\MySQL Server 5.5\bin;C:\Program Files\MySQL\MySQL Server 5.5;%MYSQL\include%;D:\VS2010\VC\bin;D:\Windows Kits\10\bin\10.0.16299.0\x86;D:\Qt\Qt5.5.1_msvc2010\5.5\msvc2010\bin\;C:\Program Files\dotnet\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Users\wuyang.zou.OFFICE\AppData\Local\Microsoft\WindowsApps;C:\Users\wuyang.zou.OFFICE\AppData\Roaming\npm;C:\Program Files\CMake\bin;D:\VS2010\;D:\VS2010\VC\bin
[2019\5\25 14.30.0] LoadLibraryA(instance) hMod: 00000000
[2019\5\25 14.30.2] Current path env: E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\;C:\Program Files (x86)\Razer Chroma SDK\bin;C:\Program Files\Razer Chroma SDK\bin;C:\Program Files\Microsoft MPI\Bin\;D:\Python\Python36\Scripts\;D:\Python\Python36\;C:\Program Files\Docker\Docker\Resources\bin;C:\ProgramData\Oracle\Java\javapath;C:\Program Files (x86)\Intel\iCLS Client\;C:\Program Files\Intel\iCLS Client\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;D:\Git\cmd;D:\PuTTY\;"E:\zouwuyang\java_project\soft\jdk1.8.0_144\bin;E:\zouwuyang\java_project\soft\jdk1.8.0_144\jre\bin";D:\VS2010\Visual Leak Detector\bin\Win32;D:\VS2010\Visual Leak Detector\bin\Win64;D:\ODB\odb-2.4.0-i686-windows\bin;C:\Program Files\nodejs\;C:\Program Files (x86)\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\ManagementStudio\;C:\Program Files\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;E:\zouwuyang\java_project\soft\apache-maven-3.5.3;E:\zouwuyang\java_project\soft\apache-maven-3.5.3\bin;E:\zouwuyang\java_project\soft\jdk1.8.0_144;E:\zouwuyang\java_project\soft\jdk1.8.0_144\bin;E:\zouwuyang\java_project\soft\JUnitTest;C:\WINDOWS\system32\config\systemprofile\AppData\Local\Microsoft\WindowsApps;C:\Program Files\MySQL\MySQL Server 5.5\bin;C:\Program Files\MySQL\MySQL Server 5.5;%MYSQL\include%;D:\VS2010\VC\bin;D:\Windows Kits\10\bin\10.0.16299.0\x86;D:\Qt\Qt5.5.1_msvc2010\5.5\msvc2010\bin\;C:\Program Files\dotnet\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Users\wuyang.zou.OFFICE\AppData\Local\Microsoft\WindowsApps;C:\Users\wuyang.zou.OFFICE\AppData\Roaming\npm;C:\Program Files\CMake\bin;D:\VS2010\;D:\VS2010\VC\bin
Module Path: E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\
[2019\5\25 14.30.2] FreemudWrapper GetInstance():: mod path E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\ ; dllConfigPath E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\sbkpay.ini
[2019\5\25 14.30.2] New path env: setEnvRet: 1 path env: E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\;;C:\Program Files (x86)\Razer Chroma SDK\bin;C:\Program Files\Razer Chroma SDK\bin;C:\Program Files\Microsoft MPI\Bin\;D:\Python\Python36\Scripts\;D:\Python\Python36\;C:\Program Files\Docker\Docker\Resources\bin;C:\ProgramData\Oracle\Java\javapath;C:\Program Files (x86)\Intel\iCLS Client\;C:\Program Files\Intel\iCLS Client\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;D:\Git\cmd;D:\PuTTY\;"E:\zouwuyang\java_project\soft\jdk1.8.0_144\bin;E:\zouwuyang\java_project\soft\jdk1.8.0_144\jre\bin";D:\VS2010\Visual Leak Detector\bin\Win32;D:\VS2010\Visual Leak Detector\bin\Win64;D:\ODB\odb-2.4.0-i686-windows\bin;C:\Program Files\nodejs\;C:\Program Files (x86)\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\ManagementStudio\;C:\Program Files\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;E:\zouwuyang\java_project\soft\apache-maven-3.5.3;E:\zouwuyang\java_project\soft\apache-maven-3.5.3\bin;E:\zouwuyang\java_project\soft\jdk1.8.0_144;E:\zouwuyang\java_project\soft\jdk1.8.0_144\bin;E:\zouwuyang\java_project\soft\JUnitTest;C:\WINDOWS\system32\config\systemprofile\AppData\Local\Microsoft\WindowsApps;C:\Program Files\MySQL\MySQL Server 5.5\bin;C:\Program Files\MySQL\MySQL Server 5.5;%MYSQL\include%;D:\VS2010\VC\bin;D:\Windows Kits\10\bin\10.0.16299.0\x86;D:\Qt\Qt5.5.1_msvc2010\5.5\msvc2010\bin\;C:\Program Files\dotnet\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Users\wuyang.zou.OFFICE\AppData\Local\Microsoft\WindowsApps;C:\Users\wuyang.zou.OFFICE\AppData\Roaming\npm;C:\Program Files\CMake\bin;D:\VS2010\;D:\VS2010\VC\bin
[2019\5\25 14.30.2] LoadLibraryA(instance) hMod: 00000000
[2019\5\25 14.30.4] Current path env: E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\;;C:\Program Files (x86)\Razer Chroma SDK\bin;C:\Program Files\Razer Chroma SDK\bin;C:\Program Files\Microsoft MPI\Bin\;D:\Python\Python36\Scripts\;D:\Python\Python36\;C:\Program Files\Docker\Docker\Resources\bin;C:\ProgramData\Oracle\Java\javapath;C:\Program Files (x86)\Intel\iCLS Client\;C:\Program Files\Intel\iCLS Client\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;D:\Git\cmd;D:\PuTTY\;"E:\zouwuyang\java_project\soft\jdk1.8.0_144\bin;E:\zouwuyang\java_project\soft\jdk1.8.0_144\jre\bin";D:\VS2010\Visual Leak Detector\bin\Win32;D:\VS2010\Visual Leak Detector\bin\Win64;D:\ODB\odb-2.4.0-i686-windows\bin;C:\Program Files\nodejs\;C:\Program Files (x86)\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\ManagementStudio\;C:\Program Files\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;E:\zouwuyang\java_project\soft\apache-maven-3.5.3;E:\zouwuyang\java_project\soft\apache-maven-3.5.3\bin;E:\zouwuyang\java_project\soft\jdk1.8.0_144;E:\zouwuyang\java_project\soft\jdk1.8.0_144\bin;E:\zouwuyang\java_project\soft\JUnitTest;C:\WINDOWS\system32\config\systemprofile\AppData\Local\Microsoft\WindowsApps;C:\Program Files\MySQL\MySQL Server 5.5\bin;C:\Program Files\MySQL\MySQL Server 5.5;%MYSQL\include%;D:\VS2010\VC\bin;D:\Windows Kits\10\bin\10.0.16299.0\x86;D:\Qt\Qt5.5.1_msvc2010\5.5\msvc2010\bin\;C:\Program Files\dotnet\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Users\wuyang.zou.OFFICE\AppData\Local\Microsoft\WindowsApps;C:\Users\wuyang.zou.OFFICE\AppData\Roaming\npm;C:\Program Files\CMake\bin;D:\VS2010\;D:\VS2010\VC\bin
Module Path: E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\
[2019\5\25 14.30.4] FreemudWrapper GetInstance():: mod path E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\ ; dllConfigPath E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\sbkpay.ini
[2019\5\25 14.30.4] New path env: setEnvRet: 1 path env: E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\;C:\Program Files (x86)\Razer Chroma SDK\bin;C:\Program Files\Razer Chroma SDK\bin;C:\Program Files\Microsoft MPI\Bin\;D:\Python\Python36\Scripts\;D:\Python\Python36\;C:\Program Files\Docker\Docker\Resources\bin;C:\ProgramData\Oracle\Java\javapath;C:\Program Files (x86)\Intel\iCLS Client\;C:\Program Files\Intel\iCLS Client\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;D:\Git\cmd;D:\PuTTY\;"E:\zouwuyang\java_project\soft\jdk1.8.0_144\bin;E:\zouwuyang\java_project\soft\jdk1.8.0_144\jre\bin";D:\VS2010\Visual Leak Detector\bin\Win32;D:\VS2010\Visual Leak Detector\bin\Win64;D:\ODB\odb-2.4.0-i686-windows\bin;C:\Program Files\nodejs\;C:\Program Files (x86)\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\ManagementStudio\;C:\Program Files\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;E:\zouwuyang\java_project\soft\apache-maven-3.5.3;E:\zouwuyang\java_project\soft\apache-maven-3.5.3\bin;E:\zouwuyang\java_project\soft\jdk1.8.0_144;E:\zouwuyang\java_project\soft\jdk1.8.0_144\bin;E:\zouwuyang\java_project\soft\JUnitTest;C:\WINDOWS\system32\config\systemprofile\AppData\Local\Microsoft\WindowsApps;C:\Program Files\MySQL\MySQL Server 5.5\bin;C:\Program Files\MySQL\MySQL Server 5.5;%MYSQL\include%;D:\VS2010\VC\bin;D:\Windows Kits\10\bin\10.0.16299.0\x86;D:\Qt\Qt5.5.1_msvc2010\5.5\msvc2010\bin\;C:\Program Files\dotnet\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Users\wuyang.zou.OFFICE\AppData\Local\Microsoft\WindowsApps;C:\Users\wuyang.zou.OFFICE\AppData\Roaming\npm;C:\Program Files\CMake\bin;D:\VS2010\;D:\VS2010\VC\bin
[2019\5\25 14.30.4] LoadLibraryA(instance) hMod: 00000000
[2019\5\25 14.30.6] Current path env: E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\;C:\Program Files (x86)\Razer Chroma SDK\bin;C:\Program Files\Razer Chroma SDK\bin;C:\Program Files\Microsoft MPI\Bin\;D:\Python\Python36\Scripts\;D:\Python\Python36\;C:\Program Files\Docker\Docker\Resources\bin;C:\ProgramData\Oracle\Java\javapath;C:\Program Files (x86)\Intel\iCLS Client\;C:\Program Files\Intel\iCLS Client\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;D:\Git\cmd;D:\PuTTY\;"E:\zouwuyang\java_project\soft\jdk1.8.0_144\bin;E:\zouwuyang\java_project\soft\jdk1.8.0_144\jre\bin";D:\VS2010\Visual Leak Detector\bin\Win32;D:\VS2010\Visual Leak Detector\bin\Win64;D:\ODB\odb-2.4.0-i686-windows\bin;C:\Program Files\nodejs\;C:\Program Files (x86)\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\ManagementStudio\;C:\Program Files\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;E:\zouwuyang\java_project\soft\apache-maven-3.5.3;E:\zouwuyang\java_project\soft\apache-maven-3.5.3\bin;E:\zouwuyang\java_project\soft\jdk1.8.0_144;E:\zouwuyang\java_project\soft\jdk1.8.0_144\bin;E:\zouwuyang\java_project\soft\JUnitTest;C:\WINDOWS\system32\config\systemprofile\AppData\Local\Microsoft\WindowsApps;C:\Program Files\MySQL\MySQL Server 5.5\bin;C:\Program Files\MySQL\MySQL Server 5.5;%MYSQL\include%;D:\VS2010\VC\bin;D:\Windows Kits\10\bin\10.0.16299.0\x86;D:\Qt\Qt5.5.1_msvc2010\5.5\msvc2010\bin\;C:\Program Files\dotnet\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Users\wuyang.zou.OFFICE\AppData\Local\Microsoft\WindowsApps;C:\Users\wuyang.zou.OFFICE\AppData\Roaming\npm;C:\Program Files\CMake\bin;D:\VS2010\;D:\VS2010\VC\bin
Module Path: E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\
[2019\5\25 14.30.6] FreemudWrapper GetInstance():: mod path E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\ ; dllConfigPath E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\sbkpay.ini
[2019\5\25 14.30.6] New path env: setEnvRet: 1 path env: E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\;;C:\Program Files (x86)\Razer Chroma SDK\bin;C:\Program Files\Razer Chroma SDK\bin;C:\Program Files\Microsoft MPI\Bin\;D:\Python\Python36\Scripts\;D:\Python\Python36\;C:\Program Files\Docker\Docker\Resources\bin;C:\ProgramData\Oracle\Java\javapath;C:\Program Files (x86)\Intel\iCLS Client\;C:\Program Files\Intel\iCLS Client\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;D:\Git\cmd;D:\PuTTY\;"E:\zouwuyang\java_project\soft\jdk1.8.0_144\bin;E:\zouwuyang\java_project\soft\jdk1.8.0_144\jre\bin";D:\VS2010\Visual Leak Detector\bin\Win32;D:\VS2010\Visual Leak Detector\bin\Win64;D:\ODB\odb-2.4.0-i686-windows\bin;C:\Program Files\nodejs\;C:\Program Files (x86)\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\ManagementStudio\;C:\Program Files\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;E:\zouwuyang\java_project\soft\apache-maven-3.5.3;E:\zouwuyang\java_project\soft\apache-maven-3.5.3\bin;E:\zouwuyang\java_project\soft\jdk1.8.0_144;E:\zouwuyang\java_project\soft\jdk1.8.0_144\bin;E:\zouwuyang\java_project\soft\JUnitTest;C:\WINDOWS\system32\config\systemprofile\AppData\Local\Microsoft\WindowsApps;C:\Program Files\MySQL\MySQL Server 5.5\bin;C:\Program Files\MySQL\MySQL Server 5.5;%MYSQL\include%;D:\VS2010\VC\bin;D:\Windows Kits\10\bin\10.0.16299.0\x86;D:\Qt\Qt5.5.1_msvc2010\5.5\msvc2010\bin\;C:\Program Files\dotnet\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Users\wuyang.zou.OFFICE\AppData\Local\Microsoft\WindowsApps;C:\Users\wuyang.zou.OFFICE\AppData\Roaming\npm;C:\Program Files\CMake\bin;D:\VS2010\;D:\VS2010\VC\bin
[2019\5\25 14.30.6] LoadLibraryA(instance) hMod: 00000000
[2019\5\28 19.34.39] Current path env: C:\Program Files (x86)\Razer Chroma SDK\bin;C:\Program Files\Razer Chroma SDK\bin;C:\Program Files\Microsoft MPI\Bin\;D:\Python\Python36\Scripts\;D:\Python\Python36\;C:\Program Files\Docker\Docker\Resources\bin;C:\ProgramData\Oracle\Java\javapath;C:\Program Files (x86)\Intel\iCLS Client\;C:\Program Files\Intel\iCLS Client\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;D:\Git\cmd;D:\PuTTY\;"E:\zouwuyang\java_project\soft\jdk1.8.0_144\bin;E:\zouwuyang\java_project\soft\jdk1.8.0_144\jre\bin";D:\VS2010\Visual Leak Detector\bin\Win32;D:\VS2010\Visual Leak Detector\bin\Win64;D:\ODB\odb-2.4.0-i686-windows\bin;C:\Program Files\nodejs\;C:\Program Files (x86)\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\ManagementStudio\;C:\Program Files\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;E:\zouwuyang\java_project\soft\apache-maven-3.5.3;E:\zouwuyang\java_project\soft\apache-maven-3.5.3\bin;E:\zouwuyang\java_project\soft\jdk1.8.0_144;E:\zouwuyang\java_project\soft\jdk1.8.0_144\bin;E:\zouwuyang\java_project\soft\JUnitTest;C:\WINDOWS\system32\config\systemprofile\AppData\Local\Microsoft\WindowsApps;C:\Program Files\MySQL\MySQL Server 5.5\bin;C:\Program Files\MySQL\MySQL Server 5.5;%MYSQL\include%;D:\VS2010\VC\bin;D:\Windows Kits\10\bin\10.0.16299.0\x86;D:\Qt\Qt5.5.1_msvc2010\5.5\msvc2010\bin\;C:\Program Files\dotnet\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Users\wuyang.zou.OFFICE\AppData\Local\Microsoft\WindowsApps;C:\Users\wuyang.zou.OFFICE\AppData\Roaming\npm;C:\Program Files\CMake\bin;D:\VS2010\;D:\VS2010\VC\bin
[2019\5\28 19.34.39] FreemudWrapper GetInstance():: mod path: E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\ ; dllConfigPath: E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\sbkpay.ini ; DLLPATH: E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\
[2019\5\28 19.34.39] New path env: setEnvRet: 1 path env: E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\;C:\Program Files (x86)\Razer Chroma SDK\bin;C:\Program Files\Razer Chroma SDK\bin;C:\Program Files\Microsoft MPI\Bin\;D:\Python\Python36\Scripts\;D:\Python\Python36\;C:\Program Files\Docker\Docker\Resources\bin;C:\ProgramData\Oracle\Java\javapath;C:\Program Files (x86)\Intel\iCLS Client\;C:\Program Files\Intel\iCLS Client\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;D:\Git\cmd;D:\PuTTY\;"E:\zouwuyang\java_project\soft\jdk1.8.0_144\bin;E:\zouwuyang\java_project\soft\jdk1.8.0_144\jre\bin";D:\VS2010\Visual Leak Detector\bin\Win32;D:\VS2010\Visual Leak Detector\bin\Win64;D:\ODB\odb-2.4.0-i686-windows\bin;C:\Program Files\nodejs\;C:\Program Files (x86)\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\ManagementStudio\;C:\Program Files\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;E:\zouwuyang\java_project\soft\apache-maven-3.5.3;E:\zouwuyang\java_project\soft\apache-maven-3.5.3\bin;E:\zouwuyang\java_project\soft\jdk1.8.0_144;E:\zouwuyang\java_project\soft\jdk1.8.0_144\bin;E:\zouwuyang\java_project\soft\JUnitTest;C:\WINDOWS\system32\config\systemprofile\AppData\Local\Microsoft\WindowsApps;C:\Program Files\MySQL\MySQL Server 5.5\bin;C:\Program Files\MySQL\MySQL Server 5.5;%MYSQL\include%;D:\VS2010\VC\bin;D:\Windows Kits\10\bin\10.0.16299.0\x86;D:\Qt\Qt5.5.1_msvc2010\5.5\msvc2010\bin\;C:\Program Files\dotnet\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Users\wuyang.zou.OFFICE\AppData\Local\Microsoft\WindowsApps;C:\Users\wuyang.zou.OFFICE\AppData\Roaming\npm;C:\Program Files\CMake\bin;D:\VS2010\;D:\VS2010\VC\bin
[2019\5\28 19.34.39] LoadLibraryA(instance) hMod: 00000000
[2019\5\28 19.34.41] Current path env: E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\;C:\Program Files (x86)\Razer Chroma SDK\bin;C:\Program Files\Razer Chroma SDK\bin;C:\Program Files\Microsoft MPI\Bin\;D:\Python\Python36\Scripts\;D:\Python\Python36\;C:\Program Files\Docker\Docker\Resources\bin;C:\ProgramData\Oracle\Java\javapath;C:\Program Files (x86)\Intel\iCLS Client\;C:\Program Files\Intel\iCLS Client\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;D:\Git\cmd;D:\PuTTY\;"E:\zouwuyang\java_project\soft\jdk1.8.0_144\bin;E:\zouwuyang\java_project\soft\jdk1.8.0_144\jre\bin";D:\VS2010\Visual Leak Detector\bin\Win32;D:\VS2010\Visual Leak Detector\bin\Win64;D:\ODB\odb-2.4.0-i686-windows\bin;C:\Program Files\nodejs\;C:\Program Files (x86)\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\ManagementStudio\;C:\Program Files\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;E:\zouwuyang\java_project\soft\apache-maven-3.5.3;E:\zouwuyang\java_project\soft\apache-maven-3.5.3\bin;E:\zouwuyang\java_project\soft\jdk1.8.0_144;E:\zouwuyang\java_project\soft\jdk1.8.0_144\bin;E:\zouwuyang\java_project\soft\JUnitTest;C:\WINDOWS\system32\config\systemprofile\AppData\Local\Microsoft\WindowsApps;C:\Program Files\MySQL\MySQL Server 5.5\bin;C:\Program Files\MySQL\MySQL Server 5.5;%MYSQL\include%;D:\VS2010\VC\bin;D:\Windows Kits\10\bin\10.0.16299.0\x86;D:\Qt\Qt5.5.1_msvc2010\5.5\msvc2010\bin\;C:\Program Files\dotnet\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Users\wuyang.zou.OFFICE\AppData\Local\Microsoft\WindowsApps;C:\Users\wuyang.zou.OFFICE\AppData\Roaming\npm;C:\Program Files\CMake\bin;D:\VS2010\;D:\VS2010\VC\bin
[2019\5\28 19.34.41] FreemudWrapper GetInstance():: mod path: E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\ ; dllConfigPath: E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\sbkpay.ini ; DLLPATH: E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\
[2019\5\28 19.34.41] New path env: setEnvRet: 1 path env: E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\;;C:\Program Files (x86)\Razer Chroma SDK\bin;C:\Program Files\Razer Chroma SDK\bin;C:\Program Files\Microsoft MPI\Bin\;D:\Python\Python36\Scripts\;D:\Python\Python36\;C:\Program Files\Docker\Docker\Resources\bin;C:\ProgramData\Oracle\Java\javapath;C:\Program Files (x86)\Intel\iCLS Client\;C:\Program Files\Intel\iCLS Client\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;D:\Git\cmd;D:\PuTTY\;"E:\zouwuyang\java_project\soft\jdk1.8.0_144\bin;E:\zouwuyang\java_project\soft\jdk1.8.0_144\jre\bin";D:\VS2010\Visual Leak Detector\bin\Win32;D:\VS2010\Visual Leak Detector\bin\Win64;D:\ODB\odb-2.4.0-i686-windows\bin;C:\Program Files\nodejs\;C:\Program Files (x86)\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\ManagementStudio\;C:\Program Files\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;E:\zouwuyang\java_project\soft\apache-maven-3.5.3;E:\zouwuyang\java_project\soft\apache-maven-3.5.3\bin;E:\zouwuyang\java_project\soft\jdk1.8.0_144;E:\zouwuyang\java_project\soft\jdk1.8.0_144\bin;E:\zouwuyang\java_project\soft\JUnitTest;C:\WINDOWS\system32\config\systemprofile\AppData\Local\Microsoft\WindowsApps;C:\Program Files\MySQL\MySQL Server 5.5\bin;C:\Program Files\MySQL\MySQL Server 5.5;%MYSQL\include%;D:\VS2010\VC\bin;D:\Windows Kits\10\bin\10.0.16299.0\x86;D:\Qt\Qt5.5.1_msvc2010\5.5\msvc2010\bin\;C:\Program Files\dotnet\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Users\wuyang.zou.OFFICE\AppData\Local\Microsoft\WindowsApps;C:\Users\wuyang.zou.OFFICE\AppData\Roaming\npm;C:\Program Files\CMake\bin;D:\VS2010\;D:\VS2010\VC\bin
[2019\5\28 19.34.41] LoadLibraryA(instance) hMod: 00000000
[2019\5\28 19.34.43] Current path env: E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\;;C:\Program Files (x86)\Razer Chroma SDK\bin;C:\Program Files\Razer Chroma SDK\bin;C:\Program Files\Microsoft MPI\Bin\;D:\Python\Python36\Scripts\;D:\Python\Python36\;C:\Program Files\Docker\Docker\Resources\bin;C:\ProgramData\Oracle\Java\javapath;C:\Program Files (x86)\Intel\iCLS Client\;C:\Program Files\Intel\iCLS Client\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;D:\Git\cmd;D:\PuTTY\;"E:\zouwuyang\java_project\soft\jdk1.8.0_144\bin;E:\zouwuyang\java_project\soft\jdk1.8.0_144\jre\bin";D:\VS2010\Visual Leak Detector\bin\Win32;D:\VS2010\Visual Leak Detector\bin\Win64;D:\ODB\odb-2.4.0-i686-windows\bin;C:\Program Files\nodejs\;C:\Program Files (x86)\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\ManagementStudio\;C:\Program Files\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;E:\zouwuyang\java_project\soft\apache-maven-3.5.3;E:\zouwuyang\java_project\soft\apache-maven-3.5.3\bin;E:\zouwuyang\java_project\soft\jdk1.8.0_144;E:\zouwuyang\java_project\soft\jdk1.8.0_144\bin;E:\zouwuyang\java_project\soft\JUnitTest;C:\WINDOWS\system32\config\systemprofile\AppData\Local\Microsoft\WindowsApps;C:\Program Files\MySQL\MySQL Server 5.5\bin;C:\Program Files\MySQL\MySQL Server 5.5;%MYSQL\include%;D:\VS2010\VC\bin;D:\Windows Kits\10\bin\10.0.16299.0\x86;D:\Qt\Qt5.5.1_msvc2010\5.5\msvc2010\bin\;C:\Program Files\dotnet\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Users\wuyang.zou.OFFICE\AppData\Local\Microsoft\WindowsApps;C:\Users\wuyang.zou.OFFICE\AppData\Roaming\npm;C:\Program Files\CMake\bin;D:\VS2010\;D:\VS2010\VC\bin
[2019\5\28 19.34.43] FreemudWrapper GetInstance():: mod path: E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\ ; dllConfigPath: E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\sbkpay.ini ; DLLPATH: E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\
[2019\5\28 19.34.43] New path env: setEnvRet: 1 path env: E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\;C:\Program Files (x86)\Razer Chroma SDK\bin;C:\Program Files\Razer Chroma SDK\bin;C:\Program Files\Microsoft MPI\Bin\;D:\Python\Python36\Scripts\;D:\Python\Python36\;C:\Program Files\Docker\Docker\Resources\bin;C:\ProgramData\Oracle\Java\javapath;C:\Program Files (x86)\Intel\iCLS Client\;C:\Program Files\Intel\iCLS Client\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;D:\Git\cmd;D:\PuTTY\;"E:\zouwuyang\java_project\soft\jdk1.8.0_144\bin;E:\zouwuyang\java_project\soft\jdk1.8.0_144\jre\bin";D:\VS2010\Visual Leak Detector\bin\Win32;D:\VS2010\Visual Leak Detector\bin\Win64;D:\ODB\odb-2.4.0-i686-windows\bin;C:\Program Files\nodejs\;C:\Program Files (x86)\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\ManagementStudio\;C:\Program Files\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;E:\zouwuyang\java_project\soft\apache-maven-3.5.3;E:\zouwuyang\java_project\soft\apache-maven-3.5.3\bin;E:\zouwuyang\java_project\soft\jdk1.8.0_144;E:\zouwuyang\java_project\soft\jdk1.8.0_144\bin;E:\zouwuyang\java_project\soft\JUnitTest;C:\WINDOWS\system32\config\systemprofile\AppData\Local\Microsoft\WindowsApps;C:\Program Files\MySQL\MySQL Server 5.5\bin;C:\Program Files\MySQL\MySQL Server 5.5;%MYSQL\include%;D:\VS2010\VC\bin;D:\Windows Kits\10\bin\10.0.16299.0\x86;D:\Qt\Qt5.5.1_msvc2010\5.5\msvc2010\bin\;C:\Program Files\dotnet\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Users\wuyang.zou.OFFICE\AppData\Local\Microsoft\WindowsApps;C:\Users\wuyang.zou.OFFICE\AppData\Roaming\npm;C:\Program Files\CMake\bin;D:\VS2010\;D:\VS2010\VC\bin
[2019\5\28 19.34.43] LoadLibraryA(instance) hMod: 00000000
[2019\5\28 19.34.45] Current path env: E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\;C:\Program Files (x86)\Razer Chroma SDK\bin;C:\Program Files\Razer Chroma SDK\bin;C:\Program Files\Microsoft MPI\Bin\;D:\Python\Python36\Scripts\;D:\Python\Python36\;C:\Program Files\Docker\Docker\Resources\bin;C:\ProgramData\Oracle\Java\javapath;C:\Program Files (x86)\Intel\iCLS Client\;C:\Program Files\Intel\iCLS Client\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;D:\Git\cmd;D:\PuTTY\;"E:\zouwuyang\java_project\soft\jdk1.8.0_144\bin;E:\zouwuyang\java_project\soft\jdk1.8.0_144\jre\bin";D:\VS2010\Visual Leak Detector\bin\Win32;D:\VS2010\Visual Leak Detector\bin\Win64;D:\ODB\odb-2.4.0-i686-windows\bin;C:\Program Files\nodejs\;C:\Program Files (x86)\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\ManagementStudio\;C:\Program Files\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;E:\zouwuyang\java_project\soft\apache-maven-3.5.3;E:\zouwuyang\java_project\soft\apache-maven-3.5.3\bin;E:\zouwuyang\java_project\soft\jdk1.8.0_144;E:\zouwuyang\java_project\soft\jdk1.8.0_144\bin;E:\zouwuyang\java_project\soft\JUnitTest;C:\WINDOWS\system32\config\systemprofile\AppData\Local\Microsoft\WindowsApps;C:\Program Files\MySQL\MySQL Server 5.5\bin;C:\Program Files\MySQL\MySQL Server 5.5;%MYSQL\include%;D:\VS2010\VC\bin;D:\Windows Kits\10\bin\10.0.16299.0\x86;D:\Qt\Qt5.5.1_msvc2010\5.5\msvc2010\bin\;C:\Program Files\dotnet\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Users\wuyang.zou.OFFICE\AppData\Local\Microsoft\WindowsApps;C:\Users\wuyang.zou.OFFICE\AppData\Roaming\npm;C:\Program Files\CMake\bin;D:\VS2010\;D:\VS2010\VC\bin
[2019\5\28 19.34.45] FreemudWrapper GetInstance():: mod path: E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\ ; dllConfigPath: E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\sbkpay.ini ; DLLPATH: E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\
[2019\5\28 19.34.45] New path env: setEnvRet: 1 path env: E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\;;C:\Program Files (x86)\Razer Chroma SDK\bin;C:\Program Files\Razer Chroma SDK\bin;C:\Program Files\Microsoft MPI\Bin\;D:\Python\Python36\Scripts\;D:\Python\Python36\;C:\Program Files\Docker\Docker\Resources\bin;C:\ProgramData\Oracle\Java\javapath;C:\Program Files (x86)\Intel\iCLS Client\;C:\Program Files\Intel\iCLS Client\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;D:\Git\cmd;D:\PuTTY\;"E:\zouwuyang\java_project\soft\jdk1.8.0_144\bin;E:\zouwuyang\java_project\soft\jdk1.8.0_144\jre\bin";D:\VS2010\Visual Leak Detector\bin\Win32;D:\VS2010\Visual Leak Detector\bin\Win64;D:\ODB\odb-2.4.0-i686-windows\bin;C:\Program Files\nodejs\;C:\Program Files (x86)\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\ManagementStudio\;C:\Program Files\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;E:\zouwuyang\java_project\soft\apache-maven-3.5.3;E:\zouwuyang\java_project\soft\apache-maven-3.5.3\bin;E:\zouwuyang\java_project\soft\jdk1.8.0_144;E:\zouwuyang\java_project\soft\jdk1.8.0_144\bin;E:\zouwuyang\java_project\soft\JUnitTest;C:\WINDOWS\system32\config\systemprofile\AppData\Local\Microsoft\WindowsApps;C:\Program Files\MySQL\MySQL Server 5.5\bin;C:\Program Files\MySQL\MySQL Server 5.5;%MYSQL\include%;D:\VS2010\VC\bin;D:\Windows Kits\10\bin\10.0.16299.0\x86;D:\Qt\Qt5.5.1_msvc2010\5.5\msvc2010\bin\;C:\Program Files\dotnet\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Users\wuyang.zou.OFFICE\AppData\Local\Microsoft\WindowsApps;C:\Users\wuyang.zou.OFFICE\AppData\Roaming\npm;C:\Program Files\CMake\bin;D:\VS2010\;D:\VS2010\VC\bin
[2019\5\28 19.34.45] LoadLibraryA(instance) hMod: 00000000
[2019\5\28 19.36.49] Current path env: C:\Program Files (x86)\Razer Chroma SDK\bin;C:\Program Files\Razer Chroma SDK\bin;C:\Program Files\Microsoft MPI\Bin\;D:\Python\Python36\Scripts\;D:\Python\Python36\;C:\Program Files\Docker\Docker\Resources\bin;C:\ProgramData\Oracle\Java\javapath;C:\Program Files (x86)\Intel\iCLS Client\;C:\Program Files\Intel\iCLS Client\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;D:\Git\cmd;D:\PuTTY\;"E:\zouwuyang\java_project\soft\jdk1.8.0_144\bin;E:\zouwuyang\java_project\soft\jdk1.8.0_144\jre\bin";D:\VS2010\Visual Leak Detector\bin\Win32;D:\VS2010\Visual Leak Detector\bin\Win64;D:\ODB\odb-2.4.0-i686-windows\bin;C:\Program Files\nodejs\;C:\Program Files (x86)\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\ManagementStudio\;C:\Program Files\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;E:\zouwuyang\java_project\soft\apache-maven-3.5.3;E:\zouwuyang\java_project\soft\apache-maven-3.5.3\bin;E:\zouwuyang\java_project\soft\jdk1.8.0_144;E:\zouwuyang\java_project\soft\jdk1.8.0_144\bin;E:\zouwuyang\java_project\soft\JUnitTest;C:\WINDOWS\system32\config\systemprofile\AppData\Local\Microsoft\WindowsApps;C:\Program Files\MySQL\MySQL Server 5.5\bin;C:\Program Files\MySQL\MySQL Server 5.5;%MYSQL\include%;D:\VS2010\VC\bin;D:\Windows Kits\10\bin\10.0.16299.0\x86;D:\Qt\Qt5.5.1_msvc2010\5.5\msvc2010\bin\;C:\Program Files\dotnet\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Users\wuyang.zou.OFFICE\AppData\Local\Microsoft\WindowsApps;C:\Users\wuyang.zou.OFFICE\AppData\Roaming\npm;C:\Program Files\CMake\bin;D:\VS2010\;D:\VS2010\VC\bin
[2019\5\28 19.36.49] FreemudWrapper GetInstance():: mod path: E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\ ; dllConfigPath: E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\sbkpay.ini ; DLLPATH: E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\
[2019\5\28 19.36.49] New path env: setEnvRet: 1 path env: E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\;C:\Program Files (x86)\Razer Chroma SDK\bin;C:\Program Files\Razer Chroma SDK\bin;C:\Program Files\Microsoft MPI\Bin\;D:\Python\Python36\Scripts\;D:\Python\Python36\;C:\Program Files\Docker\Docker\Resources\bin;C:\ProgramData\Oracle\Java\javapath;C:\Program Files (x86)\Intel\iCLS Client\;C:\Program Files\Intel\iCLS Client\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;D:\Git\cmd;D:\PuTTY\;"E:\zouwuyang\java_project\soft\jdk1.8.0_144\bin;E:\zouwuyang\java_project\soft\jdk1.8.0_144\jre\bin";D:\VS2010\Visual Leak Detector\bin\Win32;D:\VS2010\Visual Leak Detector\bin\Win64;D:\ODB\odb-2.4.0-i686-windows\bin;C:\Program Files\nodejs\;C:\Program Files (x86)\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\ManagementStudio\;C:\Program Files\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;E:\zouwuyang\java_project\soft\apache-maven-3.5.3;E:\zouwuyang\java_project\soft\apache-maven-3.5.3\bin;E:\zouwuyang\java_project\soft\jdk1.8.0_144;E:\zouwuyang\java_project\soft\jdk1.8.0_144\bin;E:\zouwuyang\java_project\soft\JUnitTest;C:\WINDOWS\system32\config\systemprofile\AppData\Local\Microsoft\WindowsApps;C:\Program Files\MySQL\MySQL Server 5.5\bin;C:\Program Files\MySQL\MySQL Server 5.5;%MYSQL\include%;D:\VS2010\VC\bin;D:\Windows Kits\10\bin\10.0.16299.0\x86;D:\Qt\Qt5.5.1_msvc2010\5.5\msvc2010\bin\;C:\Program Files\dotnet\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Users\wuyang.zou.OFFICE\AppData\Local\Microsoft\WindowsApps;C:\Users\wuyang.zou.OFFICE\AppData\Roaming\npm;C:\Program Files\CMake\bin;D:\VS2010\;D:\VS2010\VC\bin
[2019\5\28 19.36.49] LoadLibraryA(instance) hMod: 00000000
[2019\5\28 19.36.51] Current path env: E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\;C:\Program Files (x86)\Razer Chroma SDK\bin;C:\Program Files\Razer Chroma SDK\bin;C:\Program Files\Microsoft MPI\Bin\;D:\Python\Python36\Scripts\;D:\Python\Python36\;C:\Program Files\Docker\Docker\Resources\bin;C:\ProgramData\Oracle\Java\javapath;C:\Program Files (x86)\Intel\iCLS Client\;C:\Program Files\Intel\iCLS Client\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;D:\Git\cmd;D:\PuTTY\;"E:\zouwuyang\java_project\soft\jdk1.8.0_144\bin;E:\zouwuyang\java_project\soft\jdk1.8.0_144\jre\bin";D:\VS2010\Visual Leak Detector\bin\Win32;D:\VS2010\Visual Leak Detector\bin\Win64;D:\ODB\odb-2.4.0-i686-windows\bin;C:\Program Files\nodejs\;C:\Program Files (x86)\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\ManagementStudio\;C:\Program Files\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;E:\zouwuyang\java_project\soft\apache-maven-3.5.3;E:\zouwuyang\java_project\soft\apache-maven-3.5.3\bin;E:\zouwuyang\java_project\soft\jdk1.8.0_144;E:\zouwuyang\java_project\soft\jdk1.8.0_144\bin;E:\zouwuyang\java_project\soft\JUnitTest;C:\WINDOWS\system32\config\systemprofile\AppData\Local\Microsoft\WindowsApps;C:\Program Files\MySQL\MySQL Server 5.5\bin;C:\Program Files\MySQL\MySQL Server 5.5;%MYSQL\include%;D:\VS2010\VC\bin;D:\Windows Kits\10\bin\10.0.16299.0\x86;D:\Qt\Qt5.5.1_msvc2010\5.5\msvc2010\bin\;C:\Program Files\dotnet\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Users\wuyang.zou.OFFICE\AppData\Local\Microsoft\WindowsApps;C:\Users\wuyang.zou.OFFICE\AppData\Roaming\npm;C:\Program Files\CMake\bin;D:\VS2010\;D:\VS2010\VC\bin
[2019\5\28 19.36.51] FreemudWrapper GetInstance():: mod path: E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\ ; dllConfigPath: E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\sbkpay.ini ; DLLPATH: E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\
[2019\5\28 19.36.51] New path env: setEnvRet: 1 path env: E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\;;C:\Program Files (x86)\Razer Chroma SDK\bin;C:\Program Files\Razer Chroma SDK\bin;C:\Program Files\Microsoft MPI\Bin\;D:\Python\Python36\Scripts\;D:\Python\Python36\;C:\Program Files\Docker\Docker\Resources\bin;C:\ProgramData\Oracle\Java\javapath;C:\Program Files (x86)\Intel\iCLS Client\;C:\Program Files\Intel\iCLS Client\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;D:\Git\cmd;D:\PuTTY\;"E:\zouwuyang\java_project\soft\jdk1.8.0_144\bin;E:\zouwuyang\java_project\soft\jdk1.8.0_144\jre\bin";D:\VS2010\Visual Leak Detector\bin\Win32;D:\VS2010\Visual Leak Detector\bin\Win64;D:\ODB\odb-2.4.0-i686-windows\bin;C:\Program Files\nodejs\;C:\Program Files (x86)\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\ManagementStudio\;C:\Program Files\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;E:\zouwuyang\java_project\soft\apache-maven-3.5.3;E:\zouwuyang\java_project\soft\apache-maven-3.5.3\bin;E:\zouwuyang\java_project\soft\jdk1.8.0_144;E:\zouwuyang\java_project\soft\jdk1.8.0_144\bin;E:\zouwuyang\java_project\soft\JUnitTest;C:\WINDOWS\system32\config\systemprofile\AppData\Local\Microsoft\WindowsApps;C:\Program Files\MySQL\MySQL Server 5.5\bin;C:\Program Files\MySQL\MySQL Server 5.5;%MYSQL\include%;D:\VS2010\VC\bin;D:\Windows Kits\10\bin\10.0.16299.0\x86;D:\Qt\Qt5.5.1_msvc2010\5.5\msvc2010\bin\;C:\Program Files\dotnet\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Users\wuyang.zou.OFFICE\AppData\Local\Microsoft\WindowsApps;C:\Users\wuyang.zou.OFFICE\AppData\Roaming\npm;C:\Program Files\CMake\bin;D:\VS2010\;D:\VS2010\VC\bin
[2019\5\28 19.36.51] LoadLibraryA(instance) hMod: 00000000
[2019\5\28 19.36.53] Current path env: E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\;;C:\Program Files (x86)\Razer Chroma SDK\bin;C:\Program Files\Razer Chroma SDK\bin;C:\Program Files\Microsoft MPI\Bin\;D:\Python\Python36\Scripts\;D:\Python\Python36\;C:\Program Files\Docker\Docker\Resources\bin;C:\ProgramData\Oracle\Java\javapath;C:\Program Files (x86)\Intel\iCLS Client\;C:\Program Files\Intel\iCLS Client\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;D:\Git\cmd;D:\PuTTY\;"E:\zouwuyang\java_project\soft\jdk1.8.0_144\bin;E:\zouwuyang\java_project\soft\jdk1.8.0_144\jre\bin";D:\VS2010\Visual Leak Detector\bin\Win32;D:\VS2010\Visual Leak Detector\bin\Win64;D:\ODB\odb-2.4.0-i686-windows\bin;C:\Program Files\nodejs\;C:\Program Files (x86)\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\ManagementStudio\;C:\Program Files\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;E:\zouwuyang\java_project\soft\apache-maven-3.5.3;E:\zouwuyang\java_project\soft\apache-maven-3.5.3\bin;E:\zouwuyang\java_project\soft\jdk1.8.0_144;E:\zouwuyang\java_project\soft\jdk1.8.0_144\bin;E:\zouwuyang\java_project\soft\JUnitTest;C:\WINDOWS\system32\config\systemprofile\AppData\Local\Microsoft\WindowsApps;C:\Program Files\MySQL\MySQL Server 5.5\bin;C:\Program Files\MySQL\MySQL Server 5.5;%MYSQL\include%;D:\VS2010\VC\bin;D:\Windows Kits\10\bin\10.0.16299.0\x86;D:\Qt\Qt5.5.1_msvc2010\5.5\msvc2010\bin\;C:\Program Files\dotnet\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Users\wuyang.zou.OFFICE\AppData\Local\Microsoft\WindowsApps;C:\Users\wuyang.zou.OFFICE\AppData\Roaming\npm;C:\Program Files\CMake\bin;D:\VS2010\;D:\VS2010\VC\bin
[2019\5\28 19.36.53] FreemudWrapper GetInstance():: mod path: E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\ ; dllConfigPath: E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\sbkpay.ini ; DLLPATH: E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\
[2019\5\28 19.36.53] New path env: setEnvRet: 1 path env: E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\;C:\Program Files (x86)\Razer Chroma SDK\bin;C:\Program Files\Razer Chroma SDK\bin;C:\Program Files\Microsoft MPI\Bin\;D:\Python\Python36\Scripts\;D:\Python\Python36\;C:\Program Files\Docker\Docker\Resources\bin;C:\ProgramData\Oracle\Java\javapath;C:\Program Files (x86)\Intel\iCLS Client\;C:\Program Files\Intel\iCLS Client\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;D:\Git\cmd;D:\PuTTY\;"E:\zouwuyang\java_project\soft\jdk1.8.0_144\bin;E:\zouwuyang\java_project\soft\jdk1.8.0_144\jre\bin";D:\VS2010\Visual Leak Detector\bin\Win32;D:\VS2010\Visual Leak Detector\bin\Win64;D:\ODB\odb-2.4.0-i686-windows\bin;C:\Program Files\nodejs\;C:\Program Files (x86)\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\ManagementStudio\;C:\Program Files\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;E:\zouwuyang\java_project\soft\apache-maven-3.5.3;E:\zouwuyang\java_project\soft\apache-maven-3.5.3\bin;E:\zouwuyang\java_project\soft\jdk1.8.0_144;E:\zouwuyang\java_project\soft\jdk1.8.0_144\bin;E:\zouwuyang\java_project\soft\JUnitTest;C:\WINDOWS\system32\config\systemprofile\AppData\Local\Microsoft\WindowsApps;C:\Program Files\MySQL\MySQL Server 5.5\bin;C:\Program Files\MySQL\MySQL Server 5.5;%MYSQL\include%;D:\VS2010\VC\bin;D:\Windows Kits\10\bin\10.0.16299.0\x86;D:\Qt\Qt5.5.1_msvc2010\5.5\msvc2010\bin\;C:\Program Files\dotnet\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Users\wuyang.zou.OFFICE\AppData\Local\Microsoft\WindowsApps;C:\Users\wuyang.zou.OFFICE\AppData\Roaming\npm;C:\Program Files\CMake\bin;D:\VS2010\;D:\VS2010\VC\bin
[2019\5\28 19.36.53] LoadLibraryA(instance) hMod: 00000000
[2019\5\28 19.36.55] Current path env: E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\;C:\Program Files (x86)\Razer Chroma SDK\bin;C:\Program Files\Razer Chroma SDK\bin;C:\Program Files\Microsoft MPI\Bin\;D:\Python\Python36\Scripts\;D:\Python\Python36\;C:\Program Files\Docker\Docker\Resources\bin;C:\ProgramData\Oracle\Java\javapath;C:\Program Files (x86)\Intel\iCLS Client\;C:\Program Files\Intel\iCLS Client\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;D:\Git\cmd;D:\PuTTY\;"E:\zouwuyang\java_project\soft\jdk1.8.0_144\bin;E:\zouwuyang\java_project\soft\jdk1.8.0_144\jre\bin";D:\VS2010\Visual Leak Detector\bin\Win32;D:\VS2010\Visual Leak Detector\bin\Win64;D:\ODB\odb-2.4.0-i686-windows\bin;C:\Program Files\nodejs\;C:\Program Files (x86)\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\ManagementStudio\;C:\Program Files\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;E:\zouwuyang\java_project\soft\apache-maven-3.5.3;E:\zouwuyang\java_project\soft\apache-maven-3.5.3\bin;E:\zouwuyang\java_project\soft\jdk1.8.0_144;E:\zouwuyang\java_project\soft\jdk1.8.0_144\bin;E:\zouwuyang\java_project\soft\JUnitTest;C:\WINDOWS\system32\config\systemprofile\AppData\Local\Microsoft\WindowsApps;C:\Program Files\MySQL\MySQL Server 5.5\bin;C:\Program Files\MySQL\MySQL Server 5.5;%MYSQL\include%;D:\VS2010\VC\bin;D:\Windows Kits\10\bin\10.0.16299.0\x86;D:\Qt\Qt5.5.1_msvc2010\5.5\msvc2010\bin\;C:\Program Files\dotnet\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Users\wuyang.zou.OFFICE\AppData\Local\Microsoft\WindowsApps;C:\Users\wuyang.zou.OFFICE\AppData\Roaming\npm;C:\Program Files\CMake\bin;D:\VS2010\;D:\VS2010\VC\bin
[2019\5\28 19.36.55] FreemudWrapper GetInstance():: mod path: E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\ ; dllConfigPath: E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\sbkpay.ini ; DLLPATH: E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\
[2019\5\28 19.36.55] New path env: setEnvRet: 1 path env: E:\zouwuyang\StarBucks\sbkpay-wrapper\FreemudWrapper\Debug\;;C:\Program Files (x86)\Razer Chroma SDK\bin;C:\Program Files\Razer Chroma SDK\bin;C:\Program Files\Microsoft MPI\Bin\;D:\Python\Python36\Scripts\;D:\Python\Python36\;C:\Program Files\Docker\Docker\Resources\bin;C:\ProgramData\Oracle\Java\javapath;C:\Program Files (x86)\Intel\iCLS Client\;C:\Program Files\Intel\iCLS Client\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;D:\Git\cmd;D:\PuTTY\;"E:\zouwuyang\java_project\soft\jdk1.8.0_144\bin;E:\zouwuyang\java_project\soft\jdk1.8.0_144\jre\bin";D:\VS2010\Visual Leak Detector\bin\Win32;D:\VS2010\Visual Leak Detector\bin\Win64;D:\ODB\odb-2.4.0-i686-windows\bin;C:\Program Files\nodejs\;C:\Program Files (x86)\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\ManagementStudio\;C:\Program Files\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;E:\zouwuyang\java_project\soft\apache-maven-3.5.3;E:\zouwuyang\java_project\soft\apache-maven-3.5.3\bin;E:\zouwuyang\java_project\soft\jdk1.8.0_144;E:\zouwuyang\java_project\soft\jdk1.8.0_144\bin;E:\zouwuyang\java_project\soft\JUnitTest;C:\WINDOWS\system32\config\systemprofile\AppData\Local\Microsoft\WindowsApps;C:\Program Files\MySQL\MySQL Server 5.5\bin;C:\Program Files\MySQL\MySQL Server 5.5;%MYSQL\include%;D:\VS2010\VC\bin;D:\Windows Kits\10\bin\10.0.16299.0\x86;D:\Qt\Qt5.5.1_msvc2010\5.5\msvc2010\bin\;C:\Program Files\dotnet\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Users\wuyang.zou.OFFICE\AppData\Local\Microsoft\WindowsApps;C:\Users\wuyang.zou.OFFICE\AppData\Roaming\npm;C:\Program Files\CMake\bin;D:\VS2010\;D:\VS2010\VC\bin
[2019\5\28 19.36.55] LoadLibraryA(instance) hMod: 00000000
// stdafx.cpp : 只包括标准包含文件的源文件
// FreemudWrapperLoader.pch 将作为预编译头
// stdafx.obj 将包含预编译类型信息
#include "stdafx.h"
// TODO: 在 STDAFX.H 中
// 引用任何所需的附加头文件,而不是在此文件中引用
// stdafx.h : 标准系统包含文件的包含文件,
// 或是经常使用但不常更改的
// 特定于项目的包含文件
//
#pragma once
#include "targetver.h"
#include <stdio.h>
#include <tchar.h>
// TODO: 在此处引用程序需要的其他头文件
#pragma once
// 包括 SDKDDKVer.h 将定义可用的最高版本的 Windows 平台。
// 如果要为以前的 Windows 平台生成应用程序,请包括 WinSDKVer.h,并将
// WIN32_WINNT 宏设置为要支持的平台,然后再包括 SDKDDKVer.h。
#include <SDKDDKVer.h>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment