Hi guys, I am trying to load a Haptik.hpp to control a Novint Falcon.
I receive error C2144 syntax error and C4430 in the next line
//---FUNCTION
// Desc: C-based entrypoint to retrieve IHaptikLibrary interfaces
//------------------------------------------------------------------------------------------------------------->
extern "C" HAPTIK_DLL_IMPORT_EXPORT PVOID GetHaptikLibraryInterface(IN UINT32 interfaceId = HAPTIK_IHAPTIKLIBRARY);
So I pasted one
;
right there to reduce it to just one error (C4430)
//---FUNCTION
// Desc: C-based entrypoint to retrieve IHaptikLibrary interfaces
//------------------------------------------------------------------------------------------------------------->
extern "C" HAPTIK_DLL_IMPORT_EXPORT; PVOID GetHaptikLibraryInterface(IN UINT32 interfaceId = HAPTIK_IHAPTIKLIBRARY);
I am kind of new to C++, I know how to load a header but not really what is asking here, I tried defining with some types, but no
Anyone has an idea
Thanks in advance