Removed "export" statement from osc handler function, never was meant to be there.
This commit is contained in:
parent
11e62b8425
commit
8a76159703
@ -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;
|
||||
|
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user