mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
702 B
55 lines
702 B
/*++ BUILD Version: 0001 // Increment this if a change has global effects
|
|
|
|
Copyright (c) 1991 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
arc.h
|
|
|
|
Abstract:
|
|
|
|
This header file defines the ARC status codes.
|
|
|
|
Author:
|
|
|
|
David N. Cutler (davec) 20-Sep-1991
|
|
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifndef _ARCCODES_
|
|
#define _ARCCODES_
|
|
|
|
//
|
|
// Define ARC status codes.
|
|
//
|
|
|
|
typedef enum _ARC_CODES {
|
|
ESUCCESS,
|
|
E2BIG,
|
|
EACCES,
|
|
EAGAIN,
|
|
EBADF,
|
|
EBUSY,
|
|
EFAULT,
|
|
EINVAL,
|
|
EIO,
|
|
EISDIR,
|
|
EMFILE,
|
|
EMLINK,
|
|
ENAMETOOLONG,
|
|
ENODEV,
|
|
ENOENT,
|
|
ENOEXEC,
|
|
ENOMEM,
|
|
ENOSPC,
|
|
ENOTDIR,
|
|
ENOTTY,
|
|
ENXIO,
|
|
EROFS,
|
|
EMAXIMUM
|
|
} ARC_CODES;
|
|
|
|
#endif // ARCCODES
|