blob: 397efb8dbb95c927b8d03dbfb28912b61a5442d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef PN_TRANS_H
#define PN_TRANS_H
struct pn_trans {
int id;
char *command;
char *params;
};
struct pn_trans *pn_trans_new(void);
void pn_trans_free(struct pn_trans *trans);
char *pn_trans_to_string(struct pn_trans *trans);
#endif /* PN_TRANS_H */
|