Handle create_pfbus_handle(const Arg args[], const int nargs) { // BGG mm -- see note aboove PField *pField = create_pfbus_pfield(args, nargs); Handle handle = NULL; if (pField != NULL) { handle = createPFieldHandle(pField); } return handle; }
Handle #ifdef MAXMSP create_pfbus_handle(const Arg args[], const int nargs) { PField *pField = create_pfbus_pfield(args, nargs); #else create_handle(const Arg args[], const int nargs) { PField *pField = create_pfield(args, nargs); #endif Handle handle = NULL; if (pField != NULL) { handle = createPFieldHandle(pField); } return handle; }