AFPBridge/afpoptions.h
Stephen Heumann 350204f78a Switch to using two-character codes for options and parsing them in the zone name.
This allows more options, and it avoids having to manually specify the strings for all option combinations.
2017-04-22 15:39:02 -05:00

16 lines
264 B
C

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