f0d81ffd1c
which included commits to RCS files with non-trunk default branches. git-svn-id: svn://10.65.10.50/trunk@5403 c028cbd2-c16b-5b4b-a496-9718f37d4682
39 lines
767 B
C
Executable File
39 lines
767 B
C
Executable File
#ifndef _IZQDOS_H
|
|
#define _IZQDOS_H
|
|
|
|
#include <qdos.h>
|
|
typedef struct
|
|
{
|
|
unsigned short shortid;
|
|
struct
|
|
{
|
|
unsigned char lo;
|
|
unsigned char hi;
|
|
} len;
|
|
char longid[8];
|
|
struct qdirect header;
|
|
} qdosextra;
|
|
|
|
typedef struct
|
|
{
|
|
unsigned short shortid;
|
|
struct
|
|
{
|
|
unsigned char lo;
|
|
unsigned char hi;
|
|
} len;
|
|
char longid[4];
|
|
struct qdirect header;
|
|
} jbextra;
|
|
|
|
#define SHORTID 0x4afb
|
|
#define JBSHORTID 0x4afb
|
|
#define LONGID "QDOS02"
|
|
#define JBLONGID "QZHD"
|
|
#define EXTRALEN (sizeof(qdosextra) - 2 * sizeof(char) - sizeof(short))
|
|
#define JBEXTRALEN (sizeof(jbextra) - 2 * sizeof(char) - sizeof(short))
|
|
|
|
extern short qlflag;
|
|
extern short qlwait;
|
|
#endif
|