mirror of
https://github.com/sheumann/AFPBridge.git
synced 2024-11-01 01:05:06 +00:00
15 lines
235 B
C
15 lines
235 B
C
#ifndef AFPOPTIONS_H
|
|
#define AFPOPTIONS_H
|
|
|
|
#define fLargeReads 0x0001
|
|
#define fForceAFP22 0x0002
|
|
|
|
typedef struct AFPOptions {
|
|
char *zoneString;
|
|
unsigned int flags;
|
|
} AFPOptions;
|
|
|
|
extern AFPOptions afpOptions[];
|
|
|
|
#endif
|