summaryrefslogtreecommitdiff
path: root/dmake/os2/dirent.h
blob: eafaccbcc38a1497d629008c140aa7d303ad6cfa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/* DIRLIB.H by M. J. Weinstein   Released to public domain 1-Jan-89 */

#ifndef _DIRLIB_h_
#define _DIRLIB_h_

#define INCL_DOSFILEMGR
#include <os2.h>
#include <stdio.h>
#include <stdlib.h>
#include "stdmacs.h"

#define MAXNAMLEN   _MAX_FNAME

struct dirent {
   long              d_ino;
   unsigned short    d_reclen;
   unsigned short    d_namlen;
   char              d_name[MAXNAMLEN+1];
};

typedef struct {
   HDIR           dd_handle;    /* Handle for FindFirst/Next               */
   FILEFINDBUF3   dd_dta;       /* Disk transfer area for this dir.        */
   ULONG          dd_count;     /* Count for FindFirst/Next                */
   APIRET         dd_stat;      /* Status return from last lookup          */
   char           dd_name[1];   /* Full name of file -- struct is extended */
} DIR;

extern DIR           *opendir   ANSI((char *));
extern struct dirent *readdir   ANSI((DIR *));
extern long          telldir    ANSI((DIR *));
extern void          seekdir    ANSI((DIR *, long));
extern void          closedir   ANSI((DIR *));

#define rewinddir(dirp)   seekdir(dirp,0L)
#endif