Build the RDPWrap DLL project
masterThe RDPWrap project is a VC++ project defined by RDPWrap.vcxproj. The core logic resides in RDPWrap.cpp.
Important Note on Symbol Exporting:
By default, this DLL does not export symbols, which means a .lib file is not generated during the build process.
If you need to create a dependency on this project or require an export library, you must either:
- Add code to the source to explicitly export symbols from the DLL.
- Set the
Skip Import Libraryproperty toYesin theLinker->Generalsection of the Project Property Pages.
// To enable LIB generation, you must export symbols:
extern "C" __declspec(dllexport) void MyFunction();