#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