53 lines
1.5 KiB
C
Executable File
53 lines
1.5 KiB
C
Executable File
#ifndef h_uvstat
|
|
#define h_uvstat
|
|
/******************************************************************************
|
|
*
|
|
* Declarations for UniVerse uv_stat call structure
|
|
*
|
|
* Module %M% Version %I% Date %H%
|
|
*
|
|
* (c) Copyright 1998 Ardent Software Inc. - All Rights Reserved
|
|
* This is unpublished proprietary source code of Ardent Software Inc.
|
|
* The copyright notice above does not evidence any actual or intented
|
|
* publication of such source code.
|
|
*
|
|
*******************************************************************************
|
|
*
|
|
* Maintenence log - insert most recent change descriptions at top
|
|
*
|
|
* Date.... GTAR# WHO Description.........................................
|
|
* 05/05/99 24483 RGA change st_size to UVINT.
|
|
* 10/14/98 23801 SAP Change copyrights.
|
|
* 05/31/95 16490 FRA Port to SGI
|
|
* 04/18/95 16244 GMM Module Created
|
|
*
|
|
*****************************************************************************/
|
|
|
|
#include OS_STAT_H
|
|
|
|
/*
|
|
* define the universe stat structure for use with uv_stat calls.
|
|
*/
|
|
struct uv_stat_buf {
|
|
unsigned int st_dev;
|
|
unsigned int st_ino;
|
|
unsigned short st_mode;
|
|
short st_nlink;
|
|
int st_uid;
|
|
int st_gid;
|
|
unsigned int st_rdev;
|
|
UVINT st_size;
|
|
int st_atim;
|
|
int st_mtim;
|
|
int st_ctim;
|
|
};
|
|
|
|
/*
|
|
* define our uv_stat/uv_fstat routines
|
|
*/
|
|
extern int uv_stat();
|
|
extern int uv_fstat();
|
|
extern int uv_lstat();
|
|
|
|
#endif
|