github.com/256dpi/max-go@v0.7.0/lib/max/ext_default.h (about)

     1  #ifndef __EXT_DEFAULT_H__
     2  #define __EXT_DEFAULT_H__
     3  
     4  #define DEFAULT_GLOBAL (void *)-1L		// this will be changed to NULL once hashtab supports it
     5  
     6  #include "ext_prefix.h"
     7  #include "ext_mess.h"
     8  
     9  BEGIN_USING_C_LINKAGE
    10  
    11  t_max_err patcher_setdefault(t_object *patcher, t_symbol *key, long argc, t_atom *argv);
    12  t_max_err patcher_getdefault(t_object *patcher, t_symbol *key, long *argc, t_atom *argv);
    13  t_max_err patcher_removedefault(t_object *patcher, t_symbol *key);
    14  
    15  END_USING_C_LINKAGE
    16  
    17  #endif // __EXT_DEFAULT_H__