windows-nt/Source/XPSP1/NT/drivers/smartcrd/ifdtest/errmap.c

38 lines
713 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
//+-------------------------------------------------------------------------
//
// Microsoft Windows
//
// Copyright (C) Microsoft Corporation, 1998 - 1999
//
// File: errmap.c
//
//--------------------------------------------------------------------------
typedef long LONG;
typedef LONG NTSTATUS;
#include <ntstatus.h>
#include <winerror.h>
//#define WIN32_NO_STATUS
#include "errmap.h"
LONG
MapWinErrorToNtStatus(
LONG in_uErrorCode
)
{
LONG i;
for (i = 0; i < sizeof(CodePairs) / sizeof(CodePairs[0]); i += 2) {
if (CodePairs[i + 1] == in_uErrorCode) {
return CodePairs[i];
}
}
return -1;
}