Hi,
I have a PB 12.0 application that needs to be migrated to PB2017.
This application has a non-visual object that calls functions of a DLL.
This DLL was built in C ++ with the watcom compiler version 1.0.
I would like to recompile this DLL so that it can be used under win10.
the problem is that I do not think there are SDKs for the watcom.
the problem is that i do not think there are SDKs for the watcom for the current version.
therefore, I tried to recompile everything with visual studio 2017.
Unfortunately, there is no SDK for visual studio 2017.
Can you, please, help me?
Best regards
Nathalie Meurant
There used to be a Visual Studio add-in to make creating a new PBNI project easier but you don't really need it.
All you have to do is create a standard DLL project, copy the PBNI folder into your project folder and make the following project property changes:
C/C++ Additional Include Directories: .\PBNI\include
Linker Additional Library Directories: .PBNI\lib
If you want you can skip copying the PBNI folder and set the properties to the full path, I prefer to keep it all together. Also, you don't have to use Unicode, the PBNI interface handles the conversion of strings automatically.