diff --git a/libsrc/cbm/dir.h b/libsrc/cbm/dir.h new file mode 100644 index 000000000..a1137acfe --- /dev/null +++ b/libsrc/cbm/dir.h @@ -0,0 +1,31 @@ +/* + * Internal include file, do not use directly. + * Written by Ullrich von Bassewitz. Based on code by Groepaz. + */ + + + +#ifndef _DIR_H +#define _DIR_H + + + +/*****************************************************************************/ +/* Data */ +/*****************************************************************************/ + + + +struct DIR { + int fd; /* File descriptor for directory */ + unsigned offs; /* Current byte offset in directory */ + char name[16+1]; /* Name passed to opendir */ +}; + + + +/* End of dir.h */ +#endif + + +