You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
376 B
C++
17 lines
376 B
C++
#pragma once
|
|
|
|
#include <SC_PlugIn.h>
|
|
|
|
namespace fluid{
|
|
namespace client{
|
|
|
|
void* copyReplyAddress(InterfaceTable* ft, World* inWorld, void* inreply);
|
|
void deleteReplyAddress(InterfaceTable* ft, World* inWorld, void* inreply);
|
|
void* copyReplyAddress(void* inreply);
|
|
void deleteReplyAddress(void* inreply);
|
|
void SendReply(void* inReplyAddr, char* inBuf, int inSize);
|
|
|
|
|
|
}
|
|
}
|