Windows2003-3790/public/halkit/inc/arccodes.h
2020-09-30 16:53:55 +02:00

56 lines
1.1 KiB
C
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*++ BUILD Version: 0001 // Increment this if a change has global effects
Copyright (c) Microsoft Corporation. All rights reserved.
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, // 0
E2BIG, // 1
EACCES, // 2
EAGAIN, // 3
EBADF, // 4
EBUSY, // 5
EFAULT, // 6
EINVAL, // 7
EIO, // 8
EISDIR, // 9
EMFILE, // 10
EMLINK, // 11
ENAMETOOLONG, // 12
ENODEV, // 13
ENOENT, // 14
ENOEXEC, // 15
ENOMEM, // 16
ENOSPC, // 17
ENOTDIR, // 18
ENOTTY, // 19
ENXIO, // 20
EROFS, // 21
EMAXIMUM // 22
} ARC_CODES;
#endif // ARCCODES