You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As this example is written, on windows to use the dynamic library you'll need to export the class:
...
class __declspec( dllexport ) Hello
...
Or use a DEF file, or some other method. Otherwise, out of the box it will fail complaining about missing the import library which would have gone with the DLL.
The text was updated successfully, but these errors were encountered:
As this example is written, on windows to use the dynamic library you'll need to export the class:
...
class __declspec( dllexport ) Hello
...
Or use a DEF file, or some other method. Otherwise, out of the box it will fail complaining about missing the import library which would have gone with the DLL.
The text was updated successfully, but these errors were encountered: