Removed "export" statement from osc handler function, never was meant to be there.

This commit is contained in:
Ludwig Frühschütz 2021-03-26 20:33:21 +01:00
parent 11e62b8425
commit 8a76159703
2 changed files with 2 additions and 2 deletions

View File

@ -160,7 +160,7 @@ bool isMatchingOscType(unsigned int msgType, unsigned int listenerTypeField)
return (listenerTypeField & msgType);
}
DLLEXPORT int handleOscMsg(const osc::ReceivedMessage& m)
int handleOscMsg(const osc::ReceivedMessage& m)
{
int ret = 0;
unsigned int msgType = 0;

View File

@ -23,7 +23,7 @@ extern "C" DLLEXPORT int open(HWND targetWindowHandle, unsigned int port);
extern "C" DLLEXPORT int close(unsigned int clearListeners = 1);
extern "C" DLLEXPORT int addListener(LPCSTR address, unsigned int messageID, unsigned int dataType = OSC_TYPE_ALL);
extern "C" DLLEXPORT int removeListener(LPCSTR address);
extern "C" DLLEXPORT int handleOscMsg(const osc::ReceivedMessage & m);
extern "C" DLLEXPORT int testMsg(HWND windowHandle, unsigned int messageID);
int handleOscMsg(const osc::ReceivedMessage& m);
bool isMatchingOscType(unsigned int msgType, unsigned int listenerTypeField);
unsigned int getOscType(osc::ReceivedMessage::const_iterator arg);