mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 04:13:31 +00:00
- Remove internal HAL function from ntifs
- Make sure obfuncs.h includes obtypes.h if it's ever included separately. - Add ARC_STATUS and ARC Error Codes. svn path=/trunk/; revision=24766
This commit is contained in:
@@ -3061,13 +3061,6 @@ HalDisplayString (
|
||||
IN PCHAR String
|
||||
);
|
||||
|
||||
NTHALAPI
|
||||
VOID
|
||||
NTAPI
|
||||
HalSetRealTimeClock (
|
||||
IN PTIME_FIELDS TimeFields
|
||||
);
|
||||
|
||||
NTKERNELAPI
|
||||
NTSTATUS
|
||||
NTAPI
|
||||
|
||||
@@ -23,6 +23,7 @@ Author:
|
||||
// Dependencies
|
||||
//
|
||||
#include <umtypes.h>
|
||||
#include <obtypes.h>
|
||||
|
||||
#ifndef NTOS_MODE_USER
|
||||
|
||||
|
||||
@@ -1,6 +1,35 @@
|
||||
#ifndef _ARC_
|
||||
#define _ARC_
|
||||
|
||||
typedef ULONG ARC_STATUS;
|
||||
|
||||
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;
|
||||
|
||||
typedef enum _IDENTIFIER_FLAG
|
||||
{
|
||||
Failed = 0x01,
|
||||
|
||||
Reference in New Issue
Block a user