mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 23:04:20 +01:00
03c66d5222
git-svn-id: file:///svn/toku/tokudb@19935 c7de825b-a66e-492c-adef-691d508d4ae1
42 lines
662 B
C
42 lines
662 B
C
#ifndef _TOKU_DIRENT_H
|
|
#define _TOKU_DIRENT_H
|
|
|
|
#include "toku_os_types.h"
|
|
#if defined(__cplusplus)
|
|
extern "C" {
|
|
#endif
|
|
|
|
//The DIR functions do not exist in windows, but the Linux API ends up
|
|
//just using a wrapper. We might convert these into an toku_os_* type api.
|
|
|
|
enum {
|
|
DT_UNKNOWN = 0,
|
|
DT_DIR = 4,
|
|
DT_REG = 8
|
|
};
|
|
|
|
struct dirent {
|
|
char d_name[_MAX_PATH];
|
|
unsigned char d_type;
|
|
};
|
|
|
|
struct __toku_windir;
|
|
typedef struct __toku_windir DIR;
|
|
|
|
|
|
DIR *opendir(const char *name);
|
|
|
|
struct dirent *readdir(DIR *dir);
|
|
|
|
int closedir(DIR *dir);
|
|
|
|
#ifndef NAME_MAX
|
|
#define NAME_MAX 255
|
|
#endif
|
|
|
|
#if defined(__cplusplus)
|
|
};
|
|
#endif
|
|
|
|
#endif
|
|
|