00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef _OSC_H
00010 #define _OSC_H
00011
00012 #include "global.h"
00013 #include <progmem.h>
00014
00015 #define oscSendMessageOneArg oscSendMessageInt
00016
00017 void oscInit(void);
00018 void oscSendMessage(const char PROGMEM *address);
00019 void oscSendMessageInt(const char PROGMEM *address, s32 arg);
00020 void oscSendMessageIntInt(const char PROGMEM *address, s32 arg, s32 arg2);
00021 void oscSendMessageString(const char PROGMEM *address, const char PROGMEM *arg);
00022
00023
00024 #endif