blob: 5e6bdf47c50b57cfd97bd799471455e9958f694d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef CDBMSS_H
#define CDBMSS_H
#include "cdbmake.h"
#include "substdio.h"
struct cdbmss {
char ssbuf[1024];
struct cdbmake cdbm;
substdio ss;
char packbuf[8];
uint32 pos;
int fd;
} ;
#endif
|