This repository has been archived on 2024-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
CodeBlocksPortable/WATCOM/h/sys/stat.h

206 lines
7.7 KiB
C

/*
* sys/stat.h Equates and prototype for fstat, stat functions
*
* =========================================================================
*
* Open Watcom Project
*
* Copyright (c) 2002-2010 Open Watcom Contributors. All Rights Reserved.
* Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Reserved.
*
* This file is automatically generated. Do not edit directly.
*
* =========================================================================
*/
#ifndef _STAT_H_INCLUDED
#define _STAT_H_INCLUDED
#ifndef _ENABLE_AUTODEPEND
#pragma read_only_file;
#endif
#ifndef _COMDEF_H_INCLUDED
#include <_comdef.h>
#endif
#if defined(__WATCOM_LFN__) && defined(__DOS__) && !defined(__LFNDOS_H_INCLUDED)
#include <sys/_lfndos.h>
#endif
#ifndef __TYPES_H_INCLUDED
#include <sys/types.h>
#endif
#ifdef __cplusplus
extern "C" {
#endif
#ifdef _M_IX86
#pragma pack( __push, 1 )
#else
#pragma pack( __push, 8 )
#endif
#ifndef _MAX_NAME
#define _MAX_NAME 13 /* maximum length of file name (with extension) */
#endif
#ifndef __cplusplus
#ifndef _WCHAR_T_DEFINED
#define _WCHAR_T_DEFINED
#define _WCHAR_T_DEFINED_
typedef unsigned short wchar_t;
#endif
#endif
struct _stat {
dev_t st_dev; /* disk drive file resides on */
ino_t st_ino; /* this inode's #, not used for DOS */
unsigned short st_mode; /* file mode */
short st_nlink; /* # of hard links */
unsigned long st_uid; /* user-id, always 'root' */
short st_gid; /* group-id, always 'root' */
dev_t st_rdev; /* should be device type */
/* but same as st_dev for the time being */
off_t st_size; /* total file size */
time_t st_atime; /* should be file last access time */
time_t st_mtime; /* file last modify time */
time_t st_ctime; /* should be file last status change time */
time_t st_btime; /* last archived date and time */
unsigned long st_attr; /* file attributes */
/* next 4 fields Netware only */
unsigned long st_archivedID; /* user/object ID that last archived file*/
unsigned long st_updatedID; /* user/object ID that last updated file*/
unsigned short st_inheritedRightsMask;
unsigned char st_originatingNameSpace;
};
#if !defined(NO_EXT_KEYS) /* extensions enabled */
/* non-ISO names */
struct stat {
dev_t st_dev; /* disk drive file resides on */
ino_t st_ino; /* this inode's #, not used for DOS */
unsigned short st_mode; /* file mode */
short st_nlink; /* # of hard links */
unsigned long st_uid; /* user-id, always 'root' */
short st_gid; /* group-id, always 'root' */
dev_t st_rdev; /* should be device type */
/* but same as st_dev for the time being */
off_t st_size; /* total file size */
time_t st_atime; /* should be file last access time */
time_t st_mtime; /* file last modify time */
time_t st_ctime; /* should be file last status change time */
time_t st_btime; /* last archived date and time */
unsigned long st_attr; /* file attributes */
/* next 4 fields Netware only */
unsigned long st_archivedID; /* user/object ID that last archived file*/
unsigned long st_updatedID; /* user/object ID that last updated file*/
unsigned short st_inheritedRightsMask;
unsigned char st_originatingNameSpace;
};
#endif /* extensions enabled */
struct _stati64 {
dev_t st_dev; /* disk drive file resides on */
ino_t st_ino; /* this inode's #, not used for DOS */
unsigned short st_mode; /* file mode */
short st_nlink; /* # of hard links */
unsigned long st_uid; /* user-id, always 'root' */
short st_gid; /* group-id, always 'root' */
dev_t st_rdev; /* should be device type */
/* but same as st_dev for the time being */
__int64 st_size; /* total file size */
time_t st_atime; /* should be file last access time */
time_t st_mtime; /* file last modify time */
time_t st_ctime; /* should be file last status change time */
time_t st_btime; /* last archived date and time */
unsigned long st_attr; /* file attributes */
/* next 4 fields Netware only */
unsigned long st_archivedID; /* user/object ID that last archived file*/
unsigned long st_updatedID; /* user/object ID that last updated file*/
unsigned short st_inheritedRightsMask;
unsigned char st_originatingNameSpace;
};
/* File attribute constants for st_mode field */
#define _S_IFMT 0170000 /* type of file */
#define _S_IFDIR 0040000 /* directory */
#define _S_IFCHR 0020000 /* character special file */
#define _S_IFIFO 0010000 /* FIFO */
#define _S_IFREG 0100000 /* regular */
#define _S_IFBLK 0060000 /* block special */
#define _S_IFLNK 0120000 /* symbolic link */
#define _S_IFSOCK 0140000 /* socket */
#define _S_IREAD 0000400
#define _S_IWRITE 0000200
#define _S_IEXEC 0000100
/* Not all of the following are possible on DOSish systems */
#define S_ISBLK( m ) 0
#define S_ISCHR( m ) (((m) & S_IFMT) == S_IFCHR)
#define S_ISDIR( m ) (((m) & S_IFMT) == S_IFDIR)
#define S_ISFIFO( m ) (((m) & S_IFMT) == S_IFIFO)
#define S_ISREG( m ) (((m) & S_IFMT) == S_IFREG)
#define S_ISLNK( m ) 0
#define S_ISSOCK( m ) 0
/* owner permission */
#define S_IRWXU 0000700
#define S_IRUSR 0000400
#define S_IWUSR 0000200
#define S_IXUSR 0000100
/* group permission. same as owners on PC */
#define S_IRWXG 0000070
#define S_IRGRP 0000040
#define S_IWGRP 0000020
#define S_IXGRP 0000010
/* other permission. same as owners on PC */
#define S_IRWXO 0000007
#define S_IROTH 0000004
#define S_IWOTH 0000002
#define S_IXOTH 0000001
/* setuid, setgid, and sticky. always false on PC */
#define S_ISUID 0004000
#define S_ISGID 0002000
#define S_ISVTX 0001000
_WCRTLINK extern int _fstat( int, struct _stat * );
_WCRTLINK extern int _stat( const char *, struct _stat * );
_WCRTLINK extern int _wstat( const wchar_t *, struct _stat * );
_WCRTLINK extern int _wfstat( int, struct _stat * );
_WCRTLINK extern int _fstati64( int, struct _stati64 * );
_WCRTLINK extern int _wfstati64( int, struct _stati64 * );
_WCRTLINK extern int _stati64( const char *, struct _stati64 * );
_WCRTLINK extern int _wstati64( const wchar_t *, struct _stati64 * );
#if !defined(NO_EXT_KEYS) /* extensions enabled */
/* non-ISO names */
#define S_IFMT _S_IFMT
#define S_IFBLK _S_IFBLK
#define S_IFCHR _S_IFCHR
#define S_IFIFO _S_IFIFO
#define S_IFREG _S_IFREG
#define S_IFDIR _S_IFDIR
#define S_IFLNK _S_IFLNK
#define S_IFSOCK _S_IFSOCK
#define S_IREAD _S_IREAD
#define S_IWRITE _S_IWRITE
#define S_IEXEC _S_IEXEC
_WCRTLINK extern int fstat( int, struct stat * );
_WCRTLINK extern int stat( const char *, struct stat * );
_WCRTLINK extern int lstat( const char *, struct stat * );
#endif /* extensions enabled */
#pragma pack( __pop )
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif