summaryrefslogtreecommitdiff
path: root/gsm-tvoid/src/lib/gsmstack.h
blob: 9f0d9d828807c8748c3327d5f0a1c1448ac37e02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

#ifndef __GSMSTACK_H__
#define __GSMSTACK_H__ 1

#ifdef __cplusplus
extern "C" {
#endif

typedef struct
{
	int flags;
} GS_CTX;

int GS_new(GS_CTX *ctx);
int GS_process(GS_CTX *ctx, int ts, int type, char *data);

#ifdef __cplusplus
}
#endif

#endif
personal git repositories of Harald Welte. Your mileage may vary