AFPBridge/afpoptions.h

16 lines
266 B
C

#ifndef AFPOPTIONS_H
#define AFPOPTIONS_H
#define fLargeReads 0x0001
#define fForceAFP22 0x0002
#define fFakeSleep 0x0004
typedef struct AFPOptions {
char *zoneString;
unsigned int flags;
} AFPOptions;
extern AFPOptions afpOptions[];
#endif