mirror of
https://github.com/reactos/reactos.git
synced 2024-12-26 00:54:40 +00:00
Temporary code
svn path=/trunk/; revision=2958
This commit is contained in:
parent
34a6708f44
commit
084950fd26
3 changed files with 11 additions and 6 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: dirent.h,v 1.3 2002/03/22 01:26:28 hyperion Exp $
|
||||
/* $Id: dirent.h,v 1.4 2002/05/17 01:47:13 hyperion Exp $
|
||||
*/
|
||||
/*
|
||||
* dirent.h
|
||||
|
@ -33,17 +33,19 @@
|
|||
/* TYPES */
|
||||
typedef void DIR;
|
||||
|
||||
#define NAME_MAX (255)
|
||||
|
||||
struct dirent
|
||||
{
|
||||
ino_t d_ino; /* file serial number */
|
||||
char d_name[NAME_MAX + 1]; /* name of entry */
|
||||
char * d_name /* [NAME_MAX + 1] */; /* name of entry */
|
||||
};
|
||||
|
||||
/* for Unicode filenames */
|
||||
struct _Wdirent
|
||||
{
|
||||
ino_t d_ino; /* file serial number */
|
||||
wchar_t d_name[NAME_MAX + 1]; /* name of entry */
|
||||
wchar_t * d_name/* [NAME_MAX + 1] */; /* name of entry */
|
||||
};
|
||||
|
||||
/* CONSTANTS */
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $Id: limits.h,v 1.2 2002/02/20 09:17:54 hyperion Exp $
|
||||
/* $Id: limits.h,v 1.3 2002/05/17 01:47:13 hyperion Exp $
|
||||
*/
|
||||
/*
|
||||
* limits.h
|
||||
|
@ -34,6 +34,9 @@
|
|||
/* CONSTANTS */
|
||||
/* TODO */
|
||||
#define OPEN_MAX (256)
|
||||
#define NAME_MAX (255)
|
||||
#define ARG_MAX (255)
|
||||
#define PATH_MAX (32768)
|
||||
|
||||
/* PROTOTYPES */
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $Id: time.h,v 1.2 2002/02/20 09:17:55 hyperion Exp $
|
||||
/* $Id: time.h,v 1.3 2002/05/17 01:47:13 hyperion Exp $
|
||||
*/
|
||||
/*
|
||||
* time.h
|
||||
|
@ -30,7 +30,7 @@
|
|||
#include <sys/types.h>
|
||||
|
||||
/* OBJECTS */
|
||||
//extern static int getdate_err; /* FIXME */
|
||||
/* extern static int getdate_err; */ /* FIXME */
|
||||
extern int daylight;
|
||||
extern long int timezone;
|
||||
extern char *tzname[];
|
||||
|
|
Loading…
Reference in a new issue