gstreamer/test/cothreads/looper.h
Erik Walthinsen 0ec400890c initial checkin
Original commit message from CVS:
initial checkin
2000-01-30 10:44:33 +00:00

19 lines
318 B
C

#ifndef __LOOPER_H__
#define __LOOPER_H__
#include "object.h"
#define LOOPER(l) ((looper *)(l))
typedef struct _looper looper;
struct _looper {
object object;
int source;
};
void looper_init(looper *l,int source);
looper *looper_create(char *name,int source,cothread_context *ctx);
#endif /* __LOOPER_H__ */