File: pdp_control.h

package info (click to toggle)
pdp 1%3A0.14.1%2Bdarcs20180201-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 3,228 kB
  • sloc: ansic: 22,424; asm: 2,088; makefile: 537; perl: 145; sh: 108; cpp: 4
file content (12 lines) | stat: -rw-r--r-- 297 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef __PDP_CONTROL_H__
#define __PDP_CONTROL_H__

#include "pdp_pd.h"

struct _pdp_control;
typedef void (t_pdp_control_method_notify)(struct _pdp_control *x);

void pdp_control_notify_broadcast(t_pdp_control_method_notify *notify);
void pdp_control_addmethod(t_method m, t_symbol *s);

#endif