gitextract_ozt0zoq1/ ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── bin/ │ ├── install.bat │ ├── uninstall.bat │ └── update.bat ├── res/ │ ├── RDPWInst.wxs │ ├── build_wxs.bat │ ├── clearres.bat │ ├── legacy.install.bat │ ├── rdpwrap-arm-kb.ini │ ├── rdpwrap-ini-kb.txt │ └── rdpwrap.ini ├── src-installer/ │ ├── RDPWInst.dpr │ ├── RDPWInst.dproj │ └── resource.res ├── src-rdpcheck/ │ ├── MainUnit.dfm │ ├── MainUnit.pas │ ├── RDPCheck.dpr │ ├── RDPCheck.dproj │ └── RDPCheck.res ├── src-rdpconfig/ │ ├── LicenseUnit.dfm │ ├── LicenseUnit.pas │ ├── MainUnit.dfm │ ├── MainUnit.pas │ ├── RDPConf.dpr │ ├── RDPConf.dproj │ ├── RDPConf.res │ └── resource.res ├── src-x86-binarymaster/ │ ├── LiteINI.pas │ ├── rdpwrap.dpr │ ├── rdpwrap.dproj │ └── rdpwrap.res ├── src-x86-x64-Fusix/ │ ├── Export.def │ ├── IniFile.cpp │ ├── IniFile.h │ ├── RDPWrap.cpp │ ├── RDPWrap.sln │ ├── RDPWrap.v11.suo │ ├── RDPWrap.vcxproj │ ├── RDPWrap.vcxproj.filters │ ├── ReadMe.txt │ ├── dllmain.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h └── technical.txt