github.com/256dpi/max-go@v0.7.0/lib/max/ext_assist.h (about) 1 #ifndef _EXT_ASSIST_H_ 2 #define _EXT_ASSIST_H_ 3 4 #include "max_types.h" 5 #include "ext_prefix.h" 6 #include "ext_mess.h" 7 8 enum t_assist_function { 9 ASSIST_INLET = 1, 10 ASSIST_OUTLET 11 }; 12 13 enum { 14 // external object assist methods should limit returned string lengths to this 15 ASSIST_MAX_STRING_LEN = 500 16 }; 17 18 BEGIN_USING_C_LINKAGE 19 20 void stdinletinfo(t_object *s, void *b, long a, char *t); 21 22 END_USING_C_LINKAGE 23 24 #endif // #ifndef _EXT_ASSIST_H_