Quantcast
Channel: windows deep internals
Viewing all 264 articles
Browse latest View live

exref.pl

$
0
0
averycommonproblem in staticcode analysis is findingan exported functions that refers tosome desired address. For example KseEngine has 21 references in windows kernel but only 5of these functionsareexported
So I wrote simple perl script for IDA Pro to automate thisboring work. Sample of output for KseEngine:
_KseQueryDeviceFlags@12: 74A6C1 addr 74A6E2
_KseQueryDeviceData@20: 74A75B addr 74A77A
_KseQueryDeviceDataList@16: 7A5E74 addr 7A5E95
_KseSetDeviceFlags@16: 7A672D addr 7A6760
_KseUnregisterShim@12: 7A692B addr 7A698B


use strict;
use warnings;
use IDA;

sub enum_exports
{

my$href = shift;
my$qty = GetEntryPointQty();
returnif( !$qty);
my($i, $addr, $res);
$res = 0;
for($i = 0; $i< $qty; $i++ )
{
$addr = GetEntryOrdinal($i);
nextif( !$addr);
$addr = GetEntryPoint($addr);
nextif( !$addr);
# check if this addr already known - one symbol can have lots of exported names
nextif(exists$href->{$addr});
# check if this symbol is function
my$addr = GetFunctionAttr($addr, 0);
nextif($addr == -1 or
$addr == BADADDR
);
# o`k, lets add it
$href->{$addr}++;
$res++;
}
return$res;
}

# main
my(%exfuncs, $iter, $addr);
enum_exports(\%exfuncs);
$addr = ScreenEA();
# enum all xrefs to this addr
for($iter = DfirstB($addr); $iter != BADADDR; $iter = DnextB($addr, $iter))
{
# get function start
my$faddr = GetFunctionAttr($iter, 0);
nextif($faddr == -1 or
$faddr == BADADDR
);
nextif( ! exists$exfuncs{$faddr});
my$name = GetFunctionName($faddr);
printf("%s: %X addr %X\n", $name, $faddr, $iter);
}

crc32 binding for perl

$
0
0
I am tired calculating thousands crc32 hashes of exported functions so I made today binding crc32 for perl
Sample of using:
my $val = crc::my_crc32("GetProcAddress"); # 0xC97C1FFF

or even inside IDA Pro:
use IDA;
use crc;

sub form_ascii
{
  my $addr = shift;
  my $res = '';
  my $c;
  while( $c = Byte($addr) )
  {
    $res .= chr($c);
    $addr++;
  }
  return $res;
}

printf("%X\n", crc::my_crc32(form_ascii(ScreenEA())));

This binding uses swig
crc.asm
    .386
    .MODEL FLAT
    public _my_crc32
.code
CRC_32 proc
         push   ecx
         push   edx
         push   ebx
         xor    ecx, ecx
         dec    ecx
         mov    edx, ecx

NextByteCRC:
         xor    eax, eax
         xor    ebx, ebx
         lodsb
         test   al, al
         jz     short EndCRC32
         xor    al, cl
         mov    cl, ch
         mov    ch, dl
         mov    dl, dh
         mov    dh, 8

NextBitCRC:
         shr    bx, 1
         rcr    ax, 1
         jnc    short NoCRC
         xor    ax, 08320h
         xor    bx, 0EDB8h

NoCRC:
         dec    dh
         jnz    short NextBitCRC
         xor    ecx, eax
         xor    edx, ebx
         jmp    short NextByteCRC

EndCRC32:
         not    edx
         not    ecx
         pop    ebx
         mov    eax, edx
         rol    eax, 16
         mov    ax, cx
         pop    edx
         pop    ecx
         ret
CRC_32 endp

_my_crc32 proc
    push esi
    mov esi, [esp + 8]
    call CRC_32
    pop esi
    retn
_my_crc32 endp

END


crc.i 
%module crc

extern unsigned long my_crc32(const char *);


Makefile.pl
require 5.004 ;
use ExtUtils::MakeMaker;

WriteMakefile(
    'CCCDLFLAGS' => '/MT /EHsc',
    'INC'        =
>'-I.',
    'NAME'       =
>'crc',
    'OBJECT'     =
>'crc_wrap.obj crc.obj',
    'LIBS'       =
>'-llibcmt'
  );


Building of binding is very easy:  
swig.exe -perl -compat -noproxy crc.i
perl Makefile.pl
nmake
nmake install

clang and msbuild integration

$
0
0
chapter 12 of "Inside the Microsoft Build Engine" describes how you can add mingw toolchain to msbuild (visual studio 2010 and newer versions)
So I was very glad to see this patch. But it seems that it does not contains nothing usefull and just don't works !
I wonder if there are some way to integrate clang with msbuild. I missed something ?

w8.1 rtm W32pServiceTable

$
0
0
W32pServiceLimit .eq. 0x40C

NtUserYieldTask
NtUserSetSensorPresence
NtGdiWidenPath
NtGdiUpdateColors
NtGdiUnrealizeObject
NtGdiUnmapMemFont
NtGdiUnloadPrinterDriver
NtGdiTransparentBlt
NtGdiTransformPoints
NtGdiSwapBuffers
NtGdiStrokePath
NtGdiStrokeAndFillPath
NtGdiStretchDIBitsInternal
NtGdiStretchBlt
NtGdiStartPage
NtGdiStartDoc
NtGdiSetSizeDevice
NtGdiSetVirtualResolution
NtGdiSetTextJustification
NtGdiSetSystemPaletteUse
NtGdiSetRectRgn
NtGdiSetPixelFormat
NtGdiSetPixel
NtGdiSetOPMSigningKeyAndSequenceNumbers
NtGdiSetLayout
NtGdiMirrorWindowOrg
NtGdiGetDeviceWidth
NtGdiSetMiterLimit
NtGdiSetMetaRgn
NtGdiSetMagicColors
NtGdiSetLinkedUFIs
NtGdiSetIcmMode
NtGdiSetFontXform
NtGdiSetFontEnumeration
NtGdiSetDIBitsToDeviceInternal
NtGdiSetDeviceGammaRamp
NtGdiSetColorSpace
NtGdiSetColorAdjustment
NtGdiSetBrushOrg
NtGdiSetBrushAttributes
NtGdiSetBoundsRect
NtGdiSetBitmapDimension
NtGdiSetBitmapBits
NtGdiSetBitmapAttributes
NtGdiSelectPen
NtGdiSelectFont
NtGdiSelectClipPath
NtGdiSelectBrush
NtGdiSelectBitmap
NtGdiScaleWindowExtEx
NtGdiScaleViewportExtEx
NtGdiSaveDC
NtGdiRoundRect
NtGdiRestoreDC
NtGdiResizePalette
NtGdiResetDC
NtGdiRemoveFontMemResourceEx
NtGdiRemoveFontResourceW
NtGdiRectVisible
NtGdiRectInRegion
NtGdiRectangle
NtGdiQueryFontAssocInfo
NtGdiQueryFonts
NtGdiPtVisible
NtGdiPtInRegion
NtGdiPolyTextOutW
NtGdiPolyPolyDraw
NtGdiPolyDraw
NtGdiPlgBlt
NtGdiPathToRegion
NtGdiPolyPatBlt
NtGdiPatBlt
NtGdiOpenDCW
NtGdiOffsetRgn
NtGdiOffsetClipRgn
NtGdiMoveTo
NtGdiMonoBitmap
NtGdiModifyWorldTransform
NtGdiMaskBlt
NtGdiMakeInfoDC
NtGdiMakeFontDir
NtGdiLineTo
NtGdiInvertRgn
NtGdiIntersectClipRect
NtGdiInitSpool
NtGdiInit
NtGdiIcmBrushInfo
NtGdiHfontCreate
NtGdiGradientFill
NtGdiGetWidthTable
NtGdiGetFontUnicodeRanges
NtGdiAddEmbFontToDC
NtGdiChangeGhostFont
NtGdiGetEmbedFonts
NtGdiGetUFIPathname
NtGdiGetEmbUFI
NtGdiGetUFI
NtGdiGetTransform
NtGdiGetTextMetricsW
NtGdiGetTextFaceW
NtGdiGetTextExtentExW
NtGdiGetTextExtent
NtGdiGetTextCharsetInfo
NtGdiGetSystemPaletteUse
NtGdiGetSuggestedOPMProtectedOutputArraySize
NtGdiGetStringBitmapW
NtGdiGetStockObject
NtGdiGetStats
NtGdiGetSpoolMessage
NtGdiGetServerMetaFileBits
NtGdiGetRgnBox
NtGdiGetRegionData
NtGdiGetRealizationInfo
NtGdiGetRasterizerCaps
NtGdiGetRandomRgn
NtGdiGetPixel
NtGdiGetPath
NtGdiGetOutlineTextMetricsInternalW
NtGdiGetOPMRandomNumber
NtGdiGetObjectBitmapHandle
NtGdiGetNearestPaletteIndex
NtGdiGetNearestColor
NtGdiGetMonitorID
NtGdiGetMiterLimit
NtGdiGetLinkedUFIs
NtGdiGetKerningPairs
NtGdiGetOPMInformation
NtGdiGetGlyphOutline
NtGdiGetGlyphIndicesWInternal
NtGdiGetGlyphIndicesW
NtGdiGetFontResourceInfoInternalW
NtGdiGetFontFileInfo
NtGdiGetFontFileData
NtGdiGetFontData
NtGdiGetEudcTimeStampEx
NtGdiGetETM
NtGdiGetDIBitsInternal
NtGdiGetDeviceCapsAll
NtGdiGetDeviceGammaRamp
NtGdiGetDeviceCaps
NtGdiGetDCPoint
NtGdiGetDCObject
NtGdiGetDCforBitmap
NtGdiGetDCDword
NtGdiGetCurrentDpiInfo
NtGdiGetCOPPCompatibleOPMInformation
NtGdiGetColorSpaceforBitmap
NtGdiGetColorAdjustment
NtGdiGetCharWidthInfo
NtGdiGetCharWidthW
NtGdiGetCharSet
NtGdiGetCharacterPlacementW
NtGdiGetCharABCWidthsW
NtGdiGetCertificateSize
NtGdiGetCertificate
NtGdiGetBoundsRect
NtGdiGetBitmapDimension
NtGdiGetBitmapBits
NtGdiGetAppClipBox
NtGdiGetAndSetDCDword
NtGdiFullscreenControl
NtGdiFrameRgn
NtGdiForceUFIMapping
NtGdiFlush
NtGdiFlattenPath
NtGdiFillRgn
NtGdiFillPath
NtGdiExtTextOutW
NtGdiExtSelectClipRgn
NtGdiExtGetObjectW
NtGdiExtFloodFill
NtGdiExtEscape
NtGdiExtCreateRegion
NtGdiExtCreatePen
NtGdiExcludeClipRect
NtGdiEudcLoadUnloadLink
NtGdiEqualRgn
NtGdiEnumObjects
NtGdiEnumFonts
NtGdiEndPath
NtGdiEndPage
NtGdiEndGdiRendering
NtGdiEndDoc
NtGdiEnableEudc
NtGdiEllipse
NtGdiDrawEscape
NtGdiDoPalette
NtGdiDoBanding
NtGdiGetPerBandInfo
NtGdiDestroyOPMProtectedOutput
NtGdiDescribePixelFormat
NtGdiDeleteObjectApp
NtGdiDeleteColorTransform
NtGdiDeleteColorSpace
NtGdiDeleteClientObj
NtGdiDxgGenericThunk
NtGdiDvpReleaseNotification
NtGdiDvpAcquireNotification
NtGdiDvpWaitForVideoPortSync
NtGdiDvpUpdateVideoPort
NtGdiDvpGetVideoSignalStatus
NtGdiDvpGetVideoPortConnectInfo
NtGdiDvpGetVideoPortOutputFormats
NtGdiDvpGetVideoPortLine
NtGdiDvpGetVideoPortInputFormats
NtGdiDvpGetVideoPortFlipStatus
NtGdiDvpGetVideoPortField
NtGdiDvpGetVideoPortBandwidth
NtGdiDvpFlipVideoPort
NtGdiDvpDestroyVideoPort
NtGdiDvpCreateVideoPort
NtGdiDvpColorControl
NtGdiDvpCanCreateVideoPort
NtGdiDdWaitForVerticalBlank
NtGdiDdUpdateOverlay
NtGdiDdUnlockD3D
NtGdiDdUnlock
NtGdiDdUnattachSurface
NtGdiDdSetOverlayPosition
NtGdiDdCreateSurfaceEx
NtGdiDdSetGammaRamp
NtGdiDdSetExclusiveMode
NtGdiDdSetColorKey
NtGdiDdResetVisrgn
NtGdiDdRenderMoComp
NtGdiDdReleaseDC
NtGdiDdReenableDirectDrawObject
NtGdiDdQueryMoCompStatus
NtGdiDdQueryDirectDrawObject
NtGdiDdLockD3D
NtGdiDdLock
NtGdiDdGetScanLine
NtGdiDdGetMoCompFormats
NtGdiDdGetMoCompGuids
NtGdiDdGetMoCompBuffInfo
NtGdiDdGetInternalMoCompInfo
NtGdiDdGetFlipStatus
NtGdiDdGetDxHandle
NtGdiDdGetDriverInfo
NtGdiDdGetDC
NtGdiDdGetBltStatus
NtGdiDdGetAvailDriverMemory
NtGdiDdFlipToGDISurface
NtGdiDdFlip
NtGdiDdEndMoCompFrame
NtGdiDdDestroyD3DBuffer
NtGdiDdDestroySurface
NtGdiDdDestroyMoComp
NtGdiDdDeleteSurfaceObject
NtGdiDdDeleteDirectDrawObject
NtGdiDdCreateSurfaceObject
NtGdiDdCreateMoComp
NtGdiDdCreateD3DBuffer
NtGdiDdCreateSurface
NtGdiDdCreateDirectDrawObject
NtGdiDdColorControl
NtGdiDdCanCreateD3DBuffer
NtGdiDdCanCreateSurface
NtGdiDdBlt
NtGdiDdBeginMoCompFrame
NtGdiDdAttachSurface
NtGdiDdAlphaBlt
NtGdiDdAddAttachedSurface
NtGdiDdGetDriverState
NtGdiD3dDrawPrimitives2
NtGdiD3dValidateTextureStageState
NtGdiD3dContextDestroyAll
NtGdiD3dContextDestroy
NtGdiD3dContextCreate
NtGdiCreateSolidBrush
NtGdiCreateServerMetaFile
NtGdiCreateRoundRectRgn
NtGdiCreateRectRgn
NtGdiCreatePen
NtGdiCreatePatternBrushInternal
NtGdiCreatePaletteInternal
NtGdiCreateOPMProtectedOutputs
NtGdiCreateMetafileDC
NtGdiCreateHatchBrushInternal
NtGdiCreateHalftonePalette
NtGdiCreateEllipticRgn
NtGdiCreateSessionMappedDIBSection
NtGdiCreateDIBSection
NtGdiCreateDIBitmapInternal
NtGdiCreateDIBBrush
NtGdiCreateCompatibleDC
NtGdiCreateCompatibleBitmap
NtGdiCreateColorTransform
NtGdiCreateColorSpace
NtGdiCreateClientObj
NtGdiCreateBitmapFromDxSurface2
NtGdiCreateBitmapFromDxSurface
NtGdiCreateBitmap
NtGdiConvertMetafileRect
NtGdiConfigureOPMProtectedOutput
NtGdiComputeXformCoefficients
NtGdiCombineTransform
NtGdiCombineRgn
NtGdiColorCorrectPalette
NtGdiClearBrushAttributes
NtGdiClearBitmapAttributes
NtGdiCloseFigure
NtGdiCheckBitmapBits
NtGdiCancelDC
NtGdiBitBlt
NtGdiBeginPath
NtGdiBeginGdiRendering
NtGdiArcInternal
NtGdiFontIsLinked
NtGdiAnyLinkedFonts
NtGdiAngleArc
NtGdiAlphaBlend
NtGdiAddRemoteMMInstanceToDC
NtGdiRemoveMergeFont
NtGdiAddFontMemResourceEx
NtGdiAddRemoteFontToDC
NtGdiAddFontResourceW
NtGdiAbortPath
NtGdiAbortDoc
NtUserDefSetText
NtUserDeferWindowPosAndBand
NtUserDdeInitialize
NtUserCanBrokerForceForeground
NtUserCreateWindowStation
NtUserCreateWindowEx
NtUserCreateLocalMemHandle
NtUserCreateInputContext
NtUserCreateDesktopEx
NtUserCreateCaret
NtUserCreateAcceleratorTable
NtUserCountClipboardFormats
NtUserCopyAcceleratorTable
NtUserConvertMemHandle
NtUserConsoleControl
NtUserCloseWindowStation
NtUserCloseDesktop
NtUserCloseClipboard
NtUserClipCursor
NtUserChildWindowFromPointEx
NtUserCheckMenuItem
NtUserCheckWindowThreadDesktop
NtUserDwmValidateWindow
NtUserCheckAccessForIntegrityLevel
NtUserDisplayConfigSetDeviceInfo
NtUserDisplayConfigGetDeviceInfo
NtUserQueryDisplayConfig
NtUserSetDisplayConfig
NtUserGetDisplayConfigBufferSizes
NtUserChangeDisplaySettings
NtUserChangeClipboardChain
NtUserCallTwoParam
NtUserCallOneParam
NtUserCallNoParam
NtUserCallNextHookEx
NtUserCallMsgFilter
NtUserCallHwndParamLock
NtUserCallHwndParam
NtUserCallHwndOpt
NtUserCallHwndLock
NtUserCallHwnd
NtUserBuildPropList
NtUserBuildNameList
NtUserBuildHwndList
NtUserBuildHimcList
NtUserBlockInput
NtUserBitBltSysBmp
NtUserBeginPaint
NtUserAttachThreadInput
NtUserAssociateInputContext
NtUserAlterWindowStyle
NtUserAddClipboardFormatListener
NtUserActivateKeyboardLayout
NtUserDelegateCapturePointers
NtUserDelegateInput
NtUserDispatchMessage
NtUserDisableProcessWindowFiltering
NtUserDisableThreadIme
NtUserDestroyWindow
NtUserDestroyMenu
NtUserDestroyInputContext
NtUserDestroyCursor
NtUserDestroyAcceleratorTable
NtUserDeleteMenu
NtUserDoSoundDisconnect
NtUserDoSoundConnect
NtUserGhostWindowFromHungWindow
NtUserGetWOWClass
NtUserGetWindowPlacement
NtUserGetWindowDisplayAffinity
NtUserGetWindowDC
NtUserGetWindowCompositionAttribute
NtUserGetWindowCompositionInfo
NtUserGetWindowBand
NtUserGetUpdateRgn
NtUserGetUpdateRect
NtUserGetUpdatedClipboardFormats
NtUserGetTopLevelWindow
NtUserGetTitleBarInfo
NtUserGetThreadState
NtUserGetThreadDesktop
NtUserGetSystemMenu
NtUserGetScrollBarInfo
NtUserGetRegisteredRawInputDevices
NtUserGetRawInputDeviceList
NtUserGetRawInputDeviceInfo
NtUserGetRawInputData
NtUserGetRawInputBuffer
NtUserGetProcessWindowStation
NtUserGetPriorityClipboardFormat
NtUserGetOpenClipboardWindow
NtUserGetObjectInformation
NtUserGetMouseMovePointsEx
NtUserGetMessage
NtUserGetMenuItemRect
NtUserGetMenuIndex
NtUserGetMenuBarInfo
NtUserGetListBoxInfo
NtUserGetKeyState
NtUserGetKeyNameText
NtUserGetKeyboardState
NtUserGetKeyboardLayoutName
NtUserGetKeyboardLayoutList
NtUserGetInternalWindowPos
NtUserGetInputLocaleInfo
NtUserGetImeInfoEx
NtUserGetImeHotKey
NtUserGetIconSize
NtUserGetIconInfo
NtUserGetGUIThreadInfo
NtUserGetGuiResources
NtUserGetForegroundWindow
NtUserGetDoubleClickTime
NtUserGetDesktopID
NtUserGetDCEx
NtUserGetDC
NtUserGetCursorInfo
NtUserGetCursorFrameInfo
NtUserGetCurrentInputMessageSource
NtUserGetCIMSSM
NtUserGetCPD
NtUserGetControlColor
NtUserGetControlBrush
NtUserGetComboBoxInfo
NtUserGetClipCursor
NtUserGetClipboardViewer
NtUserGetClipboardSequenceNumber
NtUserGetClipboardOwner
NtUserGetClipboardFormatName
NtUserGetClipboardData
NtUserGetClassName
NtUserGetClassInfoEx
NtUserGetCaretPos
NtUserGetCaretBlinkTime
NtUserGetAtomName
NtUserGetAsyncKeyState
NtUserGetAppImeLevel
NtUserGetAncestor
NtUserGetAltTabInfo
NtUserFrostCrashedWindow
NtUserFlashWindowEx
NtUserFindWindowEx
NtUserFindExistingCursorIcon
NtUserFillWindow
NtUserExcludeUpdateRgn
NtUserEvent
NtUserEnumDisplaySettings
NtUserEnumDisplayMonitors
NtUserEnumDisplayDevices
NtUserEndPaint
NtUserEndMenu
NtUserEndDeferWindowPosEx
NtUserEnableScrollBar
NtUserEnableMenuItem
NtUserEmptyClipboard
NtUserDrawMenuBarTemp
NtUserDrawIconEx
NtUserDrawCaptionTemp
NtUserDrawCaption
NtUserDrawAnimatedRects
NtUserDragObject
NtUserDragDetect
NtUserHandleDelegatedInput
NtUserRealChildWindowFromPoint
NtUserQueryWindow
NtUserQuerySendMessage
NtUserQueryInputContext
NtUserQueryInformationThread
NtUserQueryBSDRWindow
NtUserPerMonitorDPIPhysicalToLogicalPoint
NtUserProcessConnect
NtUserPrintWindow
NtUserPostThreadMessage
NtUserPostMessage
NtUserPhysicalToLogicalPoint
NtUserPeekMessage
NtUserPaintMonitor
NtUserPaintDesktop
NtUserOpenWindowStation
NtUserOpenThreadDesktop
NtUserOpenInputDesktop
NtUserOpenDesktop
NtUserOpenClipboard
NtUserNotifyWinEvent
NtUserNotifyProcessCreate
NtUserNotifyIMEStatus
NtUserMoveWindow
NtUserModifyUserStartupInfoFlags
NtUserMNDragOver
NtUserMNDragLeave
NtUserMinMaximize
NtUserMessageCall
NtUserMenuItemFromPoint
NtUserMapVirtualKeyEx
NtUserLayoutCompleted
NtUserLogicalToPerMonitorDPIPhysicalPoint
NtUserLogicalToPhysicalPoint
NtUserLockWorkStation
NtUserLockWindowUpdate
NtUserLockWindowStation
NtUserLoadKeyboardLayoutEx
NtUserKillTimer
NtUserIsTopLevelWindow
NtUserIsClipboardFormatAvailable
NtUserInvalidateRgn
NtUserInvalidateRect
NtUserInternalGetWindowIcon
NtUserInternalGetWindowText
NtUserInitTask
NtUserInitializeClientPfnArrays
NtUserInitialize
NtUserImpersonateDdeClientWindow
NtUserHungWindowFromGhostWindow
NtUserHiliteMenuItem
NtUserHideCaret
NtUserHardErrorControl
NtUserRealInternalGetMessage
NtUserRealWaitMessageEx
NtUserTranslateMessage
NtUserTranslateAccelerator
NtUserPaintMenuBar
NtUserCalcMenuBar
NtUserCalculatePopupWindowPosition
NtUserTrackPopupMenuEx
NtUserTrackMouseEvent
NtUserToUnicodeEx
NtUserThunkedMenuItemInfo
NtUserThunkedMenuInfo
NtUserTestForInteractiveUser
NtUserSendEventMessage
NtUserSystemParametersInfo
NtUserSwitchDesktop
NtUserSoundSentry
NtUserShutdownReasonDestroy
NtUserShutdownBlockReasonQuery
NtUserShutdownBlockReasonCreate
NtUserShowWindowAsync
NtUserShowWindow
NtUserShowScrollBar
NtUserShowCaret
NtUserSetWinEventHook
NtUserSetWindowWord
NtUserSetWindowStationUser
NtUserSetWindowsHookEx
NtUserSetWindowsHookAW
NtUserSetWindowRgnEx
NtUserGetWindowRgnEx
NtUserSetWindowRgn
NtUserSetWindowPos
NtUserSetWindowPlacement
NtUserSetWindowLong
NtUserSetWindowFNID
NtUserSetWindowDisplayAffinity
NtUserSetWindowCompositionTransition
NtUserUpdateDefaultDesktopThumbnail
NtUserSetWindowCompositionAttribute
NtUserSetWindowBand
NtUserSetProcessUIAccessZorder
NtUserSetProcessDpiAwareness
NtUserSetTimer
NtUserSetThreadState
NtUserSetThreadLayoutHandles
NtUserSetThreadDesktop
NtUserSetThreadInputBlocked
NtUserSetSystemTimer
NtUserSetSystemMenu
NtUserSetSystemCursor
NtUserSetSysColors
NtUserSetShellWindowEx
NtUserSetImmersiveBackgroundWindow
NtUserSetScrollInfo
NtUserSetProp
NtUserGetProp
NtUserSetProcessWindowStation
NtUserSetParent
NtUserSetObjectInformation
NtUserSetMenuFlagRtoL
NtUserSetMenuDefaultItem
NtUserSetMenuContextHelpId
NtUserSetMenu
NtUserSetKeyboardState
NtUserSetInternalWindowPos
NtUserSetInformationThread
NtUserSetImeOwnerWindow
NtUserSetImeInfoEx
NtUserSetImeHotKey
NtUserSetFocus
NtUserSetCursorIconData
NtUserSetCursorContents
NtUserSetCursor
NtUserSetClipboardViewer
NtUserSetClipboardData
NtUserSetClassWord
NtUserSetClassLong
NtUserSetChildWindowNoActivate
NtUserSetCapture
NtUserSetAppImeLevel
NtUserSetActiveWindow
NtUserSendInput
NtUserSelectPalette
NtUserScrollWindowEx
NtUserScrollDC
NtUserSBGetParms
NtUserResolveDesktopForWOW
NtUserRemoveProp
NtUserRemoveMenu
NtUserRemoveClipboardFormatListener
NtUserRegisterWindowMessage
NtUserRegisterTasklist
NtUserRegisterServicesProcess
NtUserRegisterRawInputDevices
NtUserRegisterHotKey
NtUserRegisterUserApiHook
NtUserRegisterErrorReportingDialog
NtUserRegisterClassExWOW
NtUserRegisterBSDRWindow
NtUserRedrawWindow
NtUserUndelegateInput
NtUserGetWindowMinimizeRect
NtUserDwmStopRedirection
NtUserDwmStartRedirection
NtUserDwmGetRemoteSessionOcclusionEvent
NtUserDwmGetRemoteSessionOcclusionState
NtUserUpdateWindowTransform
NtUserCheckProcessSession
NtUserUnregisterSessionPort
NtUserRegisterSessionPort
NtUserCtxDisplayIOCtl
NtUserRemoteStopScreenUpdates
NtUserRemoteRedrawScreen
NtUserRemoteRedrawRectangle
NtUserRemoteConnect
NtUserWaitAvailableMessageEx
NtUserWindowFromPoint
NtUserWindowFromPhysicalPoint
NtUserWaitMessage
NtUserWaitForMsgAndEvent
NtUserWaitForInputIdle
NtUserVkKeyScanEx
NtUserValidateTimerCallback
NtUserValidateRect
NtUserValidateHandleSecure
NtUserUserHandleGrantAccess
NtUserUpdatePerUserSystemParameters
NtUserSetLayeredWindowAttributes
NtUserGetLayeredWindowAttributes
NtUserUpdateLayeredWindow
NtUserUpdateInstance
NtUserUpdateInputContext
NtUserUnregisterHotKey
NtUserUnregisterUserApiHook
NtUserUnregisterClass
NtUserUnlockWindowStation
NtUserUnloadKeyboardLayout
NtUserUnhookWinEvent
NtUserUnhookWindowsHookEx
NtUserGetTouchInputInfo
NtUserIsTouchWindow
NtUserModifyWindowTouchCapability
NtGdiEngStretchBltROP
NtGdiEngTextOut
NtGdiEngTransparentBlt
NtGdiEngGradientFill
NtGdiEngAlphaBlend
NtGdiEngLineTo
NtGdiEngPaint
NtGdiEngStrokeAndFillPath
NtGdiEngFillPath
NtGdiEngStrokePath
NtGdiEngMarkBandingSurface
NtGdiEngPlgBlt
NtGdiEngStretchBlt
NtGdiEngBitBlt
NtGdiEngLockSurface
NtGdiEngUnlockSurface
NtGdiEngEraseSurface
NtGdiEngDeleteSurface
NtGdiEngDeletePalette
NtGdiEngCopyBits
NtGdiEngComputeGlyphSet
NtGdiEngCreatePalette
NtGdiEngCreateDeviceBitmap
NtGdiEngCreateDeviceSurface
NtGdiEngCreateBitmap
NtGdiEngAssociateSurface
NtUserSetWindowFeedbackSetting
NtUserRegisterEdgy
NtUserGetWindowFeedbackSetting
NtUserHidePointerContactVisualization
NtUserGetTouchValidationStatus
NtUserInitializeTouchInjection
NtUserInjectTouchInput
NtUserRegisterTouchHitTestingWindow
NtUserSetDisplayMapping
NtUserSetCalibrationData
NtUserGetPhysicalDeviceRect
NtUserRegisterTouchPadCapable
NtUserGetRawPointerDeviceData
NtUserGetPointerDeviceCursors
NtUserGetPointerDeviceRects
NtUserRegisterPointerDeviceNotifications
NtUserGetPointerDeviceProperties
NtUserGetPointerDevice
NtUserGetPointerDevices
NtUserEnableTouchPad
NtUserGetPrecisionTouchPadConfiguration
NtUserSetPrecisionTouchPadConfiguration
NtUserPromotePointer
NtUserDiscardPointerFrameMessages
NtUserRegisterPointerInputTarget
NtUserGetPointerInputTransform
NtUserGetPointerInfoList
NtUserGetPointerCursorId
NtUserGetPointerType
NtUserGetGestureConfig
NtUserSetGestureConfig
NtUserGetGestureExtArgs
NtUserGetGestureInfo
NtUserInjectGesture
NtUserChangeWindowMessageFilterEx
NtGdiXLATEOBJ_hGetColorTransform
NtGdiXLATEOBJ_iXlate
NtGdiXLATEOBJ_cGetPalette
NtGdiEngDeleteClip
NtGdiEngCreateClip
NtGdiEngDeletePath
NtGdiCLIPOBJ_ppoGetPath
NtGdiCLIPOBJ_cEnumStart
NtGdiCLIPOBJ_bEnum
NtGdiBRUSHOBJ_hGetColorTransform
NtGdiBRUSHOBJ_pvGetRbrush
NtGdiBRUSHOBJ_pvAllocRbrush
NtGdiBRUSHOBJ_ulGetBrushColor
NtGdiXFORMOBJ_iGetXform
NtGdiXFORMOBJ_bApplyXform
NtGdiFONTOBJ_pQueryGlyphAttrs
NtGdiFONTOBJ_pfdg
NtGdiFONTOBJ_pifi
NtGdiFONTOBJ_cGetGlyphs
NtGdiFONTOBJ_pxoGetXform
NtGdiFONTOBJ_vGetInfo
NtGdiFONTOBJ_cGetAllGlyphHandles
NtGdiFONTOBJ_pvTrueTypeFontFile
NtGdiSTROBJ_dwGetCodePage
NtGdiSTROBJ_vEnumStart
NtGdiSTROBJ_bGetAdvanceWidths
NtGdiSTROBJ_bEnumPositionsOnly
NtGdiSTROBJ_bEnum
NtGdiPATHOBJ_bEnumClipLines
NtGdiPATHOBJ_vEnumStartClipLines
NtGdiPATHOBJ_vEnumStart
NtGdiPATHOBJ_bEnum
NtGdiPATHOBJ_vGetBounds
NtGdiEngCheckAbort
NtGdiGetDhpdev
NtGdiHT_Get8BPPMaskPalette
NtGdiHT_Get8BPPFormatPalette
NtGdiUpdateTransform
NtGdiUMPDEngFreeUserMem
NtGdiBRUSHOBJ_DeleteRbrush
NtGdiSetPUMPDOBJ
NtGdiSetUMPDSandboxState
NtGdiDrawStream
NtGdiHLSurfSetInformation
NtGdiHLSurfGetInformation
NtGdiDwmCreatedBitmapRemotingOutput
NtGdiDdDDIGetScanLine
NtGdiDdDDIReleaseProcessVidPnSourceOwners
NtGdiDdDDIGetProcessSchedulingPriorityClass
NtGdiDdDDISetProcessSchedulingPriorityClass
NtGdiDdDDIGetContextSchedulingPriority
NtGdiDdDDISetContextSchedulingPriority
NtGdiDdDDIDestroyDCFromMemory
NtGdiDdDDICreateDCFromMemory
NtGdiDdDDIGetDeviceState
NtGdiDdDDISetGammaRamp
NtGdiDdDDIWaitForVerticalBlankEvent
NtGdiDdDDIDestroyOverlay
NtGdiDdDDIFlipOverlay
NtGdiDdDDIUpdateOverlay
NtGdiDdDDICreateOverlay
NtGdiDdDDIGetPresentQueueEvent
NtGdiDdDDIGetPresentHistory
NtGdiDdDDISetVidPnSourceOwner1
NtGdiDdDDISetVidPnSourceOwner
NtGdiDdDDIQueryStatistics
NtGdiDdDDIEscape
NtGdiDdDDIGetSharedPrimaryHandle
NtGdiDdDDICloseAdapter
NtGdiDdDDIOpenAdapterFromLuid
NtGdiDdDDIEnumAdapters
NtGdiDdDDIOpenAdapterFromHdc
NtGdiDdDDIOpenAdapterFromDeviceName
NtGdiDdDDIRender
NtGdiDdDDIPresent
NtGdiDdDDIGetMultisampleMethodList
NtGdiDdDDISetDisplayMode
NtGdiDdDDIGetDisplayModeList
NtGdiDdDDIUnlock
NtGdiDdDDILock
NtGdiDdDDIQueryAdapterInfo
NtGdiDdDDIGetRuntimeData
NtGdiDdDDISignalSynchronizationObject
NtGdiDdDDIWaitForSynchronizationObject
NtGdiDdDDIDestroySynchronizationObject
NtGdiDdDDIOpenSynchronizationObject
NtGdiDdDDICreateSynchronizationObject
NtGdiDdDDIDestroyContext
NtGdiDdDDICreateContext
NtGdiDdDDIDestroyDevice
NtGdiDdDDICreateDevice
NtGdiDdDDIQueryAllocationResidency
NtGdiDdDDISetAllocationPriority
NtGdiDdDDIDestroyAllocation
NtGdiDdDDIOpenResourceFromNtHandle
NtGdiDdDDIOpenSyncObjectFromNtHandle
NtGdiDdDDIOpenResource
NtGdiDdDDIOpenNtHandleFromName
NtGdiDdDDIShareObjects
NtGdiDdDDIQueryResourceInfoFromNtHandle
NtGdiDdDDIQueryResourceInfo
NtGdiDdDDICreateAllocation
NtGdiDdDDIOutputDuplReleaseFrame
NtGdiDdDDIQueryRemoteVidPnSourceFromGdiDisplayName
NtGdiDdDDIOutputDuplPresent
NtGdiDdDDIReleaseKeyedMutex2
NtGdiDdDDIAcquireKeyedMutex2
NtGdiDdDDIOpenKeyedMutex2
NtGdiDdDDICreateKeyedMutex2
NtGdiDdDDIOutputDuplGetPointerShapeData
NtGdiDdDDIOutputDuplGetMetaData
NtGdiDdDDIOutputDuplGetFrameInfo
NtGdiDdDDIDestroyOutputDupl
NtGdiDdDDICreateOutputDupl
NtGdiDdDDIReclaimAllocations
NtGdiDdDDIOfferAllocations
NtGdiDdDDICheckSharedResourceAccess
NtGdiDdDDICheckVidPnExclusiveOwnership
NtGdiDdDDIGetOverlayState
NtGdiDdDDIConfigureSharedResource
NtGdiDdDDIReleaseKeyedMutex
NtGdiDdDDIAcquireKeyedMutex
NtGdiDdDDIDestroyKeyedMutex
NtGdiDdDDIOpenKeyedMutex
NtGdiDdDDICreateKeyedMutex
NtGdiDdDDISharedPrimaryUnLockNotification
NtGdiDdDDISharedPrimaryLockNotification
NtGdiDdDDISetDisplayPrivateDriverFormat
NtGdiDdDDICheckExclusiveOwnership
NtGdiDdDDICheckMonitorPowerState
NtGdiDdDDIWaitForIdle
NtGdiDdDDICheckOcclusion
NtGdiDdDDIInvalidateActiveVidPn
NtGdiDdDDIPollDisplayChildren
NtGdiDdDDISetQueuedLimit
NtGdiDdDDIPinDirectFlipResources
NtGdiDdDDIUnpinDirectFlipResources
NtGdiDdDDIWaitForVerticalBlankEvent2
NtGdiDdDDISetContextInProcessSchedulingPriority
NtGdiDdDDIGetContextInProcessSchedulingPriority
NtGdiDdDDIGetSharedResourceAdapterLuid
NtGdiDdDDISetStereoEnabled
NtGdiDdDDIPresentMultiPlaneOverlay
NtGdiDdDDICheckMultiPlaneOverlaySupport
NtGdiDdDDIGetCachedHybridQueryValue
NtGdiDdDDICacheHybridQueryValue
NtGdiDdDDINetDispGetNextChunkInfo
NtGdiDdDDINetDispQueryMiracastDisplayDeviceSupport
NtGdiDdDDINetDispStartMiracastDisplayDevice
NtGdiDdDDINetDispStopMiracastDisplayDevice
NtGdiDdDDINetDispQueryMiracastDisplayDeviceStatus
NtGdiMakeObjectUnXferable
NtGdiMakeObjectXferable
NtGdiDestroyPhysicalMonitor
NtGdiGetPhysicalMonitorDescription
NtGdiGetPhysicalMonitors
NtGdiGetNumberOfPhysicalMonitors
NtGdiDDCCIGetTimingReport
NtGdiDDCCIGetCapabilitiesString
NtGdiDDCCIGetCapabilitiesStringLength
NtGdiDDCCISaveCurrentSettings
NtGdiDDCCISetVCPFeature
NtGdiDDCCIGetVCPFeature
NtGdiDdQueryVisRgnUniqueness
NtGdiDdDestroyFullscreenSprite
NtGdiDdNotifyFullscreenSpriteUpdate
NtGdiDdCreateFullscreenSprite
NtUserShowSystemCursor
NtUserSetMirrorRendering
NtUserMagGetContextInformation
NtUserMagSetContextInformation
NtUserMagControl
NtUserSlicerControl
NtUserHwndSetRedirectionInfo
NtUserHwndQueryRedirectionInfo
NtCreateCompositionSurfaceHandle
NtValidateCompositionSurfaceHandle
NtBindCompositionSurface
NtUnBindCompositionSurface
NtQueryCompositionSurfaceBinding
NtNotifyPresentToCompositionSurface
NtQueryCompositionSurfaceStatistics
NtOpenCompositionSurfaceSectionInfo
NtOpenCompositionSurfaceSwapChainHandleInfo
NtQueryCompositionSurfaceRenderingRealization
NtOpenCompositionSurfaceDirtyRegion
NtSetCompositionSurfaceOutOfFrameDirectFlipNotification
NtSetCompositionSurfaceStatistics
NtSetCompositionSurfaceBufferCompositionMode
NtSetCompositionSurfaceIndependentFlipInfo
NtCreateCompositionInputSink
NtDuplicateCompositionInputSink
NtQueryCompositionInputSink
NtQueryCompositionInputSinkLuid
NtUpdateInputSinkTransforms
NtCompositionInputThread
NtTokenManagerOpenSection
NtTokenManagerOpenEvent
NtTokenManagerThread
NtTokenManagerGetOutOfFrameDirectFlipSurfaceUpdates
NtTokenManagerDeleteOutstandingDirectFlipTokens
NtTokenManagerCreateCompositionTokenHandle
NtDCompositionBeginFrame
NtDCompositionConfirmFrame
NtDCompositionRetireFrame
NtDCompositionDiscardFrame
NtDCompositionGetFrameSurfaceUpdates
NtDCompositionGetFrameLegacyTokens
NtDCompositionDestroyConnection
NtDCompositionGetConnectionBatch
NtDCompositionGetFrameStatistics
NtDCompositionGetDeletedResources
NtDCompositionSetResourceDeletedNotificationTag
NtDCompositionCreateConnection
NtDCompositionDestroyChannel
NtDCompositionReleaseAllResources
NtDCompositionSubmitDWMBatch
NtDCompositionCommitChannel
NtDCompositionWaitForChannel
NtDCompositionSetChannelCommitCompletionEvent
NtDCompositionTelemetryTouchInteractionBegin
NtDCompositionTelemetryTouchInteractionUpdate
NtDCompositionTelemetryTouchInteractionEnd
NtDCompositionTelemetrySetApplicationId
NtDCompositionTelemetryAnimationScenarioBegin
NtDCompositionTelemetryAnimationScenarioReference
NtDCompositionTelemetryAnimationScenarioUnreference
NtDCompositionCurrentBatchId
NtDCompositionReleaseResource
NtDCompositionRemoveCrossDeviceVisualChild
NtDCompositionRemoveVisualChild
NtDCompositionAddCrossDeviceVisualChild
NtDCompositionAddVisualChild
NtDCompositionReplaceVisualChildren
NtDCompositionSetResourceAnimationProperty
NtDCompositionSetResourceReferenceArrayProperty
NtDCompositionSetResourceReferenceProperty
NtDCompositionSetResourceBufferProperty
NtDCompositionSetResourceIntegerProperty
NtDCompositionSetResourceFloatProperty
NtDCompositionSetResourceHandleProperty
NtDCompositionCreateResource
NtDCompositionOpenSharedResource
NtDCompositionOpenSharedResourceHandle
NtDCompositionCreateDwmChannel
NtDCompositionCreateChannel
NtDCompositionSynchronize
NtDCompositionDwmSyncFlush
NtDCompositionReferenceSharedResourceOnDwmChannel
NtDCompositionSignalGpuFence
NtDCompositionCreateAndBindSharedSection
NtDCompositionSetDebugCounter
NtDCompositionGetChannels
NtDCompositionConnectPipe
NtDCompositionRegisterThumbnailVisual
NtDCompositionDuplicateHandleToProcess
NtUserDestroyDCompositionHwndTarget
NtUserCreateDCompositionHwndTarget
NtUserWaitForRedirectionStartComplete
NtUserSignalRedirectionStartComplete
NtUserSetActiveProcess
NtUserGetDisplayAutoRotationPreferencesByProcessId
NtUserGetDisplayAutoRotationPreferences
NtUserSetDisplayAutoRotationPreferences
NtUserSetAutoRotation
NtUserGetAutoRotationState
NtUserAutoRotateScreen
NtUserAcquireIAMKey
NtUserSetActivationFilter
NtUserSetFallbackForeground
NtUserSetBrokeredForeground
NtUserDisableImmersiveOwner
NtUserClearForeground
NtUserEnableIAMAccess
NtUserGetProcessUIContextInformation
NtUserSetProcessRestrictionExemption
NtUserEnableMouseInPointer
NtUserIsMouseInPointerEnabled
NtUserPromoteMouseInPointer
NtUserAutoPromoteMouseInPointer
NtUserEnableMouseInputForCursorSuppression
NtUserIsMouseInputEnabled
NtUserInternalClipCursor
NtUserCheckProcessForClipboardAccess
NtUserGetClipboardAccessToken
NtUserGetQueueEventStatus
NtUserCompositionInputSinkLuidFromPoint
NtUserUpdateWindowInputSinkHints
NtUserTransformPoint
NtUserTransformRect
NtUserGetHimetricScaleFactorFromPixelLocation
NtUserGetProcessDpiAwareness
NtUserGetDpiForMonitor
NtUserReportInertia
NtUserLinkDpiCursor
NtUserGetCursorDims
NtUserGetOwnerTransformedMonitorRect

apisetschema.dll from w8.1 rtm

$
0
0
to compare with


API-ms-win-advapi32-auth-l1-1-0advapi32.dll
API-ms-win-advapi32-encryptedfile-l1-1-0advapi32.dll
API-ms-win-advapi32-eventingcontroller-l1-1-0advapi32.dll
API-ms-win-advapi32-eventlog-l1-1-0advapi32.dll
API-ms-win-advapi32-idletask-l1-1-0advapi32.dll
API-ms-win-advapi32-lsa-l1-1-0advapi32.dll
API-ms-win-advapi32-msi-l1-1-0advapi32.dll
API-ms-win-advapi32-ntmarta-l1-1-0advapi32.dll
API-ms-win-advapi32-psm-app-l1-1-0twinapi.appcore.dll
API-ms-win-advapi32-registry-l1-1-0advapi32.dll
API-ms-win-advapi32-safer-l1-1-0advapi32.dll
API-ms-win-advapi32-shutdown-l1-1-0advapi32.dll
API-ms-win-appmodel-identity-l1-1-0kernel.appcore.dll
API-ms-win-appmodel-runtime-internal-l1-1-0kernel.appcore.dll
API-ms-win-appmodel-runtime-l1-1-0kernel.appcore.dll
API-ms-win-appmodel-runtime-l1-1-1kernel.appcore.dll
API-ms-win-appmodel-state-l1-1-0kernel.appcore.dll
API-ms-win-appmodel-state-l1-1-1kernel.appcore.dll
API-ms-win-appxdeploymentclient-appxdeploy-l1-1-0appxdeploymentclient.dll
API-ms-win-authz-claimpolicies-l1-1-0authz.dll
API-ms-win-authz-context-l1-1-0authz.dll
API-ms-win-authz-remote-l1-1-0logoncli.dll
API-ms-win-base-bootconfig-l1-1-0advapi32.dll
API-ms-win-base-util-l1-1-0advapi32.dll
API-ms-win-biometrics-winbio-l1-1-0winbio.dll
API-ms-win-bluetooth-deviceassociation-l1-1-0deviceassociation.dll
API-ms-win-branding-winbrand-l1-1-0winbrand.dll
API-ms-win-cluster-clusapi-l1-1-0clusapi.dll
API-ms-win-cluster-clusapi-l1-1-1clusapi.dll
API-ms-win-cluster-resutils-l1-1-0resutils.dll
API-ms-win-cmd-util-l1-1-0cmdext.dll
API-ms-win-cng-rng-l1-1-0bcryptprimitives.dll
API-ms-win-com-clbcatq-l1-1-0clbcatq.dll
API-ms-win-com-ole32-l1-1-0ole32.dll
API-ms-win-com-ole32-l1-1-1ole32.dll
API-ms-win-com-psmregister-l1-1-0kernel.appcore.dll
API-ms-win-core-apiquery-l1-1-0ntdll.dll
API-ms-win-core-appcompat-l1-1-0kernelbase.dll
API-ms-win-core-appcompat-l1-1-1kernelbase.dll
API-ms-win-core-appinit-l1-1-0kernel32.dllkernelbase.dll
API-ms-win-core-atoms-l1-1-0kernel32.dll
API-ms-win-core-bem-l1-1-0kernelbase.dll
API-ms-win-core-bicltapi-l1-1-0bi.dll
API-ms-win-core-bicltapi-l1-1-1bi.dll
API-ms-win-core-biplmapi-l1-1-0twinapi.appcore.dll
API-ms-win-core-biplmapi-l1-1-1twinapi.appcore.dll
API-ms-win-core-biptcltapi-l1-1-0twinapi.appcore.dll
API-ms-win-core-biptcltapi-l1-1-1twinapi.appcore.dll
API-ms-win-core-calendar-l1-1-0kernel32.dll
API-ms-win-core-com-l1-1-0combase.dll
API-ms-win-core-com-l1-1-1combase.dll
API-ms-win-core-com-private-l1-1-0combase.dll
API-ms-win-core-comm-l1-1-0kernelbase.dll
API-ms-win-core-console-l1-1-0kernelbase.dll
API-ms-win-core-console-l2-1-0kernelbase.dll
API-ms-win-core-crt-l1-1-0ntdll.dll
API-ms-win-core-crt-l2-1-0kernelbase.dll
API-ms-win-core-datetime-l1-1-0kernelbase.dll
API-ms-win-core-datetime-l1-1-1kernelbase.dll
API-ms-win-core-debug-l1-1-0kernelbase.dll
API-ms-win-core-debug-l1-1-1kernelbase.dll
API-ms-win-core-delayload-l1-1-0kernel32.dllkernelbase.dll
API-ms-win-core-delayload-l1-1-1kernel32.dllkernelbase.dll
API-ms-win-core-errorhandling-l1-1-0kernelbase.dll
API-ms-win-core-errorhandling-l1-1-1kernelbase.dll
API-ms-win-core-fibers-l1-1-0kernelbase.dll
API-ms-win-core-fibers-l1-1-1kernelbase.dll
API-ms-win-core-fibers-l2-1-0kernel32.dll
API-ms-win-core-fibers-l2-1-1kernel32.dll
API-ms-win-core-file-l1-1-0kernelbase.dll
API-ms-win-core-file-l1-1-1kernelbase.dll
API-ms-win-core-file-l1-2-0kernelbase.dll
API-ms-win-core-file-l1-2-1kernelbase.dll
API-ms-win-core-file-l2-1-0kernelbase.dll
API-ms-win-core-file-l2-1-1kernelbase.dll
API-ms-win-core-firmware-l1-1-0kernel32.dll
API-ms-win-core-handle-l1-1-0kernelbase.dll
API-ms-win-core-heap-l1-1-0kernelbase.dll
API-ms-win-core-heap-l1-2-0kernelbase.dll
API-ms-win-core-heap-obsolete-l1-1-0kernel32.dll
API-ms-win-core-interlocked-l1-1-0kernelbase.dll
API-ms-win-core-interlocked-l1-1-1kernelbase.dll
API-ms-win-core-interlocked-l1-2-0kernelbase.dll
API-ms-win-core-io-l1-1-0kernel32.dllkernelbase.dll
API-ms-win-core-io-l1-1-1kernel32.dllkernelbase.dll
API-ms-win-core-job-l1-1-0kernelbase.dll
API-ms-win-core-job-l2-1-0kernel32.dll
API-ms-win-core-kernel32-legacy-l1-1-0kernel32.dll
API-ms-win-core-kernel32-legacy-l1-1-1kernel32.dll
API-ms-win-core-kernel32-private-l1-1-0kernel32.dll
API-ms-win-core-kernel32-private-l1-1-1kernel32.dll
API-ms-win-core-libraryloader-l1-1-0kernelbase.dll
API-ms-win-core-libraryloader-l1-1-1kernelbase.dll
API-ms-win-core-libraryloader-l1-2-0kernelbase.dll
API-ms-win-core-libraryloader-private-l1-1-0kernelbase.dll
API-ms-win-core-localization-l1-1-0kernelbase.dll
API-ms-win-core-localization-l1-2-0kernelbase.dll
API-ms-win-core-localization-l1-2-1kernelbase.dll
API-ms-win-core-localization-l2-1-0kernelbase.dll
API-ms-win-core-localization-obsolete-l1-1-0kernelbase.dll
API-ms-win-core-localization-obsolete-l1-2-0kernelbase.dll
API-ms-win-core-localization-private-l1-1-0kernelbase.dll
API-ms-win-core-localregistry-l1-1-0kernelbase.dll
API-ms-win-core-memory-l1-1-0kernelbase.dll
API-ms-win-core-memory-l1-1-1kernelbase.dll
API-ms-win-core-memory-l1-1-2kernelbase.dll
API-ms-win-core-misc-l1-1-0kernelbase.dll
API-ms-win-core-multipleproviderrouter-l1-1-0mpr.dll
API-ms-win-core-namedpipe-l1-1-0kernelbase.dll
API-ms-win-core-namedpipe-l1-2-0kernelbase.dll
API-ms-win-core-namespace-l1-1-0kernelbase.dll
API-ms-win-core-normalization-l1-1-0kernelbase.dll
API-ms-win-core-path-l1-1-0kernelbase.dll
API-ms-win-core-privateprofile-l1-1-0kernel32.dll
API-ms-win-core-privateprofile-l1-1-1kernel32.dll
API-ms-win-core-processenvironment-l1-1-0kernelbase.dll
API-ms-win-core-processenvironment-l1-1-1kernelbase.dll
API-ms-win-core-processenvironment-l1-2-0kernelbase.dll
API-ms-win-core-processsecurity-l1-1-0kernel32.dllkernelbase.dll
API-ms-win-core-processthreads-l1-1-0kernel32.dllkernelbase.dll
API-ms-win-core-processthreads-l1-1-1kernel32.dllkernelbase.dll
API-ms-win-core-processthreads-l1-1-2kernel32.dllkernelbase.dll
API-ms-win-core-processtopology-l1-1-0kernelbase.dll
API-ms-win-core-processtopology-l1-2-0kernelbase.dll
API-ms-win-core-processtopology-obsolete-l1-1-0kernel32.dll
API-ms-win-core-processtopology-private-l1-1-0kernelbase.dll
API-ms-win-core-profile-l1-1-0kernelbase.dll
API-ms-win-core-psapi-ansi-l1-1-0kernelbase.dll
API-ms-win-core-psapi-l1-1-0kernelbase.dll
API-ms-win-core-psapi-obsolete-l1-1-0kernelbase.dll
API-ms-win-core-psapiansi-l1-1-0kernelbase.dll
API-ms-win-core-psm-app-l1-1-0twinapi.appcore.dll
API-ms-win-core-psm-appnotify-l1-1-0twinapi.appcore.dll
API-ms-win-core-psm-info-l1-1-0appsruprov.dll
API-ms-win-core-psm-key-l1-1-0kernelbase.dll
API-ms-win-core-psm-plm-l1-1-0twinapi.appcore.dll
API-ms-win-core-psm-plm-l1-1-1twinapi.appcore.dll
API-ms-win-core-psm-tc-l1-1-0twinapi.appcore.dll
API-ms-win-core-quirks-l1-1-0kernelbase.dll
API-ms-win-core-realtime-l1-1-0kernelbase.dll
API-ms-win-core-registry-l1-1-0kernelbase.dll
API-ms-win-core-registry-l2-1-0advapi32.dll
API-ms-win-core-registry-private-l1-1-0advapi32.dll
API-ms-win-core-registryuserspecific-l1-1-0kernelbase.dll
API-ms-win-core-rtlsupport-l1-1-0ntdll.dll
API-ms-win-core-rtlsupport-l1-1-1ntdll.dll
API-ms-win-core-rtlsupport-l1-2-0ntdll.dll
API-ms-win-core-shlwapi-legacy-l1-1-0kernelbase.dll
API-ms-win-core-shlwapi-obsolete-l1-1-0kernelbase.dll
API-ms-win-core-shutdown-l1-1-0advapi32.dll
API-ms-win-core-shutdown-l1-1-1advapi32.dll
API-ms-win-core-sidebyside-l1-1-0kernelbase.dll
API-ms-win-core-string-l1-1-0kernelbase.dll
API-ms-win-core-string-l2-1-0kernelbase.dll
API-ms-win-core-string-obsolete-l1-1-0kernel32.dll
API-ms-win-core-stringansi-l1-1-0kernelbase.dll
API-ms-win-core-stringloader-l1-1-0kernelbase.dll
API-ms-win-core-stringloader-l1-1-1kernelbase.dll
API-ms-win-core-synch-l1-1-0kernelbase.dll
API-ms-win-core-synch-l1-1-1kernelbase.dll
API-ms-win-core-synch-l1-2-0kernelbase.dll
API-ms-win-core-sysinfo-l1-1-0kernelbase.dll
API-ms-win-core-sysinfo-l1-1-1kernelbase.dll
API-ms-win-core-sysinfo-l1-2-0kernelbase.dll
API-ms-win-core-sysinfo-l1-2-1kernelbase.dll
API-ms-win-core-systemtopology-l1-1-0kernelbase.dll
API-ms-win-core-threadpool-l1-1-0kernelbase.dll
API-ms-win-core-threadpool-l1-2-0kernelbase.dll
API-ms-win-core-threadpool-legacy-l1-1-0kernelbase.dll
API-ms-win-core-threadpool-private-l1-1-0kernelbase.dll
API-ms-win-core-timezone-l1-1-0kernelbase.dll
API-ms-win-core-timezone-private-l1-1-0kernelbase.dll
API-ms-win-core-toolhelp-l1-1-0kernel32.dll
API-ms-win-core-url-l1-1-0kernelbase.dll
API-ms-win-core-util-l1-1-0kernel32.dllkernelbase.dll
API-ms-win-core-version-l1-1-0kernelbase.dll
API-ms-win-core-version-private-l1-1-0kernelbase.dll
API-ms-win-core-versionansi-l1-1-0kernelbase.dll
API-ms-win-core-windowserrorreporting-l1-1-0kernelbase.dll
API-ms-win-core-winrt-error-l1-1-0combase.dll
API-ms-win-core-winrt-error-l1-1-1combase.dll
API-ms-win-core-winrt-errorprivate-l1-1-0combase.dll
API-ms-win-core-winrt-errorprivate-l1-1-1combase.dll
API-ms-win-core-winrt-l1-1-0combase.dll
API-ms-win-core-winrt-propertysetprivate-l1-1-0wintypes.dll
API-ms-win-core-winrt-registration-l1-1-0combase.dll
API-ms-win-core-winrt-robuffer-l1-1-0wintypes.dll
API-ms-win-core-winrt-roparameterizediid-l1-1-0combase.dll
API-ms-win-core-winrt-string-l1-1-0combase.dll
API-ms-win-core-wow64-l1-1-0kernelbase.dll
API-ms-win-core-xstate-l1-1-0ntdll.dll
API-ms-win-core-xstate-l1-1-1ntdll.dll
API-ms-win-core-xstate-l2-1-0kernelbase.dll
API-ms-win-devices-config-l1-1-0cfgmgr32.dll
API-ms-win-devices-config-l1-1-1cfgmgr32.dll
API-ms-win-devices-query-l1-1-0cfgmgr32.dll
API-ms-win-devices-query-l1-1-1cfgmgr32.dll
API-ms-win-devices-swdevice-l1-1-0cfgmgr32.dll
API-ms-win-devices-swdevice-l1-1-1cfgmgr32.dll
API-ms-win-domainjoin-netjoin-l1-1-0netjoin.dll
API-ms-win-downlevel-advapi32-l1-1-0kernelbase.dll
API-ms-win-downlevel-advapi32-l1-1-1kernelbase.dll
API-ms-win-downlevel-advapi32-l2-1-0sechost.dll
API-ms-win-downlevel-advapi32-l2-1-1sechost.dll
API-ms-win-downlevel-advapi32-l3-1-0ntmarta.dll
API-ms-win-downlevel-advapi32-l4-1-0advapi32.dll
API-ms-win-downlevel-kernel32-l1-1-0kernelbase.dll
API-ms-win-downlevel-kernel32-l2-1-0kernel32.dll
API-ms-win-downlevel-normaliz-l1-1-0kernelbase.dll
API-ms-win-downlevel-ole32-l1-1-0combase.dll
API-ms-win-downlevel-ole32-l1-1-1combase.dll
API-ms-win-downlevel-shell32-l1-1-0shcore.dll
API-ms-win-downlevel-shlwapi-l1-1-0kernelbase.dll
API-ms-win-downlevel-shlwapi-l1-1-1kernelbase.dll
API-ms-win-downlevel-shlwapi-l2-1-0shcore.dll
API-ms-win-downlevel-shlwapi-l2-1-1shcore.dll
API-ms-win-downlevel-user32-l1-1-0kernelbase.dll
API-ms-win-downlevel-user32-l1-1-1kernelbase.dll
API-ms-win-downlevel-version-l1-1-0kernelbase.dll
API-ms-win-dx-d3dkmt-l1-1-0gdi32.dll
API-ms-win-eventing-classicprovider-l1-1-0kernelbase.dll
API-ms-win-eventing-consumer-l1-1-0sechost.dll
API-ms-win-eventing-controller-l1-1-0sechost.dll
API-ms-win-eventing-legacy-l1-1-0advapi32.dll
API-ms-win-eventing-obsolete-l1-1-0sechost.dll
API-ms-win-eventing-provider-l1-1-0kernelbase.dll
API-ms-win-eventlog-legacy-l1-1-0advapi32.dll
API-ms-win-eventlog-private-l1-1-0advapi32.dll
API-ms-win-firewallapi-webproxy-l1-1-0firewallapi.dll
API-ms-win-fs-clfs-l1-1-0clfs.sys
API-ms-win-fsutilext-ifsutil-l1-1-0fsutilext.dll
API-ms-win-fsutilext-ulib-l1-1-0fsutilext.dll
API-ms-win-fveapi-query-l1-1-0fveapi.dll
API-ms-win-gdi-dc-create-l1-1-0gdi32.dll
API-ms-win-gdi-dc-create-l1-1-1gdi32.dll
API-ms-win-gdi-dc-l1-2-0gdi32.dll
API-ms-win-gdi-devcaps-l1-1-0gdi32.dll
API-ms-win-gdi-dpiinfo-l1-1-0gdi32.dll
API-ms-win-gdi-draw-l1-1-0gdi32.dll
API-ms-win-gdi-draw-l1-1-1gdi32.dll
API-ms-win-gdi-font-l1-1-0gdi32.dll
API-ms-win-gdi-font-l1-1-1gdi32.dll
API-ms-win-gdi-metafile-l1-1-0gdi32.dll
API-ms-win-gdi-metafile-l1-1-1gdi32.dll
API-ms-win-gdi-path-l1-1-0gdi32.dll
API-ms-win-gdi-private-l1-1-0gdi32.dll
API-ms-win-gdi-render-l1-1-0gdi32.dll
API-ms-win-gdi-rgn-l1-1-0gdi32.dll
API-ms-win-gdi-wcs-l1-1-0gdi32.dll
API-ms-win-globalization-collation-l1-1-0globcollationhost.dll
API-ms-win-globalization-input-l1-1-0globinputhost.dll
API-ms-win-gpapi-grouppolicy-l1-1-0gpapi.dll
API-ms-win-gpsvc-grouppolicy-l1-1-0gpsvc.dll
API-ms-win-gui-dui70-l1-1-0dui70.dll
API-ms-win-gui-uxinit-l1-1-0uxinit.dll
API-ms-win-http-time-l1-1-0kernelbase.dll
API-ms-win-imm-l1-1-0imm32.dll
API-ms-win-kernel32-appcompat-l1-1-0kernel32.dll
API-ms-win-kernel32-datetime-l1-1-0kernel32.dll
API-ms-win-kernel32-elevation-l1-1-0kernel32.dll
API-ms-win-kernel32-errorhandling-l1-1-0kernel32.dll
API-ms-win-kernel32-file-l1-1-0kernel32.dll
API-ms-win-kernel32-localization-l1-1-0kernel32.dll
API-ms-win-kernel32-package-current-l1-1-0kernel.appcore.dll
API-ms-win-kernel32-package-l1-1-0kernel.appcore.dll
API-ms-win-kernel32-package-l1-1-1kernel.appcore.dll
API-ms-win-kernel32-quirks-l1-1-0kernel32.dll
API-ms-win-kernel32-registry-l1-1-0kernel32.dll
API-ms-win-kernel32-sidebyside-l1-1-0kernel32.dll
API-ms-win-kernel32-transacted-l1-1-0kernel32.dll
API-ms-win-kernel32-windowserrorreporting-l1-1-0kernel32.dll
API-ms-win-kernelbase-processthread-l1-1-0kernel32.dll
API-ms-win-legacy-shlwapi-l1-1-0kernelbase.dll
API-ms-win-mm-joystick-l1-1-0winmmbase.dll
API-ms-win-mm-mci-l1-1-0winmm.dll
API-ms-win-mm-misc-l1-1-0winmmbase.dll
API-ms-win-mm-misc-l1-1-1winmmbase.dll
API-ms-win-mm-misc-l2-1-0winmm.dll
API-ms-win-mm-mme-l1-1-0winmmbase.dll
API-ms-win-mm-msacm-l1-1-0msacm32.dll
API-ms-win-mm-pehelper-l1-1-0mf.dll
API-ms-win-mm-playsound-l1-1-0winmm.dll
API-ms-win-mm-time-l1-1-0kernel32.dll
API-ms-win-mm-wmdrmsdk-l1-1-0wmdrmsdk.dll
API-ms-win-mpr-multipleproviderrouter-l1-1-0mprext.dll
API-ms-win-mrmcorer-resmanager-l1-1-0mrmcorer.dll
API-ms-win-msa-ui-l1-1-0msauserext.dll
API-ms-win-msa-user-l1-1-0msauserext.dll
API-ms-win-msiltcfg-msi-l1-1-0msiltcfg.dll
API-ms-win-net-isoext-l1-1-0firewallapi.dll
API-ms-win-net-isolation-l1-1-0firewallapi.dll
API-ms-win-net-isolation-l1-1-1firewallapi.dll
API-ms-win-networking-wcmapi-l1-1-0wcmapi.dll
API-ms-win-networking-winipsec-l1-1-0winipsec.dll
API-ms-win-networking-wlanapi-l1-1-0wlanapi.dll
API-ms-win-newdev-config-l1-1-0newdev.dll
API-ms-win-ntdsa-activedirectoryserver-l1-1-0ntdsa.dll
API-ms-win-ntdsapi-activedirectoryclient-l1-1-0ntdsapi.dll
API-ms-win-ntos-tm-l1-1-0tm.sys
API-ms-win-ntos-werkernel-l1-1-0werkernel.sys
API-ms-win-ntuser-caret-l1-1-0user32.dll
API-ms-win-ntuser-chartranslation-l1-1-0user32.dll
API-ms-win-ntuser-dc-access-ext-l1-1-0user32.dll
API-ms-win-ntuser-dialogbox-l1-1-0user32.dll
API-ms-win-ntuser-dialogbox-l1-1-1user32.dll
API-ms-win-ntuser-draw-l1-1-0user32.dll
API-ms-win-ntuser-draw-l1-1-1user32.dll
API-ms-win-ntuser-gui-l1-1-0user32.dll
API-ms-win-ntuser-gui-l1-1-1user32.dll
API-ms-win-ntuser-ie-message-l1-1-0user32.dll
API-ms-win-ntuser-ie-window-l1-1-0user32.dll
API-ms-win-ntuser-ie-wmpointer-l1-1-0user32.dll
API-ms-win-ntuser-keyboard-l1-1-0user32.dll
API-ms-win-ntuser-keyboard-l1-1-1user32.dll
API-ms-win-ntuser-menu-l1-1-0user32.dll
API-ms-win-ntuser-menu-l1-1-1user32.dll
API-ms-win-ntuser-message-l1-1-0user32.dll
API-ms-win-ntuser-message-l1-1-1user32.dll
API-ms-win-ntuser-misc-l1-1-0user32.dll
API-ms-win-ntuser-misc-l1-2-0user32.dll
API-ms-win-ntuser-mouse-l1-1-0user32.dll
API-ms-win-ntuser-powermanagement-l1-1-0user32.dll
API-ms-win-ntuser-private-l1-1-0user32.dll
API-ms-win-ntuser-private-l1-1-1user32.dll
API-ms-win-ntuser-rectangle-ext-l1-1-0user32.dll
API-ms-win-ntuser-rectangle-l1-1-0user32.dll
API-ms-win-ntuser-rotationmanager-l1-1-0user32.dll
API-ms-win-ntuser-server-l1-1-0user32.dll
API-ms-win-ntuser-string-l1-1-0user32.dll
API-ms-win-ntuser-synch-l1-1-0user32.dll
API-ms-win-ntuser-sysparams-ext-l1-1-0user32.dll
API-ms-win-ntuser-touch-hittest-l1-1-0user32.dll
API-ms-win-ntuser-uicontext-ext-l1-1-0user32.dll
API-ms-win-ntuser-window-l1-1-0user32.dll
API-ms-win-ntuser-window-l1-1-1user32.dll
API-ms-win-ntuser-windowclass-l1-1-0user32.dll
API-ms-win-ntuser-windowclass-l1-1-1user32.dll
API-ms-win-ntuser-windowstation-l1-1-0user32.dll
API-ms-win-ntuser-windowstation-l1-1-1user32.dll
API-ms-win-obsolete-localization-l1-1-0kernelbase.dll
API-ms-win-obsolete-psapi-l1-1-0kernelbase.dll
API-ms-win-obsolete-shlwapi-l1-1-0kernelbase.dll
API-ms-win-ole32-bindctx-l1-1-0ole32.dll
API-ms-win-ole32-ie-ext-l1-1-0ole32.dll
API-ms-win-ole32-ie-l1-1-0ole32.dll
API-ms-win-ole32-oleautomation-l1-1-0ole32.dll
API-ms-win-oleacc-l1-1-0oleacc.dll
API-ms-win-oobe-notification-l1-1-0kernel32.dll
API-ms-win-perf-legacy-l1-1-0advapi32.dll
API-ms-win-power-base-l1-1-0powrprof.dll
API-ms-win-power-setting-l1-1-0powrprof.dll
API-ms-win-printer-winspool-l1-1-0winspool.drv
API-ms-win-printer-winspool-l1-1-1winspool.drv
API-ms-win-profile-profsvc-l1-1-0profsvcext.dll
API-ms-win-profile-userenv-l1-1-0profext.dll
API-ms-win-ras-rasapi32-l1-1-0rasapi32.dll
API-ms-win-ras-rasdlg-l1-1-0rasdlg.dll
API-ms-win-ras-rasman-l1-1-0rasman.dll
API-ms-win-ras-tapi32-l1-1-0tapi32.dll
API-ms-win-raschapext-eap-l1-1-0raschapext.dll
API-ms-win-rastlsext-eap-l1-1-0rastlsext.dll
API-ms-win-reinfo-query-l1-1-0reinfo.dll
API-ms-win-ro-typeresolution-l1-1-0wintypes.dll
API-ms-win-rometadata-dispenser-l1-1-0rometadata.dll
API-ms-win-rtcore-gdi-devcaps-l1-1-0gdi32.dll
API-ms-win-rtcore-gdi-object-l1-1-0gdi32.dll
API-ms-win-rtcore-gdi-rgn-l1-1-0gdi32.dll
API-ms-win-rtcore-ntuser-clipboard-l1-1-0user32.dll
API-ms-win-rtcore-ntuser-dc-access-l1-1-0user32.dll
API-ms-win-rtcore-ntuser-dpi-l1-1-0user32.dll
API-ms-win-rtcore-ntuser-private-l1-1-0user32.dll
API-ms-win-rtcore-ntuser-synch-l1-1-0user32.dll
API-ms-win-rtcore-ntuser-sysparams-l1-1-0user32.dll
API-ms-win-rtcore-ntuser-window-l1-1-0user32.dll
API-ms-win-rtcore-ntuser-windowstation-l1-1-0user32.dll
API-ms-win-rtcore-ntuser-winevent-l1-1-0user32.dll
API-ms-win-rtcore-ntuser-wmpointer-l1-1-0user32.dll
API-ms-win-rtcore-ole32-clipboard-l1-1-0ole32.dll
API-ms-win-samsrv-accountstore-l1-1-0samsrv.dll
API-ms-win-scesrv-server-l1-1-0scesrv.dll
API-ms-win-secur32-translatename-l1-1-0secur32.dll
API-ms-win-security-activedirectoryclient-l1-1-0kernelbase.dll
API-ms-win-security-appcontainer-l1-1-0kernelbase.dll
API-ms-win-security-audit-l1-1-0sechost.dll
API-ms-win-security-audit-l1-1-1sechost.dll
API-ms-win-security-base-l1-1-0kernelbase.dll
API-ms-win-security-base-l1-1-1kernelbase.dll
API-ms-win-security-base-l1-2-0kernelbase.dll
API-ms-win-security-base-private-l1-1-0kernelbase.dll
API-ms-win-security-base-private-l1-1-1kernelbase.dll
API-ms-win-security-credentials-l1-1-0sechost.dll
API-ms-win-security-credentials-l2-1-0sechost.dll
API-ms-win-security-credui-l1-1-0credui.dll
API-ms-win-security-cryptoapi-l1-1-0cryptsp.dll
API-ms-win-security-cryptui-l1-1-0cryptui.dll
API-ms-win-security-grouppolicy-l1-1-0kernelbase.dll
API-ms-win-security-kerberos-l1-1-0kerberos.dll
API-ms-win-security-logon-l1-1-0advapi32.dll
API-ms-win-security-lsalookup-l1-1-0sechost.dll
API-ms-win-security-lsalookup-l1-1-1sechost.dll
API-ms-win-security-lsalookup-l2-1-0advapi32.dll
API-ms-win-security-lsalookup-l2-1-1advapi32.dll
API-ms-win-security-lsapolicy-l1-1-0sechost.dll
API-ms-win-security-provider-l1-1-0ntmarta.dll
API-ms-win-security-sddl-ansi-l1-1-0advapi32.dll
API-ms-win-security-sddl-l1-1-0sechost.dll
API-ms-win-security-sddlparsecond-l1-1-0sechost.dll
API-ms-win-security-systemfunctions-l1-1-0advapi32.dll
API-ms-win-security-trustee-l1-1-0advapi32.dll
API-ms-win-security-trustee-l1-1-1advapi32.dll
API-ms-win-security-vaultcli-l1-1-0vaultcli.dll
API-ms-win-service-core-l1-1-0sechost.dll
API-ms-win-service-core-l1-1-1sechost.dll
API-ms-win-service-management-l1-1-0sechost.dll
API-ms-win-service-management-l2-1-0sechost.dll
API-ms-win-service-private-l1-1-0sechost.dll
API-ms-win-service-private-l1-1-1sechost.dll
API-ms-win-service-winsvc-l1-1-0sechost.dll
API-ms-win-service-winsvc-l1-2-0sechost.dll
API-ms-win-session-userinit-l1-1-0userinitext.dll
API-ms-win-session-usertoken-l1-1-0wtsapi32.dll
API-ms-win-session-wininit-l1-1-0wininitext.dll
API-ms-win-session-winlogon-l1-1-0winlogonext.dll
API-ms-win-session-winsta-l1-1-0winsta.dll
API-ms-win-session-wtsapi32-l1-1-0wtsapi32.dll
API-ms-win-setupapi-cfgmgr32remote-l1-1-0setupapi.dll
API-ms-win-setupapi-classinstallers-l1-1-0setupapi.dll
API-ms-win-setupapi-inf-l1-1-0setupapi.dll
API-ms-win-setupapi-logging-l1-1-0setupapi.dll
API-ms-win-shcore-comhelpers-l1-1-0shcore.dll
API-ms-win-shcore-obsolete-l1-1-0shcore.dll
API-ms-win-shcore-registry-l1-1-0shcore.dll
API-ms-win-shcore-registry-l1-1-1shcore.dll
API-ms-win-shcore-scaling-l1-1-0shcore.dll
API-ms-win-shcore-scaling-l1-1-1shcore.dll
API-ms-win-shcore-stream-l1-1-0shcore.dll
API-ms-win-shcore-stream-winrt-l1-1-0shcore.dll
API-ms-win-shcore-sysinfo-l1-1-0shcore.dll
API-ms-win-shcore-thread-l1-1-0shcore.dll
API-ms-win-shcore-unicodeansi-l1-1-0shcore.dll
API-ms-win-shell-propsys-l1-1-0propsys.dll
API-ms-win-shell-settingsync-l1-1-0settingsyncpolicy.dll
API-ms-win-shell-shell32-l1-2-0shell32.dll
API-ms-win-shell-shellcom-l1-1-0kernelbase.dll
API-ms-win-shell-shellfolders-l1-1-0kernelbase.dll
API-ms-win-shell-shlwapi-l1-1-0shlwapi.dll
API-ms-win-shell32-shellcom-l1-1-0shell32.dll
API-ms-win-shell32-shellfolders-l1-1-0shell32.dll
API-ms-win-shlwapi-ie-l1-1-0shlwapi.dll
API-ms-win-smbshare-browser-l1-1-0browser.dll
API-ms-win-smbshare-sscore-l1-1-0sscoreext.dll
API-ms-win-spinf-inf-l1-1-0spinf.dll
API-ms-win-storage-iscsidsc-l1-1-0iscsidsc.dll
API-ms-win-sxs-oleautomation-l1-1-0sxs.dll
API-ms-win-ttlsext-eap-l1-1-0ttlsext.dll
API-ms-win-uiacore-l1-1-0uiautomationcore.dll
API-ms-win-umpoext-umpo-l1-1-0umpoext.dll
API-ms-win-usp10-l1-1-0usp10.dll
API-ms-win-uxtheme-themes-l1-1-0uxtheme.dll
API-ms-win-webio-pal-l1-1-0webio.dll
API-ms-win-wer-reporting-l1-1-0wer.dll
API-ms-win-wevtapi-eventlog-l1-1-0wevtapi.dll
API-ms-win-winbici-l1-1-0winbici.dll
API-ms-win-winhttp-pal-l1-1-0winhttp.dll
API-ms-win-winrt-storage-l1-1-0shell32.dll
API-ms-win-wlan-grouppolicy-l1-1-0wlgpclnt.dll
API-ms-win-wlan-onexui-l1-1-0onexui.dll
API-ms-win-wlan-scard-l1-1-0winscard.dll
API-ms-win-wsclient-devlicense-l1-1-0wsclient.dll
API-ms-win-wwan-wwapi-l1-1-0wwapi.dll

w8.1 rtm W32pServiceTable 64bit

$
0
0
W32pServiceLimit .eq. 0x40E

 NtUserYieldTask
NtUserSetSensorPresence
NtUserGetThreadState
NtUserPeekMessage
NtUserCallOneParam
NtUserGetKeyState
NtUserInvalidateRect
NtUserCallNoParam
NtUserGetMessage
NtUserMessageCall
NtGdiBitBlt
NtGdiGetCharSet
NtUserGetDC
NtGdiSelectBitmap
NtUserWaitMessage
NtUserTranslateMessage
NtUserGetProp
NtUserPostMessage
NtUserQueryWindow
NtUserTranslateAccelerator
NtGdiFlush
NtUserRedrawWindow
NtUserWindowFromPoint
NtUserCallMsgFilter
NtUserValidateTimerCallback
NtUserBeginPaint
NtUserSetTimer
NtUserEndPaint
NtUserSetCursor
NtUserKillTimer
NtUserBuildHwndList
NtUserSelectPalette
NtUserCallNextHookEx
NtUserHideCaret
NtGdiIntersectClipRect
NtUserCallHwndLock
NtUserGetProcessWindowStation
NtGdiDeleteObjectApp
NtUserSetWindowPos
NtUserShowCaret
NtUserEndDeferWindowPosEx
NtUserCallHwndParamLock
NtUserVkKeyScanEx
NtGdiSetDIBitsToDeviceInternal
NtUserCallTwoParam
NtGdiGetRandomRgn
NtUserCopyAcceleratorTable
NtUserNotifyWinEvent
NtGdiExtSelectClipRgn
NtUserIsClipboardFormatAvailable
NtUserSetScrollInfo
NtGdiStretchBlt
NtUserCreateCaret
NtGdiRectVisible
NtGdiCombineRgn
NtGdiGetDCObject
NtUserDispatchMessage
NtUserRegisterWindowMessage
NtGdiExtTextOutW
NtGdiSelectFont
NtGdiRestoreDC
NtGdiSaveDC
NtUserGetForegroundWindow
NtUserShowScrollBar
NtUserFindExistingCursorIcon
NtGdiGetDCDword
NtGdiGetRegionData
NtGdiLineTo
NtUserSystemParametersInfo
NtGdiGetAppClipBox
NtUserGetAsyncKeyState
NtUserGetCPD
NtUserRemoveProp
NtGdiDoPalette
NtGdiPolyPolyDraw
NtUserSetCapture
NtUserEnumDisplayMonitors
NtGdiCreateCompatibleBitmap
NtUserSetProp
NtGdiGetTextCharsetInfo
NtUserSBGetParms
NtUserGetIconInfo
NtUserExcludeUpdateRgn
NtUserSetFocus
NtGdiExtGetObjectW
NtUserGetUpdateRect
NtGdiCreateCompatibleDC
NtUserGetClipboardSequenceNumber
NtGdiCreatePen
NtUserShowWindow
NtUserGetKeyboardLayoutList
NtGdiPatBlt
NtUserMapVirtualKeyEx
NtUserSetWindowLong
NtGdiHfontCreate
NtUserMoveWindow
NtUserPostThreadMessage
NtUserDrawIconEx
NtUserGetSystemMenu
NtGdiDrawStream
NtUserInternalGetWindowText
NtUserGetWindowDC
NtGdiD3dDrawPrimitives2
NtGdiInvertRgn
NtGdiGetRgnBox
NtGdiGetAndSetDCDword
NtGdiMaskBlt
NtGdiGetWidthTable
NtUserScrollDC
NtUserGetObjectInformation
NtGdiCreateBitmap
NtUserFindWindowEx
NtGdiPolyPatBlt
NtUserUnhookWindowsHookEx
NtGdiGetNearestColor
NtGdiTransformPoints
NtGdiGetDCPoint
NtGdiCreateDIBBrush
NtGdiGetTextMetricsW
NtUserCreateWindowEx
NtUserSetParent
NtUserGetKeyboardState
NtUserToUnicodeEx
NtUserGetControlBrush
NtUserGetClassName
NtGdiAlphaBlend
NtGdiDdBlt
NtGdiOffsetRgn
NtUserDefSetText
NtGdiGetTextFaceW
NtGdiStretchDIBitsInternal
NtUserSendInput
NtUserGetThreadDesktop
NtGdiCreateRectRgn
NtGdiGetDIBitsInternal
NtUserGetUpdateRgn
NtGdiDeleteClientObj
NtUserGetIconSize
NtUserFillWindow
NtGdiExtCreateRegion
NtGdiComputeXformCoefficients
NtUserSetWindowsHookEx
NtUserNotifyProcessCreate
NtGdiUnrealizeObject
NtUserGetTitleBarInfo
NtGdiRectangle
NtUserSetThreadDesktop
NtUserGetDCEx
NtUserGetScrollBarInfo
NtGdiGetTextExtent
NtUserSetWindowFNID
NtGdiSetLayout
NtUserCalcMenuBar
NtUserThunkedMenuItemInfo
NtGdiExcludeClipRect
NtGdiCreateDIBSection
NtGdiGetDCforBitmap
NtUserDestroyCursor
NtUserDestroyWindow
NtUserCallHwndParam
NtGdiCreateDIBitmapInternal
NtUserOpenWindowStation
NtGdiDdDeleteSurfaceObject
NtGdiDdCanCreateSurface
NtGdiDdCreateSurface
NtUserSetCursorIconData
NtGdiDdDestroySurface
NtUserCloseDesktop
NtUserOpenDesktop
NtUserSetProcessWindowStation
NtUserGetAtomName
NtGdiDdResetVisrgn
NtGdiExtCreatePen
NtGdiCreatePaletteInternal
NtGdiSetBrushOrg
NtUserBuildNameList
NtGdiSetPixel
NtUserRegisterClassExWOW
NtGdiCreatePatternBrushInternal
NtUserGetAncestor
NtGdiGetOutlineTextMetricsInternalW
NtGdiSetBitmapBits
NtUserCloseWindowStation
NtUserGetDoubleClickTime
NtUserEnableScrollBar
NtGdiCreateSolidBrush
NtUserGetClassInfoEx
NtGdiCreateClientObj
NtUserUnregisterClass
NtUserDeleteMenu
NtGdiRectInRegion
NtUserScrollWindowEx
NtGdiGetPixel
NtUserSetClassLong
NtUserGetMenuBarInfo
NtGdiDdCreateSurfaceEx
NtGdiDdCreateSurfaceObject
NtGdiGetNearestPaletteIndex
NtGdiDdLockD3D
NtGdiDdUnlockD3D
NtGdiGetCharWidthW
NtUserInvalidateRgn
NtUserGetClipboardOwner
NtUserSetWindowRgn
NtUserBitBltSysBmp
NtGdiGetCharWidthInfo
NtUserValidateRect
NtUserCloseClipboard
NtUserOpenClipboard
NtGdiGetStockObject
NtUserSetClipboardData
NtUserEnableMenuItem
NtUserAlterWindowStyle
NtGdiFillRgn
NtUserGetWindowPlacement
NtGdiModifyWorldTransform
NtGdiGetFontData
NtUserGetOpenClipboardWindow
NtUserSetThreadState
NtGdiOpenDCW
NtUserTrackMouseEvent
NtGdiGetTransform
NtUserDestroyMenu
NtGdiGetBitmapBits
NtUserConsoleControl
NtUserSetActiveWindow
NtUserSetInformationThread
NtUserSetWindowPlacement
NtUserGetControlColor
NtGdiSetMetaRgn
NtGdiSetMiterLimit
NtGdiSetVirtualResolution
NtGdiGetRasterizerCaps
NtUserSetWindowWord
NtUserGetClipboardFormatName
NtUserRealInternalGetMessage
NtUserCreateLocalMemHandle
NtUserAttachThreadInput
NtGdiCreateHalftonePalette
NtUserPaintMenuBar
NtUserSetKeyboardState
NtGdiCombineTransform
NtUserCreateAcceleratorTable
NtUserGetCursorFrameInfo
NtUserGetAltTabInfo
NtUserGetCaretBlinkTime
NtGdiQueryFontAssocInfo
NtUserProcessConnect
NtUserEnumDisplayDevices
NtUserEmptyClipboard
NtUserGetClipboardData
NtUserRemoveMenu
NtGdiSetBoundsRect
NtGdiGetBitmapDimension
NtUserConvertMemHandle
NtUserDestroyAcceleratorTable
NtUserGetGUIThreadInfo
NtGdiCloseFigure
NtUserSetWindowsHookAW
NtUserSetMenuDefaultItem
NtUserCheckMenuItem
NtUserSetWinEventHook
NtUserUnhookWinEvent
NtUserLockWindowUpdate
NtUserSetSystemMenu
NtUserThunkedMenuInfo
NtGdiBeginPath
NtGdiEndPath
NtGdiFillPath
NtUserCallHwnd
NtUserDdeInitialize
NtUserModifyUserStartupInfoFlags
NtUserCountClipboardFormats
NtGdiAddFontMemResourceEx
NtGdiEqualRgn
NtGdiGetSystemPaletteUse
NtGdiRemoveFontMemResourceEx
NtUserEnumDisplaySettings
NtUserPaintDesktop
NtGdiExtEscape
NtGdiSetBitmapDimension
NtGdiSetFontEnumeration
NtUserChangeClipboardChain
NtUserSetClipboardViewer
NtUserShowWindowAsync
NtGdiCreateColorSpace
NtGdiDeleteColorSpace
NtUserActivateKeyboardLayout
NtBindCompositionSurface
NtCompositionInputThread
NtCreateCompositionInputSink
NtCreateCompositionSurfaceHandle
NtDCompositionAddCrossDeviceVisualChild
NtDCompositionAddVisualChild
NtDCompositionBeginFrame
NtDCompositionCommitChannel
NtDCompositionConfirmFrame
NtDCompositionConnectPipe
NtDCompositionCreateAndBindSharedSection
NtDCompositionCreateChannel
NtDCompositionCreateConnection
NtDCompositionCreateDwmChannel
NtDCompositionCreateResource
NtDCompositionCurrentBatchId
NtDCompositionDestroyChannel
NtDCompositionDestroyConnection
NtDCompositionDiscardFrame
NtDCompositionDuplicateHandleToProcess
NtDCompositionDwmSyncFlush
NtDCompositionGetChannels
NtDCompositionGetConnectionBatch
NtDCompositionGetDeletedResources
NtDCompositionGetFrameLegacyTokens
NtDCompositionGetFrameStatistics
NtDCompositionGetFrameSurfaceUpdates
NtDCompositionOpenSharedResource
NtDCompositionOpenSharedResourceHandle
NtDCompositionReferenceSharedResourceOnDwmChannel
NtDCompositionRegisterThumbnailVisual
NtDCompositionReleaseAllResources
NtDCompositionReleaseResource
NtDCompositionRemoveCrossDeviceVisualChild
NtDCompositionRemoveVisualChild
NtDCompositionReplaceVisualChildren
NtDCompositionRetireFrame
NtDCompositionSetChannelCommitCompletionEvent
NtDCompositionSetDebugCounter
NtDCompositionSetResourceAnimationProperty
NtDCompositionSetResourceBufferProperty
NtDCompositionSetResourceDeletedNotificationTag
NtDCompositionSetResourceFloatProperty
NtDCompositionSetResourceHandleProperty
NtDCompositionSetResourceIntegerProperty
NtDCompositionSetResourceReferenceArrayProperty
NtDCompositionSetResourceReferenceProperty
NtDCompositionSignalGpuFence
NtDCompositionSubmitDWMBatch
NtDCompositionSynchronize
NtDCompositionTelemetryAnimationScenarioBegin
NtDCompositionTelemetryAnimationScenarioReference
NtDCompositionTelemetryAnimationScenarioUnreference
NtDCompositionTelemetrySetApplicationId
NtDCompositionTelemetryTouchInteractionBegin
NtDCompositionTelemetryTouchInteractionEnd
NtDCompositionTelemetryTouchInteractionUpdate
NtDCompositionWaitForChannel
NtDuplicateCompositionInputSink
NtGdiAbortDoc
NtGdiAbortPath
NtGdiAddEmbFontToDC
NtGdiAddFontResourceW
NtGdiAddRemoteFontToDC
NtGdiAddRemoteMMInstanceToDC
NtGdiAngleArc
NtGdiAnyLinkedFonts
NtGdiArcInternal
NtGdiBRUSHOBJ_DeleteRbrush
NtGdiBRUSHOBJ_hGetColorTransform
NtGdiBRUSHOBJ_pvAllocRbrush
NtGdiBRUSHOBJ_pvGetRbrush
NtGdiBRUSHOBJ_ulGetBrushColor
NtGdiBeginGdiRendering
NtGdiCLIPOBJ_bEnum
NtGdiCLIPOBJ_cEnumStart
NtGdiCLIPOBJ_ppoGetPath
NtGdiCancelDC
NtGdiChangeGhostFont
NtGdiCheckBitmapBits
NtGdiClearBitmapAttributes
NtGdiClearBrushAttributes
NtGdiColorCorrectPalette
NtGdiConfigureOPMProtectedOutput
NtGdiConvertMetafileRect
NtGdiCreateBitmapFromDxSurface
NtGdiCreateBitmapFromDxSurface2
NtGdiCreateColorTransform
NtGdiCreateEllipticRgn
NtGdiCreateHatchBrushInternal
NtGdiCreateMetafileDC
NtGdiCreateOPMProtectedOutputs
NtGdiCreateRoundRectRgn
NtGdiCreateServerMetaFile
NtGdiCreateSessionMappedDIBSection
NtGdiD3dContextCreate
NtGdiD3dContextDestroy
NtGdiD3dContextDestroyAll
NtGdiD3dValidateTextureStageState
NtGdiDDCCIGetCapabilitiesString
NtGdiDDCCIGetCapabilitiesStringLength
NtGdiDDCCIGetTimingReport
NtGdiDDCCIGetVCPFeature
NtGdiDDCCISaveCurrentSettings
NtGdiDDCCISetVCPFeature
NtGdiDdAddAttachedSurface
NtGdiDdAlphaBlt
NtGdiDdAttachSurface
NtGdiDdBeginMoCompFrame
NtGdiDdCanCreateD3DBuffer
NtGdiDdColorControl
NtGdiDdCreateD3DBuffer
NtGdiDdCreateDirectDrawObject
NtGdiDdCreateFullscreenSprite
NtGdiDdCreateMoComp
NtGdiDdDDIAcquireKeyedMutex
NtGdiDdDDIAcquireKeyedMutex2
NtGdiDdDDICacheHybridQueryValue
NtGdiDdDDICheckExclusiveOwnership
NtGdiDdDDICheckMonitorPowerState
NtGdiDdDDICheckMultiPlaneOverlaySupport
NtGdiDdDDICheckOcclusion
NtGdiDdDDICheckSharedResourceAccess
NtGdiDdDDICheckVidPnExclusiveOwnership
NtGdiDdDDICloseAdapter
NtGdiDdDDIConfigureSharedResource
NtGdiDdDDICreateAllocation
NtGdiDdDDICreateContext
NtGdiDdDDICreateDCFromMemory
NtGdiDdDDICreateDevice
NtGdiDdDDICreateKeyedMutex
NtGdiDdDDICreateKeyedMutex2
NtGdiDdDDICreateOutputDupl
NtGdiDdDDICreateOverlay
NtGdiDdDDICreateSynchronizationObject
NtGdiDdDDIDestroyAllocation
NtGdiDdDDIDestroyContext
NtGdiDdDDIDestroyDCFromMemory
NtGdiDdDDIDestroyDevice
NtGdiDdDDIDestroyKeyedMutex
NtGdiDdDDIDestroyOutputDupl
NtGdiDdDDIDestroyOverlay
NtGdiDdDDIDestroySynchronizationObject
NtGdiDdDDIEnumAdapters
NtGdiDdDDIEscape
NtGdiDdDDIFlipOverlay
NtGdiDdDDIGetCachedHybridQueryValue
NtGdiDdDDIGetContextInProcessSchedulingPriority
NtGdiDdDDIGetContextSchedulingPriority
NtGdiDdDDIGetDeviceState
NtGdiDdDDIGetDisplayModeList
NtGdiDdDDIGetMultisampleMethodList
NtGdiDdDDIGetOverlayState
NtGdiDdDDIGetPresentHistory
NtGdiDdDDIGetPresentQueueEvent
NtGdiDdDDIGetProcessSchedulingPriorityClass
NtGdiDdDDIGetRuntimeData
NtGdiDdDDIGetScanLine
NtGdiDdDDIGetSharedPrimaryHandle
NtGdiDdDDIGetSharedResourceAdapterLuid
NtGdiDdDDIInvalidateActiveVidPn
NtGdiDdDDILock
NtGdiDdDDINetDispGetNextChunkInfo
NtGdiDdDDINetDispQueryMiracastDisplayDeviceStatus
NtGdiDdDDINetDispQueryMiracastDisplayDeviceSupport
NtGdiDdDDINetDispStartMiracastDisplayDevice
NtGdiDdDDINetDispStopMiracastDisplayDevice
NtGdiDdDDIOfferAllocations
NtGdiDdDDIOpenAdapterFromDeviceName
NtGdiDdDDIOpenAdapterFromHdc
NtGdiDdDDIOpenAdapterFromLuid
NtGdiDdDDIOpenKeyedMutex
NtGdiDdDDIOpenKeyedMutex2
NtGdiDdDDIOpenNtHandleFromName
NtGdiDdDDIOpenResource
NtGdiDdDDIOpenResourceFromNtHandle
NtGdiDdDDIOpenSyncObjectFromNtHandle
NtGdiDdDDIOpenSynchronizationObject
NtGdiDdDDIOutputDuplGetFrameInfo
NtGdiDdDDIOutputDuplGetMetaData
NtGdiDdDDIOutputDuplGetPointerShapeData
NtGdiDdDDIOutputDuplPresent
NtGdiDdDDIOutputDuplReleaseFrame
NtGdiDdDDIPinDirectFlipResources
NtGdiDdDDIPollDisplayChildren
NtGdiDdDDIPresent
NtGdiDdDDIPresentMultiPlaneOverlay
NtGdiDdDDIQueryAdapterInfo
NtGdiDdDDIQueryAllocationResidency
NtGdiDdDDIQueryRemoteVidPnSourceFromGdiDisplayName
NtGdiDdDDIQueryResourceInfo
NtGdiDdDDIQueryResourceInfoFromNtHandle
NtGdiDdDDIQueryStatistics
NtGdiDdDDIReclaimAllocations
NtGdiDdDDIReleaseKeyedMutex
NtGdiDdDDIReleaseKeyedMutex2
NtGdiDdDDIReleaseProcessVidPnSourceOwners
NtGdiDdDDIRender
NtGdiDdDDISetAllocationPriority
NtGdiDdDDISetContextInProcessSchedulingPriority
NtGdiDdDDISetContextSchedulingPriority
NtGdiDdDDISetDisplayMode
NtGdiDdDDISetDisplayPrivateDriverFormat
NtGdiDdDDISetGammaRamp
NtGdiDdDDISetProcessSchedulingPriorityClass
NtGdiDdDDISetQueuedLimit
NtGdiDdDDISetStereoEnabled
NtGdiDdDDISetVidPnSourceOwner
NtGdiDdDDISetVidPnSourceOwner1
NtGdiDdDDIShareObjects
NtGdiDdDDISharedPrimaryLockNotification
NtGdiDdDDISharedPrimaryUnLockNotification
NtGdiDdDDISignalSynchronizationObject
NtGdiDdDDIUnlock
NtGdiDdDDIUnpinDirectFlipResources
NtGdiDdDDIUpdateOverlay
NtGdiDdDDIWaitForIdle
NtGdiDdDDIWaitForSynchronizationObject
NtGdiDdDDIWaitForVerticalBlankEvent
NtGdiDdDDIWaitForVerticalBlankEvent2
NtGdiDdDeleteDirectDrawObject
NtGdiDdDestroyD3DBuffer
NtGdiDdDestroyFullscreenSprite
NtGdiDdDestroyMoComp
NtGdiDdEndMoCompFrame
NtGdiDdFlip
NtGdiDdFlipToGDISurface
NtGdiDdGetAvailDriverMemory
NtGdiDdGetBltStatus
NtGdiDdGetDC
NtGdiDdGetDriverInfo
NtGdiDdGetDriverState
NtGdiDdGetDxHandle
NtGdiDdGetFlipStatus
NtGdiDdGetInternalMoCompInfo
NtGdiDdGetMoCompBuffInfo
NtGdiDdGetMoCompFormats
NtGdiDdGetMoCompGuids
NtGdiDdGetScanLine
NtGdiDdLock
NtGdiDdNotifyFullscreenSpriteUpdate
NtGdiDdQueryDirectDrawObject
NtGdiDdQueryMoCompStatus
NtGdiDdQueryVisRgnUniqueness
NtGdiDdReenableDirectDrawObject
NtGdiDdReleaseDC
NtGdiDdRenderMoComp
NtGdiDdSetColorKey
NtGdiDdSetExclusiveMode
NtGdiDdSetGammaRamp
NtGdiDdSetOverlayPosition
NtGdiDdUnattachSurface
NtGdiDdUnlock
NtGdiDdUpdateOverlay
NtGdiDdWaitForVerticalBlank
NtGdiDeleteColorTransform
NtGdiDescribePixelFormat
NtGdiDestroyOPMProtectedOutput
NtGdiDestroyPhysicalMonitor
NtGdiDoBanding
NtGdiDrawEscape
NtGdiDvpAcquireNotification
NtGdiDvpCanCreateVideoPort
NtGdiDvpColorControl
NtGdiDvpCreateVideoPort
NtGdiDvpDestroyVideoPort
NtGdiDvpFlipVideoPort
NtGdiDvpGetVideoPortBandwidth
NtGdiDvpGetVideoPortConnectInfo
NtGdiDvpGetVideoPortField
NtGdiDvpGetVideoPortFlipStatus
NtGdiDvpGetVideoPortInputFormats
NtGdiDvpGetVideoPortLine
NtGdiDvpGetVideoPortOutputFormats
NtGdiDvpGetVideoSignalStatus
NtGdiDvpReleaseNotification
NtGdiDvpUpdateVideoPort
NtGdiDvpWaitForVideoPortSync
NtGdiDwmCreatedBitmapRemotingOutput
NtGdiDxgGenericThunk
NtGdiEllipse
NtGdiEnableEudc
NtGdiEndDoc
NtGdiEndGdiRendering
NtGdiEndPage
NtGdiEngAlphaBlend
NtGdiEngAssociateSurface
NtGdiEngBitBlt
NtGdiEngCheckAbort
NtGdiEngComputeGlyphSet
NtGdiEngCopyBits
NtGdiEngCreateBitmap
NtGdiEngCreateClip
NtGdiEngCreateDeviceBitmap
NtGdiEngCreateDeviceSurface
NtGdiEngCreatePalette
NtGdiEngDeleteClip
NtGdiEngDeletePalette
NtGdiEngDeletePath
NtGdiEngDeleteSurface
NtGdiEngEraseSurface
NtGdiEngFillPath
NtGdiEngGradientFill
NtGdiEngLineTo
NtGdiEngLockSurface
NtGdiEngMarkBandingSurface
NtGdiEngPaint
NtGdiEngPlgBlt
NtGdiEngStretchBlt
NtGdiEngStretchBltROP
NtGdiEngStrokeAndFillPath
NtGdiEngStrokePath
NtGdiEngTextOut
NtGdiEngTransparentBlt
NtGdiEngUnlockSurface
NtGdiEnumFonts
NtGdiEnumObjects
NtGdiEudcLoadUnloadLink
NtGdiExtFloodFill
NtGdiFONTOBJ_cGetAllGlyphHandles
NtGdiFONTOBJ_cGetGlyphs
NtGdiFONTOBJ_pQueryGlyphAttrs
NtGdiFONTOBJ_pfdg
NtGdiFONTOBJ_pifi
NtGdiFONTOBJ_pvTrueTypeFontFile
NtGdiFONTOBJ_pxoGetXform
NtGdiFONTOBJ_vGetInfo
NtGdiFlattenPath
NtGdiFontIsLinked
NtGdiForceUFIMapping
NtGdiFrameRgn
NtGdiFullscreenControl
NtGdiGetBoundsRect
NtGdiGetCOPPCompatibleOPMInformation
NtGdiGetCertificate
NtGdiGetCertificateSize
NtGdiGetCharABCWidthsW
NtGdiGetCharacterPlacementW
NtGdiGetColorAdjustment
NtGdiGetColorSpaceforBitmap
NtGdiGetCurrentDpiInfo
NtGdiGetDeviceCaps
NtGdiGetDeviceCapsAll
NtGdiGetDeviceGammaRamp
NtGdiGetDeviceWidth
NtGdiGetDhpdev
NtGdiGetETM
NtGdiGetEmbUFI
NtGdiGetEmbedFonts
NtGdiGetEudcTimeStampEx
NtGdiGetFontFileData
NtGdiGetFontFileInfo
NtGdiGetFontResourceInfoInternalW
NtGdiGetFontUnicodeRanges
NtGdiGetGlyphIndicesW
NtGdiGetGlyphIndicesWInternal
NtGdiGetGlyphOutline
NtGdiGetKerningPairs
NtGdiGetLinkedUFIs
NtGdiGetMiterLimit
NtGdiGetMonitorID
NtGdiGetNumberOfPhysicalMonitors
NtGdiGetOPMInformation
NtGdiGetOPMRandomNumber
NtGdiGetObjectBitmapHandle
NtGdiGetPath
NtGdiGetPerBandInfo
NtGdiGetPhysicalMonitorDescription
NtGdiGetPhysicalMonitors
NtGdiGetRealizationInfo
NtGdiGetServerMetaFileBits
NtGdiGetSpoolMessage
NtGdiGetStats
NtGdiGetStringBitmapW
NtGdiGetSuggestedOPMProtectedOutputArraySize
NtGdiGetTextExtentExW
NtGdiGetUFI
NtGdiGetUFIPathname
NtGdiGradientFill
NtGdiHLSurfGetInformation
NtGdiHLSurfSetInformation
NtGdiHT_Get8BPPFormatPalette
NtGdiHT_Get8BPPMaskPalette
NtGdiIcmBrushInfo
NtGdiInit
NtGdiInitSpool
NtGdiMakeFontDir
NtGdiMakeInfoDC
NtGdiMakeObjectUnXferable
NtGdiMakeObjectXferable
NtGdiMirrorWindowOrg
NtGdiMonoBitmap
NtGdiMoveTo
NtGdiOffsetClipRgn
NtGdiPATHOBJ_bEnum
NtGdiPATHOBJ_bEnumClipLines
NtGdiPATHOBJ_vEnumStart
NtGdiPATHOBJ_vEnumStartClipLines
NtGdiPATHOBJ_vGetBounds
NtGdiPathToRegion
NtGdiPlgBlt
NtGdiPolyDraw
NtGdiPolyTextOutW
NtGdiPtInRegion
NtGdiPtVisible
NtGdiQueryFonts
NtGdiRemoveFontResourceW
NtGdiRemoveMergeFont
NtGdiResetDC
NtGdiResizePalette
NtGdiRoundRect
NtGdiSTROBJ_bEnum
NtGdiSTROBJ_bEnumPositionsOnly
NtGdiSTROBJ_bGetAdvanceWidths
NtGdiSTROBJ_dwGetCodePage
NtGdiSTROBJ_vEnumStart
NtGdiScaleViewportExtEx
NtGdiScaleWindowExtEx
NtGdiSelectBrush
NtGdiSelectClipPath
NtGdiSelectPen
NtGdiSetBitmapAttributes
NtGdiSetBrushAttributes
NtGdiSetColorAdjustment
NtGdiSetColorSpace
NtGdiSetDeviceGammaRamp
NtGdiSetFontXform
NtGdiSetIcmMode
NtGdiSetLinkedUFIs
NtGdiSetMagicColors
NtGdiSetOPMSigningKeyAndSequenceNumbers
NtGdiSetPUMPDOBJ
NtGdiSetPixelFormat
NtGdiSetRectRgn
NtGdiSetSizeDevice
NtGdiSetSystemPaletteUse
NtGdiSetTextJustification
NtGdiSetUMPDSandboxState
NtGdiStartDoc
NtGdiStartPage
NtGdiStrokeAndFillPath
NtGdiStrokePath
NtGdiSwapBuffers
NtGdiTransparentBlt
NtGdiUMPDEngFreeUserMem
NtGdiUnloadPrinterDriver
NtGdiUnmapMemFont
NtGdiUpdateColors
NtGdiUpdateTransform
NtGdiWidenPath
NtGdiXFORMOBJ_bApplyXform
NtGdiXFORMOBJ_iGetXform
NtGdiXLATEOBJ_cGetPalette
NtGdiXLATEOBJ_hGetColorTransform
NtGdiXLATEOBJ_iXlate
NtNotifyPresentToCompositionSurface
NtOpenCompositionSurfaceDirtyRegion
NtOpenCompositionSurfaceSectionInfo
NtOpenCompositionSurfaceSwapChainHandleInfo
NtQueryCompositionInputSink
NtQueryCompositionInputSinkLuid
NtQueryCompositionSurfaceBinding
NtQueryCompositionSurfaceRenderingRealization
NtQueryCompositionSurfaceStatistics
NtSetCompositionSurfaceBufferCompositionMode
NtSetCompositionSurfaceIndependentFlipInfo
NtSetCompositionSurfaceOutOfFrameDirectFlipNotification
NtSetCompositionSurfaceStatistics
NtTokenManagerCreateCompositionTokenHandle
NtTokenManagerDeleteOutstandingDirectFlipTokens
NtTokenManagerGetOutOfFrameDirectFlipSurfaceUpdates
NtTokenManagerOpenEvent
NtTokenManagerOpenSection
NtTokenManagerThread
NtUnBindCompositionSurface
NtUpdateInputSinkTransforms
NtUserAcquireIAMKey
NtUserAddClipboardFormatListener
NtUserAssociateInputContext
NtUserAutoPromoteMouseInPointer
NtUserAutoRotateScreen
NtUserBlockInput
NtUserBuildHimcList
NtUserBuildPropList
NtUserCalculatePopupWindowPosition
NtUserCallHwndOpt
NtUserCanBrokerForceForeground
NtUserChangeDisplaySettings
NtUserChangeWindowMessageFilterEx
NtUserCheckAccessForIntegrityLevel
NtUserCheckProcessForClipboardAccess
NtUserCheckProcessSession
NtUserCheckWindowThreadDesktop
NtUserChildWindowFromPointEx
NtUserClearForeground
NtUserClipCursor
NtUserCompositionInputSinkLuidFromPoint
NtUserCreateDCompositionHwndTarget
NtUserCreateDesktopEx
NtUserCreateInputContext
NtUserCreateWindowStation
NtUserCtxDisplayIOCtl
NtUserDeferWindowPosAndBand
NtUserDelegateCapturePointers
NtUserDelegateInput
NtUserDestroyDCompositionHwndTarget
NtUserDestroyInputContext
NtUserDisableImmersiveOwner
NtUserDisableProcessWindowFiltering
NtUserDisableThreadIme
NtUserDiscardPointerFrameMessages
NtUserDisplayConfigGetDeviceInfo
NtUserDisplayConfigSetDeviceInfo
NtUserDoSoundConnect
NtUserDoSoundDisconnect
NtUserDragDetect
NtUserDragObject
NtUserDrawAnimatedRects
NtUserDrawCaption
NtUserDrawCaptionTemp
NtUserDrawMenuBarTemp
NtUserDwmGetRemoteSessionOcclusionEvent
NtUserDwmGetRemoteSessionOcclusionState
NtUserDwmStartRedirection
NtUserDwmStopRedirection
NtUserDwmValidateWindow
NtUserEnableIAMAccess
NtUserEnableMouseInPointer
NtUserEnableMouseInputForCursorSuppression
NtUserEnableTouchPad
NtUserEndMenu
NtUserEvent
NtUserFlashWindowEx
NtUserFrostCrashedWindow
NtUserGetAppImeLevel
NtUserGetAutoRotationState
NtUserGetCIMSSM
NtUserGetCaretPos
NtUserGetClipCursor
NtUserGetClipboardAccessToken
NtUserGetClipboardViewer
NtUserGetComboBoxInfo
NtUserGetCurrentInputMessageSource
NtUserGetCursorDims
NtUserGetCursorInfo
NtUserGetDesktopID
NtUserGetDisplayAutoRotationPreferences
NtUserGetDisplayAutoRotationPreferencesByProcessId
NtUserGetDisplayConfigBufferSizes
NtUserGetDpiForMonitor
NtUserGetGestureConfig
NtUserGetGestureExtArgs
NtUserGetGestureInfo
NtUserGetGuiResources
NtUserGetHimetricScaleFactorFromPixelLocation
NtUserGetImeHotKey
NtUserGetImeInfoEx
NtUserGetInputLocaleInfo
NtUserGetInternalWindowPos
NtUserGetKeyNameText
NtUserGetKeyboardLayoutName
NtUserGetLayeredWindowAttributes
NtUserGetListBoxInfo
NtUserGetMenuIndex
NtUserGetMenuItemRect
NtUserGetMouseMovePointsEx
NtUserGetOwnerTransformedMonitorRect
NtUserGetPhysicalDeviceRect
NtUserGetPointerCursorId
NtUserGetPointerDevice
NtUserGetPointerDeviceCursors
NtUserGetPointerDeviceProperties
NtUserGetPointerDeviceRects
NtUserGetPointerDevices
NtUserGetPointerInfoList
NtUserGetPointerInputTransform
NtUserGetPointerType
NtUserGetPrecisionTouchPadConfiguration
NtUserGetPriorityClipboardFormat
NtUserGetProcessDpiAwareness
NtUserGetProcessUIContextInformation
NtUserGetQueueEventStatus
NtUserGetRawInputBuffer
NtUserGetRawInputData
NtUserGetRawInputDeviceInfo
NtUserGetRawInputDeviceList
NtUserGetRawPointerDeviceData
NtUserGetRegisteredRawInputDevices
NtUserGetTopLevelWindow
NtUserGetTouchInputInfo
NtUserGetTouchValidationStatus
NtUserGetUpdatedClipboardFormats
NtUserGetWOWClass
NtUserGetWindowBand
NtUserGetWindowCompositionAttribute
NtUserGetWindowCompositionInfo
NtUserGetWindowDisplayAffinity
NtUserGetWindowFeedbackSetting
NtUserGetWindowMinimizeRect
NtUserGetWindowRgnEx
NtUserGhostWindowFromHungWindow
NtUserHandleDelegatedInput
NtUserHardErrorControl
NtUserHidePointerContactVisualization
NtUserHiliteMenuItem
NtUserHungWindowFromGhostWindow
NtUserHwndQueryRedirectionInfo
NtUserHwndSetRedirectionInfo
NtUserImpersonateDdeClientWindow
NtUserInitTask
NtUserInitialize
NtUserInitializeClientPfnArrays
NtUserInitializeTouchInjection
NtUserInjectGesture
NtUserInjectTouchInput
NtUserInternalClipCursor
NtUserInternalGetWindowIcon
NtUserIsMouseInPointerEnabled
NtUserIsMouseInputEnabled
NtUserIsTopLevelWindow
NtUserIsTouchWindow
NtUserLayoutCompleted
NtUserLinkDpiCursor
NtUserLoadKeyboardLayoutEx
NtUserLockWindowStation
NtUserLockWorkStation
NtUserLogicalToPerMonitorDPIPhysicalPoint
NtUserLogicalToPhysicalPoint
NtUserMNDragLeave
NtUserMNDragOver
NtUserMagControl
NtUserMagGetContextInformation
NtUserMagSetContextInformation
NtUserMenuItemFromPoint
NtUserMinMaximize
NtUserModifyWindowTouchCapability
NtUserNotifyIMEStatus
NtUserOpenInputDesktop
NtUserOpenThreadDesktop
NtUserPaintMonitor
NtUserPerMonitorDPIPhysicalToLogicalPoint
NtUserPhysicalToLogicalPoint
NtUserPrintWindow
NtUserPromoteMouseInPointer
NtUserPromotePointer
NtUserQueryBSDRWindow
NtUserQueryDisplayConfig
NtUserQueryInformationThread
NtUserQueryInputContext
NtUserQuerySendMessage
NtUserRealChildWindowFromPoint
NtUserRealWaitMessageEx
NtUserRegisterBSDRWindow
NtUserRegisterEdgy
NtUserRegisterErrorReportingDialog
NtUserRegisterHotKey
NtUserRegisterPointerDeviceNotifications
NtUserRegisterPointerInputTarget
NtUserRegisterRawInputDevices
NtUserRegisterServicesProcess
NtUserRegisterSessionPort
NtUserRegisterTasklist
NtUserRegisterTouchHitTestingWindow
NtUserRegisterTouchPadCapable
NtUserRegisterUserApiHook
NtUserRemoteConnect
NtUserRemoteRedrawRectangle
NtUserRemoteRedrawScreen
NtUserRemoteStopScreenUpdates
NtUserRemoveClipboardFormatListener
NtUserReportInertia
NtUserResolveDesktopForWOW
NtUserSendEventMessage
NtUserSetActivationFilter
NtUserSetActiveProcess
NtUserSetAppImeLevel
NtUserSetAutoRotation
NtUserSetBrokeredForeground
NtUserSetCalibrationData
NtUserSetChildWindowNoActivate
NtUserSetClassWord
NtUserSetCursorContents
NtUserSetDisplayAutoRotationPreferences
NtUserSetDisplayConfig
NtUserSetDisplayMapping
NtUserSetFallbackForeground
NtUserSetGestureConfig
NtUserSetImeHotKey
NtUserSetImeInfoEx
NtUserSetImeOwnerWindow
NtUserSetImmersiveBackgroundWindow
NtUserSetInternalWindowPos
NtUserSetLayeredWindowAttributes
NtUserSetMenu
NtUserSetMenuContextHelpId
NtUserSetMenuFlagRtoL
NtUserSetMirrorRendering
NtUserSetObjectInformation
NtUserSetPrecisionTouchPadConfiguration
NtUserSetProcessDpiAwareness
NtUserSetProcessRestrictionExemption
NtUserSetProcessUIAccessZorder
NtUserSetShellWindowEx
NtUserSetSysColors
NtUserSetSystemCursor
NtUserSetSystemTimer
NtUserSetThreadInputBlocked
NtUserSetThreadLayoutHandles
NtUserSetWindowBand
NtUserSetWindowCompositionAttribute
NtUserSetWindowCompositionTransition
NtUserSetWindowDisplayAffinity
NtUserSetWindowFeedbackSetting
NtUserSetWindowRgnEx
NtUserSetWindowStationUser
NtUserShowSystemCursor
NtUserShutdownBlockReasonCreate
NtUserShutdownBlockReasonQuery
NtUserShutdownReasonDestroy
NtUserSignalRedirectionStartComplete
NtUserSlicerControl
NtUserSoundSentry
NtUserSwitchDesktop
NtUserTestForInteractiveUser
NtUserTrackPopupMenuEx
NtUserTransformPoint
NtUserTransformRect
NtUserUndelegateInput
NtUserUnloadKeyboardLayout
NtUserUnlockWindowStation
NtUserUnregisterHotKey
NtUserUnregisterSessionPort
NtUserUnregisterUserApiHook
NtUserUpdateDefaultDesktopThumbnail
NtUserUpdateInputContext
NtUserUpdateInstance
NtUserUpdateLayeredWindow
NtUserUpdatePerUserSystemParameters
NtUserUpdateWindowInputSinkHints
NtUserUpdateWindowTransform
NtUserUserHandleGrantAccess
NtUserValidateHandleSecure
NtUserWaitAvailableMessageEx
NtUserWaitForInputIdle
NtUserWaitForMsgAndEvent
NtUserWaitForRedirectionStartComplete
NtUserWindowFromPhysicalPoint
NtValidateCompositionSurfaceHandle
NtUserSetClassLongPtr
NtUserSetWindowLongPtr

ntstatus.idc for WDK 8.1

$
0
0
Add 35 new NTSTATUS values

#include <idc.idc>

static Enums(void)
{
  auto id,cid;
  id = AddEnum( 0, "NTSTATUS", 0x1100000 );
  if ( id == -1 )
  {
    id = GetEnum("NTSTATUS");
  }
  if ( id != -1 )
  {
    AddConstEx( id, "STATUS_SUCCESS", 0x0, -1);
    AddConstEx( id, "STATUS_WAIT_1", 0x1, -1);
    AddConstEx( id, "STATUS_WAIT_2", 0x2, -1);
    AddConstEx( id, "STATUS_WAIT_3", 0x3, -1);
    AddConstEx( id, "STATUS_WAIT_63", 0x3F, -1);
    AddConstEx( id, "STATUS_ABANDONED", 0x80, -1);
    AddConstEx( id, "STATUS_ABANDONED_WAIT_63", 0xBF, -1);
    AddConstEx( id, "STATUS_USER_APC", 0xC0, -1);
    AddConstEx( id, "STATUS_KERNEL_APC", 0x100, -1);
    AddConstEx( id, "STATUS_ALERTED", 0x101, -1);
    AddConstEx( id, "STATUS_TIMEOUT", 0x102, -1);
    AddConstEx( id, "STATUS_PENDING", 0x103, -1);
    AddConstEx( id, "STATUS_REPARSE", 0x104, -1);
    AddConstEx( id, "STATUS_MORE_ENTRIES", 0x105, -1);
    AddConstEx( id, "STATUS_NOT_ALL_ASSIGNED", 0x106, -1);
    AddConstEx( id, "STATUS_SOME_NOT_MAPPED", 0x107, -1);
    AddConstEx( id, "STATUS_OPLOCK_BREAK_IN_PROGRESS", 0x108, -1);
    AddConstEx( id, "STATUS_VOLUME_MOUNTED", 0x109, -1);
    AddConstEx( id, "STATUS_RXACT_COMMITTED", 0x10A, -1);
    AddConstEx( id, "STATUS_NOTIFY_CLEANUP", 0x10B, -1);
    AddConstEx( id, "STATUS_NOTIFY_ENUM_DIR", 0x10C, -1);
    AddConstEx( id, "STATUS_NO_QUOTAS_FOR_ACCOUNT", 0x10D, -1);
    AddConstEx( id, "STATUS_PRIMARY_TRANSPORT_CONNECT_FAILED", 0x10E, -1);
    AddConstEx( id, "STATUS_PAGE_FAULT_TRANSITION", 0x110, -1);
    AddConstEx( id, "STATUS_PAGE_FAULT_DEMAND_ZERO", 0x111, -1);
    AddConstEx( id, "STATUS_PAGE_FAULT_COPY_ON_WRITE", 0x112, -1);
    AddConstEx( id, "STATUS_PAGE_FAULT_GUARD_PAGE", 0x113, -1);
    AddConstEx( id, "STATUS_PAGE_FAULT_PAGING_FILE", 0x114, -1);
    AddConstEx( id, "STATUS_CACHE_PAGE_LOCKED", 0x115, -1);
    AddConstEx( id, "STATUS_CRASH_DUMP", 0x116, -1);
    AddConstEx( id, "STATUS_BUFFER_ALL_ZEROS", 0x117, -1);
    AddConstEx( id, "STATUS_REPARSE_OBJECT", 0x118, -1);
    AddConstEx( id, "STATUS_RESOURCE_REQUIREMENTS_CHANGED", 0x119, -1);
    AddConstEx( id, "STATUS_TRANSLATION_COMPLETE", 0x120, -1);
    AddConstEx( id, "STATUS_DS_MEMBERSHIP_EVALUATED_LOCALLY", 0x121, -1);
    AddConstEx( id, "STATUS_NOTHING_TO_TERMINATE", 0x122, -1);
    AddConstEx( id, "STATUS_PROCESS_NOT_IN_JOB", 0x123, -1);
    AddConstEx( id, "STATUS_PROCESS_IN_JOB", 0x124, -1);
    AddConstEx( id, "STATUS_VOLSNAP_HIBERNATE_READY", 0x125, -1);
    AddConstEx( id, "STATUS_FSFILTER_OP_COMPLETED_SUCCESSFULLY", 0x126, -1);
    AddConstEx( id, "STATUS_INTERRUPT_VECTOR_ALREADY_CONNECTED", 0x127, -1);
    AddConstEx( id, "STATUS_INTERRUPT_STILL_CONNECTED", 0x128, -1);
    AddConstEx( id, "STATUS_PROCESS_CLONED", 0x129, -1);
    AddConstEx( id, "STATUS_FILE_LOCKED_WITH_ONLY_READERS", 0x12A, -1);
    AddConstEx( id, "STATUS_FILE_LOCKED_WITH_WRITERS", 0x12B, -1);
    AddConstEx( id, "STATUS_VALID_IMAGE_HASH", 0x12C, -1);
    AddConstEx( id, "STATUS_VALID_CATALOG_HASH", 0x12D, -1);
    AddConstEx( id, "STATUS_RESOURCEMANAGER_READ_ONLY", 0x202, -1);
    AddConstEx( id, "STATUS_RING_PREVIOUSLY_EMPTY", 0x210, -1);
    AddConstEx( id, "STATUS_RING_PREVIOUSLY_FULL", 0x211, -1);
    AddConstEx( id, "STATUS_RING_PREVIOUSLY_ABOVE_QUOTA", 0x212, -1);
    AddConstEx( id, "STATUS_RING_NEWLY_EMPTY", 0x213, -1);
    AddConstEx( id, "STATUS_RING_SIGNAL_OPPOSITE_ENDPOINT", 0x214, -1);
    AddConstEx( id, "STATUS_OPLOCK_SWITCHED_TO_NEW_HANDLE", 0x215, -1);
    AddConstEx( id, "STATUS_OPLOCK_HANDLE_CLOSED", 0x216, -1);
    AddConstEx( id, "STATUS_WAIT_FOR_OPLOCK", 0x367, -1);
    AddConstEx( id, "STATUS_FLT_IO_COMPLETE", 0x1C0001, -1);
    AddConstEx( id, "STATUS_OBJECT_NAME_EXISTS", 0x40000000, -1);
    AddConstEx( id, "STATUS_THREAD_WAS_SUSPENDED", 0x40000001, -1);
    AddConstEx( id, "STATUS_WORKING_SET_LIMIT_RANGE", 0x40000002, -1);
    AddConstEx( id, "STATUS_IMAGE_NOT_AT_BASE", 0x40000003, -1);
    AddConstEx( id, "STATUS_RXACT_STATE_CREATED", 0x40000004, -1);
    AddConstEx( id, "STATUS_SEGMENT_NOTIFICATION", 0x40000005, -1);
    AddConstEx( id, "STATUS_LOCAL_USER_SESSION_KEY", 0x40000006, -1);
    AddConstEx( id, "STATUS_BAD_CURRENT_DIRECTORY", 0x40000007, -1);
    AddConstEx( id, "STATUS_SERIAL_MORE_WRITES", 0x40000008, -1);
    AddConstEx( id, "STATUS_REGISTRY_RECOVERED", 0x40000009, -1);
    AddConstEx( id, "STATUS_FT_READ_RECOVERY_FROM_BACKUP", 0x4000000A, -1);
    AddConstEx( id, "STATUS_FT_WRITE_RECOVERY", 0x4000000B, -1);
    AddConstEx( id, "STATUS_SERIAL_COUNTER_TIMEOUT", 0x4000000C, -1);
    AddConstEx( id, "STATUS_NULL_LM_PASSWORD", 0x4000000D, -1);
    AddConstEx( id, "STATUS_IMAGE_MACHINE_TYPE_MISMATCH", 0x4000000E, -1);
    AddConstEx( id, "STATUS_RECEIVE_PARTIAL", 0x4000000F, -1);
    AddConstEx( id, "STATUS_RECEIVE_EXPEDITED", 0x40000010, -1);
    AddConstEx( id, "STATUS_RECEIVE_PARTIAL_EXPEDITED", 0x40000011, -1);
    AddConstEx( id, "STATUS_EVENT_DONE", 0x40000012, -1);
    AddConstEx( id, "STATUS_EVENT_PENDING", 0x40000013, -1);
    AddConstEx( id, "STATUS_CHECKING_FILE_SYSTEM", 0x40000014, -1);
    AddConstEx( id, "STATUS_FATAL_APP_EXIT", 0x40000015, -1);
    AddConstEx( id, "STATUS_PREDEFINED_HANDLE", 0x40000016, -1);
    AddConstEx( id, "STATUS_WAS_UNLOCKED", 0x40000017, -1);
    AddConstEx( id, "STATUS_SERVICE_NOTIFICATION", 0x40000018, -1);
    AddConstEx( id, "STATUS_WAS_LOCKED", 0x40000019, -1);
    AddConstEx( id, "STATUS_LOG_HARD_ERROR", 0x4000001A, -1);
    AddConstEx( id, "STATUS_ALREADY_WIN32", 0x4000001B, -1);
    AddConstEx( id, "STATUS_WX86_UNSIMULATE", 0x4000001C, -1);
    AddConstEx( id, "STATUS_WX86_CONTINUE", 0x4000001D, -1);
    AddConstEx( id, "STATUS_WX86_SINGLE_STEP", 0x4000001E, -1);
    AddConstEx( id, "STATUS_WX86_BREAKPOINT", 0x4000001F, -1);
    AddConstEx( id, "STATUS_WX86_EXCEPTION_CONTINUE", 0x40000020, -1);
    AddConstEx( id, "STATUS_WX86_EXCEPTION_LASTCHANCE", 0x40000021, -1);
    AddConstEx( id, "STATUS_WX86_EXCEPTION_CHAIN", 0x40000022, -1);
    AddConstEx( id, "STATUS_IMAGE_MACHINE_TYPE_MISMATCH_EXE", 0x40000023, -1);
    AddConstEx( id, "STATUS_NO_YIELD_PERFORMED", 0x40000024, -1);
    AddConstEx( id, "STATUS_TIMER_RESUME_IGNORED", 0x40000025, -1);
    AddConstEx( id, "STATUS_ARBITRATION_UNHANDLED", 0x40000026, -1);
    AddConstEx( id, "STATUS_CARDBUS_NOT_SUPPORTED", 0x40000027, -1);
    AddConstEx( id, "STATUS_WX86_CREATEWX86TIB", 0x40000028, -1);
    AddConstEx( id, "STATUS_MP_PROCESSOR_MISMATCH", 0x40000029, -1);
    AddConstEx( id, "STATUS_HIBERNATED", 0x4000002A, -1);
    AddConstEx( id, "STATUS_RESUME_HIBERNATION", 0x4000002B, -1);
    AddConstEx( id, "STATUS_FIRMWARE_UPDATED", 0x4000002C, -1);
    AddConstEx( id, "STATUS_DRIVERS_LEAKING_LOCKED_PAGES", 0x4000002D, -1);
    AddConstEx( id, "STATUS_MESSAGE_RETRIEVED", 0x4000002E, -1);
    AddConstEx( id, "STATUS_SYSTEM_POWERSTATE_TRANSITION", 0x4000002F, -1);
    AddConstEx( id, "STATUS_ALPC_CHECK_COMPLETION_LIST", 0x40000030, -1);
    AddConstEx( id, "STATUS_SYSTEM_POWERSTATE_COMPLEX_TRANSITION", 0x40000031, -1);
    AddConstEx( id, "STATUS_ACCESS_AUDIT_BY_POLICY", 0x40000032, -1);
    AddConstEx( id, "STATUS_ABANDON_HIBERFILE", 0x40000033, -1);
    AddConstEx( id, "STATUS_BIZRULES_NOT_ENABLED", 0x40000034, -1);
    AddConstEx( id, "STATUS_FT_READ_FROM_COPY", 0x40000035, -1);
    AddConstEx( id, "STATUS_IMAGE_AT_DIFFERENT_BASE", 0x40000036, -1);
    AddConstEx( id, "STATUS_WAKE_SYSTEM", 0x40000294, -1);
    AddConstEx( id, "STATUS_DS_SHUTTING_DOWN", 0x40000370, -1);
    AddConstEx( id, "STATUS_DISK_REPAIR_REDIRECTED", 0x40000807, -1);
    AddConstEx( id, "STATUS_SERVICES_FAILED_AUTOSTART", 0x4000A144, -1);
    AddConstEx( id, "STATUS_CTX_CDM_CONNECT", 0x400A0004, -1);
    AddConstEx( id, "STATUS_CTX_CDM_DISCONNECT", 0x400A0005, -1);
    AddConstEx( id, "STATUS_SXS_RELEASE_ACTIVATION_CONTEXT", 0x4015000D, -1);
    AddConstEx( id, "STATUS_HEURISTIC_DAMAGE_POSSIBLE", 0x40190001, -1);
    AddConstEx( id, "STATUS_RECOVERY_NOT_NEEDED", 0x40190034, -1);
    AddConstEx( id, "STATUS_RM_ALREADY_STARTED", 0x40190035, -1);
    AddConstEx( id, "STATUS_LOG_NO_RESTART", 0x401A000C, -1);
    AddConstEx( id, "STATUS_VIDEO_DRIVER_DEBUG_REPORT_REQUEST", 0x401B00EC, -1);
    AddConstEx( id, "STATUS_GRAPHICS_PARTIAL_DATA_POPULATED", 0x401E000A, -1);
    AddConstEx( id, "STATUS_GRAPHICS_SKIP_ALLOCATION_PREPARATION", 0x401E0201, -1);
    AddConstEx( id, "STATUS_GRAPHICS_MODE_NOT_PINNED", 0x401E0307, -1);
    AddConstEx( id, "STATUS_GRAPHICS_NO_PREFERRED_MODE", 0x401E031E, -1);
    AddConstEx( id, "STATUS_GRAPHICS_DATASET_IS_EMPTY", 0x401E034B, -1);
    AddConstEx( id, "STATUS_GRAPHICS_NO_MORE_ELEMENTS_IN_DATASET", 0x401E034C, -1);
    AddConstEx( id, "STATUS_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_PINNED", 0x401E0351, -1);
    AddConstEx( id, "STATUS_GRAPHICS_UNKNOWN_CHILD_STATUS", 0x401E042F, -1);
    AddConstEx( id, "STATUS_GRAPHICS_LEADLINK_START_DEFERRED", 0x401E0437, -1);
    AddConstEx( id, "STATUS_GRAPHICS_POLLING_TOO_FREQUENTLY", 0x401E0439, -1);
    AddConstEx( id, "STATUS_GRAPHICS_START_DEFERRED", 0x401E043A, -1);
    AddConstEx( id, "STATUS_NDIS_INDICATION_REQUIRED", 0x40230001, -1);
    AddConstEx( id, "STATUS_GUARD_PAGE_VIOLATION", 0x80000001, -1);
    AddConstEx( id, "STATUS_DATATYPE_MISALIGNMENT", 0x80000002, -1);
    AddConstEx( id, "STATUS_BREAKPOINT", 0x80000003, -1);
    AddConstEx( id, "STATUS_SINGLE_STEP", 0x80000004, -1);
    AddConstEx( id, "STATUS_BUFFER_OVERFLOW", 0x80000005, -1);
    AddConstEx( id, "STATUS_NO_MORE_FILES", 0x80000006, -1);
    AddConstEx( id, "STATUS_WAKE_SYSTEM_DEBUGGER", 0x80000007, -1);
    AddConstEx( id, "STATUS_HANDLES_CLOSED", 0x8000000A, -1);
    AddConstEx( id, "STATUS_NO_INHERITANCE", 0x8000000B, -1);
    AddConstEx( id, "STATUS_GUID_SUBSTITUTION_MADE", 0x8000000C, -1);
    AddConstEx( id, "STATUS_PARTIAL_COPY", 0x8000000D, -1);
    AddConstEx( id, "STATUS_DEVICE_PAPER_EMPTY", 0x8000000E, -1);
    AddConstEx( id, "STATUS_DEVICE_POWERED_OFF", 0x8000000F, -1);
    AddConstEx( id, "STATUS_DEVICE_OFF_LINE", 0x80000010, -1);
    AddConstEx( id, "STATUS_DEVICE_BUSY", 0x80000011, -1);
    AddConstEx( id, "STATUS_NO_MORE_EAS", 0x80000012, -1);
    AddConstEx( id, "STATUS_INVALID_EA_NAME", 0x80000013, -1);
    AddConstEx( id, "STATUS_EA_LIST_INCONSISTENT", 0x80000014, -1);
    AddConstEx( id, "STATUS_INVALID_EA_FLAG", 0x80000015, -1);
    AddConstEx( id, "STATUS_VERIFY_REQUIRED", 0x80000016, -1);
    AddConstEx( id, "STATUS_EXTRANEOUS_INFORMATION", 0x80000017, -1);
    AddConstEx( id, "STATUS_RXACT_COMMIT_NECESSARY", 0x80000018, -1);
    AddConstEx( id, "STATUS_NO_MORE_ENTRIES", 0x8000001A, -1);
    AddConstEx( id, "STATUS_FILEMARK_DETECTED", 0x8000001B, -1);
    AddConstEx( id, "STATUS_MEDIA_CHANGED", 0x8000001C, -1);
    AddConstEx( id, "STATUS_BUS_RESET", 0x8000001D, -1);
    AddConstEx( id, "STATUS_END_OF_MEDIA", 0x8000001E, -1);
    AddConstEx( id, "STATUS_BEGINNING_OF_MEDIA", 0x8000001F, -1);
    AddConstEx( id, "STATUS_MEDIA_CHECK", 0x80000020, -1);
    AddConstEx( id, "STATUS_SETMARK_DETECTED", 0x80000021, -1);
    AddConstEx( id, "STATUS_NO_DATA_DETECTED", 0x80000022, -1);
    AddConstEx( id, "STATUS_REDIRECTOR_HAS_OPEN_HANDLES", 0x80000023, -1);
    AddConstEx( id, "STATUS_SERVER_HAS_OPEN_HANDLES", 0x80000024, -1);
    AddConstEx( id, "STATUS_ALREADY_DISCONNECTED", 0x80000025, -1);
    AddConstEx( id, "STATUS_LONGJUMP", 0x80000026, -1);
    AddConstEx( id, "STATUS_CLEANER_CARTRIDGE_INSTALLED", 0x80000027, -1);
    AddConstEx( id, "STATUS_PLUGPLAY_QUERY_VETOED", 0x80000028, -1);
    AddConstEx( id, "STATUS_UNWIND_CONSOLIDATE", 0x80000029, -1);
    AddConstEx( id, "STATUS_REGISTRY_HIVE_RECOVERED", 0x8000002A, -1);
    AddConstEx( id, "STATUS_DLL_MIGHT_BE_INSECURE", 0x8000002B, -1);
    AddConstEx( id, "STATUS_DLL_MIGHT_BE_INCOMPATIBLE", 0x8000002C, -1);
    AddConstEx( id, "STATUS_STOPPED_ON_SYMLINK", 0x8000002D, -1);
    AddConstEx( id, "STATUS_CANNOT_GRANT_REQUESTED_OPLOCK", 0x8000002E, -1);
    AddConstEx( id, "STATUS_NO_ACE_CONDITION", 0x8000002F, -1);
    AddConstEx( id, "STATUS_DEVICE_SUPPORT_IN_PROGRESS", 0x80000030, -1);
    AddConstEx( id, "STATUS_DEVICE_REQUIRES_CLEANING", 0x80000288, -1);
    AddConstEx( id, "STATUS_DEVICE_DOOR_OPEN", 0x80000289, -1);
    AddConstEx( id, "STATUS_DATA_LOST_REPAIR", 0x80000803, -1);
    AddConstEx( id, "STATUS_GPIO_INTERRUPT_ALREADY_UNMASKED", 0x8000A127, -1);
    AddConstEx( id, "STATUS_CLUSTER_NODE_ALREADY_UP", 0x80130001, -1);
    AddConstEx( id, "STATUS_CLUSTER_NODE_ALREADY_DOWN", 0x80130002, -1);
    AddConstEx( id, "STATUS_CLUSTER_NETWORK_ALREADY_ONLINE", 0x80130003, -1);
    AddConstEx( id, "STATUS_CLUSTER_NETWORK_ALREADY_OFFLINE", 0x80130004, -1);
    AddConstEx( id, "STATUS_CLUSTER_NODE_ALREADY_MEMBER", 0x80130005, -1);
    AddConstEx( id, "STATUS_COULD_NOT_RESIZE_LOG", 0x80190009, -1);
    AddConstEx( id, "STATUS_NO_TXF_METADATA", 0x80190029, -1);
    AddConstEx( id, "STATUS_CANT_RECOVER_WITH_HANDLE_OPEN", 0x80190031, -1);
    AddConstEx( id, "STATUS_TXF_METADATA_ALREADY_PRESENT", 0x80190041, -1);
    AddConstEx( id, "STATUS_TRANSACTION_SCOPE_CALLBACKS_NOT_SET", 0x80190042, -1);
    AddConstEx( id, "STATUS_VIDEO_HUNG_DISPLAY_DRIVER_THREAD_RECOVERED", 0x801B00EB, -1);
    AddConstEx( id, "STATUS_FLT_BUFFER_TOO_SMALL", 0x801C0001, -1);
    AddConstEx( id, "STATUS_FVE_PARTIAL_METADATA", 0x80210001, -1);
    AddConstEx( id, "STATUS_FVE_TRANSIENT_STATE", 0x80210002, -1);
    AddConstEx( id, "STATUS_VID_REMOTE_NODE_PARENT_GPA_PAGES_USED", 0x80370001, -1);
    AddConstEx( id, "STATUS_VOLMGR_INCOMPLETE_REGENERATION", 0x80380001, -1);
    AddConstEx( id, "STATUS_VOLMGR_INCOMPLETE_DISK_MIGRATION", 0x80380002, -1);
    AddConstEx( id, "STATUS_BCD_NOT_ALL_ENTRIES_IMPORTED", 0x80390001, -1);
    AddConstEx( id, "STATUS_BCD_NOT_ALL_ENTRIES_SYNCHRONIZED", 0x80390003, -1);
    AddConstEx( id, "STATUS_QUERY_STORAGE_ERROR", 0x803A0001, -1);
    AddConstEx( id, "STATUS_SECUREBOOT_NOT_ENABLED", 0x80430006, -1);
    AddConstEx( id, "STATUS_UNSUCCESSFUL", 0xC0000001, -1);
    AddConstEx( id, "STATUS_NOT_IMPLEMENTED", 0xC0000002, -1);
    AddConstEx( id, "STATUS_INVALID_INFO_CLASS", 0xC0000003, -1);
    AddConstEx( id, "STATUS_INFO_LENGTH_MISMATCH", 0xC0000004, -1);
    AddConstEx( id, "STATUS_ACCESS_VIOLATION", 0xC0000005, -1);
    AddConstEx( id, "STATUS_IN_PAGE_ERROR", 0xC0000006, -1);
    AddConstEx( id, "STATUS_PAGEFILE_QUOTA", 0xC0000007, -1);
    AddConstEx( id, "STATUS_INVALID_HANDLE", 0xC0000008, -1);
    AddConstEx( id, "STATUS_BAD_INITIAL_STACK", 0xC0000009, -1);
    AddConstEx( id, "STATUS_BAD_INITIAL_PC", 0xC000000A, -1);
    AddConstEx( id, "STATUS_INVALID_CID", 0xC000000B, -1);
    AddConstEx( id, "STATUS_TIMER_NOT_CANCELED", 0xC000000C, -1);
    AddConstEx( id, "STATUS_INVALID_PARAMETER", 0xC000000D, -1);
    AddConstEx( id, "STATUS_NO_SUCH_DEVICE", 0xC000000E, -1);
    AddConstEx( id, "STATUS_NO_SUCH_FILE", 0xC000000F, -1);
    AddConstEx( id, "STATUS_INVALID_DEVICE_REQUEST", 0xC0000010, -1);
    AddConstEx( id, "STATUS_END_OF_FILE", 0xC0000011, -1);
    AddConstEx( id, "STATUS_WRONG_VOLUME", 0xC0000012, -1);
    AddConstEx( id, "STATUS_NO_MEDIA_IN_DEVICE", 0xC0000013, -1);
    AddConstEx( id, "STATUS_UNRECOGNIZED_MEDIA", 0xC0000014, -1);
    AddConstEx( id, "STATUS_NONEXISTENT_SECTOR", 0xC0000015, -1);
    AddConstEx( id, "STATUS_MORE_PROCESSING_REQUIRED", 0xC0000016, -1);
    AddConstEx( id, "STATUS_NO_MEMORY", 0xC0000017, -1);
    AddConstEx( id, "STATUS_CONFLICTING_ADDRESSES", 0xC0000018, -1);
    AddConstEx( id, "STATUS_NOT_MAPPED_VIEW", 0xC0000019, -1);
    AddConstEx( id, "STATUS_UNABLE_TO_FREE_VM", 0xC000001A, -1);
    AddConstEx( id, "STATUS_UNABLE_TO_DELETE_SECTION", 0xC000001B, -1);
    AddConstEx( id, "STATUS_INVALID_SYSTEM_SERVICE", 0xC000001C, -1);
    AddConstEx( id, "STATUS_ILLEGAL_INSTRUCTION", 0xC000001D, -1);
    AddConstEx( id, "STATUS_INVALID_LOCK_SEQUENCE", 0xC000001E, -1);
    AddConstEx( id, "STATUS_INVALID_VIEW_SIZE", 0xC000001F, -1);
    AddConstEx( id, "STATUS_INVALID_FILE_FOR_SECTION", 0xC0000020, -1);
    AddConstEx( id, "STATUS_ALREADY_COMMITTED", 0xC0000021, -1);
    AddConstEx( id, "STATUS_ACCESS_DENIED", 0xC0000022, -1);
    AddConstEx( id, "STATUS_BUFFER_TOO_SMALL", 0xC0000023, -1);
    AddConstEx( id, "STATUS_OBJECT_TYPE_MISMATCH", 0xC0000024, -1);
    AddConstEx( id, "STATUS_NONCONTINUABLE_EXCEPTION", 0xC0000025, -1);
    AddConstEx( id, "STATUS_INVALID_DISPOSITION", 0xC0000026, -1);
    AddConstEx( id, "STATUS_UNWIND", 0xC0000027, -1);
    AddConstEx( id, "STATUS_BAD_STACK", 0xC0000028, -1);
    AddConstEx( id, "STATUS_INVALID_UNWIND_TARGET", 0xC0000029, -1);
    AddConstEx( id, "STATUS_NOT_LOCKED", 0xC000002A, -1);
    AddConstEx( id, "STATUS_PARITY_ERROR", 0xC000002B, -1);
    AddConstEx( id, "STATUS_UNABLE_TO_DECOMMIT_VM", 0xC000002C, -1);
    AddConstEx( id, "STATUS_NOT_COMMITTED", 0xC000002D, -1);
    AddConstEx( id, "STATUS_INVALID_PORT_ATTRIBUTES", 0xC000002E, -1);
    AddConstEx( id, "STATUS_PORT_MESSAGE_TOO_LONG", 0xC000002F, -1);
    AddConstEx( id, "STATUS_INVALID_PARAMETER_MIX", 0xC0000030, -1);
    AddConstEx( id, "STATUS_INVALID_QUOTA_LOWER", 0xC0000031, -1);
    AddConstEx( id, "STATUS_DISK_CORRUPT_ERROR", 0xC0000032, -1);
    AddConstEx( id, "STATUS_OBJECT_NAME_INVALID", 0xC0000033, -1);
    AddConstEx( id, "STATUS_OBJECT_NAME_NOT_FOUND", 0xC0000034, -1);
    AddConstEx( id, "STATUS_OBJECT_NAME_COLLISION", 0xC0000035, -1);
    AddConstEx( id, "STATUS_PORT_DISCONNECTED", 0xC0000037, -1);
    AddConstEx( id, "STATUS_DEVICE_ALREADY_ATTACHED", 0xC0000038, -1);
    AddConstEx( id, "STATUS_OBJECT_PATH_INVALID", 0xC0000039, -1);
    AddConstEx( id, "STATUS_OBJECT_PATH_NOT_FOUND", 0xC000003A, -1);
    AddConstEx( id, "STATUS_OBJECT_PATH_SYNTAX_BAD", 0xC000003B, -1);
    AddConstEx( id, "STATUS_DATA_OVERRUN", 0xC000003C, -1);
    AddConstEx( id, "STATUS_DATA_LATE_ERROR", 0xC000003D, -1);
    AddConstEx( id, "STATUS_DATA_ERROR", 0xC000003E, -1);
    AddConstEx( id, "STATUS_CRC_ERROR", 0xC000003F, -1);
    AddConstEx( id, "STATUS_SECTION_TOO_BIG", 0xC0000040, -1);
    AddConstEx( id, "STATUS_PORT_CONNECTION_REFUSED", 0xC0000041, -1);
    AddConstEx( id, "STATUS_INVALID_PORT_HANDLE", 0xC0000042, -1);
    AddConstEx( id, "STATUS_SHARING_VIOLATION", 0xC0000043, -1);
    AddConstEx( id, "STATUS_QUOTA_EXCEEDED", 0xC0000044, -1);
    AddConstEx( id, "STATUS_INVALID_PAGE_PROTECTION", 0xC0000045, -1);
    AddConstEx( id, "STATUS_MUTANT_NOT_OWNED", 0xC0000046, -1);
    AddConstEx( id, "STATUS_SEMAPHORE_LIMIT_EXCEEDED", 0xC0000047, -1);
    AddConstEx( id, "STATUS_PORT_ALREADY_SET", 0xC0000048, -1);
    AddConstEx( id, "STATUS_SECTION_NOT_IMAGE", 0xC0000049, -1);
    AddConstEx( id, "STATUS_SUSPEND_COUNT_EXCEEDED", 0xC000004A, -1);
    AddConstEx( id, "STATUS_THREAD_IS_TERMINATING", 0xC000004B, -1);
    AddConstEx( id, "STATUS_BAD_WORKING_SET_LIMIT", 0xC000004C, -1);
    AddConstEx( id, "STATUS_INCOMPATIBLE_FILE_MAP", 0xC000004D, -1);
    AddConstEx( id, "STATUS_SECTION_PROTECTION", 0xC000004E, -1);
    AddConstEx( id, "STATUS_EAS_NOT_SUPPORTED", 0xC000004F, -1);
    AddConstEx( id, "STATUS_EA_TOO_LARGE", 0xC0000050, -1);
    AddConstEx( id, "STATUS_NONEXISTENT_EA_ENTRY", 0xC0000051, -1);
    AddConstEx( id, "STATUS_NO_EAS_ON_FILE", 0xC0000052, -1);
    AddConstEx( id, "STATUS_EA_CORRUPT_ERROR", 0xC0000053, -1);
    AddConstEx( id, "STATUS_FILE_LOCK_CONFLICT", 0xC0000054, -1);
    AddConstEx( id, "STATUS_LOCK_NOT_GRANTED", 0xC0000055, -1);
    AddConstEx( id, "STATUS_DELETE_PENDING", 0xC0000056, -1);
    AddConstEx( id, "STATUS_CTL_FILE_NOT_SUPPORTED", 0xC0000057, -1);
    AddConstEx( id, "STATUS_UNKNOWN_REVISION", 0xC0000058, -1);
    AddConstEx( id, "STATUS_REVISION_MISMATCH", 0xC0000059, -1);
    AddConstEx( id, "STATUS_INVALID_OWNER", 0xC000005A, -1);
    AddConstEx( id, "STATUS_INVALID_PRIMARY_GROUP", 0xC000005B, -1);
    AddConstEx( id, "STATUS_NO_IMPERSONATION_TOKEN", 0xC000005C, -1);
    AddConstEx( id, "STATUS_CANT_DISABLE_MANDATORY", 0xC000005D, -1);
    AddConstEx( id, "STATUS_NO_LOGON_SERVERS", 0xC000005E, -1);
    AddConstEx( id, "STATUS_NO_SUCH_LOGON_SESSION", 0xC000005F, -1);
    AddConstEx( id, "STATUS_NO_SUCH_PRIVILEGE", 0xC0000060, -1);
    AddConstEx( id, "STATUS_PRIVILEGE_NOT_HELD", 0xC0000061, -1);
    AddConstEx( id, "STATUS_INVALID_ACCOUNT_NAME", 0xC0000062, -1);
    AddConstEx( id, "STATUS_USER_EXISTS", 0xC0000063, -1);
    AddConstEx( id, "STATUS_NO_SUCH_USER", 0xC0000064, -1);
    AddConstEx( id, "STATUS_GROUP_EXISTS", 0xC0000065, -1);
    AddConstEx( id, "STATUS_NO_SUCH_GROUP", 0xC0000066, -1);
    AddConstEx( id, "STATUS_MEMBER_IN_GROUP", 0xC0000067, -1);
    AddConstEx( id, "STATUS_MEMBER_NOT_IN_GROUP", 0xC0000068, -1);
    AddConstEx( id, "STATUS_LAST_ADMIN", 0xC0000069, -1);
    AddConstEx( id, "STATUS_WRONG_PASSWORD", 0xC000006A, -1);
    AddConstEx( id, "STATUS_ILL_FORMED_PASSWORD", 0xC000006B, -1);
    AddConstEx( id, "STATUS_PASSWORD_RESTRICTION", 0xC000006C, -1);
    AddConstEx( id, "STATUS_LOGON_FAILURE", 0xC000006D, -1);
    AddConstEx( id, "STATUS_ACCOUNT_RESTRICTION", 0xC000006E, -1);
    AddConstEx( id, "STATUS_INVALID_LOGON_HOURS", 0xC000006F, -1);
    AddConstEx( id, "STATUS_INVALID_WORKSTATION", 0xC0000070, -1);
    AddConstEx( id, "STATUS_PASSWORD_EXPIRED", 0xC0000071, -1);
    AddConstEx( id, "STATUS_ACCOUNT_DISABLED", 0xC0000072, -1);
    AddConstEx( id, "STATUS_NONE_MAPPED", 0xC0000073, -1);
    AddConstEx( id, "STATUS_TOO_MANY_LUIDS_REQUESTED", 0xC0000074, -1);
    AddConstEx( id, "STATUS_LUIDS_EXHAUSTED", 0xC0000075, -1);
    AddConstEx( id, "STATUS_INVALID_SUB_AUTHORITY", 0xC0000076, -1);
    AddConstEx( id, "STATUS_INVALID_ACL", 0xC0000077, -1);
    AddConstEx( id, "STATUS_INVALID_SID", 0xC0000078, -1);
    AddConstEx( id, "STATUS_INVALID_SECURITY_DESCR", 0xC0000079, -1);
    AddConstEx( id, "STATUS_PROCEDURE_NOT_FOUND", 0xC000007A, -1);
    AddConstEx( id, "STATUS_INVALID_IMAGE_FORMAT", 0xC000007B, -1);
    AddConstEx( id, "STATUS_NO_TOKEN", 0xC000007C, -1);
    AddConstEx( id, "STATUS_BAD_INHERITANCE_ACL", 0xC000007D, -1);
    AddConstEx( id, "STATUS_RANGE_NOT_LOCKED", 0xC000007E, -1);
    AddConstEx( id, "STATUS_DISK_FULL", 0xC000007F, -1);
    AddConstEx( id, "STATUS_SERVER_DISABLED", 0xC0000080, -1);
    AddConstEx( id, "STATUS_SERVER_NOT_DISABLED", 0xC0000081, -1);
    AddConstEx( id, "STATUS_TOO_MANY_GUIDS_REQUESTED", 0xC0000082, -1);
    AddConstEx( id, "STATUS_GUIDS_EXHAUSTED", 0xC0000083, -1);
    AddConstEx( id, "STATUS_INVALID_ID_AUTHORITY", 0xC0000084, -1);
    AddConstEx( id, "STATUS_AGENTS_EXHAUSTED", 0xC0000085, -1);
    AddConstEx( id, "STATUS_INVALID_VOLUME_LABEL", 0xC0000086, -1);
    AddConstEx( id, "STATUS_SECTION_NOT_EXTENDED", 0xC0000087, -1);
    AddConstEx( id, "STATUS_NOT_MAPPED_DATA", 0xC0000088, -1);
    AddConstEx( id, "STATUS_RESOURCE_DATA_NOT_FOUND", 0xC0000089, -1);
    AddConstEx( id, "STATUS_RESOURCE_TYPE_NOT_FOUND", 0xC000008A, -1);
    AddConstEx( id, "STATUS_RESOURCE_NAME_NOT_FOUND", 0xC000008B, -1);
    AddConstEx( id, "STATUS_ARRAY_BOUNDS_EXCEEDED", 0xC000008C, -1);
    AddConstEx( id, "STATUS_FLOAT_DENORMAL_OPERAND", 0xC000008D, -1);
    AddConstEx( id, "STATUS_FLOAT_DIVIDE_BY_ZERO", 0xC000008E, -1);
    AddConstEx( id, "STATUS_FLOAT_INEXACT_RESULT", 0xC000008F, -1);
    AddConstEx( id, "STATUS_FLOAT_INVALID_OPERATION", 0xC0000090, -1);
    AddConstEx( id, "STATUS_FLOAT_OVERFLOW", 0xC0000091, -1);
    AddConstEx( id, "STATUS_FLOAT_STACK_CHECK", 0xC0000092, -1);
    AddConstEx( id, "STATUS_FLOAT_UNDERFLOW", 0xC0000093, -1);
    AddConstEx( id, "STATUS_INTEGER_DIVIDE_BY_ZERO", 0xC0000094, -1);
    AddConstEx( id, "STATUS_INTEGER_OVERFLOW", 0xC0000095, -1);
    AddConstEx( id, "STATUS_PRIVILEGED_INSTRUCTION", 0xC0000096, -1);
    AddConstEx( id, "STATUS_TOO_MANY_PAGING_FILES", 0xC0000097, -1);
    AddConstEx( id, "STATUS_FILE_INVALID", 0xC0000098, -1);
    AddConstEx( id, "STATUS_ALLOTTED_SPACE_EXCEEDED", 0xC0000099, -1);
    AddConstEx( id, "STATUS_INSUFFICIENT_RESOURCES", 0xC000009A, -1);
    AddConstEx( id, "STATUS_DFS_EXIT_PATH_FOUND", 0xC000009B, -1);
    AddConstEx( id, "STATUS_DEVICE_DATA_ERROR", 0xC000009C, -1);
    AddConstEx( id, "STATUS_DEVICE_NOT_CONNECTED", 0xC000009D, -1);
    AddConstEx( id, "STATUS_DEVICE_POWER_FAILURE", 0xC000009E, -1);
    AddConstEx( id, "STATUS_FREE_VM_NOT_AT_BASE", 0xC000009F, -1);
    AddConstEx( id, "STATUS_MEMORY_NOT_ALLOCATED", 0xC00000A0, -1);
    AddConstEx( id, "STATUS_WORKING_SET_QUOTA", 0xC00000A1, -1);
    AddConstEx( id, "STATUS_MEDIA_WRITE_PROTECTED", 0xC00000A2, -1);
    AddConstEx( id, "STATUS_DEVICE_NOT_READY", 0xC00000A3, -1);
    AddConstEx( id, "STATUS_INVALID_GROUP_ATTRIBUTES", 0xC00000A4, -1);
    AddConstEx( id, "STATUS_BAD_IMPERSONATION_LEVEL", 0xC00000A5, -1);
    AddConstEx( id, "STATUS_CANT_OPEN_ANONYMOUS", 0xC00000A6, -1);
    AddConstEx( id, "STATUS_BAD_VALIDATION_CLASS", 0xC00000A7, -1);
    AddConstEx( id, "STATUS_BAD_TOKEN_TYPE", 0xC00000A8, -1);
    AddConstEx( id, "STATUS_BAD_MASTER_BOOT_RECORD", 0xC00000A9, -1);
    AddConstEx( id, "STATUS_INSTRUCTION_MISALIGNMENT", 0xC00000AA, -1);
    AddConstEx( id, "STATUS_INSTANCE_NOT_AVAILABLE", 0xC00000AB, -1);
    AddConstEx( id, "STATUS_PIPE_NOT_AVAILABLE", 0xC00000AC, -1);
    AddConstEx( id, "STATUS_INVALID_PIPE_STATE", 0xC00000AD, -1);
    AddConstEx( id, "STATUS_PIPE_BUSY", 0xC00000AE, -1);
    AddConstEx( id, "STATUS_ILLEGAL_FUNCTION", 0xC00000AF, -1);
    AddConstEx( id, "STATUS_PIPE_DISCONNECTED", 0xC00000B0, -1);
    AddConstEx( id, "STATUS_PIPE_CLOSING", 0xC00000B1, -1);
    AddConstEx( id, "STATUS_PIPE_CONNECTED", 0xC00000B2, -1);
    AddConstEx( id, "STATUS_PIPE_LISTENING", 0xC00000B3, -1);
    AddConstEx( id, "STATUS_INVALID_READ_MODE", 0xC00000B4, -1);
    AddConstEx( id, "STATUS_IO_TIMEOUT", 0xC00000B5, -1);
    AddConstEx( id, "STATUS_FILE_FORCED_CLOSED", 0xC00000B6, -1);
    AddConstEx( id, "STATUS_PROFILING_NOT_STARTED", 0xC00000B7, -1);
    AddConstEx( id, "STATUS_PROFILING_NOT_STOPPED", 0xC00000B8, -1);
    AddConstEx( id, "STATUS_COULD_NOT_INTERPRET", 0xC00000B9, -1);
    AddConstEx( id, "STATUS_FILE_IS_A_DIRECTORY", 0xC00000BA, -1);
    AddConstEx( id, "STATUS_NOT_SUPPORTED", 0xC00000BB, -1);
    AddConstEx( id, "STATUS_REMOTE_NOT_LISTENING", 0xC00000BC, -1);
    AddConstEx( id, "STATUS_DUPLICATE_NAME", 0xC00000BD, -1);
    AddConstEx( id, "STATUS_BAD_NETWORK_PATH", 0xC00000BE, -1);
    AddConstEx( id, "STATUS_NETWORK_BUSY", 0xC00000BF, -1);
    AddConstEx( id, "STATUS_DEVICE_DOES_NOT_EXIST", 0xC00000C0, -1);
    AddConstEx( id, "STATUS_TOO_MANY_COMMANDS", 0xC00000C1, -1);
    AddConstEx( id, "STATUS_ADAPTER_HARDWARE_ERROR", 0xC00000C2, -1);
    AddConstEx( id, "STATUS_INVALID_NETWORK_RESPONSE", 0xC00000C3, -1);
    AddConstEx( id, "STATUS_UNEXPECTED_NETWORK_ERROR", 0xC00000C4, -1);
    AddConstEx( id, "STATUS_BAD_REMOTE_ADAPTER", 0xC00000C5, -1);
    AddConstEx( id, "STATUS_PRINT_QUEUE_FULL", 0xC00000C6, -1);
    AddConstEx( id, "STATUS_NO_SPOOL_SPACE", 0xC00000C7, -1);
    AddConstEx( id, "STATUS_PRINT_CANCELLED", 0xC00000C8, -1);
    AddConstEx( id, "STATUS_NETWORK_NAME_DELETED", 0xC00000C9, -1);
    AddConstEx( id, "STATUS_NETWORK_ACCESS_DENIED", 0xC00000CA, -1);
    AddConstEx( id, "STATUS_BAD_DEVICE_TYPE", 0xC00000CB, -1);
    AddConstEx( id, "STATUS_BAD_NETWORK_NAME", 0xC00000CC, -1);
    AddConstEx( id, "STATUS_TOO_MANY_NAMES", 0xC00000CD, -1);
    AddConstEx( id, "STATUS_TOO_MANY_SESSIONS", 0xC00000CE, -1);
    AddConstEx( id, "STATUS_SHARING_PAUSED", 0xC00000CF, -1);
    AddConstEx( id, "STATUS_REQUEST_NOT_ACCEPTED", 0xC00000D0, -1);
    AddConstEx( id, "STATUS_REDIRECTOR_PAUSED", 0xC00000D1, -1);
    AddConstEx( id, "STATUS_NET_WRITE_FAULT", 0xC00000D2, -1);
    AddConstEx( id, "STATUS_PROFILING_AT_LIMIT", 0xC00000D3, -1);
    AddConstEx( id, "STATUS_NOT_SAME_DEVICE", 0xC00000D4, -1);
    AddConstEx( id, "STATUS_FILE_RENAMED", 0xC00000D5, -1);
    AddConstEx( id, "STATUS_VIRTUAL_CIRCUIT_CLOSED", 0xC00000D6, -1);
    AddConstEx( id, "STATUS_NO_SECURITY_ON_OBJECT", 0xC00000D7, -1);
    AddConstEx( id, "STATUS_CANT_WAIT", 0xC00000D8, -1);
    AddConstEx( id, "STATUS_PIPE_EMPTY", 0xC00000D9, -1);
    AddConstEx( id, "STATUS_CANT_ACCESS_DOMAIN_INFO", 0xC00000DA, -1);
    AddConstEx( id, "STATUS_CANT_TERMINATE_SELF", 0xC00000DB, -1);
    AddConstEx( id, "STATUS_INVALID_SERVER_STATE", 0xC00000DC, -1);
    AddConstEx( id, "STATUS_INVALID_DOMAIN_STATE", 0xC00000DD, -1);
    AddConstEx( id, "STATUS_INVALID_DOMAIN_ROLE", 0xC00000DE, -1);
    AddConstEx( id, "STATUS_NO_SUCH_DOMAIN", 0xC00000DF, -1);
    AddConstEx( id, "STATUS_DOMAIN_EXISTS", 0xC00000E0, -1);
    AddConstEx( id, "STATUS_DOMAIN_LIMIT_EXCEEDED", 0xC00000E1, -1);
    AddConstEx( id, "STATUS_OPLOCK_NOT_GRANTED", 0xC00000E2, -1);
    AddConstEx( id, "STATUS_INVALID_OPLOCK_PROTOCOL", 0xC00000E3, -1);
    AddConstEx( id, "STATUS_INTERNAL_DB_CORRUPTION", 0xC00000E4, -1);
    AddConstEx( id, "STATUS_INTERNAL_ERROR", 0xC00000E5, -1);
    AddConstEx( id, "STATUS_GENERIC_NOT_MAPPED", 0xC00000E6, -1);
    AddConstEx( id, "STATUS_BAD_DESCRIPTOR_FORMAT", 0xC00000E7, -1);
    AddConstEx( id, "STATUS_INVALID_USER_BUFFER", 0xC00000E8, -1);
    AddConstEx( id, "STATUS_UNEXPECTED_IO_ERROR", 0xC00000E9, -1);
    AddConstEx( id, "STATUS_UNEXPECTED_MM_CREATE_ERR", 0xC00000EA, -1);
    AddConstEx( id, "STATUS_UNEXPECTED_MM_MAP_ERROR", 0xC00000EB, -1);
    AddConstEx( id, "STATUS_UNEXPECTED_MM_EXTEND_ERR", 0xC00000EC, -1);
    AddConstEx( id, "STATUS_NOT_LOGON_PROCESS", 0xC00000ED, -1);
    AddConstEx( id, "STATUS_LOGON_SESSION_EXISTS", 0xC00000EE, -1);
    AddConstEx( id, "STATUS_INVALID_PARAMETER_1", 0xC00000EF, -1);
    AddConstEx( id, "STATUS_INVALID_PARAMETER_2", 0xC00000F0, -1);
    AddConstEx( id, "STATUS_INVALID_PARAMETER_3", 0xC00000F1, -1);
    AddConstEx( id, "STATUS_INVALID_PARAMETER_4", 0xC00000F2, -1);
    AddConstEx( id, "STATUS_INVALID_PARAMETER_5", 0xC00000F3, -1);
    AddConstEx( id, "STATUS_INVALID_PARAMETER_6", 0xC00000F4, -1);
    AddConstEx( id, "STATUS_INVALID_PARAMETER_7", 0xC00000F5, -1);
    AddConstEx( id, "STATUS_INVALID_PARAMETER_8", 0xC00000F6, -1);
    AddConstEx( id, "STATUS_INVALID_PARAMETER_9", 0xC00000F7, -1);
    AddConstEx( id, "STATUS_INVALID_PARAMETER_10", 0xC00000F8, -1);
    AddConstEx( id, "STATUS_INVALID_PARAMETER_11", 0xC00000F9, -1);
    AddConstEx( id, "STATUS_INVALID_PARAMETER_12", 0xC00000FA, -1);
    AddConstEx( id, "STATUS_REDIRECTOR_NOT_STARTED", 0xC00000FB, -1);
    AddConstEx( id, "STATUS_REDIRECTOR_STARTED", 0xC00000FC, -1);
    AddConstEx( id, "STATUS_STACK_OVERFLOW", 0xC00000FD, -1);
    AddConstEx( id, "STATUS_NO_SUCH_PACKAGE", 0xC00000FE, -1);
    AddConstEx( id, "STATUS_BAD_FUNCTION_TABLE", 0xC00000FF, -1);
    AddConstEx( id, "STATUS_VARIABLE_NOT_FOUND", 0xC0000100, -1);
    AddConstEx( id, "STATUS_DIRECTORY_NOT_EMPTY", 0xC0000101, -1);
    AddConstEx( id, "STATUS_FILE_CORRUPT_ERROR", 0xC0000102, -1);
    AddConstEx( id, "STATUS_NOT_A_DIRECTORY", 0xC0000103, -1);
    AddConstEx( id, "STATUS_BAD_LOGON_SESSION_STATE", 0xC0000104, -1);
    AddConstEx( id, "STATUS_LOGON_SESSION_COLLISION", 0xC0000105, -1);
    AddConstEx( id, "STATUS_NAME_TOO_LONG", 0xC0000106, -1);
    AddConstEx( id, "STATUS_FILES_OPEN", 0xC0000107, -1);
    AddConstEx( id, "STATUS_CONNECTION_IN_USE", 0xC0000108, -1);
    AddConstEx( id, "STATUS_MESSAGE_NOT_FOUND", 0xC0000109, -1);
    AddConstEx( id, "STATUS_PROCESS_IS_TERMINATING", 0xC000010A, -1);
    AddConstEx( id, "STATUS_INVALID_LOGON_TYPE", 0xC000010B, -1);
    AddConstEx( id, "STATUS_NO_GUID_TRANSLATION", 0xC000010C, -1);
    AddConstEx( id, "STATUS_CANNOT_IMPERSONATE", 0xC000010D, -1);
    AddConstEx( id, "STATUS_IMAGE_ALREADY_LOADED", 0xC000010E, -1);
    AddConstEx( id, "STATUS_ABIOS_NOT_PRESENT", 0xC000010F, -1);
    AddConstEx( id, "STATUS_ABIOS_LID_NOT_EXIST", 0xC0000110, -1);
    AddConstEx( id, "STATUS_ABIOS_LID_ALREADY_OWNED", 0xC0000111, -1);
    AddConstEx( id, "STATUS_ABIOS_NOT_LID_OWNER", 0xC0000112, -1);
    AddConstEx( id, "STATUS_ABIOS_INVALID_COMMAND", 0xC0000113, -1);
    AddConstEx( id, "STATUS_ABIOS_INVALID_LID", 0xC0000114, -1);
    AddConstEx( id, "STATUS_ABIOS_SELECTOR_NOT_AVAILABLE", 0xC0000115, -1);
    AddConstEx( id, "STATUS_ABIOS_INVALID_SELECTOR", 0xC0000116, -1);
    AddConstEx( id, "STATUS_NO_LDT", 0xC0000117, -1);
    AddConstEx( id, "STATUS_INVALID_LDT_SIZE", 0xC0000118, -1);
    AddConstEx( id, "STATUS_INVALID_LDT_OFFSET", 0xC0000119, -1);
    AddConstEx( id, "STATUS_INVALID_LDT_DESCRIPTOR", 0xC000011A, -1);
    AddConstEx( id, "STATUS_INVALID_IMAGE_NE_FORMAT", 0xC000011B, -1);
    AddConstEx( id, "STATUS_RXACT_INVALID_STATE", 0xC000011C, -1);
    AddConstEx( id, "STATUS_RXACT_COMMIT_FAILURE", 0xC000011D, -1);
    AddConstEx( id, "STATUS_MAPPED_FILE_SIZE_ZERO", 0xC000011E, -1);
    AddConstEx( id, "STATUS_TOO_MANY_OPENED_FILES", 0xC000011F, -1);
    AddConstEx( id, "STATUS_CANCELLED", 0xC0000120, -1);
    AddConstEx( id, "STATUS_CANNOT_DELETE", 0xC0000121, -1);
    AddConstEx( id, "STATUS_INVALID_COMPUTER_NAME", 0xC0000122, -1);
    AddConstEx( id, "STATUS_FILE_DELETED", 0xC0000123, -1);
    AddConstEx( id, "STATUS_SPECIAL_ACCOUNT", 0xC0000124, -1);
    AddConstEx( id, "STATUS_SPECIAL_GROUP", 0xC0000125, -1);
    AddConstEx( id, "STATUS_SPECIAL_USER", 0xC0000126, -1);
    AddConstEx( id, "STATUS_MEMBERS_PRIMARY_GROUP", 0xC0000127, -1);
    AddConstEx( id, "STATUS_FILE_CLOSED", 0xC0000128, -1);
    AddConstEx( id, "STATUS_TOO_MANY_THREADS", 0xC0000129, -1);
    AddConstEx( id, "STATUS_THREAD_NOT_IN_PROCESS", 0xC000012A, -1);
    AddConstEx( id, "STATUS_TOKEN_ALREADY_IN_USE", 0xC000012B, -1);
    AddConstEx( id, "STATUS_PAGEFILE_QUOTA_EXCEEDED", 0xC000012C, -1);
    AddConstEx( id, "STATUS_COMMITMENT_LIMIT", 0xC000012D, -1);
    AddConstEx( id, "STATUS_INVALID_IMAGE_LE_FORMAT", 0xC000012E, -1);
    AddConstEx( id, "STATUS_INVALID_IMAGE_NOT_MZ", 0xC000012F, -1);
    AddConstEx( id, "STATUS_INVALID_IMAGE_PROTECT", 0xC0000130, -1);
    AddConstEx( id, "STATUS_INVALID_IMAGE_WIN_16", 0xC0000131, -1);
    AddConstEx( id, "STATUS_LOGON_SERVER_CONFLICT", 0xC0000132, -1);
    AddConstEx( id, "STATUS_TIME_DIFFERENCE_AT_DC", 0xC0000133, -1);
    AddConstEx( id, "STATUS_SYNCHRONIZATION_REQUIRED", 0xC0000134, -1);
    AddConstEx( id, "STATUS_DLL_NOT_FOUND", 0xC0000135, -1);
    AddConstEx( id, "STATUS_OPEN_FAILED", 0xC0000136, -1);
    AddConstEx( id, "STATUS_IO_PRIVILEGE_FAILED", 0xC0000137, -1);
    AddConstEx( id, "STATUS_ORDINAL_NOT_FOUND", 0xC0000138, -1);
    AddConstEx( id, "STATUS_ENTRYPOINT_NOT_FOUND", 0xC0000139, -1);
    AddConstEx( id, "STATUS_CONTROL_C_EXIT", 0xC000013A, -1);
    AddConstEx( id, "STATUS_LOCAL_DISCONNECT", 0xC000013B, -1);
    AddConstEx( id, "STATUS_REMOTE_DISCONNECT", 0xC000013C, -1);
    AddConstEx( id, "STATUS_REMOTE_RESOURCES", 0xC000013D, -1);
    AddConstEx( id, "STATUS_LINK_FAILED", 0xC000013E, -1);
    AddConstEx( id, "STATUS_LINK_TIMEOUT", 0xC000013F, -1);
    AddConstEx( id, "STATUS_INVALID_CONNECTION", 0xC0000140, -1);
    AddConstEx( id, "STATUS_INVALID_ADDRESS", 0xC0000141, -1);
    AddConstEx( id, "STATUS_DLL_INIT_FAILED", 0xC0000142, -1);
    AddConstEx( id, "STATUS_MISSING_SYSTEMFILE", 0xC0000143, -1);
    AddConstEx( id, "STATUS_UNHANDLED_EXCEPTION", 0xC0000144, -1);
    AddConstEx( id, "STATUS_APP_INIT_FAILURE", 0xC0000145, -1);
    AddConstEx( id, "STATUS_PAGEFILE_CREATE_FAILED", 0xC0000146, -1);
    AddConstEx( id, "STATUS_NO_PAGEFILE", 0xC0000147, -1);
    AddConstEx( id, "STATUS_INVALID_LEVEL", 0xC0000148, -1);
    AddConstEx( id, "STATUS_WRONG_PASSWORD_CORE", 0xC0000149, -1);
    AddConstEx( id, "STATUS_ILLEGAL_FLOAT_CONTEXT", 0xC000014A, -1);
    AddConstEx( id, "STATUS_PIPE_BROKEN", 0xC000014B, -1);
    AddConstEx( id, "STATUS_REGISTRY_CORRUPT", 0xC000014C, -1);
    AddConstEx( id, "STATUS_REGISTRY_IO_FAILED", 0xC000014D, -1);
    AddConstEx( id, "STATUS_NO_EVENT_PAIR", 0xC000014E, -1);
    AddConstEx( id, "STATUS_UNRECOGNIZED_VOLUME", 0xC000014F, -1);
    AddConstEx( id, "STATUS_SERIAL_NO_DEVICE_INITED", 0xC0000150, -1);
    AddConstEx( id, "STATUS_NO_SUCH_ALIAS", 0xC0000151, -1);
    AddConstEx( id, "STATUS_MEMBER_NOT_IN_ALIAS", 0xC0000152, -1);
    AddConstEx( id, "STATUS_MEMBER_IN_ALIAS", 0xC0000153, -1);
    AddConstEx( id, "STATUS_ALIAS_EXISTS", 0xC0000154, -1);
    AddConstEx( id, "STATUS_LOGON_NOT_GRANTED", 0xC0000155, -1);
    AddConstEx( id, "STATUS_TOO_MANY_SECRETS", 0xC0000156, -1);
    AddConstEx( id, "STATUS_SECRET_TOO_LONG", 0xC0000157, -1);
    AddConstEx( id, "STATUS_INTERNAL_DB_ERROR", 0xC0000158, -1);
    AddConstEx( id, "STATUS_FULLSCREEN_MODE", 0xC0000159, -1);
    AddConstEx( id, "STATUS_TOO_MANY_CONTEXT_IDS", 0xC000015A, -1);
    AddConstEx( id, "STATUS_LOGON_TYPE_NOT_GRANTED", 0xC000015B, -1);
    AddConstEx( id, "STATUS_NOT_REGISTRY_FILE", 0xC000015C, -1);
    AddConstEx( id, "STATUS_NT_CROSS_ENCRYPTION_REQUIRED", 0xC000015D, -1);
    AddConstEx( id, "STATUS_DOMAIN_CTRLR_CONFIG_ERROR", 0xC000015E, -1);
    AddConstEx( id, "STATUS_FT_MISSING_MEMBER", 0xC000015F, -1);
    AddConstEx( id, "STATUS_ILL_FORMED_SERVICE_ENTRY", 0xC0000160, -1);
    AddConstEx( id, "STATUS_ILLEGAL_CHARACTER", 0xC0000161, -1);
    AddConstEx( id, "STATUS_UNMAPPABLE_CHARACTER", 0xC0000162, -1);
    AddConstEx( id, "STATUS_UNDEFINED_CHARACTER", 0xC0000163, -1);
    AddConstEx( id, "STATUS_FLOPPY_VOLUME", 0xC0000164, -1);
    AddConstEx( id, "STATUS_FLOPPY_ID_MARK_NOT_FOUND", 0xC0000165, -1);
    AddConstEx( id, "STATUS_FLOPPY_WRONG_CYLINDER", 0xC0000166, -1);
    AddConstEx( id, "STATUS_FLOPPY_UNKNOWN_ERROR", 0xC0000167, -1);
    AddConstEx( id, "STATUS_FLOPPY_BAD_REGISTERS", 0xC0000168, -1);
    AddConstEx( id, "STATUS_DISK_RECALIBRATE_FAILED", 0xC0000169, -1);
    AddConstEx( id, "STATUS_DISK_OPERATION_FAILED", 0xC000016A, -1);
    AddConstEx( id, "STATUS_DISK_RESET_FAILED", 0xC000016B, -1);
    AddConstEx( id, "STATUS_SHARED_IRQ_BUSY", 0xC000016C, -1);
    AddConstEx( id, "STATUS_FT_ORPHANING", 0xC000016D, -1);
    AddConstEx( id, "STATUS_BIOS_FAILED_TO_CONNECT_INTERRUPT", 0xC000016E, -1);
    AddConstEx( id, "STATUS_PARTITION_FAILURE", 0xC0000172, -1);
    AddConstEx( id, "STATUS_INVALID_BLOCK_LENGTH", 0xC0000173, -1);
    AddConstEx( id, "STATUS_DEVICE_NOT_PARTITIONED", 0xC0000174, -1);
    AddConstEx( id, "STATUS_UNABLE_TO_LOCK_MEDIA", 0xC0000175, -1);
    AddConstEx( id, "STATUS_UNABLE_TO_UNLOAD_MEDIA", 0xC0000176, -1);
    AddConstEx( id, "STATUS_EOM_OVERFLOW", 0xC0000177, -1);
    AddConstEx( id, "STATUS_NO_MEDIA", 0xC0000178, -1);
    AddConstEx( id, "STATUS_NO_SUCH_MEMBER", 0xC000017A, -1);
    AddConstEx( id, "STATUS_INVALID_MEMBER", 0xC000017B, -1);
    AddConstEx( id, "STATUS_KEY_DELETED", 0xC000017C, -1);
    AddConstEx( id, "STATUS_NO_LOG_SPACE", 0xC000017D, -1);
    AddConstEx( id, "STATUS_TOO_MANY_SIDS", 0xC000017E, -1);
    AddConstEx( id, "STATUS_LM_CROSS_ENCRYPTION_REQUIRED", 0xC000017F, -1);
    AddConstEx( id, "STATUS_KEY_HAS_CHILDREN", 0xC0000180, -1);
    AddConstEx( id, "STATUS_CHILD_MUST_BE_VOLATILE", 0xC0000181, -1);
    AddConstEx( id, "STATUS_DEVICE_CONFIGURATION_ERROR", 0xC0000182, -1);
    AddConstEx( id, "STATUS_DRIVER_INTERNAL_ERROR", 0xC0000183, -1);
    AddConstEx( id, "STATUS_INVALID_DEVICE_STATE", 0xC0000184, -1);
    AddConstEx( id, "STATUS_IO_DEVICE_ERROR", 0xC0000185, -1);
    AddConstEx( id, "STATUS_DEVICE_PROTOCOL_ERROR", 0xC0000186, -1);
    AddConstEx( id, "STATUS_BACKUP_CONTROLLER", 0xC0000187, -1);
    AddConstEx( id, "STATUS_LOG_FILE_FULL", 0xC0000188, -1);
    AddConstEx( id, "STATUS_TOO_LATE", 0xC0000189, -1);
    AddConstEx( id, "STATUS_NO_TRUST_LSA_SECRET", 0xC000018A, -1);
    AddConstEx( id, "STATUS_NO_TRUST_SAM_ACCOUNT", 0xC000018B, -1);
    AddConstEx( id, "STATUS_TRUSTED_DOMAIN_FAILURE", 0xC000018C, -1);
    AddConstEx( id, "STATUS_TRUSTED_RELATIONSHIP_FAILURE", 0xC000018D, -1);
    AddConstEx( id, "STATUS_EVENTLOG_FILE_CORRUPT", 0xC000018E, -1);
    AddConstEx( id, "STATUS_EVENTLOG_CANT_START", 0xC000018F, -1);
    AddConstEx( id, "STATUS_TRUST_FAILURE", 0xC0000190, -1);
    AddConstEx( id, "STATUS_MUTANT_LIMIT_EXCEEDED", 0xC0000191, -1);
    AddConstEx( id, "STATUS_NETLOGON_NOT_STARTED", 0xC0000192, -1);
    AddConstEx( id, "STATUS_ACCOUNT_EXPIRED", 0xC0000193, -1);
    AddConstEx( id, "STATUS_POSSIBLE_DEADLOCK", 0xC0000194, -1);
    AddConstEx( id, "STATUS_NETWORK_CREDENTIAL_CONFLICT", 0xC0000195, -1);
    AddConstEx( id, "STATUS_REMOTE_SESSION_LIMIT", 0xC0000196, -1);
    AddConstEx( id, "STATUS_EVENTLOG_FILE_CHANGED", 0xC0000197, -1);
    AddConstEx( id, "STATUS_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT", 0xC0000198, -1);
    AddConstEx( id, "STATUS_NOLOGON_WORKSTATION_TRUST_ACCOUNT", 0xC0000199, -1);
    AddConstEx( id, "STATUS_NOLOGON_SERVER_TRUST_ACCOUNT", 0xC000019A, -1);
    AddConstEx( id, "STATUS_DOMAIN_TRUST_INCONSISTENT", 0xC000019B, -1);
    AddConstEx( id, "STATUS_FS_DRIVER_REQUIRED", 0xC000019C, -1);
    AddConstEx( id, "STATUS_IMAGE_ALREADY_LOADED_AS_DLL", 0xC000019D, -1);
    AddConstEx( id, "STATUS_INCOMPATIBLE_WITH_GLOBAL_SHORT_NAME_REGISTRY_SETTING", 0xC000019E, -1);
    AddConstEx( id, "STATUS_SHORT_NAMES_NOT_ENABLED_ON_VOLUME", 0xC000019F, -1);
    AddConstEx( id, "STATUS_SECURITY_STREAM_IS_INCONSISTENT", 0xC00001A0, -1);
    AddConstEx( id, "STATUS_INVALID_LOCK_RANGE", 0xC00001A1, -1);
    AddConstEx( id, "STATUS_INVALID_ACE_CONDITION", 0xC00001A2, -1);
    AddConstEx( id, "STATUS_IMAGE_SUBSYSTEM_NOT_PRESENT", 0xC00001A3, -1);
    AddConstEx( id, "STATUS_NOTIFICATION_GUID_ALREADY_DEFINED", 0xC00001A4, -1);
    AddConstEx( id, "STATUS_INVALID_EXCEPTION_HANDLER", 0xC00001A5, -1);
    AddConstEx( id, "STATUS_DUPLICATE_PRIVILEGES", 0xC00001A6, -1);
    AddConstEx( id, "STATUS_NOT_ALLOWED_ON_SYSTEM_FILE", 0xC00001A7, -1);
    AddConstEx( id, "STATUS_REPAIR_NEEDED", 0xC00001A8, -1);
    AddConstEx( id, "STATUS_QUOTA_NOT_ENABLED", 0xC00001A9, -1);
    AddConstEx( id, "STATUS_NO_APPLICATION_PACKAGE", 0xC00001AA, -1);
    AddConstEx( id, "STATUS_NETWORK_OPEN_RESTRICTION", 0xC0000201, -1);
    AddConstEx( id, "STATUS_NO_USER_SESSION_KEY", 0xC0000202, -1);
    AddConstEx( id, "STATUS_USER_SESSION_DELETED", 0xC0000203, -1);
    AddConstEx( id, "STATUS_RESOURCE_LANG_NOT_FOUND", 0xC0000204, -1);
    AddConstEx( id, "STATUS_INSUFF_SERVER_RESOURCES", 0xC0000205, -1);
    AddConstEx( id, "STATUS_INVALID_BUFFER_SIZE", 0xC0000206, -1);
    AddConstEx( id, "STATUS_INVALID_ADDRESS_COMPONENT", 0xC0000207, -1);
    AddConstEx( id, "STATUS_INVALID_ADDRESS_WILDCARD", 0xC0000208, -1);
    AddConstEx( id, "STATUS_TOO_MANY_ADDRESSES", 0xC0000209, -1);
    AddConstEx( id, "STATUS_ADDRESS_ALREADY_EXISTS", 0xC000020A, -1);
    AddConstEx( id, "STATUS_ADDRESS_CLOSED", 0xC000020B, -1);
    AddConstEx( id, "STATUS_CONNECTION_DISCONNECTED", 0xC000020C, -1);
    AddConstEx( id, "STATUS_CONNECTION_RESET", 0xC000020D, -1);
    AddConstEx( id, "STATUS_TOO_MANY_NODES", 0xC000020E, -1);
    AddConstEx( id, "STATUS_TRANSACTION_ABORTED", 0xC000020F, -1);
    AddConstEx( id, "STATUS_TRANSACTION_TIMED_OUT", 0xC0000210, -1);
    AddConstEx( id, "STATUS_TRANSACTION_NO_RELEASE", 0xC0000211, -1);
    AddConstEx( id, "STATUS_TRANSACTION_NO_MATCH", 0xC0000212, -1);
    AddConstEx( id, "STATUS_TRANSACTION_RESPONDED", 0xC0000213, -1);
    AddConstEx( id, "STATUS_TRANSACTION_INVALID_ID", 0xC0000214, -1);
    AddConstEx( id, "STATUS_TRANSACTION_INVALID_TYPE", 0xC0000215, -1);
    AddConstEx( id, "STATUS_NOT_SERVER_SESSION", 0xC0000216, -1);
    AddConstEx( id, "STATUS_NOT_CLIENT_SESSION", 0xC0000217, -1);
    AddConstEx( id, "STATUS_CANNOT_LOAD_REGISTRY_FILE", 0xC0000218, -1);
    AddConstEx( id, "STATUS_DEBUG_ATTACH_FAILED", 0xC0000219, -1);
    AddConstEx( id, "STATUS_SYSTEM_PROCESS_TERMINATED", 0xC000021A, -1);
    AddConstEx( id, "STATUS_DATA_NOT_ACCEPTED", 0xC000021B, -1);
    AddConstEx( id, "STATUS_NO_BROWSER_SERVERS_FOUND", 0xC000021C, -1);
    AddConstEx( id, "STATUS_VDM_HARD_ERROR", 0xC000021D, -1);
    AddConstEx( id, "STATUS_DRIVER_CANCEL_TIMEOUT", 0xC000021E, -1);
    AddConstEx( id, "STATUS_REPLY_MESSAGE_MISMATCH", 0xC000021F, -1);
    AddConstEx( id, "STATUS_MAPPED_ALIGNMENT", 0xC0000220, -1);
    AddConstEx( id, "STATUS_IMAGE_CHECKSUM_MISMATCH", 0xC0000221, -1);
    AddConstEx( id, "STATUS_LOST_WRITEBEHIND_DATA", 0xC0000222, -1);
    AddConstEx( id, "STATUS_CLIENT_SERVER_PARAMETERS_INVALID", 0xC0000223, -1);
    AddConstEx( id, "STATUS_PASSWORD_MUST_CHANGE", 0xC0000224, -1);
    AddConstEx( id, "STATUS_NOT_FOUND", 0xC0000225, -1);
    AddConstEx( id, "STATUS_NOT_TINY_STREAM", 0xC0000226, -1);
    AddConstEx( id, "STATUS_RECOVERY_FAILURE", 0xC0000227, -1);
    AddConstEx( id, "STATUS_STACK_OVERFLOW_READ", 0xC0000228, -1);
    AddConstEx( id, "STATUS_FAIL_CHECK", 0xC0000229, -1);
    AddConstEx( id, "STATUS_DUPLICATE_OBJECTID", 0xC000022A, -1);
    AddConstEx( id, "STATUS_OBJECTID_EXISTS", 0xC000022B, -1);
    AddConstEx( id, "STATUS_CONVERT_TO_LARGE", 0xC000022C, -1);
    AddConstEx( id, "STATUS_RETRY", 0xC000022D, -1);
    AddConstEx( id, "STATUS_FOUND_OUT_OF_SCOPE", 0xC000022E, -1);
    AddConstEx( id, "STATUS_ALLOCATE_BUCKET", 0xC000022F, -1);
    AddConstEx( id, "STATUS_PROPSET_NOT_FOUND", 0xC0000230, -1);
    AddConstEx( id, "STATUS_MARSHALL_OVERFLOW", 0xC0000231, -1);
    AddConstEx( id, "STATUS_INVALID_VARIANT", 0xC0000232, -1);
    AddConstEx( id, "STATUS_DOMAIN_CONTROLLER_NOT_FOUND", 0xC0000233, -1);
    AddConstEx( id, "STATUS_ACCOUNT_LOCKED_OUT", 0xC0000234, -1);
    AddConstEx( id, "STATUS_HANDLE_NOT_CLOSABLE", 0xC0000235, -1);
    AddConstEx( id, "STATUS_CONNECTION_REFUSED", 0xC0000236, -1);
    AddConstEx( id, "STATUS_GRACEFUL_DISCONNECT", 0xC0000237, -1);
    AddConstEx( id, "STATUS_ADDRESS_ALREADY_ASSOCIATED", 0xC0000238, -1);
    AddConstEx( id, "STATUS_ADDRESS_NOT_ASSOCIATED", 0xC0000239, -1);
    AddConstEx( id, "STATUS_CONNECTION_INVALID", 0xC000023A, -1);
    AddConstEx( id, "STATUS_CONNECTION_ACTIVE", 0xC000023B, -1);
    AddConstEx( id, "STATUS_NETWORK_UNREACHABLE", 0xC000023C, -1);
    AddConstEx( id, "STATUS_HOST_UNREACHABLE", 0xC000023D, -1);
    AddConstEx( id, "STATUS_PROTOCOL_UNREACHABLE", 0xC000023E, -1);
    AddConstEx( id, "STATUS_PORT_UNREACHABLE", 0xC000023F, -1);
    AddConstEx( id, "STATUS_REQUEST_ABORTED", 0xC0000240, -1);
    AddConstEx( id, "STATUS_CONNECTION_ABORTED", 0xC0000241, -1);
    AddConstEx( id, "STATUS_BAD_COMPRESSION_BUFFER", 0xC0000242, -1);
    AddConstEx( id, "STATUS_USER_MAPPED_FILE", 0xC0000243, -1);
    AddConstEx( id, "STATUS_AUDIT_FAILED", 0xC0000244, -1);
    AddConstEx( id, "STATUS_TIMER_RESOLUTION_NOT_SET", 0xC0000245, -1);
    AddConstEx( id, "STATUS_CONNECTION_COUNT_LIMIT", 0xC0000246, -1);
    AddConstEx( id, "STATUS_LOGIN_TIME_RESTRICTION", 0xC0000247, -1);
    AddConstEx( id, "STATUS_LOGIN_WKSTA_RESTRICTION", 0xC0000248, -1);
    AddConstEx( id, "STATUS_IMAGE_MP_UP_MISMATCH", 0xC0000249, -1);
    AddConstEx( id, "STATUS_INSUFFICIENT_LOGON_INFO", 0xC0000250, -1);
    AddConstEx( id, "STATUS_BAD_DLL_ENTRYPOINT", 0xC0000251, -1);
    AddConstEx( id, "STATUS_BAD_SERVICE_ENTRYPOINT", 0xC0000252, -1);
    AddConstEx( id, "STATUS_LPC_REPLY_LOST", 0xC0000253, -1);
    AddConstEx( id, "STATUS_IP_ADDRESS_CONFLICT1", 0xC0000254, -1);
    AddConstEx( id, "STATUS_IP_ADDRESS_CONFLICT2", 0xC0000255, -1);
    AddConstEx( id, "STATUS_REGISTRY_QUOTA_LIMIT", 0xC0000256, -1);
    AddConstEx( id, "STATUS_PATH_NOT_COVERED", 0xC0000257, -1);
    AddConstEx( id, "STATUS_NO_CALLBACK_ACTIVE", 0xC0000258, -1);
    AddConstEx( id, "STATUS_LICENSE_QUOTA_EXCEEDED", 0xC0000259, -1);
    AddConstEx( id, "STATUS_PWD_TOO_SHORT", 0xC000025A, -1);
    AddConstEx( id, "STATUS_PWD_TOO_RECENT", 0xC000025B, -1);
    AddConstEx( id, "STATUS_PWD_HISTORY_CONFLICT", 0xC000025C, -1);
    AddConstEx( id, "STATUS_PLUGPLAY_NO_DEVICE", 0xC000025E, -1);
    AddConstEx( id, "STATUS_UNSUPPORTED_COMPRESSION", 0xC000025F, -1);
    AddConstEx( id, "STATUS_INVALID_HW_PROFILE", 0xC0000260, -1);
    AddConstEx( id, "STATUS_INVALID_PLUGPLAY_DEVICE_PATH", 0xC0000261, -1);
    AddConstEx( id, "STATUS_DRIVER_ORDINAL_NOT_FOUND", 0xC0000262, -1);
    AddConstEx( id, "STATUS_DRIVER_ENTRYPOINT_NOT_FOUND", 0xC0000263, -1);
    AddConstEx( id, "STATUS_RESOURCE_NOT_OWNED", 0xC0000264, -1);
    AddConstEx( id, "STATUS_TOO_MANY_LINKS", 0xC0000265, -1);
    AddConstEx( id, "STATUS_QUOTA_LIST_INCONSISTENT", 0xC0000266, -1);
    AddConstEx( id, "STATUS_FILE_IS_OFFLINE", 0xC0000267, -1);
    AddConstEx( id, "STATUS_EVALUATION_EXPIRATION", 0xC0000268, -1);
    AddConstEx( id, "STATUS_ILLEGAL_DLL_RELOCATION", 0xC0000269, -1);
    AddConstEx( id, "STATUS_LICENSE_VIOLATION", 0xC000026A, -1);
    AddConstEx( id, "STATUS_DLL_INIT_FAILED_LOGOFF", 0xC000026B, -1);
    AddConstEx( id, "STATUS_DRIVER_UNABLE_TO_LOAD", 0xC000026C, -1);
    AddConstEx( id, "STATUS_DFS_UNAVAILABLE", 0xC000026D, -1);
    AddConstEx( id, "STATUS_VOLUME_DISMOUNTED", 0xC000026E, -1);
    AddConstEx( id, "STATUS_WX86_INTERNAL_ERROR", 0xC000026F, -1);
    AddConstEx( id, "STATUS_WX86_FLOAT_STACK_CHECK", 0xC0000270, -1);
    AddConstEx( id, "STATUS_VALIDATE_CONTINUE", 0xC0000271, -1);
    AddConstEx( id, "STATUS_NO_MATCH", 0xC0000272, -1);
    AddConstEx( id, "STATUS_NO_MORE_MATCHES", 0xC0000273, -1);
    AddConstEx( id, "STATUS_NOT_A_REPARSE_POINT", 0xC0000275, -1);
    AddConstEx( id, "STATUS_IO_REPARSE_TAG_INVALID", 0xC0000276, -1);
    AddConstEx( id, "STATUS_IO_REPARSE_TAG_MISMATCH", 0xC0000277, -1);
    AddConstEx( id, "STATUS_IO_REPARSE_DATA_INVALID", 0xC0000278, -1);
    AddConstEx( id, "STATUS_IO_REPARSE_TAG_NOT_HANDLED", 0xC0000279, -1);
    AddConstEx( id, "STATUS_PWD_TOO_LONG", 0xC000027A, -1);
    AddConstEx( id, "STATUS_STOWED_EXCEPTION", 0xC000027B, -1);
    AddConstEx( id, "STATUS_REPARSE_POINT_NOT_RESOLVED", 0xC0000280, -1);
    AddConstEx( id, "STATUS_DIRECTORY_IS_A_REPARSE_POINT", 0xC0000281, -1);
    AddConstEx( id, "STATUS_RANGE_LIST_CONFLICT", 0xC0000282, -1);
    AddConstEx( id, "STATUS_SOURCE_ELEMENT_EMPTY", 0xC0000283, -1);
    AddConstEx( id, "STATUS_DESTINATION_ELEMENT_FULL", 0xC0000284, -1);
    AddConstEx( id, "STATUS_ILLEGAL_ELEMENT_ADDRESS", 0xC0000285, -1);
    AddConstEx( id, "STATUS_MAGAZINE_NOT_PRESENT", 0xC0000286, -1);
    AddConstEx( id, "STATUS_REINITIALIZATION_NEEDED", 0xC0000287, -1);
    AddConstEx( id, "STATUS_ENCRYPTION_FAILED", 0xC000028A, -1);
    AddConstEx( id, "STATUS_DECRYPTION_FAILED", 0xC000028B, -1);
    AddConstEx( id, "STATUS_RANGE_NOT_FOUND", 0xC000028C, -1);
    AddConstEx( id, "STATUS_NO_RECOVERY_POLICY", 0xC000028D, -1);
    AddConstEx( id, "STATUS_NO_EFS", 0xC000028E, -1);
    AddConstEx( id, "STATUS_WRONG_EFS", 0xC000028F, -1);
    AddConstEx( id, "STATUS_NO_USER_KEYS", 0xC0000290, -1);
    AddConstEx( id, "STATUS_FILE_NOT_ENCRYPTED", 0xC0000291, -1);
    AddConstEx( id, "STATUS_NOT_EXPORT_FORMAT", 0xC0000292, -1);
    AddConstEx( id, "STATUS_FILE_ENCRYPTED", 0xC0000293, -1);
    AddConstEx( id, "STATUS_WMI_GUID_NOT_FOUND", 0xC0000295, -1);
    AddConstEx( id, "STATUS_WMI_INSTANCE_NOT_FOUND", 0xC0000296, -1);
    AddConstEx( id, "STATUS_WMI_ITEMID_NOT_FOUND", 0xC0000297, -1);
    AddConstEx( id, "STATUS_WMI_TRY_AGAIN", 0xC0000298, -1);
    AddConstEx( id, "STATUS_SHARED_POLICY", 0xC0000299, -1);
    AddConstEx( id, "STATUS_POLICY_OBJECT_NOT_FOUND", 0xC000029A, -1);
    AddConstEx( id, "STATUS_POLICY_ONLY_IN_DS", 0xC000029B, -1);
    AddConstEx( id, "STATUS_VOLUME_NOT_UPGRADED", 0xC000029C, -1);
    AddConstEx( id, "STATUS_REMOTE_STORAGE_NOT_ACTIVE", 0xC000029D, -1);
    AddConstEx( id, "STATUS_REMOTE_STORAGE_MEDIA_ERROR", 0xC000029E, -1);
    AddConstEx( id, "STATUS_NO_TRACKING_SERVICE", 0xC000029F, -1);
    AddConstEx( id, "STATUS_SERVER_SID_MISMATCH", 0xC00002A0, -1);
    AddConstEx( id, "STATUS_DS_NO_ATTRIBUTE_OR_VALUE", 0xC00002A1, -1);
    AddConstEx( id, "STATUS_DS_INVALID_ATTRIBUTE_SYNTAX", 0xC00002A2, -1);
    AddConstEx( id, "STATUS_DS_ATTRIBUTE_TYPE_UNDEFINED", 0xC00002A3, -1);
    AddConstEx( id, "STATUS_DS_ATTRIBUTE_OR_VALUE_EXISTS", 0xC00002A4, -1);
    AddConstEx( id, "STATUS_DS_BUSY", 0xC00002A5, -1);
    AddConstEx( id, "STATUS_DS_UNAVAILABLE", 0xC00002A6, -1);
    AddConstEx( id, "STATUS_DS_NO_RIDS_ALLOCATED", 0xC00002A7, -1);
    AddConstEx( id, "STATUS_DS_NO_MORE_RIDS", 0xC00002A8, -1);
    AddConstEx( id, "STATUS_DS_INCORRECT_ROLE_OWNER", 0xC00002A9, -1);
    AddConstEx( id, "STATUS_DS_RIDMGR_INIT_ERROR", 0xC00002AA, -1);
    AddConstEx( id, "STATUS_DS_OBJ_CLASS_VIOLATION", 0xC00002AB, -1);
    AddConstEx( id, "STATUS_DS_CANT_ON_NON_LEAF", 0xC00002AC, -1);
    AddConstEx( id, "STATUS_DS_CANT_ON_RDN", 0xC00002AD, -1);
    AddConstEx( id, "STATUS_DS_CANT_MOD_OBJ_CLASS", 0xC00002AE, -1);
    AddConstEx( id, "STATUS_DS_CROSS_DOM_MOVE_FAILED", 0xC00002AF, -1);
    AddConstEx( id, "STATUS_DS_GC_NOT_AVAILABLE", 0xC00002B0, -1);
    AddConstEx( id, "STATUS_DIRECTORY_SERVICE_REQUIRED", 0xC00002B1, -1);
    AddConstEx( id, "STATUS_REPARSE_ATTRIBUTE_CONFLICT", 0xC00002B2, -1);
    AddConstEx( id, "STATUS_CANT_ENABLE_DENY_ONLY", 0xC00002B3, -1);
    AddConstEx( id, "STATUS_FLOAT_MULTIPLE_FAULTS", 0xC00002B4, -1);
    AddConstEx( id, "STATUS_FLOAT_MULTIPLE_TRAPS", 0xC00002B5, -1);
    AddConstEx( id, "STATUS_DEVICE_REMOVED", 0xC00002B6, -1);
    AddConstEx( id, "STATUS_JOURNAL_DELETE_IN_PROGRESS", 0xC00002B7, -1);
    AddConstEx( id, "STATUS_JOURNAL_NOT_ACTIVE", 0xC00002B8, -1);
    AddConstEx( id, "STATUS_NOINTERFACE", 0xC00002B9, -1);
    AddConstEx( id, "STATUS_DS_RIDMGR_DISABLED", 0xC00002BA, -1);
    AddConstEx( id, "STATUS_DS_ADMIN_LIMIT_EXCEEDED", 0xC00002C1, -1);
    AddConstEx( id, "STATUS_DRIVER_FAILED_SLEEP", 0xC00002C2, -1);
    AddConstEx( id, "STATUS_MUTUAL_AUTHENTICATION_FAILED", 0xC00002C3, -1);
    AddConstEx( id, "STATUS_CORRUPT_SYSTEM_FILE", 0xC00002C4, -1);
    AddConstEx( id, "STATUS_DATATYPE_MISALIGNMENT_ERROR", 0xC00002C5, -1);
    AddConstEx( id, "STATUS_WMI_READ_ONLY", 0xC00002C6, -1);
    AddConstEx( id, "STATUS_WMI_SET_FAILURE", 0xC00002C7, -1);
    AddConstEx( id, "STATUS_COMMITMENT_MINIMUM", 0xC00002C8, -1);
    AddConstEx( id, "STATUS_REG_NAT_CONSUMPTION", 0xC00002C9, -1);
    AddConstEx( id, "STATUS_TRANSPORT_FULL", 0xC00002CA, -1);
    AddConstEx( id, "STATUS_DS_SAM_INIT_FAILURE", 0xC00002CB, -1);
    AddConstEx( id, "STATUS_ONLY_IF_CONNECTED", 0xC00002CC, -1);
    AddConstEx( id, "STATUS_DS_SENSITIVE_GROUP_VIOLATION", 0xC00002CD, -1);
    AddConstEx( id, "STATUS_PNP_RESTART_ENUMERATION", 0xC00002CE, -1);
    AddConstEx( id, "STATUS_JOURNAL_ENTRY_DELETED", 0xC00002CF, -1);
    AddConstEx( id, "STATUS_DS_CANT_MOD_PRIMARYGROUPID", 0xC00002D0, -1);
    AddConstEx( id, "STATUS_SYSTEM_IMAGE_BAD_SIGNATURE", 0xC00002D1, -1);
    AddConstEx( id, "STATUS_PNP_REBOOT_REQUIRED", 0xC00002D2, -1);
    AddConstEx( id, "STATUS_POWER_STATE_INVALID", 0xC00002D3, -1);
    AddConstEx( id, "STATUS_DS_INVALID_GROUP_TYPE", 0xC00002D4, -1);
    AddConstEx( id, "STATUS_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN", 0xC00002D5, -1);
    AddConstEx( id, "STATUS_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN", 0xC00002D6, -1);
    AddConstEx( id, "STATUS_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER", 0xC00002D7, -1);
    AddConstEx( id, "STATUS_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER", 0xC00002D8, -1);
    AddConstEx( id, "STATUS_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER", 0xC00002D9, -1);
    AddConstEx( id, "STATUS_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER", 0xC00002DA, -1);
    AddConstEx( id, "STATUS_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER", 0xC00002DB, -1);
    AddConstEx( id, "STATUS_DS_HAVE_PRIMARY_MEMBERS", 0xC00002DC, -1);
    AddConstEx( id, "STATUS_WMI_NOT_SUPPORTED", 0xC00002DD, -1);
    AddConstEx( id, "STATUS_INSUFFICIENT_POWER", 0xC00002DE, -1);
    AddConstEx( id, "STATUS_SAM_NEED_BOOTKEY_PASSWORD", 0xC00002DF, -1);
    AddConstEx( id, "STATUS_SAM_NEED_BOOTKEY_FLOPPY", 0xC00002E0, -1);
    AddConstEx( id, "STATUS_DS_CANT_START", 0xC00002E1, -1);
    AddConstEx( id, "STATUS_DS_INIT_FAILURE", 0xC00002E2, -1);
    AddConstEx( id, "STATUS_SAM_INIT_FAILURE", 0xC00002E3, -1);
    AddConstEx( id, "STATUS_DS_GC_REQUIRED", 0xC00002E4, -1);
    AddConstEx( id, "STATUS_DS_LOCAL_MEMBER_OF_LOCAL_ONLY", 0xC00002E5, -1);
    AddConstEx( id, "STATUS_DS_NO_FPO_IN_UNIVERSAL_GROUPS", 0xC00002E6, -1);
    AddConstEx( id, "STATUS_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED", 0xC00002E7, -1);
    AddConstEx( id, "STATUS_MULTIPLE_FAULT_VIOLATION", 0xC00002E8, -1);
    AddConstEx( id, "STATUS_CURRENT_DOMAIN_NOT_ALLOWED", 0xC00002E9, -1);
    AddConstEx( id, "STATUS_CANNOT_MAKE", 0xC00002EA, -1);
    AddConstEx( id, "STATUS_SYSTEM_SHUTDOWN", 0xC00002EB, -1);
    AddConstEx( id, "STATUS_DS_INIT_FAILURE_CONSOLE", 0xC00002EC, -1);
    AddConstEx( id, "STATUS_DS_SAM_INIT_FAILURE_CONSOLE", 0xC00002ED, -1);
    AddConstEx( id, "STATUS_UNFINISHED_CONTEXT_DELETED", 0xC00002EE, -1);
    AddConstEx( id, "STATUS_NO_TGT_REPLY", 0xC00002EF, -1);
    AddConstEx( id, "STATUS_OBJECTID_NOT_FOUND", 0xC00002F0, -1);
    AddConstEx( id, "STATUS_NO_IP_ADDRESSES", 0xC00002F1, -1);
    AddConstEx( id, "STATUS_WRONG_CREDENTIAL_HANDLE", 0xC00002F2, -1);
    AddConstEx( id, "STATUS_CRYPTO_SYSTEM_INVALID", 0xC00002F3, -1);
    AddConstEx( id, "STATUS_MAX_REFERRALS_EXCEEDED", 0xC00002F4, -1);
    AddConstEx( id, "STATUS_MUST_BE_KDC", 0xC00002F5, -1);
    AddConstEx( id, "STATUS_STRONG_CRYPTO_NOT_SUPPORTED", 0xC00002F6, -1);
    AddConstEx( id, "STATUS_TOO_MANY_PRINCIPALS", 0xC00002F7, -1);
    AddConstEx( id, "STATUS_NO_PA_DATA", 0xC00002F8, -1);
    AddConstEx( id, "STATUS_PKINIT_NAME_MISMATCH", 0xC00002F9, -1);
    AddConstEx( id, "STATUS_SMARTCARD_LOGON_REQUIRED", 0xC00002FA, -1);
    AddConstEx( id, "STATUS_KDC_INVALID_REQUEST", 0xC00002FB, -1);
    AddConstEx( id, "STATUS_KDC_UNABLE_TO_REFER", 0xC00002FC, -1);
    AddConstEx( id, "STATUS_KDC_UNKNOWN_ETYPE", 0xC00002FD, -1);
    AddConstEx( id, "STATUS_SHUTDOWN_IN_PROGRESS", 0xC00002FE, -1);
    AddConstEx( id, "STATUS_SERVER_SHUTDOWN_IN_PROGRESS", 0xC00002FF, -1);
    AddConstEx( id, "STATUS_NOT_SUPPORTED_ON_SBS", 0xC0000300, -1);
    AddConstEx( id, "STATUS_WMI_GUID_DISCONNECTED", 0xC0000301, -1);
    AddConstEx( id, "STATUS_WMI_ALREADY_DISABLED", 0xC0000302, -1);
    AddConstEx( id, "STATUS_WMI_ALREADY_ENABLED", 0xC0000303, -1);
    AddConstEx( id, "STATUS_MFT_TOO_FRAGMENTED", 0xC0000304, -1);
    AddConstEx( id, "STATUS_COPY_PROTECTION_FAILURE", 0xC0000305, -1);
    AddConstEx( id, "STATUS_CSS_AUTHENTICATION_FAILURE", 0xC0000306, -1);
    AddConstEx( id, "STATUS_CSS_KEY_NOT_PRESENT", 0xC0000307, -1);
    AddConstEx( id, "STATUS_CSS_KEY_NOT_ESTABLISHED", 0xC0000308, -1);
    AddConstEx( id, "STATUS_CSS_SCRAMBLED_SECTOR", 0xC0000309, -1);
    AddConstEx( id, "STATUS_CSS_REGION_MISMATCH", 0xC000030A, -1);
    AddConstEx( id, "STATUS_CSS_RESETS_EXHAUSTED", 0xC000030B, -1);
    AddConstEx( id, "STATUS_PASSWORD_CHANGE_REQUIRED", 0xC000030C, -1);
    AddConstEx( id, "STATUS_PKINIT_FAILURE", 0xC0000320, -1);
    AddConstEx( id, "STATUS_SMARTCARD_SUBSYSTEM_FAILURE", 0xC0000321, -1);
    AddConstEx( id, "STATUS_NO_KERB_KEY", 0xC0000322, -1);
    AddConstEx( id, "STATUS_HOST_DOWN", 0xC0000350, -1);
    AddConstEx( id, "STATUS_UNSUPPORTED_PREAUTH", 0xC0000351, -1);
    AddConstEx( id, "STATUS_EFS_ALG_BLOB_TOO_BIG", 0xC0000352, -1);
    AddConstEx( id, "STATUS_PORT_NOT_SET", 0xC0000353, -1);
    AddConstEx( id, "STATUS_DEBUGGER_INACTIVE", 0xC0000354, -1);
    AddConstEx( id, "STATUS_DS_VERSION_CHECK_FAILURE", 0xC0000355, -1);
    AddConstEx( id, "STATUS_AUDITING_DISABLED", 0xC0000356, -1);
    AddConstEx( id, "STATUS_PRENT4_MACHINE_ACCOUNT", 0xC0000357, -1);
    AddConstEx( id, "STATUS_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER", 0xC0000358, -1);
    AddConstEx( id, "STATUS_INVALID_IMAGE_WIN_32", 0xC0000359, -1);
    AddConstEx( id, "STATUS_INVALID_IMAGE_WIN_64", 0xC000035A, -1);
    AddConstEx( id, "STATUS_BAD_BINDINGS", 0xC000035B, -1);
    AddConstEx( id, "STATUS_NETWORK_SESSION_EXPIRED", 0xC000035C, -1);
    AddConstEx( id, "STATUS_APPHELP_BLOCK", 0xC000035D, -1);
    AddConstEx( id, "STATUS_ALL_SIDS_FILTERED", 0xC000035E, -1);
    AddConstEx( id, "STATUS_NOT_SAFE_MODE_DRIVER", 0xC000035F, -1);
    AddConstEx( id, "STATUS_ACCESS_DISABLED_BY_POLICY_DEFAULT", 0xC0000361, -1);
    AddConstEx( id, "STATUS_ACCESS_DISABLED_BY_POLICY_PATH", 0xC0000362, -1);
    AddConstEx( id, "STATUS_ACCESS_DISABLED_BY_POLICY_PUBLISHER", 0xC0000363, -1);
    AddConstEx( id, "STATUS_ACCESS_DISABLED_BY_POLICY_OTHER", 0xC0000364, -1);
    AddConstEx( id, "STATUS_FAILED_DRIVER_ENTRY", 0xC0000365, -1);
    AddConstEx( id, "STATUS_DEVICE_ENUMERATION_ERROR", 0xC0000366, -1);
    AddConstEx( id, "STATUS_MOUNT_POINT_NOT_RESOLVED", 0xC0000368, -1);
    AddConstEx( id, "STATUS_INVALID_DEVICE_OBJECT_PARAMETER", 0xC0000369, -1);
    AddConstEx( id, "STATUS_MCA_OCCURED", 0xC000036A, -1);
    AddConstEx( id, "STATUS_DRIVER_BLOCKED_CRITICAL", 0xC000036B, -1);
    AddConstEx( id, "STATUS_DRIVER_BLOCKED", 0xC000036C, -1);
    AddConstEx( id, "STATUS_DRIVER_DATABASE_ERROR", 0xC000036D, -1);
    AddConstEx( id, "STATUS_SYSTEM_HIVE_TOO_LARGE", 0xC000036E, -1);
    AddConstEx( id, "STATUS_INVALID_IMPORT_OF_NON_DLL", 0xC000036F, -1);
    AddConstEx( id, "STATUS_NO_SECRETS", 0xC0000371, -1);
    AddConstEx( id, "STATUS_ACCESS_DISABLED_NO_SAFER_UI_BY_POLICY", 0xC0000372, -1);
    AddConstEx( id, "STATUS_FAILED_STACK_SWITCH", 0xC0000373, -1);
    AddConstEx( id, "STATUS_HEAP_CORRUPTION", 0xC0000374, -1);
    AddConstEx( id, "STATUS_SMARTCARD_WRONG_PIN", 0xC0000380, -1);
    AddConstEx( id, "STATUS_SMARTCARD_CARD_BLOCKED", 0xC0000381, -1);
    AddConstEx( id, "STATUS_SMARTCARD_CARD_NOT_AUTHENTICATED", 0xC0000382, -1);
    AddConstEx( id, "STATUS_SMARTCARD_NO_CARD", 0xC0000383, -1);
    AddConstEx( id, "STATUS_SMARTCARD_NO_KEY_CONTAINER", 0xC0000384, -1);
    AddConstEx( id, "STATUS_SMARTCARD_NO_CERTIFICATE", 0xC0000385, -1);
    AddConstEx( id, "STATUS_SMARTCARD_NO_KEYSET", 0xC0000386, -1);
    AddConstEx( id, "STATUS_SMARTCARD_IO_ERROR", 0xC0000387, -1);
    AddConstEx( id, "STATUS_DOWNGRADE_DETECTED", 0xC0000388, -1);
    AddConstEx( id, "STATUS_SMARTCARD_CERT_REVOKED", 0xC0000389, -1);
    AddConstEx( id, "STATUS_ISSUING_CA_UNTRUSTED", 0xC000038A, -1);
    AddConstEx( id, "STATUS_REVOCATION_OFFLINE_C", 0xC000038B, -1);
    AddConstEx( id, "STATUS_PKINIT_CLIENT_FAILURE", 0xC000038C, -1);
    AddConstEx( id, "STATUS_SMARTCARD_CERT_EXPIRED", 0xC000038D, -1);
    AddConstEx( id, "STATUS_DRIVER_FAILED_PRIOR_UNLOAD", 0xC000038E, -1);
    AddConstEx( id, "STATUS_SMARTCARD_SILENT_CONTEXT", 0xC000038F, -1);
    AddConstEx( id, "STATUS_PER_USER_TRUST_QUOTA_EXCEEDED", 0xC0000401, -1);
    AddConstEx( id, "STATUS_ALL_USER_TRUST_QUOTA_EXCEEDED", 0xC0000402, -1);
    AddConstEx( id, "STATUS_USER_DELETE_TRUST_QUOTA_EXCEEDED", 0xC0000403, -1);
    AddConstEx( id, "STATUS_DS_NAME_NOT_UNIQUE", 0xC0000404, -1);
    AddConstEx( id, "STATUS_DS_DUPLICATE_ID_FOUND", 0xC0000405, -1);
    AddConstEx( id, "STATUS_DS_GROUP_CONVERSION_ERROR", 0xC0000406, -1);
    AddConstEx( id, "STATUS_VOLSNAP_PREPARE_HIBERNATE", 0xC0000407, -1);
    AddConstEx( id, "STATUS_USER2USER_REQUIRED", 0xC0000408, -1);
    AddConstEx( id, "STATUS_STACK_BUFFER_OVERRUN", 0xC0000409, -1);
    AddConstEx( id, "STATUS_NO_S4U_PROT_SUPPORT", 0xC000040A, -1);
    AddConstEx( id, "STATUS_CROSSREALM_DELEGATION_FAILURE", 0xC000040B, -1);
    AddConstEx( id, "STATUS_REVOCATION_OFFLINE_KDC", 0xC000040C, -1);
    AddConstEx( id, "STATUS_ISSUING_CA_UNTRUSTED_KDC", 0xC000040D, -1);
    AddConstEx( id, "STATUS_KDC_CERT_EXPIRED", 0xC000040E, -1);
    AddConstEx( id, "STATUS_KDC_CERT_REVOKED", 0xC000040F, -1);
    AddConstEx( id, "STATUS_PARAMETER_QUOTA_EXCEEDED", 0xC0000410, -1);
    AddConstEx( id, "STATUS_HIBERNATION_FAILURE", 0xC0000411, -1);
    AddConstEx( id, "STATUS_DELAY_LOAD_FAILED", 0xC0000412, -1);
    AddConstEx( id, "STATUS_AUTHENTICATION_FIREWALL_FAILED", 0xC0000413, -1);
    AddConstEx( id, "STATUS_VDM_DISALLOWED", 0xC0000414, -1);
    AddConstEx( id, "STATUS_HUNG_DISPLAY_DRIVER_THREAD", 0xC0000415, -1);
    AddConstEx( id, "STATUS_INSUFFICIENT_RESOURCE_FOR_SPECIFIED_SHARED_SECTION_SIZE", 0xC0000416, -1);
    AddConstEx( id, "STATUS_INVALID_CRUNTIME_PARAMETER", 0xC0000417, -1);
    AddConstEx( id, "STATUS_NTLM_BLOCKED", 0xC0000418, -1);
    AddConstEx( id, "STATUS_DS_SRC_SID_EXISTS_IN_FOREST", 0xC0000419, -1);
    AddConstEx( id, "STATUS_DS_DOMAIN_NAME_EXISTS_IN_FOREST", 0xC000041A, -1);
    AddConstEx( id, "STATUS_DS_FLAT_NAME_EXISTS_IN_FOREST", 0xC000041B, -1);
    AddConstEx( id, "STATUS_INVALID_USER_PRINCIPAL_NAME", 0xC000041C, -1);
    AddConstEx( id, "STATUS_FATAL_USER_CALLBACK_EXCEPTION", 0xC000041D, -1);
    AddConstEx( id, "STATUS_ASSERTION_FAILURE", 0xC0000420, -1);
    AddConstEx( id, "STATUS_VERIFIER_STOP", 0xC0000421, -1);
    AddConstEx( id, "STATUS_CALLBACK_POP_STACK", 0xC0000423, -1);
    AddConstEx( id, "STATUS_INCOMPATIBLE_DRIVER_BLOCKED", 0xC0000424, -1);
    AddConstEx( id, "STATUS_HIVE_UNLOADED", 0xC0000425, -1);
    AddConstEx( id, "STATUS_COMPRESSION_DISABLED", 0xC0000426, -1);
    AddConstEx( id, "STATUS_FILE_SYSTEM_LIMITATION", 0xC0000427, -1);
    AddConstEx( id, "STATUS_INVALID_IMAGE_HASH", 0xC0000428, -1);
    AddConstEx( id, "STATUS_NOT_CAPABLE", 0xC0000429, -1);
    AddConstEx( id, "STATUS_REQUEST_OUT_OF_SEQUENCE", 0xC000042A, -1);
    AddConstEx( id, "STATUS_IMPLEMENTATION_LIMIT", 0xC000042B, -1);
    AddConstEx( id, "STATUS_ELEVATION_REQUIRED", 0xC000042C, -1);
    AddConstEx( id, "STATUS_NO_SECURITY_CONTEXT", 0xC000042D, -1);
    AddConstEx( id, "STATUS_PKU2U_CERT_FAILURE", 0xC000042F, -1);
    AddConstEx( id, "STATUS_BEYOND_VDL", 0xC0000432, -1);
    AddConstEx( id, "STATUS_ENCOUNTERED_WRITE_IN_PROGRESS", 0xC0000433, -1);
    AddConstEx( id, "STATUS_PTE_CHANGED", 0xC0000434, -1);
    AddConstEx( id, "STATUS_PURGE_FAILED", 0xC0000435, -1);
    AddConstEx( id, "STATUS_CRED_REQUIRES_CONFIRMATION", 0xC0000440, -1);
    AddConstEx( id, "STATUS_CS_ENCRYPTION_INVALID_SERVER_RESPONSE", 0xC0000441, -1);
    AddConstEx( id, "STATUS_CS_ENCRYPTION_UNSUPPORTED_SERVER", 0xC0000442, -1);
    AddConstEx( id, "STATUS_CS_ENCRYPTION_EXISTING_ENCRYPTED_FILE", 0xC0000443, -1);
    AddConstEx( id, "STATUS_CS_ENCRYPTION_NEW_ENCRYPTED_FILE", 0xC0000444, -1);
    AddConstEx( id, "STATUS_CS_ENCRYPTION_FILE_NOT_CSE", 0xC0000445, -1);
    AddConstEx( id, "STATUS_INVALID_LABEL", 0xC0000446, -1);
    AddConstEx( id, "STATUS_DRIVER_PROCESS_TERMINATED", 0xC0000450, -1);
    AddConstEx( id, "STATUS_AMBIGUOUS_SYSTEM_DEVICE", 0xC0000451, -1);
    AddConstEx( id, "STATUS_SYSTEM_DEVICE_NOT_FOUND", 0xC0000452, -1);
    AddConstEx( id, "STATUS_RESTART_BOOT_APPLICATION", 0xC0000453, -1);
    AddConstEx( id, "STATUS_INSUFFICIENT_NVRAM_RESOURCES", 0xC0000454, -1);
    AddConstEx( id, "STATUS_INVALID_SESSION", 0xC0000455, -1);
    AddConstEx( id, "STATUS_THREAD_ALREADY_IN_SESSION", 0xC0000456, -1);
    AddConstEx( id, "STATUS_THREAD_NOT_IN_SESSION", 0xC0000457, -1);
    AddConstEx( id, "STATUS_INVALID_WEIGHT", 0xC0000458, -1);
    AddConstEx( id, "STATUS_REQUEST_PAUSED", 0xC0000459, -1);
    AddConstEx( id, "STATUS_NO_RANGES_PROCESSED", 0xC0000460, -1);
    AddConstEx( id, "STATUS_DISK_RESOURCES_EXHAUSTED", 0xC0000461, -1);
    AddConstEx( id, "STATUS_NEEDS_REMEDIATION", 0xC0000462, -1);
    AddConstEx( id, "STATUS_DEVICE_FEATURE_NOT_SUPPORTED", 0xC0000463, -1);
    AddConstEx( id, "STATUS_DEVICE_UNREACHABLE", 0xC0000464, -1);
    AddConstEx( id, "STATUS_INVALID_TOKEN", 0xC0000465, -1);
    AddConstEx( id, "STATUS_SERVER_UNAVAILABLE", 0xC0000466, -1);
    AddConstEx( id, "STATUS_FILE_NOT_AVAILABLE", 0xC0000467, -1);
    AddConstEx( id, "STATUS_DEVICE_INSUFFICIENT_RESOURCES", 0xC0000468, -1);
    AddConstEx( id, "STATUS_PACKAGE_UPDATING", 0xC0000469, -1);
    AddConstEx( id, "STATUS_NOT_READ_FROM_COPY", 0xC000046A, -1);
    AddConstEx( id, "STATUS_FT_WRITE_FAILURE", 0xC000046B, -1);
    AddConstEx( id, "STATUS_FT_DI_SCAN_REQUIRED", 0xC000046C, -1);
    AddConstEx( id, "STATUS_DATA_CHECKSUM_ERROR", 0xC0000470, -1);
    AddConstEx( id, "STATUS_INTERMIXED_KERNEL_EA_OPERATION", 0xC0000471, -1);
    AddConstEx( id, "STATUS_TRIM_READ_ZERO_NOT_SUPPORTED", 0xC0000472, -1);
    AddConstEx( id, "STATUS_TOO_MANY_SEGMENT_DESCRIPTORS", 0xC0000473, -1);
    AddConstEx( id, "STATUS_INVALID_OFFSET_ALIGNMENT", 0xC0000474, -1);
    AddConstEx( id, "STATUS_INVALID_FIELD_IN_PARAMETER_LIST", 0xC0000475, -1);
    AddConstEx( id, "STATUS_OPERATION_IN_PROGRESS", 0xC0000476, -1);
    AddConstEx( id, "STATUS_INVALID_INITIATOR_TARGET_PATH", 0xC0000477, -1);
    AddConstEx( id, "STATUS_SCRUB_DATA_DISABLED", 0xC0000478, -1);
    AddConstEx( id, "STATUS_NOT_REDUNDANT_STORAGE", 0xC0000479, -1);
    AddConstEx( id, "STATUS_RESIDENT_FILE_NOT_SUPPORTED", 0xC000047A, -1);
    AddConstEx( id, "STATUS_COMPRESSED_FILE_NOT_SUPPORTED", 0xC000047B, -1);
    AddConstEx( id, "STATUS_DIRECTORY_NOT_SUPPORTED", 0xC000047C, -1);
    AddConstEx( id, "STATUS_IO_OPERATION_TIMEOUT", 0xC000047D, -1);
    AddConstEx( id, "STATUS_SYSTEM_NEEDS_REMEDIATION", 0xC000047E, -1);
    AddConstEx( id, "STATUS_APPX_INTEGRITY_FAILURE_CLR_NGEN", 0xC000047F, -1);
    AddConstEx( id, "STATUS_SHARE_UNAVAILABLE", 0xC0000480, -1);
    AddConstEx( id, "STATUS_APISET_NOT_HOSTED", 0xC0000481, -1);
    AddConstEx( id, "STATUS_APISET_NOT_PRESENT", 0xC0000482, -1);
    AddConstEx( id, "STATUS_DEVICE_HARDWARE_ERROR", 0xC0000483, -1);
    AddConstEx( id, "STATUS_INVALID_TASK_NAME", 0xC0000500, -1);
    AddConstEx( id, "STATUS_INVALID_TASK_INDEX", 0xC0000501, -1);
    AddConstEx( id, "STATUS_THREAD_ALREADY_IN_TASK", 0xC0000502, -1);
    AddConstEx( id, "STATUS_CALLBACK_BYPASS", 0xC0000503, -1);
    AddConstEx( id, "STATUS_UNDEFINED_SCOPE", 0xC0000504, -1);
    AddConstEx( id, "STATUS_INVALID_CAP", 0xC0000505, -1);
    AddConstEx( id, "STATUS_NOT_GUI_PROCESS", 0xC0000506, -1);
    AddConstEx( id, "STATUS_FAIL_FAST_EXCEPTION", 0xC0000602, -1);
    AddConstEx( id, "STATUS_IMAGE_CERT_REVOKED", 0xC0000603, -1);
    AddConstEx( id, "STATUS_DYNAMIC_CODE_BLOCKED", 0xC0000604, -1);
    AddConstEx( id, "STATUS_PORT_CLOSED", 0xC0000700, -1);
    AddConstEx( id, "STATUS_MESSAGE_LOST", 0xC0000701, -1);
    AddConstEx( id, "STATUS_INVALID_MESSAGE", 0xC0000702, -1);
    AddConstEx( id, "STATUS_REQUEST_CANCELED", 0xC0000703, -1);
    AddConstEx( id, "STATUS_RECURSIVE_DISPATCH", 0xC0000704, -1);
    AddConstEx( id, "STATUS_LPC_RECEIVE_BUFFER_EXPECTED", 0xC0000705, -1);
    AddConstEx( id, "STATUS_LPC_INVALID_CONNECTION_USAGE", 0xC0000706, -1);
    AddConstEx( id, "STATUS_LPC_REQUESTS_NOT_ALLOWED", 0xC0000707, -1);
    AddConstEx( id, "STATUS_RESOURCE_IN_USE", 0xC0000708, -1);
    AddConstEx( id, "STATUS_HARDWARE_MEMORY_ERROR", 0xC0000709, -1);
    AddConstEx( id, "STATUS_THREADPOOL_HANDLE_EXCEPTION", 0xC000070A, -1);
    AddConstEx( id, "STATUS_THREADPOOL_SET_EVENT_ON_COMPLETION_FAILED", 0xC000070B, -1);
    AddConstEx( id, "STATUS_THREADPOOL_RELEASE_SEMAPHORE_ON_COMPLETION_FAILED", 0xC000070C, -1);
    AddConstEx( id, "STATUS_THREADPOOL_RELEASE_MUTEX_ON_COMPLETION_FAILED", 0xC000070D, -1);
    AddConstEx( id, "STATUS_THREADPOOL_FREE_LIBRARY_ON_COMPLETION_FAILED", 0xC000070E, -1);
    AddConstEx( id, "STATUS_THREADPOOL_RELEASED_DURING_OPERATION", 0xC000070F, -1);
    AddConstEx( id, "STATUS_CALLBACK_RETURNED_WHILE_IMPERSONATING", 0xC0000710, -1);
    AddConstEx( id, "STATUS_APC_RETURNED_WHILE_IMPERSONATING", 0xC0000711, -1);
    AddConstEx( id, "STATUS_PROCESS_IS_PROTECTED", 0xC0000712, -1);
    AddConstEx( id, "STATUS_MCA_EXCEPTION", 0xC0000713, -1);
    AddConstEx( id, "STATUS_CERTIFICATE_MAPPING_NOT_UNIQUE", 0xC0000714, -1);
    AddConstEx( id, "STATUS_SYMLINK_CLASS_DISABLED", 0xC0000715, -1);
    AddConstEx( id, "STATUS_INVALID_IDN_NORMALIZATION", 0xC0000716, -1);
    AddConstEx( id, "STATUS_NO_UNICODE_TRANSLATION", 0xC0000717, -1);
    AddConstEx( id, "STATUS_ALREADY_REGISTERED", 0xC0000718, -1);
    AddConstEx( id, "STATUS_CONTEXT_MISMATCH", 0xC0000719, -1);
    AddConstEx( id, "STATUS_PORT_ALREADY_HAS_COMPLETION_LIST", 0xC000071A, -1);
    AddConstEx( id, "STATUS_CALLBACK_RETURNED_THREAD_PRIORITY", 0xC000071B, -1);
    AddConstEx( id, "STATUS_INVALID_THREAD", 0xC000071C, -1);
    AddConstEx( id, "STATUS_CALLBACK_RETURNED_TRANSACTION", 0xC000071D, -1);
    AddConstEx( id, "STATUS_CALLBACK_RETURNED_LDR_LOCK", 0xC000071E, -1);
    AddConstEx( id, "STATUS_CALLBACK_RETURNED_LANG", 0xC000071F, -1);
    AddConstEx( id, "STATUS_CALLBACK_RETURNED_PRI_BACK", 0xC0000720, -1);
    AddConstEx( id, "STATUS_CALLBACK_RETURNED_THREAD_AFFINITY", 0xC0000721, -1);
    AddConstEx( id, "STATUS_DISK_REPAIR_DISABLED", 0xC0000800, -1);
    AddConstEx( id, "STATUS_DS_DOMAIN_RENAME_IN_PROGRESS", 0xC0000801, -1);
    AddConstEx( id, "STATUS_DISK_QUOTA_EXCEEDED", 0xC0000802, -1);
    AddConstEx( id, "STATUS_CONTENT_BLOCKED", 0xC0000804, -1);
    AddConstEx( id, "STATUS_BAD_CLUSTERS", 0xC0000805, -1);
    AddConstEx( id, "STATUS_VOLUME_DIRTY", 0xC0000806, -1);
    AddConstEx( id, "STATUS_DISK_REPAIR_UNSUCCESSFUL", 0xC0000808, -1);
    AddConstEx( id, "STATUS_CORRUPT_LOG_OVERFULL", 0xC0000809, -1);
    AddConstEx( id, "STATUS_CORRUPT_LOG_CORRUPTED", 0xC000080A, -1);
    AddConstEx( id, "STATUS_CORRUPT_LOG_UNAVAILABLE", 0xC000080B, -1);
    AddConstEx( id, "STATUS_CORRUPT_LOG_DELETED_FULL", 0xC000080C, -1);
    AddConstEx( id, "STATUS_CORRUPT_LOG_CLEARED", 0xC000080D, -1);
    AddConstEx( id, "STATUS_ORPHAN_NAME_EXHAUSTED", 0xC000080E, -1);
    AddConstEx( id, "STATUS_PROACTIVE_SCAN_IN_PROGRESS", 0xC000080F, -1);
    AddConstEx( id, "STATUS_ENCRYPTED_IO_NOT_POSSIBLE", 0xC0000810, -1);
    AddConstEx( id, "STATUS_CORRUPT_LOG_UPLEVEL_RECORDS", 0xC0000811, -1);
    AddConstEx( id, "STATUS_FILE_CHECKED_OUT", 0xC0000901, -1);
    AddConstEx( id, "STATUS_CHECKOUT_REQUIRED", 0xC0000902, -1);
    AddConstEx( id, "STATUS_BAD_FILE_TYPE", 0xC0000903, -1);
    AddConstEx( id, "STATUS_FILE_TOO_LARGE", 0xC0000904, -1);
    AddConstEx( id, "STATUS_FORMS_AUTH_REQUIRED", 0xC0000905, -1);
    AddConstEx( id, "STATUS_VIRUS_INFECTED", 0xC0000906, -1);
    AddConstEx( id, "STATUS_VIRUS_DELETED", 0xC0000907, -1);
    AddConstEx( id, "STATUS_BAD_MCFG_TABLE", 0xC0000908, -1);
    AddConstEx( id, "STATUS_CANNOT_BREAK_OPLOCK", 0xC0000909, -1);
    AddConstEx( id, "STATUS_BAD_KEY", 0xC000090A, -1);
    AddConstEx( id, "STATUS_BAD_DATA", 0xC000090B, -1);
    AddConstEx( id, "STATUS_NO_KEY", 0xC000090C, -1);
    AddConstEx( id, "STATUS_FILE_HANDLE_REVOKED", 0xC0000910, -1);
    AddConstEx( id, "STATUS_WOW_ASSERTION", 0xC0009898, -1);
    AddConstEx( id, "STATUS_INVALID_SIGNATURE", 0xC000A000, -1);
    AddConstEx( id, "STATUS_HMAC_NOT_SUPPORTED", 0xC000A001, -1);
    AddConstEx( id, "STATUS_AUTH_TAG_MISMATCH", 0xC000A002, -1);
    AddConstEx( id, "STATUS_INVALID_STATE_TRANSITION", 0xC000A003, -1);
    AddConstEx( id, "STATUS_INVALID_KERNEL_INFO_VERSION", 0xC000A004, -1);
    AddConstEx( id, "STATUS_INVALID_PEP_INFO_VERSION", 0xC000A005, -1);
    AddConstEx( id, "STATUS_IPSEC_QUEUE_OVERFLOW", 0xC000A010, -1);
    AddConstEx( id, "STATUS_ND_QUEUE_OVERFLOW", 0xC000A011, -1);
    AddConstEx( id, "STATUS_HOPLIMIT_EXCEEDED", 0xC000A012, -1);
    AddConstEx( id, "STATUS_PROTOCOL_NOT_SUPPORTED", 0xC000A013, -1);
    AddConstEx( id, "STATUS_FASTPATH_REJECTED", 0xC000A014, -1);
    AddConstEx( id, "STATUS_LOST_WRITEBEHIND_DATA_NETWORK_DISCONNECTED", 0xC000A080, -1);
    AddConstEx( id, "STATUS_LOST_WRITEBEHIND_DATA_NETWORK_SERVER_ERROR", 0xC000A081, -1);
    AddConstEx( id, "STATUS_LOST_WRITEBEHIND_DATA_LOCAL_DISK_ERROR", 0xC000A082, -1);
    AddConstEx( id, "STATUS_XML_PARSE_ERROR", 0xC000A083, -1);
    AddConstEx( id, "STATUS_XMLDSIG_ERROR", 0xC000A084, -1);
    AddConstEx( id, "STATUS_WRONG_COMPARTMENT", 0xC000A085, -1);
    AddConstEx( id, "STATUS_AUTHIP_FAILURE", 0xC000A086, -1);
    AddConstEx( id, "STATUS_DS_OID_MAPPED_GROUP_CANT_HAVE_MEMBERS", 0xC000A087, -1);
    AddConstEx( id, "STATUS_DS_OID_NOT_FOUND", 0xC000A088, -1);
    AddConstEx( id, "STATUS_INCORRECT_ACCOUNT_TYPE", 0xC000A089, -1);
    AddConstEx( id, "STATUS_HASH_NOT_SUPPORTED", 0xC000A100, -1);
    AddConstEx( id, "STATUS_HASH_NOT_PRESENT", 0xC000A101, -1);
    AddConstEx( id, "STATUS_SECONDARY_IC_PROVIDER_NOT_REGISTERED", 0xC000A121, -1);
    AddConstEx( id, "STATUS_GPIO_CLIENT_INFORMATION_INVALID", 0xC000A122, -1);
    AddConstEx( id, "STATUS_GPIO_VERSION_NOT_SUPPORTED", 0xC000A123, -1);
    AddConstEx( id, "STATUS_GPIO_INVALID_REGISTRATION_PACKET", 0xC000A124, -1);
    AddConstEx( id, "STATUS_GPIO_OPERATION_DENIED", 0xC000A125, -1);
    AddConstEx( id, "STATUS_GPIO_INCOMPATIBLE_CONNECT_MODE", 0xC000A126, -1);
    AddConstEx( id, "STATUS_CANNOT_SWITCH_RUNLEVEL", 0xC000A141, -1);
    AddConstEx( id, "STATUS_INVALID_RUNLEVEL_SETTING", 0xC000A142, -1);
    AddConstEx( id, "STATUS_RUNLEVEL_SWITCH_TIMEOUT", 0xC000A143, -1);
    AddConstEx( id, "STATUS_RUNLEVEL_SWITCH_AGENT_TIMEOUT", 0xC000A145, -1);
    AddConstEx( id, "STATUS_RUNLEVEL_SWITCH_IN_PROGRESS", 0xC000A146, -1);
    AddConstEx( id, "STATUS_NOT_APPCONTAINER", 0xC000A200, -1);
    AddConstEx( id, "STATUS_NOT_SUPPORTED_IN_APPCONTAINER", 0xC000A201, -1);
    AddConstEx( id, "STATUS_INVALID_PACKAGE_SID_LENGTH", 0xC000A202, -1);
    AddConstEx( id, "STATUS_APP_DATA_NOT_FOUND", 0xC000A281, -1);
    AddConstEx( id, "STATUS_APP_DATA_EXPIRED", 0xC000A282, -1);
    AddConstEx( id, "STATUS_APP_DATA_CORRUPT", 0xC000A283, -1);
    AddConstEx( id, "STATUS_APP_DATA_LIMIT_EXCEEDED", 0xC000A284, -1);
    AddConstEx( id, "STATUS_APP_DATA_REBOOT_REQUIRED", 0xC000A285, -1);
    AddConstEx( id, "STATUS_OFFLOAD_READ_FLT_NOT_SUPPORTED", 0xC000A2A1, -1);
    AddConstEx( id, "STATUS_OFFLOAD_WRITE_FLT_NOT_SUPPORTED", 0xC000A2A2, -1);
    AddConstEx( id, "STATUS_OFFLOAD_READ_FILE_NOT_SUPPORTED", 0xC000A2A3, -1);
    AddConstEx( id, "STATUS_OFFLOAD_WRITE_FILE_NOT_SUPPORTED", 0xC000A2A4, -1);
    AddConstEx( id, "STATUS_PNP_BAD_MPS_TABLE", 0xC0040035, -1);
    AddConstEx( id, "STATUS_PNP_TRANSLATION_FAILED", 0xC0040036, -1);
    AddConstEx( id, "STATUS_PNP_IRQ_TRANSLATION_FAILED", 0xC0040037, -1);
    AddConstEx( id, "STATUS_PNP_INVALID_ID", 0xC0040038, -1);
    AddConstEx( id, "STATUS_IO_REISSUE_AS_CACHED", 0xC0040039, -1);
    AddConstEx( id, "STATUS_CTX_WINSTATION_NAME_INVALID", 0xC00A0001, -1);
    AddConstEx( id, "STATUS_CTX_INVALID_PD", 0xC00A0002, -1);
    AddConstEx( id, "STATUS_CTX_PD_NOT_FOUND", 0xC00A0003, -1);
    AddConstEx( id, "STATUS_CTX_CLOSE_PENDING", 0xC00A0006, -1);
    AddConstEx( id, "STATUS_CTX_NO_OUTBUF", 0xC00A0007, -1);
    AddConstEx( id, "STATUS_CTX_MODEM_INF_NOT_FOUND", 0xC00A0008, -1);
    AddConstEx( id, "STATUS_CTX_INVALID_MODEMNAME", 0xC00A0009, -1);
    AddConstEx( id, "STATUS_CTX_RESPONSE_ERROR", 0xC00A000A, -1);
    AddConstEx( id, "STATUS_CTX_MODEM_RESPONSE_TIMEOUT", 0xC00A000B, -1);
    AddConstEx( id, "STATUS_CTX_MODEM_RESPONSE_NO_CARRIER", 0xC00A000C, -1);
    AddConstEx( id, "STATUS_CTX_MODEM_RESPONSE_NO_DIALTONE", 0xC00A000D, -1);
    AddConstEx( id, "STATUS_CTX_MODEM_RESPONSE_BUSY", 0xC00A000E, -1);
    AddConstEx( id, "STATUS_CTX_MODEM_RESPONSE_VOICE", 0xC00A000F, -1);
    AddConstEx( id, "STATUS_CTX_TD_ERROR", 0xC00A0010, -1);
    AddConstEx( id, "STATUS_CTX_LICENSE_CLIENT_INVALID", 0xC00A0012, -1);
    AddConstEx( id, "STATUS_CTX_LICENSE_NOT_AVAILABLE", 0xC00A0013, -1);
    AddConstEx( id, "STATUS_CTX_LICENSE_EXPIRED", 0xC00A0014, -1);
    AddConstEx( id, "STATUS_CTX_WINSTATION_NOT_FOUND", 0xC00A0015, -1);
    AddConstEx( id, "STATUS_CTX_WINSTATION_NAME_COLLISION", 0xC00A0016, -1);
    AddConstEx( id, "STATUS_CTX_WINSTATION_BUSY", 0xC00A0017, -1);
    AddConstEx( id, "STATUS_CTX_BAD_VIDEO_MODE", 0xC00A0018, -1);
    AddConstEx( id, "STATUS_CTX_GRAPHICS_INVALID", 0xC00A0022, -1);
    AddConstEx( id, "STATUS_CTX_NOT_CONSOLE", 0xC00A0024, -1);
    AddConstEx( id, "STATUS_CTX_CLIENT_QUERY_TIMEOUT", 0xC00A0026, -1);
    AddConstEx( id, "STATUS_CTX_CONSOLE_DISCONNECT", 0xC00A0027, -1);
    AddConstEx( id, "STATUS_CTX_CONSOLE_CONNECT", 0xC00A0028, -1);
    AddConstEx( id, "STATUS_CTX_SHADOW_DENIED", 0xC00A002A, -1);
    AddConstEx( id, "STATUS_CTX_WINSTATION_ACCESS_DENIED", 0xC00A002B, -1);
    AddConstEx( id, "STATUS_CTX_INVALID_WD", 0xC00A002E, -1);
    AddConstEx( id, "STATUS_CTX_WD_NOT_FOUND", 0xC00A002F, -1);
    AddConstEx( id, "STATUS_CTX_SHADOW_INVALID", 0xC00A0030, -1);
    AddConstEx( id, "STATUS_CTX_SHADOW_DISABLED", 0xC00A0031, -1);
    AddConstEx( id, "STATUS_RDP_PROTOCOL_ERROR", 0xC00A0032, -1);
    AddConstEx( id, "STATUS_CTX_CLIENT_LICENSE_NOT_SET", 0xC00A0033, -1);
    AddConstEx( id, "STATUS_CTX_CLIENT_LICENSE_IN_USE", 0xC00A0034, -1);
    AddConstEx( id, "STATUS_CTX_SHADOW_ENDED_BY_MODE_CHANGE", 0xC00A0035, -1);
    AddConstEx( id, "STATUS_CTX_SHADOW_NOT_RUNNING", 0xC00A0036, -1);
    AddConstEx( id, "STATUS_CTX_LOGON_DISABLED", 0xC00A0037, -1);
    AddConstEx( id, "STATUS_CTX_SECURITY_LAYER_ERROR", 0xC00A0038, -1);
    AddConstEx( id, "STATUS_TS_INCOMPATIBLE_SESSIONS", 0xC00A0039, -1);
    AddConstEx( id, "STATUS_TS_VIDEO_SUBSYSTEM_ERROR", 0xC00A003A, -1);
    AddConstEx( id, "STATUS_MUI_FILE_NOT_FOUND", 0xC00B0001, -1);
    AddConstEx( id, "STATUS_MUI_INVALID_FILE", 0xC00B0002, -1);
    AddConstEx( id, "STATUS_MUI_INVALID_RC_CONFIG", 0xC00B0003, -1);
    AddConstEx( id, "STATUS_MUI_INVALID_LOCALE_NAME", 0xC00B0004, -1);
    AddConstEx( id, "STATUS_MUI_INVALID_ULTIMATEFALLBACK_NAME", 0xC00B0005, -1);
    AddConstEx( id, "STATUS_MUI_FILE_NOT_LOADED", 0xC00B0006, -1);
    AddConstEx( id, "STATUS_RESOURCE_ENUM_USER_STOP", 0xC00B0007, -1);
    AddConstEx( id, "STATUS_CLUSTER_INVALID_NODE", 0xC0130001, -1);
    AddConstEx( id, "STATUS_CLUSTER_NODE_EXISTS", 0xC0130002, -1);
    AddConstEx( id, "STATUS_CLUSTER_JOIN_IN_PROGRESS", 0xC0130003, -1);
    AddConstEx( id, "STATUS_CLUSTER_NODE_NOT_FOUND", 0xC0130004, -1);
    AddConstEx( id, "STATUS_CLUSTER_LOCAL_NODE_NOT_FOUND", 0xC0130005, -1);
    AddConstEx( id, "STATUS_CLUSTER_NETWORK_EXISTS", 0xC0130006, -1);
    AddConstEx( id, "STATUS_CLUSTER_NETWORK_NOT_FOUND", 0xC0130007, -1);
    AddConstEx( id, "STATUS_CLUSTER_NETINTERFACE_EXISTS", 0xC0130008, -1);
    AddConstEx( id, "STATUS_CLUSTER_NETINTERFACE_NOT_FOUND", 0xC0130009, -1);
    AddConstEx( id, "STATUS_CLUSTER_INVALID_REQUEST", 0xC013000A, -1);
    AddConstEx( id, "STATUS_CLUSTER_INVALID_NETWORK_PROVIDER", 0xC013000B, -1);
    AddConstEx( id, "STATUS_CLUSTER_NODE_DOWN", 0xC013000C, -1);
    AddConstEx( id, "STATUS_CLUSTER_NODE_UNREACHABLE", 0xC013000D, -1);
    AddConstEx( id, "STATUS_CLUSTER_NODE_NOT_MEMBER", 0xC013000E, -1);
    AddConstEx( id, "STATUS_CLUSTER_JOIN_NOT_IN_PROGRESS", 0xC013000F, -1);
    AddConstEx( id, "STATUS_CLUSTER_INVALID_NETWORK", 0xC0130010, -1);
    AddConstEx( id, "STATUS_CLUSTER_NO_NET_ADAPTERS", 0xC0130011, -1);
    AddConstEx( id, "STATUS_CLUSTER_NODE_UP", 0xC0130012, -1);
    AddConstEx( id, "STATUS_CLUSTER_NODE_PAUSED", 0xC0130013, -1);
    AddConstEx( id, "STATUS_CLUSTER_NODE_NOT_PAUSED", 0xC0130014, -1);
    AddConstEx( id, "STATUS_CLUSTER_NO_SECURITY_CONTEXT", 0xC0130015, -1);
    AddConstEx( id, "STATUS_CLUSTER_NETWORK_NOT_INTERNAL", 0xC0130016, -1);
    AddConstEx( id, "STATUS_CLUSTER_POISONED", 0xC0130017, -1);
    AddConstEx( id, "STATUS_CLUSTER_NON_CSV_PATH", 0xC0130018, -1);
    AddConstEx( id, "STATUS_CLUSTER_CSV_VOLUME_NOT_LOCAL", 0xC0130019, -1);
    AddConstEx( id, "STATUS_CLUSTER_CSV_READ_OPLOCK_BREAK_IN_PROGRESS", 0xC0130020, -1);
    AddConstEx( id, "STATUS_CLUSTER_CSV_AUTO_PAUSE_ERROR", 0xC0130021, -1);
    AddConstEx( id, "STATUS_CLUSTER_CSV_REDIRECTED", 0xC0130022, -1);
    AddConstEx( id, "STATUS_CLUSTER_CSV_NOT_REDIRECTED", 0xC0130023, -1);
    AddConstEx( id, "STATUS_CLUSTER_CSV_VOLUME_DRAINING", 0xC0130024, -1);
    AddConstEx( id, "STATUS_CLUSTER_CSV_SNAPSHOT_CREATION_IN_PROGRESS", 0xC0130025, -1);
    AddConstEx( id, "STATUS_CLUSTER_CSV_VOLUME_DRAINING_SUCCEEDED_DOWNLEVEL", 0xC0130026, -1);
    AddConstEx( id, "STATUS_ACPI_INVALID_OPCODE", 0xC0140001, -1);
    AddConstEx( id, "STATUS_ACPI_STACK_OVERFLOW", 0xC0140002, -1);
    AddConstEx( id, "STATUS_ACPI_ASSERT_FAILED", 0xC0140003, -1);
    AddConstEx( id, "STATUS_ACPI_INVALID_INDEX", 0xC0140004, -1);
    AddConstEx( id, "STATUS_ACPI_INVALID_ARGUMENT", 0xC0140005, -1);
    AddConstEx( id, "STATUS_ACPI_FATAL", 0xC0140006, -1);
    AddConstEx( id, "STATUS_ACPI_INVALID_SUPERNAME", 0xC0140007, -1);
    AddConstEx( id, "STATUS_ACPI_INVALID_ARGTYPE", 0xC0140008, -1);
    AddConstEx( id, "STATUS_ACPI_INVALID_OBJTYPE", 0xC0140009, -1);
    AddConstEx( id, "STATUS_ACPI_INVALID_TARGETTYPE", 0xC014000A, -1);
    AddConstEx( id, "STATUS_ACPI_INCORRECT_ARGUMENT_COUNT", 0xC014000B, -1);
    AddConstEx( id, "STATUS_ACPI_ADDRESS_NOT_MAPPED", 0xC014000C, -1);
    AddConstEx( id, "STATUS_ACPI_INVALID_EVENTTYPE", 0xC014000D, -1);
    AddConstEx( id, "STATUS_ACPI_HANDLER_COLLISION", 0xC014000E, -1);
    AddConstEx( id, "STATUS_ACPI_INVALID_DATA", 0xC014000F, -1);
    AddConstEx( id, "STATUS_ACPI_INVALID_REGION", 0xC0140010, -1);
    AddConstEx( id, "STATUS_ACPI_INVALID_ACCESS_SIZE", 0xC0140011, -1);
    AddConstEx( id, "STATUS_ACPI_ACQUIRE_GLOBAL_LOCK", 0xC0140012, -1);
    AddConstEx( id, "STATUS_ACPI_ALREADY_INITIALIZED", 0xC0140013, -1);
    AddConstEx( id, "STATUS_ACPI_NOT_INITIALIZED", 0xC0140014, -1);
    AddConstEx( id, "STATUS_ACPI_INVALID_MUTEX_LEVEL", 0xC0140015, -1);
    AddConstEx( id, "STATUS_ACPI_MUTEX_NOT_OWNED", 0xC0140016, -1);
    AddConstEx( id, "STATUS_ACPI_MUTEX_NOT_OWNER", 0xC0140017, -1);
    AddConstEx( id, "STATUS_ACPI_RS_ACCESS", 0xC0140018, -1);
    AddConstEx( id, "STATUS_ACPI_INVALID_TABLE", 0xC0140019, -1);
    AddConstEx( id, "STATUS_ACPI_REG_HANDLER_FAILED", 0xC0140020, -1);
    AddConstEx( id, "STATUS_ACPI_POWER_REQUEST_FAILED", 0xC0140021, -1);
    AddConstEx( id, "STATUS_SXS_SECTION_NOT_FOUND", 0xC0150001, -1);
    AddConstEx( id, "STATUS_SXS_CANT_GEN_ACTCTX", 0xC0150002, -1);
    AddConstEx( id, "STATUS_SXS_INVALID_ACTCTXDATA_FORMAT", 0xC0150003, -1);
    AddConstEx( id, "STATUS_SXS_ASSEMBLY_NOT_FOUND", 0xC0150004, -1);
    AddConstEx( id, "STATUS_SXS_MANIFEST_FORMAT_ERROR", 0xC0150005, -1);
    AddConstEx( id, "STATUS_SXS_MANIFEST_PARSE_ERROR", 0xC0150006, -1);
    AddConstEx( id, "STATUS_SXS_ACTIVATION_CONTEXT_DISABLED", 0xC0150007, -1);
    AddConstEx( id, "STATUS_SXS_KEY_NOT_FOUND", 0xC0150008, -1);
    AddConstEx( id, "STATUS_SXS_VERSION_CONFLICT", 0xC0150009, -1);
    AddConstEx( id, "STATUS_SXS_WRONG_SECTION_TYPE", 0xC015000A, -1);
    AddConstEx( id, "STATUS_SXS_THREAD_QUERIES_DISABLED", 0xC015000B, -1);
    AddConstEx( id, "STATUS_SXS_ASSEMBLY_MISSING", 0xC015000C, -1);
    AddConstEx( id, "STATUS_SXS_PROCESS_DEFAULT_ALREADY_SET", 0xC015000E, -1);
    AddConstEx( id, "STATUS_SXS_EARLY_DEACTIVATION", 0xC015000F, -1);
    AddConstEx( id, "STATUS_SXS_INVALID_DEACTIVATION", 0xC0150010, -1);
    AddConstEx( id, "STATUS_SXS_MULTIPLE_DEACTIVATION", 0xC0150011, -1);
    AddConstEx( id, "STATUS_SXS_SYSTEM_DEFAULT_ACTIVATION_CONTEXT_EMPTY", 0xC0150012, -1);
    AddConstEx( id, "STATUS_SXS_PROCESS_TERMINATION_REQUESTED", 0xC0150013, -1);
    AddConstEx( id, "STATUS_SXS_CORRUPT_ACTIVATION_STACK", 0xC0150014, -1);
    AddConstEx( id, "STATUS_SXS_CORRUPTION", 0xC0150015, -1);
    AddConstEx( id, "STATUS_SXS_INVALID_IDENTITY_ATTRIBUTE_VALUE", 0xC0150016, -1);
    AddConstEx( id, "STATUS_SXS_INVALID_IDENTITY_ATTRIBUTE_NAME", 0xC0150017, -1);
    AddConstEx( id, "STATUS_SXS_IDENTITY_DUPLICATE_ATTRIBUTE", 0xC0150018, -1);
    AddConstEx( id, "STATUS_SXS_IDENTITY_PARSE_ERROR", 0xC0150019, -1);
    AddConstEx( id, "STATUS_SXS_COMPONENT_STORE_CORRUPT", 0xC015001A, -1);
    AddConstEx( id, "STATUS_SXS_FILE_HASH_MISMATCH", 0xC015001B, -1);
    AddConstEx( id, "STATUS_SXS_MANIFEST_IDENTITY_SAME_BUT_CONTENTS_DIFFERENT", 0xC015001C, -1);
    AddConstEx( id, "STATUS_SXS_IDENTITIES_DIFFERENT", 0xC015001D, -1);
    AddConstEx( id, "STATUS_SXS_ASSEMBLY_IS_NOT_A_DEPLOYMENT", 0xC015001E, -1);
    AddConstEx( id, "STATUS_SXS_FILE_NOT_PART_OF_ASSEMBLY", 0xC015001F, -1);
    AddConstEx( id, "STATUS_ADVANCED_INSTALLER_FAILED", 0xC0150020, -1);
    AddConstEx( id, "STATUS_XML_ENCODING_MISMATCH", 0xC0150021, -1);
    AddConstEx( id, "STATUS_SXS_MANIFEST_TOO_BIG", 0xC0150022, -1);
    AddConstEx( id, "STATUS_SXS_SETTING_NOT_REGISTERED", 0xC0150023, -1);
    AddConstEx( id, "STATUS_SXS_TRANSACTION_CLOSURE_INCOMPLETE", 0xC0150024, -1);
    AddConstEx( id, "STATUS_SMI_PRIMITIVE_INSTALLER_FAILED", 0xC0150025, -1);
    AddConstEx( id, "STATUS_GENERIC_COMMAND_FAILED", 0xC0150026, -1);
    AddConstEx( id, "STATUS_SXS_FILE_HASH_MISSING", 0xC0150027, -1);
    AddConstEx( id, "STATUS_TRANSACTIONAL_CONFLICT", 0xC0190001, -1);
    AddConstEx( id, "STATUS_INVALID_TRANSACTION", 0xC0190002, -1);
    AddConstEx( id, "STATUS_TRANSACTION_NOT_ACTIVE", 0xC0190003, -1);
    AddConstEx( id, "STATUS_TM_INITIALIZATION_FAILED", 0xC0190004, -1);
    AddConstEx( id, "STATUS_RM_NOT_ACTIVE", 0xC0190005, -1);
    AddConstEx( id, "STATUS_RM_METADATA_CORRUPT", 0xC0190006, -1);
    AddConstEx( id, "STATUS_TRANSACTION_NOT_JOINED", 0xC0190007, -1);
    AddConstEx( id, "STATUS_DIRECTORY_NOT_RM", 0xC0190008, -1);
    AddConstEx( id, "STATUS_TRANSACTIONS_UNSUPPORTED_REMOTE", 0xC019000A, -1);
    AddConstEx( id, "STATUS_LOG_RESIZE_INVALID_SIZE", 0xC019000B, -1);
    AddConstEx( id, "STATUS_REMOTE_FILE_VERSION_MISMATCH", 0xC019000C, -1);
    AddConstEx( id, "STATUS_CRM_PROTOCOL_ALREADY_EXISTS", 0xC019000F, -1);
    AddConstEx( id, "STATUS_TRANSACTION_PROPAGATION_FAILED", 0xC0190010, -1);
    AddConstEx( id, "STATUS_CRM_PROTOCOL_NOT_FOUND", 0xC0190011, -1);
    AddConstEx( id, "STATUS_TRANSACTION_SUPERIOR_EXISTS", 0xC0190012, -1);
    AddConstEx( id, "STATUS_TRANSACTION_REQUEST_NOT_VALID", 0xC0190013, -1);
    AddConstEx( id, "STATUS_TRANSACTION_NOT_REQUESTED", 0xC0190014, -1);
    AddConstEx( id, "STATUS_TRANSACTION_ALREADY_ABORTED", 0xC0190015, -1);
    AddConstEx( id, "STATUS_TRANSACTION_ALREADY_COMMITTED", 0xC0190016, -1);
    AddConstEx( id, "STATUS_TRANSACTION_INVALID_MARSHALL_BUFFER", 0xC0190017, -1);
    AddConstEx( id, "STATUS_CURRENT_TRANSACTION_NOT_VALID", 0xC0190018, -1);
    AddConstEx( id, "STATUS_LOG_GROWTH_FAILED", 0xC0190019, -1);
    AddConstEx( id, "STATUS_OBJECT_NO_LONGER_EXISTS", 0xC0190021, -1);
    AddConstEx( id, "STATUS_STREAM_MINIVERSION_NOT_FOUND", 0xC0190022, -1);
    AddConstEx( id, "STATUS_STREAM_MINIVERSION_NOT_VALID", 0xC0190023, -1);
    AddConstEx( id, "STATUS_MINIVERSION_INACCESSIBLE_FROM_SPECIFIED_TRANSACTION", 0xC0190024, -1);
    AddConstEx( id, "STATUS_CANT_OPEN_MINIVERSION_WITH_MODIFY_INTENT", 0xC0190025, -1);
    AddConstEx( id, "STATUS_CANT_CREATE_MORE_STREAM_MINIVERSIONS", 0xC0190026, -1);
    AddConstEx( id, "STATUS_HANDLE_NO_LONGER_VALID", 0xC0190028, -1);
    AddConstEx( id, "STATUS_LOG_CORRUPTION_DETECTED", 0xC0190030, -1);
    AddConstEx( id, "STATUS_RM_DISCONNECTED", 0xC0190032, -1);
    AddConstEx( id, "STATUS_ENLISTMENT_NOT_SUPERIOR", 0xC0190033, -1);
    AddConstEx( id, "STATUS_FILE_IDENTITY_NOT_PERSISTENT", 0xC0190036, -1);
    AddConstEx( id, "STATUS_CANT_BREAK_TRANSACTIONAL_DEPENDENCY", 0xC0190037, -1);
    AddConstEx( id, "STATUS_CANT_CROSS_RM_BOUNDARY", 0xC0190038, -1);
    AddConstEx( id, "STATUS_TXF_DIR_NOT_EMPTY", 0xC0190039, -1);
    AddConstEx( id, "STATUS_INDOUBT_TRANSACTIONS_EXIST", 0xC019003A, -1);
    AddConstEx( id, "STATUS_TM_VOLATILE", 0xC019003B, -1);
    AddConstEx( id, "STATUS_ROLLBACK_TIMER_EXPIRED", 0xC019003C, -1);
    AddConstEx( id, "STATUS_TXF_ATTRIBUTE_CORRUPT", 0xC019003D, -1);
    AddConstEx( id, "STATUS_EFS_NOT_ALLOWED_IN_TRANSACTION", 0xC019003E, -1);
    AddConstEx( id, "STATUS_TRANSACTIONAL_OPEN_NOT_ALLOWED", 0xC019003F, -1);
    AddConstEx( id, "STATUS_TRANSACTED_MAPPING_UNSUPPORTED_REMOTE", 0xC0190040, -1);
    AddConstEx( id, "STATUS_TRANSACTION_REQUIRED_PROMOTION", 0xC0190043, -1);
    AddConstEx( id, "STATUS_CANNOT_EXECUTE_FILE_IN_TRANSACTION", 0xC0190044, -1);
    AddConstEx( id, "STATUS_TRANSACTIONS_NOT_FROZEN", 0xC0190045, -1);
    AddConstEx( id, "STATUS_TRANSACTION_FREEZE_IN_PROGRESS", 0xC0190046, -1);
    AddConstEx( id, "STATUS_NOT_SNAPSHOT_VOLUME", 0xC0190047, -1);
    AddConstEx( id, "STATUS_NO_SAVEPOINT_WITH_OPEN_FILES", 0xC0190048, -1);
    AddConstEx( id, "STATUS_SPARSE_NOT_ALLOWED_IN_TRANSACTION", 0xC0190049, -1);
    AddConstEx( id, "STATUS_TM_IDENTITY_MISMATCH", 0xC019004A, -1);
    AddConstEx( id, "STATUS_FLOATED_SECTION", 0xC019004B, -1);
    AddConstEx( id, "STATUS_CANNOT_ACCEPT_TRANSACTED_WORK", 0xC019004C, -1);
    AddConstEx( id, "STATUS_CANNOT_ABORT_TRANSACTIONS", 0xC019004D, -1);
    AddConstEx( id, "STATUS_TRANSACTION_NOT_FOUND", 0xC019004E, -1);
    AddConstEx( id, "STATUS_RESOURCEMANAGER_NOT_FOUND", 0xC019004F, -1);
    AddConstEx( id, "STATUS_ENLISTMENT_NOT_FOUND", 0xC0190050, -1);
    AddConstEx( id, "STATUS_TRANSACTIONMANAGER_NOT_FOUND", 0xC0190051, -1);
    AddConstEx( id, "STATUS_TRANSACTIONMANAGER_NOT_ONLINE", 0xC0190052, -1);
    AddConstEx( id, "STATUS_TRANSACTIONMANAGER_RECOVERY_NAME_COLLISION", 0xC0190053, -1);
    AddConstEx( id, "STATUS_TRANSACTION_NOT_ROOT", 0xC0190054, -1);
    AddConstEx( id, "STATUS_TRANSACTION_OBJECT_EXPIRED", 0xC0190055, -1);
    AddConstEx( id, "STATUS_COMPRESSION_NOT_ALLOWED_IN_TRANSACTION", 0xC0190056, -1);
    AddConstEx( id, "STATUS_TRANSACTION_RESPONSE_NOT_ENLISTED", 0xC0190057, -1);
    AddConstEx( id, "STATUS_TRANSACTION_RECORD_TOO_LONG", 0xC0190058, -1);
    AddConstEx( id, "STATUS_NO_LINK_TRACKING_IN_TRANSACTION", 0xC0190059, -1);
    AddConstEx( id, "STATUS_OPERATION_NOT_SUPPORTED_IN_TRANSACTION", 0xC019005A, -1);
    AddConstEx( id, "STATUS_TRANSACTION_INTEGRITY_VIOLATED", 0xC019005B, -1);
    AddConstEx( id, "STATUS_TRANSACTIONMANAGER_IDENTITY_MISMATCH", 0xC019005C, -1);
    AddConstEx( id, "STATUS_RM_CANNOT_BE_FROZEN_FOR_SNAPSHOT", 0xC019005D, -1);
    AddConstEx( id, "STATUS_TRANSACTION_MUST_WRITETHROUGH", 0xC019005E, -1);
    AddConstEx( id, "STATUS_TRANSACTION_NO_SUPERIOR", 0xC019005F, -1);
    AddConstEx( id, "STATUS_EXPIRED_HANDLE", 0xC0190060, -1);
    AddConstEx( id, "STATUS_TRANSACTION_NOT_ENLISTED", 0xC0190061, -1);
    AddConstEx( id, "STATUS_LOG_SECTOR_INVALID", 0xC01A0001, -1);
    AddConstEx( id, "STATUS_LOG_SECTOR_PARITY_INVALID", 0xC01A0002, -1);
    AddConstEx( id, "STATUS_LOG_SECTOR_REMAPPED", 0xC01A0003, -1);
    AddConstEx( id, "STATUS_LOG_BLOCK_INCOMPLETE", 0xC01A0004, -1);
    AddConstEx( id, "STATUS_LOG_INVALID_RANGE", 0xC01A0005, -1);
    AddConstEx( id, "STATUS_LOG_BLOCKS_EXHAUSTED", 0xC01A0006, -1);
    AddConstEx( id, "STATUS_LOG_READ_CONTEXT_INVALID", 0xC01A0007, -1);
    AddConstEx( id, "STATUS_LOG_RESTART_INVALID", 0xC01A0008, -1);
    AddConstEx( id, "STATUS_LOG_BLOCK_VERSION", 0xC01A0009, -1);
    AddConstEx( id, "STATUS_LOG_BLOCK_INVALID", 0xC01A000A, -1);
    AddConstEx( id, "STATUS_LOG_READ_MODE_INVALID", 0xC01A000B, -1);
    AddConstEx( id, "STATUS_LOG_METADATA_CORRUPT", 0xC01A000D, -1);
    AddConstEx( id, "STATUS_LOG_METADATA_INVALID", 0xC01A000E, -1);
    AddConstEx( id, "STATUS_LOG_METADATA_INCONSISTENT", 0xC01A000F, -1);
    AddConstEx( id, "STATUS_LOG_RESERVATION_INVALID", 0xC01A0010, -1);
    AddConstEx( id, "STATUS_LOG_CANT_DELETE", 0xC01A0011, -1);
    AddConstEx( id, "STATUS_LOG_CONTAINER_LIMIT_EXCEEDED", 0xC01A0012, -1);
    AddConstEx( id, "STATUS_LOG_START_OF_LOG", 0xC01A0013, -1);
    AddConstEx( id, "STATUS_LOG_POLICY_ALREADY_INSTALLED", 0xC01A0014, -1);
    AddConstEx( id, "STATUS_LOG_POLICY_NOT_INSTALLED", 0xC01A0015, -1);
    AddConstEx( id, "STATUS_LOG_POLICY_INVALID", 0xC01A0016, -1);
    AddConstEx( id, "STATUS_LOG_POLICY_CONFLICT", 0xC01A0017, -1);
    AddConstEx( id, "STATUS_LOG_PINNED_ARCHIVE_TAIL", 0xC01A0018, -1);
    AddConstEx( id, "STATUS_LOG_RECORD_NONEXISTENT", 0xC01A0019, -1);
    AddConstEx( id, "STATUS_LOG_RECORDS_RESERVED_INVALID", 0xC01A001A, -1);
    AddConstEx( id, "STATUS_LOG_SPACE_RESERVED_INVALID", 0xC01A001B, -1);
    AddConstEx( id, "STATUS_LOG_TAIL_INVALID", 0xC01A001C, -1);
    AddConstEx( id, "STATUS_LOG_FULL", 0xC01A001D, -1);
    AddConstEx( id, "STATUS_LOG_MULTIPLEXED", 0xC01A001E, -1);
    AddConstEx( id, "STATUS_LOG_DEDICATED", 0xC01A001F, -1);
    AddConstEx( id, "STATUS_LOG_ARCHIVE_NOT_IN_PROGRESS", 0xC01A0020, -1);
    AddConstEx( id, "STATUS_LOG_ARCHIVE_IN_PROGRESS", 0xC01A0021, -1);
    AddConstEx( id, "STATUS_LOG_EPHEMERAL", 0xC01A0022, -1);
    AddConstEx( id, "STATUS_LOG_NOT_ENOUGH_CONTAINERS", 0xC01A0023, -1);
    AddConstEx( id, "STATUS_LOG_CLIENT_ALREADY_REGISTERED", 0xC01A0024, -1);
    AddConstEx( id, "STATUS_LOG_CLIENT_NOT_REGISTERED", 0xC01A0025, -1);
    AddConstEx( id, "STATUS_LOG_FULL_HANDLER_IN_PROGRESS", 0xC01A0026, -1);
    AddConstEx( id, "STATUS_LOG_CONTAINER_READ_FAILED", 0xC01A0027, -1);
    AddConstEx( id, "STATUS_LOG_CONTAINER_WRITE_FAILED", 0xC01A0028, -1);
    AddConstEx( id, "STATUS_LOG_CONTAINER_OPEN_FAILED", 0xC01A0029, -1);
    AddConstEx( id, "STATUS_LOG_CONTAINER_STATE_INVALID", 0xC01A002A, -1);
    AddConstEx( id, "STATUS_LOG_STATE_INVALID", 0xC01A002B, -1);
    AddConstEx( id, "STATUS_LOG_PINNED", 0xC01A002C, -1);
    AddConstEx( id, "STATUS_LOG_METADATA_FLUSH_FAILED", 0xC01A002D, -1);
    AddConstEx( id, "STATUS_LOG_INCONSISTENT_SECURITY", 0xC01A002E, -1);
    AddConstEx( id, "STATUS_LOG_APPENDED_FLUSH_FAILED", 0xC01A002F, -1);
    AddConstEx( id, "STATUS_LOG_PINNED_RESERVATION", 0xC01A0030, -1);
    AddConstEx( id, "STATUS_VIDEO_HUNG_DISPLAY_DRIVER_THREAD", 0xC01B00EA, -1);
    AddConstEx( id, "STATUS_FLT_NO_HANDLER_DEFINED", 0xC01C0001, -1);
    AddConstEx( id, "STATUS_FLT_CONTEXT_ALREADY_DEFINED", 0xC01C0002, -1);
    AddConstEx( id, "STATUS_FLT_INVALID_ASYNCHRONOUS_REQUEST", 0xC01C0003, -1);
    AddConstEx( id, "STATUS_FLT_DISALLOW_FAST_IO", 0xC01C0004, -1);
    AddConstEx( id, "STATUS_FLT_INVALID_NAME_REQUEST", 0xC01C0005, -1);
    AddConstEx( id, "STATUS_FLT_NOT_SAFE_TO_POST_OPERATION", 0xC01C0006, -1);
    AddConstEx( id, "STATUS_FLT_NOT_INITIALIZED", 0xC01C0007, -1);
    AddConstEx( id, "STATUS_FLT_FILTER_NOT_READY", 0xC01C0008, -1);
    AddConstEx( id, "STATUS_FLT_POST_OPERATION_CLEANUP", 0xC01C0009, -1);
    AddConstEx( id, "STATUS_FLT_INTERNAL_ERROR", 0xC01C000A, -1);
    AddConstEx( id, "STATUS_FLT_DELETING_OBJECT", 0xC01C000B, -1);
    AddConstEx( id, "STATUS_FLT_MUST_BE_NONPAGED_POOL", 0xC01C000C, -1);
    AddConstEx( id, "STATUS_FLT_DUPLICATE_ENTRY", 0xC01C000D, -1);
    AddConstEx( id, "STATUS_FLT_CBDQ_DISABLED", 0xC01C000E, -1);
    AddConstEx( id, "STATUS_FLT_DO_NOT_ATTACH", 0xC01C000F, -1);
    AddConstEx( id, "STATUS_FLT_DO_NOT_DETACH", 0xC01C0010, -1);
    AddConstEx( id, "STATUS_FLT_INSTANCE_ALTITUDE_COLLISION", 0xC01C0011, -1);
    AddConstEx( id, "STATUS_FLT_INSTANCE_NAME_COLLISION", 0xC01C0012, -1);
    AddConstEx( id, "STATUS_FLT_FILTER_NOT_FOUND", 0xC01C0013, -1);
    AddConstEx( id, "STATUS_FLT_VOLUME_NOT_FOUND", 0xC01C0014, -1);
    AddConstEx( id, "STATUS_FLT_INSTANCE_NOT_FOUND", 0xC01C0015, -1);
    AddConstEx( id, "STATUS_FLT_CONTEXT_ALLOCATION_NOT_FOUND", 0xC01C0016, -1);
    AddConstEx( id, "STATUS_FLT_INVALID_CONTEXT_REGISTRATION", 0xC01C0017, -1);
    AddConstEx( id, "STATUS_FLT_NAME_CACHE_MISS", 0xC01C0018, -1);
    AddConstEx( id, "STATUS_FLT_NO_DEVICE_OBJECT", 0xC01C0019, -1);
    AddConstEx( id, "STATUS_FLT_VOLUME_ALREADY_MOUNTED", 0xC01C001A, -1);
    AddConstEx( id, "STATUS_FLT_ALREADY_ENLISTED", 0xC01C001B, -1);
    AddConstEx( id, "STATUS_FLT_CONTEXT_ALREADY_LINKED", 0xC01C001C, -1);
    AddConstEx( id, "STATUS_FLT_NO_WAITER_FOR_REPLY", 0xC01C0020, -1);
    AddConstEx( id, "STATUS_FLT_REGISTRATION_BUSY", 0xC01C0023, -1);
    AddConstEx( id, "STATUS_MONITOR_NO_DESCRIPTOR", 0xC01D0001, -1);
    AddConstEx( id, "STATUS_MONITOR_UNKNOWN_DESCRIPTOR_FORMAT", 0xC01D0002, -1);
    AddConstEx( id, "STATUS_MONITOR_INVALID_DESCRIPTOR_CHECKSUM", 0xC01D0003, -1);
    AddConstEx( id, "STATUS_MONITOR_INVALID_STANDARD_TIMING_BLOCK", 0xC01D0004, -1);
    AddConstEx( id, "STATUS_MONITOR_WMI_DATABLOCK_REGISTRATION_FAILED", 0xC01D0005, -1);
    AddConstEx( id, "STATUS_MONITOR_INVALID_SERIAL_NUMBER_MONDSC_BLOCK", 0xC01D0006, -1);
    AddConstEx( id, "STATUS_MONITOR_INVALID_USER_FRIENDLY_MONDSC_BLOCK", 0xC01D0007, -1);
    AddConstEx( id, "STATUS_MONITOR_NO_MORE_DESCRIPTOR_DATA", 0xC01D0008, -1);
    AddConstEx( id, "STATUS_MONITOR_INVALID_DETAILED_TIMING_BLOCK", 0xC01D0009, -1);
    AddConstEx( id, "STATUS_MONITOR_INVALID_MANUFACTURE_DATE", 0xC01D000A, -1);
    AddConstEx( id, "STATUS_GRAPHICS_NOT_EXCLUSIVE_MODE_OWNER", 0xC01E0000, -1);
    AddConstEx( id, "STATUS_GRAPHICS_INSUFFICIENT_DMA_BUFFER", 0xC01E0001, -1);
    AddConstEx( id, "STATUS_GRAPHICS_INVALID_DISPLAY_ADAPTER", 0xC01E0002, -1);
    AddConstEx( id, "STATUS_GRAPHICS_ADAPTER_WAS_RESET", 0xC01E0003, -1);
    AddConstEx( id, "STATUS_GRAPHICS_INVALID_DRIVER_MODEL", 0xC01E0004, -1);
    AddConstEx( id, "STATUS_GRAPHICS_PRESENT_MODE_CHANGED", 0xC01E0005, -1);
    AddConstEx( id, "STATUS_GRAPHICS_PRESENT_OCCLUDED", 0xC01E0006, -1);
    AddConstEx( id, "STATUS_GRAPHICS_PRESENT_DENIED", 0xC01E0007, -1);
    AddConstEx( id, "STATUS_GRAPHICS_CANNOTCOLORCONVERT", 0xC01E0008, -1);
    AddConstEx( id, "STATUS_GRAPHICS_DRIVER_MISMATCH", 0xC01E0009, -1);
    AddConstEx( id, "STATUS_GRAPHICS_PRESENT_REDIRECTION_DISABLED", 0xC01E000B, -1);
    AddConstEx( id, "STATUS_GRAPHICS_PRESENT_UNOCCLUDED", 0xC01E000C, -1);
    AddConstEx( id, "STATUS_GRAPHICS_WINDOWDC_NOT_AVAILABLE", 0xC01E000D, -1);
    AddConstEx( id, "STATUS_GRAPHICS_WINDOWLESS_PRESENT_DISABLED", 0xC01E000E, -1);
    AddConstEx( id, "STATUS_GRAPHICS_NO_VIDEO_MEMORY", 0xC01E0100, -1);
    AddConstEx( id, "STATUS_GRAPHICS_CANT_LOCK_MEMORY", 0xC01E0101, -1);
    AddConstEx( id, "STATUS_GRAPHICS_ALLOCATION_BUSY", 0xC01E0102, -1);
    AddConstEx( id, "STATUS_GRAPHICS_TOO_MANY_REFERENCES", 0xC01E0103, -1);
    AddConstEx( id, "STATUS_GRAPHICS_TRY_AGAIN_LATER", 0xC01E0104, -1);
    AddConstEx( id, "STATUS_GRAPHICS_TRY_AGAIN_NOW", 0xC01E0105, -1);
    AddConstEx( id, "STATUS_GRAPHICS_ALLOCATION_INVALID", 0xC01E0106, -1);
    AddConstEx( id, "STATUS_GRAPHICS_UNSWIZZLING_APERTURE_UNAVAILABLE", 0xC01E0107, -1);
    AddConstEx( id, "STATUS_GRAPHICS_UNSWIZZLING_APERTURE_UNSUPPORTED", 0xC01E0108, -1);
    AddConstEx( id, "STATUS_GRAPHICS_CANT_EVICT_PINNED_ALLOCATION", 0xC01E0109, -1);
    AddConstEx( id, "STATUS_GRAPHICS_INVALID_ALLOCATION_USAGE", 0xC01E0110, -1);
    AddConstEx( id, "STATUS_GRAPHICS_CANT_RENDER_LOCKED_ALLOCATION", 0xC01E0111, -1);
    AddConstEx( id, "STATUS_GRAPHICS_ALLOCATION_CLOSED", 0xC01E0112, -1);
    AddConstEx( id, "STATUS_GRAPHICS_INVALID_ALLOCATION_INSTANCE", 0xC01E0113, -1);
    AddConstEx( id, "STATUS_GRAPHICS_INVALID_ALLOCATION_HANDLE", 0xC01E0114, -1);
    AddConstEx( id, "STATUS_GRAPHICS_WRONG_ALLOCATION_DEVICE", 0xC01E0115, -1);
    AddConstEx( id, "STATUS_GRAPHICS_ALLOCATION_CONTENT_LOST", 0xC01E0116, -1);
    AddConstEx( id, "STATUS_GRAPHICS_GPU_EXCEPTION_ON_DEVICE", 0xC01E0200, -1);
    AddConstEx( id, "STATUS_GRAPHICS_INVALID_VIDPN_TOPOLOGY", 0xC01E0300, -1);
    AddConstEx( id, "STATUS_GRAPHICS_VIDPN_TOPOLOGY_NOT_SUPPORTED", 0xC01E0301, -1);
    AddConstEx( id, "STATUS_GRAPHICS_VIDPN_TOPOLOGY_CURRENTLY_NOT_SUPPORTED", 0xC01E0302, -1);
    AddConstEx( id, "STATUS_GRAPHICS_INVALID_VIDPN", 0xC01E0303, -1);
    AddConstEx( id, "STATUS_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE", 0xC01E0304, -1);
    AddConstEx( id, "STATUS_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET", 0xC01E0305, -1);
    AddConstEx( id, "STATUS_GRAPHICS_VIDPN_MODALITY_NOT_SUPPORTED", 0xC01E0306, -1);
    AddConstEx( id, "STATUS_GRAPHICS_INVALID_VIDPN_SOURCEMODESET", 0xC01E0308, -1);
    AddConstEx( id, "STATUS_GRAPHICS_INVALID_VIDPN_TARGETMODESET", 0xC01E0309, -1);
    AddConstEx( id, "STATUS_GRAPHICS_INVALID_FREQUENCY", 0xC01E030A, -1);
    AddConstEx( id, "STATUS_GRAPHICS_INVALID_ACTIVE_REGION", 0xC01E030B, -1);
    AddConstEx( id, "STATUS_GRAPHICS_INVALID_TOTAL_REGION", 0xC01E030C, -1);
    AddConstEx( id, "STATUS_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE_MODE", 0xC01E0310, -1);
    AddConstEx( id, "STATUS_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET_MODE", 0xC01E0311, -1);
    AddConstEx( id, "STATUS_GRAPHICS_PINNED_MODE_MUST_REMAIN_IN_SET", 0xC01E0312, -1);
    AddConstEx( id, "STATUS_GRAPHICS_PATH_ALREADY_IN_TOPOLOGY", 0xC01E0313, -1);
    AddConstEx( id, "STATUS_GRAPHICS_MODE_ALREADY_IN_MODESET", 0xC01E0314, -1);
    AddConstEx( id, "STATUS_GRAPHICS_INVALID_VIDEOPRESENTSOURCESET", 0xC01E0315, -1);
    AddConstEx( id, "STATUS_GRAPHICS_INVALID_VIDEOPRESENTTARGETSET", 0xC01E0316, -1);
    AddConstEx( id, "STATUS_GRAPHICS_SOURCE_ALREADY_IN_SET", 0xC01E0317, -1);
    AddConstEx( id, "STATUS_GRAPHICS_TARGET_ALREADY_IN_SET", 0xC01E0318, -1);
    AddConstEx( id, "STATUS_GRAPHICS_INVALID_VIDPN_PRESENT_PATH", 0xC01E0319, -1);
    AddConstEx( id, "STATUS_GRAPHICS_NO_RECOMMENDED_VIDPN_TOPOLOGY", 0xC01E031A, -1);
    AddConstEx( id, "STATUS_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGESET", 0xC01E031B, -1);
    AddConstEx( id, "STATUS_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE", 0xC01E031C, -1);
    AddConstEx( id, "STATUS_GRAPHICS_FREQUENCYRANGE_NOT_IN_SET", 0xC01E031D, -1);
    AddConstEx( id, "STATUS_GRAPHICS_FREQUENCYRANGE_ALREADY_IN_SET", 0xC01E031F, -1);
    AddConstEx( id, "STATUS_GRAPHICS_STALE_MODESET", 0xC01E0320, -1);
    AddConstEx( id, "STATUS_GRAPHICS_INVALID_MONITOR_SOURCEMODESET", 0xC01E0321, -1);
    AddConstEx( id, "STATUS_GRAPHICS_INVALID_MONITOR_SOURCE_MODE", 0xC01E0322, -1);
    AddConstEx( id, "STATUS_GRAPHICS_NO_RECOMMENDED_FUNCTIONAL_VIDPN", 0xC01E0323, -1);
    AddConstEx( id, "STATUS_GRAPHICS_MODE_ID_MUST_BE_UNIQUE", 0xC01E0324, -1);
    AddConstEx( id, "STATUS_GRAPHICS_EMPTY_ADAPTER_MONITOR_MODE_SUPPORT_INTERSECTION", 0xC01E0325, -1);
    AddConstEx( id, "STATUS_GRAPHICS_VIDEO_PRESENT_TARGETS_LESS_THAN_SOURCES", 0xC01E0326, -1);
    AddConstEx( id, "STATUS_GRAPHICS_PATH_NOT_IN_TOPOLOGY", 0xC01E0327, -1);
    AddConstEx( id, "STATUS_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_SOURCE", 0xC01E0328, -1);
    AddConstEx( id, "STATUS_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_TARGET", 0xC01E0329, -1);
    AddConstEx( id, "STATUS_GRAPHICS_INVALID_MONITORDESCRIPTORSET", 0xC01E032A, -1);
    AddConstEx( id, "STATUS_GRAPHICS_INVALID_MONITORDESCRIPTOR", 0xC01E032B, -1);
    AddConstEx( id, "STATUS_GRAPHICS_MONITORDESCRIPTOR_NOT_IN_SET", 0xC01E032C, -1);
    AddConstEx( id, "STATUS_GRAPHICS_MONITORDESCRIPTOR_ALREADY_IN_SET", 0xC01E032D, -1);
    AddConstEx( id, "STATUS_GRAPHICS_MONITORDESCRIPTOR_ID_MUST_BE_UNIQUE", 0xC01E032E, -1);
    AddConstEx( id, "STATUS_GRAPHICS_INVALID_VIDPN_TARGET_SUBSET_TYPE", 0xC01E032F, -1);
    AddConstEx( id, "STATUS_GRAPHICS_RESOURCES_NOT_RELATED", 0xC01E0330, -1);
    AddConstEx( id, "STATUS_GRAPHICS_SOURCE_ID_MUST_BE_UNIQUE", 0xC01E0331, -1);
    AddConstEx( id, "STATUS_GRAPHICS_TARGET_ID_MUST_BE_UNIQUE", 0xC01E0332, -1);
    AddConstEx( id, "STATUS_GRAPHICS_NO_AVAILABLE_VIDPN_TARGET", 0xC01E0333, -1);
    AddConstEx( id, "STATUS_GRAPHICS_MONITOR_COULD_NOT_BE_ASSOCIATED_WITH_ADAPTER", 0xC01E0334, -1);
    AddConstEx( id, "STATUS_GRAPHICS_NO_VIDPNMGR", 0xC01E0335, -1);
    AddConstEx( id, "STATUS_GRAPHICS_NO_ACTIVE_VIDPN", 0xC01E0336, -1);
    AddConstEx( id, "STATUS_GRAPHICS_STALE_VIDPN_TOPOLOGY", 0xC01E0337, -1);
    AddConstEx( id, "STATUS_GRAPHICS_MONITOR_NOT_CONNECTED", 0xC01E0338, -1);
    AddConstEx( id, "STATUS_GRAPHICS_SOURCE_NOT_IN_TOPOLOGY", 0xC01E0339, -1);
    AddConstEx( id, "STATUS_GRAPHICS_INVALID_PRIMARYSURFACE_SIZE", 0xC01E033A, -1);
    AddConstEx( id, "STATUS_GRAPHICS_INVALID_VISIBLEREGION_SIZE", 0xC01E033B, -1);
    AddConstEx( id, "STATUS_GRAPHICS_INVALID_STRIDE", 0xC01E033C, -1);
    AddConstEx( id, "STATUS_GRAPHICS_INVALID_PIXELFORMAT", 0xC01E033D, -1);
    AddConstEx( id, "STATUS_GRAPHICS_INVALID_COLORBASIS", 0xC01E033E, -1);
    AddConstEx( id, "STATUS_GRAPHICS_INVALID_PIXELVALUEACCESSMODE", 0xC01E033F, -1);
    AddConstEx( id, "STATUS_GRAPHICS_TARGET_NOT_IN_TOPOLOGY", 0xC01E0340, -1);
    AddConstEx( id, "STATUS_GRAPHICS_NO_DISPLAY_MODE_MANAGEMENT_SUPPORT", 0xC01E0341, -1);
    AddConstEx( id, "STATUS_GRAPHICS_VIDPN_SOURCE_IN_USE", 0xC01E0342, -1);
    AddConstEx( id, "STATUS_GRAPHICS_CANT_ACCESS_ACTIVE_VIDPN", 0xC01E0343, -1);
    AddConstEx( id, "STATUS_GRAPHICS_INVALID_PATH_IMPORTANCE_ORDINAL", 0xC01E0344, -1);
    AddConstEx( id, "STATUS_GRAPHICS_INVALID_PATH_CONTENT_GEOMETRY_TRANSFORMATION", 0xC01E0345, -1);
    AddConstEx( id, "STATUS_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_SUPPORTED", 0xC01E0346, -1);
    AddConstEx( id, "STATUS_GRAPHICS_INVALID_GAMMA_RAMP", 0xC01E0347, -1);
    AddConstEx( id, "STATUS_GRAPHICS_GAMMA_RAMP_NOT_SUPPORTED", 0xC01E0348, -1);
    AddConstEx( id, "STATUS_GRAPHICS_MULTISAMPLING_NOT_SUPPORTED", 0xC01E0349, -1);
    AddConstEx( id, "STATUS_GRAPHICS_MODE_NOT_IN_MODESET", 0xC01E034A, -1);
    AddConstEx( id, "STATUS_GRAPHICS_INVALID_VIDPN_TOPOLOGY_RECOMMENDATION_REASON", 0xC01E034D, -1);
    AddConstEx( id, "STATUS_GRAPHICS_INVALID_PATH_CONTENT_TYPE", 0xC01E034E, -1);
    AddConstEx( id, "STATUS_GRAPHICS_INVALID_COPYPROTECTION_TYPE", 0xC01E034F, -1);
    AddConstEx( id, "STATUS_GRAPHICS_UNASSIGNED_MODESET_ALREADY_EXISTS", 0xC01E0350, -1);
    AddConstEx( id, "STATUS_GRAPHICS_INVALID_SCANLINE_ORDERING", 0xC01E0352, -1);
    AddConstEx( id, "STATUS_GRAPHICS_TOPOLOGY_CHANGES_NOT_ALLOWED", 0xC01E0353, -1);
    AddConstEx( id, "STATUS_GRAPHICS_NO_AVAILABLE_IMPORTANCE_ORDINALS", 0xC01E0354, -1);
    AddConstEx( id, "STATUS_GRAPHICS_INCOMPATIBLE_PRIVATE_FORMAT", 0xC01E0355, -1);
    AddConstEx( id, "STATUS_GRAPHICS_INVALID_MODE_PRUNING_ALGORITHM", 0xC01E0356, -1);
    AddConstEx( id, "STATUS_GRAPHICS_INVALID_MONITOR_CAPABILITY_ORIGIN", 0xC01E0357, -1);
    AddConstEx( id, "STATUS_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE_CONSTRAINT", 0xC01E0358, -1);
    AddConstEx( id, "STATUS_GRAPHICS_MAX_NUM_PATHS_REACHED", 0xC01E0359, -1);
    AddConstEx( id, "STATUS_GRAPHICS_CANCEL_VIDPN_TOPOLOGY_AUGMENTATION", 0xC01E035A, -1);
    AddConstEx( id, "STATUS_GRAPHICS_INVALID_CLIENT_TYPE", 0xC01E035B, -1);
    AddConstEx( id, "STATUS_GRAPHICS_CLIENTVIDPN_NOT_SET", 0xC01E035C, -1);
    AddConstEx( id, "STATUS_GRAPHICS_SPECIFIED_CHILD_ALREADY_CONNECTED", 0xC01E0400, -1);
    AddConstEx( id, "STATUS_GRAPHICS_CHILD_DESCRIPTOR_NOT_SUPPORTED", 0xC01E0401, -1);
    AddConstEx( id, "STATUS_GRAPHICS_NOT_A_LINKED_ADAPTER", 0xC01E0430, -1);
    AddConstEx( id, "STATUS_GRAPHICS_LEADLINK_NOT_ENUMERATED", 0xC01E0431, -1);
    AddConstEx( id, "STATUS_GRAPHICS_CHAINLINKS_NOT_ENUMERATED", 0xC01E0432, -1);
    AddConstEx( id, "STATUS_GRAPHICS_ADAPTER_CHAIN_NOT_READY", 0xC01E0433, -1);
    AddConstEx( id, "STATUS_GRAPHICS_CHAINLINKS_NOT_STARTED", 0xC01E0434, -1);
    AddConstEx( id, "STATUS_GRAPHICS_CHAINLINKS_NOT_POWERED_ON", 0xC01E0435, -1);
    AddConstEx( id, "STATUS_GRAPHICS_INCONSISTENT_DEVICE_LINK_STATE", 0xC01E0436, -1);
    AddConstEx( id, "STATUS_GRAPHICS_NOT_POST_DEVICE_DRIVER", 0xC01E0438, -1);
    AddConstEx( id, "STATUS_GRAPHICS_ADAPTER_ACCESS_NOT_EXCLUDED", 0xC01E043B, -1);
    AddConstEx( id, "STATUS_GRAPHICS_OPM_NOT_SUPPORTED", 0xC01E0500, -1);
    AddConstEx( id, "STATUS_GRAPHICS_COPP_NOT_SUPPORTED", 0xC01E0501, -1);
    AddConstEx( id, "STATUS_GRAPHICS_UAB_NOT_SUPPORTED", 0xC01E0502, -1);
    AddConstEx( id, "STATUS_GRAPHICS_OPM_INVALID_ENCRYPTED_PARAMETERS", 0xC01E0503, -1);
    AddConstEx( id, "STATUS_GRAPHICS_OPM_NO_PROTECTED_OUTPUTS_EXIST", 0xC01E0505, -1);
    AddConstEx( id, "STATUS_GRAPHICS_OPM_INTERNAL_ERROR", 0xC01E050B, -1);
    AddConstEx( id, "STATUS_GRAPHICS_OPM_INVALID_HANDLE", 0xC01E050C, -1);
    AddConstEx( id, "STATUS_GRAPHICS_PVP_INVALID_CERTIFICATE_LENGTH", 0xC01E050E, -1);
    AddConstEx( id, "STATUS_GRAPHICS_OPM_SPANNING_MODE_ENABLED", 0xC01E050F, -1);
    AddConstEx( id, "STATUS_GRAPHICS_OPM_THEATER_MODE_ENABLED", 0xC01E0510, -1);
    AddConstEx( id, "STATUS_GRAPHICS_PVP_HFS_FAILED", 0xC01E0511, -1);
    AddConstEx( id, "STATUS_GRAPHICS_OPM_INVALID_SRM", 0xC01E0512, -1);
    AddConstEx( id, "STATUS_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_HDCP", 0xC01E0513, -1);
    AddConstEx( id, "STATUS_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_ACP", 0xC01E0514, -1);
    AddConstEx( id, "STATUS_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_CGMSA", 0xC01E0515, -1);
    AddConstEx( id, "STATUS_GRAPHICS_OPM_HDCP_SRM_NEVER_SET", 0xC01E0516, -1);
    AddConstEx( id, "STATUS_GRAPHICS_OPM_RESOLUTION_TOO_HIGH", 0xC01E0517, -1);
    AddConstEx( id, "STATUS_GRAPHICS_OPM_ALL_HDCP_HARDWARE_ALREADY_IN_USE", 0xC01E0518, -1);
    AddConstEx( id, "STATUS_GRAPHICS_OPM_PROTECTED_OUTPUT_NO_LONGER_EXISTS", 0xC01E051A, -1);
    AddConstEx( id, "STATUS_GRAPHICS_OPM_PROTECTED_OUTPUT_DOES_NOT_HAVE_COPP_SEMANTICS", 0xC01E051C, -1);
    AddConstEx( id, "STATUS_GRAPHICS_OPM_INVALID_INFORMATION_REQUEST", 0xC01E051D, -1);
    AddConstEx( id, "STATUS_GRAPHICS_OPM_DRIVER_INTERNAL_ERROR", 0xC01E051E, -1);
    AddConstEx( id, "STATUS_GRAPHICS_OPM_PROTECTED_OUTPUT_DOES_NOT_HAVE_OPM_SEMANTICS", 0xC01E051F, -1);
    AddConstEx( id, "STATUS_GRAPHICS_OPM_SIGNALING_NOT_SUPPORTED", 0xC01E0520, -1);
    AddConstEx( id, "STATUS_GRAPHICS_OPM_INVALID_CONFIGURATION_REQUEST", 0xC01E0521, -1);
    AddConstEx( id, "STATUS_GRAPHICS_I2C_NOT_SUPPORTED", 0xC01E0580, -1);
    AddConstEx( id, "STATUS_GRAPHICS_I2C_DEVICE_DOES_NOT_EXIST", 0xC01E0581, -1);
    AddConstEx( id, "STATUS_GRAPHICS_I2C_ERROR_TRANSMITTING_DATA", 0xC01E0582, -1);
    AddConstEx( id, "STATUS_GRAPHICS_I2C_ERROR_RECEIVING_DATA", 0xC01E0583, -1);
    AddConstEx( id, "STATUS_GRAPHICS_DDCCI_VCP_NOT_SUPPORTED", 0xC01E0584, -1);
    AddConstEx( id, "STATUS_GRAPHICS_DDCCI_INVALID_DATA", 0xC01E0585, -1);
    AddConstEx( id, "STATUS_GRAPHICS_DDCCI_MONITOR_RETURNED_INVALID_TIMING_STATUS_BYTE", 0xC01E0586, -1);
    AddConstEx( id, "STATUS_GRAPHICS_DDCCI_INVALID_CAPABILITIES_STRING", 0xC01E0587, -1);
    AddConstEx( id, "STATUS_GRAPHICS_MCA_INTERNAL_ERROR", 0xC01E0588, -1);
    AddConstEx( id, "STATUS_GRAPHICS_DDCCI_INVALID_MESSAGE_COMMAND", 0xC01E0589, -1);
    AddConstEx( id, "STATUS_GRAPHICS_DDCCI_INVALID_MESSAGE_LENGTH", 0xC01E058A, -1);
    AddConstEx( id, "STATUS_GRAPHICS_DDCCI_INVALID_MESSAGE_CHECKSUM", 0xC01E058B, -1);
    AddConstEx( id, "STATUS_GRAPHICS_INVALID_PHYSICAL_MONITOR_HANDLE", 0xC01E058C, -1);
    AddConstEx( id, "STATUS_GRAPHICS_MONITOR_NO_LONGER_EXISTS", 0xC01E058D, -1);
    AddConstEx( id, "STATUS_GRAPHICS_ONLY_CONSOLE_SESSION_SUPPORTED", 0xC01E05E0, -1);
    AddConstEx( id, "STATUS_GRAPHICS_NO_DISPLAY_DEVICE_CORRESPONDS_TO_NAME", 0xC01E05E1, -1);
    AddConstEx( id, "STATUS_GRAPHICS_DISPLAY_DEVICE_NOT_ATTACHED_TO_DESKTOP", 0xC01E05E2, -1);
    AddConstEx( id, "STATUS_GRAPHICS_MIRRORING_DEVICES_NOT_SUPPORTED", 0xC01E05E3, -1);
    AddConstEx( id, "STATUS_GRAPHICS_INVALID_POINTER", 0xC01E05E4, -1);
    AddConstEx( id, "STATUS_GRAPHICS_NO_MONITORS_CORRESPOND_TO_DISPLAY_DEVICE", 0xC01E05E5, -1);
    AddConstEx( id, "STATUS_GRAPHICS_PARAMETER_ARRAY_TOO_SMALL", 0xC01E05E6, -1);
    AddConstEx( id, "STATUS_GRAPHICS_INTERNAL_ERROR", 0xC01E05E7, -1);
    AddConstEx( id, "STATUS_GRAPHICS_SESSION_TYPE_CHANGE_IN_PROGRESS", 0xC01E05E8, -1);
    AddConstEx( id, "STATUS_FVE_LOCKED_VOLUME", 0xC0210000, -1);
    AddConstEx( id, "STATUS_FVE_NOT_ENCRYPTED", 0xC0210001, -1);
    AddConstEx( id, "STATUS_FVE_BAD_INFORMATION", 0xC0210002, -1);
    AddConstEx( id, "STATUS_FVE_TOO_SMALL", 0xC0210003, -1);
    AddConstEx( id, "STATUS_FVE_FAILED_WRONG_FS", 0xC0210004, -1);
    AddConstEx( id, "STATUS_FVE_BAD_PARTITION_SIZE", 0xC0210005, -1);
    AddConstEx( id, "STATUS_FVE_FS_NOT_EXTENDED", 0xC0210006, -1);
    AddConstEx( id, "STATUS_FVE_FS_MOUNTED", 0xC0210007, -1);
    AddConstEx( id, "STATUS_FVE_NO_LICENSE", 0xC0210008, -1);
    AddConstEx( id, "STATUS_FVE_ACTION_NOT_ALLOWED", 0xC0210009, -1);
    AddConstEx( id, "STATUS_FVE_BAD_DATA", 0xC021000A, -1);
    AddConstEx( id, "STATUS_FVE_VOLUME_NOT_BOUND", 0xC021000B, -1);
    AddConstEx( id, "STATUS_FVE_NOT_DATA_VOLUME", 0xC021000C, -1);
    AddConstEx( id, "STATUS_FVE_CONV_READ_ERROR", 0xC021000D, -1);
    AddConstEx( id, "STATUS_FVE_CONV_WRITE_ERROR", 0xC021000E, -1);
    AddConstEx( id, "STATUS_FVE_OVERLAPPED_UPDATE", 0xC021000F, -1);
    AddConstEx( id, "STATUS_FVE_FAILED_SECTOR_SIZE", 0xC0210010, -1);
    AddConstEx( id, "STATUS_FVE_FAILED_AUTHENTICATION", 0xC0210011, -1);
    AddConstEx( id, "STATUS_FVE_NOT_OS_VOLUME", 0xC0210012, -1);
    AddConstEx( id, "STATUS_FVE_KEYFILE_NOT_FOUND", 0xC0210013, -1);
    AddConstEx( id, "STATUS_FVE_KEYFILE_INVALID", 0xC0210014, -1);
    AddConstEx( id, "STATUS_FVE_KEYFILE_NO_VMK", 0xC0210015, -1);
    AddConstEx( id, "STATUS_FVE_TPM_DISABLED", 0xC0210016, -1);
    AddConstEx( id, "STATUS_FVE_TPM_SRK_AUTH_NOT_ZERO", 0xC0210017, -1);
    AddConstEx( id, "STATUS_FVE_TPM_INVALID_PCR", 0xC0210018, -1);
    AddConstEx( id, "STATUS_FVE_TPM_NO_VMK", 0xC0210019, -1);
    AddConstEx( id, "STATUS_FVE_PIN_INVALID", 0xC021001A, -1);
    AddConstEx( id, "STATUS_FVE_AUTH_INVALID_APPLICATION", 0xC021001B, -1);
    AddConstEx( id, "STATUS_FVE_AUTH_INVALID_CONFIG", 0xC021001C, -1);
    AddConstEx( id, "STATUS_FVE_DEBUGGER_ENABLED", 0xC021001D, -1);
    AddConstEx( id, "STATUS_FVE_DRY_RUN_FAILED", 0xC021001E, -1);
    AddConstEx( id, "STATUS_FVE_BAD_METADATA_POINTER", 0xC021001F, -1);
    AddConstEx( id, "STATUS_FVE_OLD_METADATA_COPY", 0xC0210020, -1);
    AddConstEx( id, "STATUS_FVE_REBOOT_REQUIRED", 0xC0210021, -1);
    AddConstEx( id, "STATUS_FVE_RAW_ACCESS", 0xC0210022, -1);
    AddConstEx( id, "STATUS_FVE_RAW_BLOCKED", 0xC0210023, -1);
    AddConstEx( id, "STATUS_FVE_NO_AUTOUNLOCK_MASTER_KEY", 0xC0210024, -1);
    AddConstEx( id, "STATUS_FVE_MOR_FAILED", 0xC0210025, -1);
    AddConstEx( id, "STATUS_FVE_NO_FEATURE_LICENSE", 0xC0210026, -1);
    AddConstEx( id, "STATUS_FVE_POLICY_USER_DISABLE_RDV_NOT_ALLOWED", 0xC0210027, -1);
    AddConstEx( id, "STATUS_FVE_CONV_RECOVERY_FAILED", 0xC0210028, -1);
    AddConstEx( id, "STATUS_FVE_VIRTUALIZED_SPACE_TOO_BIG", 0xC0210029, -1);
    AddConstEx( id, "STATUS_FVE_INVALID_DATUM_TYPE", 0xC021002A, -1);
    AddConstEx( id, "STATUS_FVE_VOLUME_TOO_SMALL", 0xC0210030, -1);
    AddConstEx( id, "STATUS_FVE_ENH_PIN_INVALID", 0xC0210031, -1);
    AddConstEx( id, "STATUS_FVE_FULL_ENCRYPTION_NOT_ALLOWED_ON_TP_STORAGE", 0xC0210032, -1);
    AddConstEx( id, "STATUS_FVE_WIPE_NOT_ALLOWED_ON_TP_STORAGE", 0xC0210033, -1);
    AddConstEx( id, "STATUS_FVE_NOT_ALLOWED_ON_CSV_STACK", 0xC0210034, -1);
    AddConstEx( id, "STATUS_FVE_NOT_ALLOWED_ON_CLUSTER", 0xC0210035, -1);
    AddConstEx( id, "STATUS_FVE_NOT_ALLOWED_TO_UPGRADE_WHILE_CONVERTING", 0xC0210036, -1);
    AddConstEx( id, "STATUS_FVE_WIPE_CANCEL_NOT_APPLICABLE", 0xC0210037, -1);
    AddConstEx( id, "STATUS_FVE_EDRIVE_DRY_RUN_FAILED", 0xC0210038, -1);
    AddConstEx( id, "STATUS_FVE_SECUREBOOT_DISABLED", 0xC0210039, -1);
    AddConstEx( id, "STATUS_FVE_SECUREBOOT_CONFIG_CHANGE", 0xC021003A, -1);
    AddConstEx( id, "STATUS_FVE_DEVICE_LOCKEDOUT", 0xC021003B, -1);
    AddConstEx( id, "STATUS_FVE_VOLUME_EXTEND_PREVENTS_EOW_DECRYPT", 0xC021003C, -1);
    AddConstEx( id, "STATUS_FVE_NOT_DE_VOLUME", 0xC021003D, -1);
    AddConstEx( id, "STATUS_FVE_PROTECTION_DISABLED", 0xC021003E, -1);
    AddConstEx( id, "STATUS_FVE_PROTECTION_CANNOT_BE_DISABLED", 0xC021003F, -1);
    AddConstEx( id, "STATUS_FWP_CALLOUT_NOT_FOUND", 0xC0220001, -1);
    AddConstEx( id, "STATUS_FWP_CONDITION_NOT_FOUND", 0xC0220002, -1);
    AddConstEx( id, "STATUS_FWP_FILTER_NOT_FOUND", 0xC0220003, -1);
    AddConstEx( id, "STATUS_FWP_LAYER_NOT_FOUND", 0xC0220004, -1);
    AddConstEx( id, "STATUS_FWP_PROVIDER_NOT_FOUND", 0xC0220005, -1);
    AddConstEx( id, "STATUS_FWP_PROVIDER_CONTEXT_NOT_FOUND", 0xC0220006, -1);
    AddConstEx( id, "STATUS_FWP_SUBLAYER_NOT_FOUND", 0xC0220007, -1);
    AddConstEx( id, "STATUS_FWP_NOT_FOUND", 0xC0220008, -1);
    AddConstEx( id, "STATUS_FWP_ALREADY_EXISTS", 0xC0220009, -1);
    AddConstEx( id, "STATUS_FWP_IN_USE", 0xC022000A, -1);
    AddConstEx( id, "STATUS_FWP_DYNAMIC_SESSION_IN_PROGRESS", 0xC022000B, -1);
    AddConstEx( id, "STATUS_FWP_WRONG_SESSION", 0xC022000C, -1);
    AddConstEx( id, "STATUS_FWP_NO_TXN_IN_PROGRESS", 0xC022000D, -1);
    AddConstEx( id, "STATUS_FWP_TXN_IN_PROGRESS", 0xC022000E, -1);
    AddConstEx( id, "STATUS_FWP_TXN_ABORTED", 0xC022000F, -1);
    AddConstEx( id, "STATUS_FWP_SESSION_ABORTED", 0xC0220010, -1);
    AddConstEx( id, "STATUS_FWP_INCOMPATIBLE_TXN", 0xC0220011, -1);
    AddConstEx( id, "STATUS_FWP_TIMEOUT", 0xC0220012, -1);
    AddConstEx( id, "STATUS_FWP_NET_EVENTS_DISABLED", 0xC0220013, -1);
    AddConstEx( id, "STATUS_FWP_INCOMPATIBLE_LAYER", 0xC0220014, -1);
    AddConstEx( id, "STATUS_FWP_KM_CLIENTS_ONLY", 0xC0220015, -1);
    AddConstEx( id, "STATUS_FWP_LIFETIME_MISMATCH", 0xC0220016, -1);
    AddConstEx( id, "STATUS_FWP_BUILTIN_OBJECT", 0xC0220017, -1);
    AddConstEx( id, "STATUS_FWP_TOO_MANY_CALLOUTS", 0xC0220018, -1);
    AddConstEx( id, "STATUS_FWP_NOTIFICATION_DROPPED", 0xC0220019, -1);
    AddConstEx( id, "STATUS_FWP_TRAFFIC_MISMATCH", 0xC022001A, -1);
    AddConstEx( id, "STATUS_FWP_INCOMPATIBLE_SA_STATE", 0xC022001B, -1);
    AddConstEx( id, "STATUS_FWP_NULL_POINTER", 0xC022001C, -1);
    AddConstEx( id, "STATUS_FWP_INVALID_ENUMERATOR", 0xC022001D, -1);
    AddConstEx( id, "STATUS_FWP_INVALID_FLAGS", 0xC022001E, -1);
    AddConstEx( id, "STATUS_FWP_INVALID_NET_MASK", 0xC022001F, -1);
    AddConstEx( id, "STATUS_FWP_INVALID_RANGE", 0xC0220020, -1);
    AddConstEx( id, "STATUS_FWP_INVALID_INTERVAL", 0xC0220021, -1);
    AddConstEx( id, "STATUS_FWP_ZERO_LENGTH_ARRAY", 0xC0220022, -1);
    AddConstEx( id, "STATUS_FWP_NULL_DISPLAY_NAME", 0xC0220023, -1);
    AddConstEx( id, "STATUS_FWP_INVALID_ACTION_TYPE", 0xC0220024, -1);
    AddConstEx( id, "STATUS_FWP_INVALID_WEIGHT", 0xC0220025, -1);
    AddConstEx( id, "STATUS_FWP_MATCH_TYPE_MISMATCH", 0xC0220026, -1);
    AddConstEx( id, "STATUS_FWP_TYPE_MISMATCH", 0xC0220027, -1);
    AddConstEx( id, "STATUS_FWP_OUT_OF_BOUNDS", 0xC0220028, -1);
    AddConstEx( id, "STATUS_FWP_RESERVED", 0xC0220029, -1);
    AddConstEx( id, "STATUS_FWP_DUPLICATE_CONDITION", 0xC022002A, -1);
    AddConstEx( id, "STATUS_FWP_DUPLICATE_KEYMOD", 0xC022002B, -1);
    AddConstEx( id, "STATUS_FWP_ACTION_INCOMPATIBLE_WITH_LAYER", 0xC022002C, -1);
    AddConstEx( id, "STATUS_FWP_ACTION_INCOMPATIBLE_WITH_SUBLAYER", 0xC022002D, -1);
    AddConstEx( id, "STATUS_FWP_CONTEXT_INCOMPATIBLE_WITH_LAYER", 0xC022002E, -1);
    AddConstEx( id, "STATUS_FWP_CONTEXT_INCOMPATIBLE_WITH_CALLOUT", 0xC022002F, -1);
    AddConstEx( id, "STATUS_FWP_INCOMPATIBLE_AUTH_METHOD", 0xC0220030, -1);
    AddConstEx( id, "STATUS_FWP_INCOMPATIBLE_DH_GROUP", 0xC0220031, -1);
    AddConstEx( id, "STATUS_FWP_EM_NOT_SUPPORTED", 0xC0220032, -1);
    AddConstEx( id, "STATUS_FWP_NEVER_MATCH", 0xC0220033, -1);
    AddConstEx( id, "STATUS_FWP_PROVIDER_CONTEXT_MISMATCH", 0xC0220034, -1);
    AddConstEx( id, "STATUS_FWP_INVALID_PARAMETER", 0xC0220035, -1);
    AddConstEx( id, "STATUS_FWP_TOO_MANY_SUBLAYERS", 0xC0220036, -1);
    AddConstEx( id, "STATUS_FWP_CALLOUT_NOTIFICATION_FAILED", 0xC0220037, -1);
    AddConstEx( id, "STATUS_FWP_INVALID_AUTH_TRANSFORM", 0xC0220038, -1);
    AddConstEx( id, "STATUS_FWP_INVALID_CIPHER_TRANSFORM", 0xC0220039, -1);
    AddConstEx( id, "STATUS_FWP_INCOMPATIBLE_CIPHER_TRANSFORM", 0xC022003A, -1);
    AddConstEx( id, "STATUS_FWP_INVALID_TRANSFORM_COMBINATION", 0xC022003B, -1);
    AddConstEx( id, "STATUS_FWP_DUPLICATE_AUTH_METHOD", 0xC022003C, -1);
    AddConstEx( id, "STATUS_FWP_INVALID_TUNNEL_ENDPOINT", 0xC022003D, -1);
    AddConstEx( id, "STATUS_FWP_L2_DRIVER_NOT_READY", 0xC022003E, -1);
    AddConstEx( id, "STATUS_FWP_KEY_DICTATOR_ALREADY_REGISTERED", 0xC022003F, -1);
    AddConstEx( id, "STATUS_FWP_KEY_DICTATION_INVALID_KEYING_MATERIAL", 0xC0220040, -1);
    AddConstEx( id, "STATUS_FWP_CONNECTIONS_DISABLED", 0xC0220041, -1);
    AddConstEx( id, "STATUS_FWP_INVALID_DNS_NAME", 0xC0220042, -1);
    AddConstEx( id, "STATUS_FWP_STILL_ON", 0xC0220043, -1);
    AddConstEx( id, "STATUS_FWP_IKEEXT_NOT_RUNNING", 0xC0220044, -1);
    AddConstEx( id, "STATUS_FWP_TCPIP_NOT_READY", 0xC0220100, -1);
    AddConstEx( id, "STATUS_FWP_INJECT_HANDLE_CLOSING", 0xC0220101, -1);
    AddConstEx( id, "STATUS_FWP_INJECT_HANDLE_STALE", 0xC0220102, -1);
    AddConstEx( id, "STATUS_FWP_CANNOT_PEND", 0xC0220103, -1);
    AddConstEx( id, "STATUS_FWP_DROP_NOICMP", 0xC0220104, -1);
    AddConstEx( id, "STATUS_NDIS_CLOSING", 0xC0230002, -1);
    AddConstEx( id, "STATUS_NDIS_BAD_VERSION", 0xC0230004, -1);
    AddConstEx( id, "STATUS_NDIS_BAD_CHARACTERISTICS", 0xC0230005, -1);
    AddConstEx( id, "STATUS_NDIS_ADAPTER_NOT_FOUND", 0xC0230006, -1);
    AddConstEx( id, "STATUS_NDIS_OPEN_FAILED", 0xC0230007, -1);
    AddConstEx( id, "STATUS_NDIS_DEVICE_FAILED", 0xC0230008, -1);
    AddConstEx( id, "STATUS_NDIS_MULTICAST_FULL", 0xC0230009, -1);
    AddConstEx( id, "STATUS_NDIS_MULTICAST_EXISTS", 0xC023000A, -1);
    AddConstEx( id, "STATUS_NDIS_MULTICAST_NOT_FOUND", 0xC023000B, -1);
    AddConstEx( id, "STATUS_NDIS_REQUEST_ABORTED", 0xC023000C, -1);
    AddConstEx( id, "STATUS_NDIS_RESET_IN_PROGRESS", 0xC023000D, -1);
    AddConstEx( id, "STATUS_NDIS_INVALID_PACKET", 0xC023000F, -1);
    AddConstEx( id, "STATUS_NDIS_INVALID_DEVICE_REQUEST", 0xC0230010, -1);
    AddConstEx( id, "STATUS_NDIS_ADAPTER_NOT_READY", 0xC0230011, -1);
    AddConstEx( id, "STATUS_NDIS_INVALID_LENGTH", 0xC0230014, -1);
    AddConstEx( id, "STATUS_NDIS_INVALID_DATA", 0xC0230015, -1);
    AddConstEx( id, "STATUS_NDIS_BUFFER_TOO_SHORT", 0xC0230016, -1);
    AddConstEx( id, "STATUS_NDIS_INVALID_OID", 0xC0230017, -1);
    AddConstEx( id, "STATUS_NDIS_ADAPTER_REMOVED", 0xC0230018, -1);
    AddConstEx( id, "STATUS_NDIS_UNSUPPORTED_MEDIA", 0xC0230019, -1);
    AddConstEx( id, "STATUS_NDIS_GROUP_ADDRESS_IN_USE", 0xC023001A, -1);
    AddConstEx( id, "STATUS_NDIS_FILE_NOT_FOUND", 0xC023001B, -1);
    AddConstEx( id, "STATUS_NDIS_ERROR_READING_FILE", 0xC023001C, -1);
    AddConstEx( id, "STATUS_NDIS_ALREADY_MAPPED", 0xC023001D, -1);
    AddConstEx( id, "STATUS_NDIS_RESOURCE_CONFLICT", 0xC023001E, -1);
    AddConstEx( id, "STATUS_NDIS_MEDIA_DISCONNECTED", 0xC023001F, -1);
    AddConstEx( id, "STATUS_NDIS_INVALID_ADDRESS", 0xC0230022, -1);
    AddConstEx( id, "STATUS_NDIS_PAUSED", 0xC023002A, -1);
    AddConstEx( id, "STATUS_NDIS_INTERFACE_NOT_FOUND", 0xC023002B, -1);
    AddConstEx( id, "STATUS_NDIS_UNSUPPORTED_REVISION", 0xC023002C, -1);
    AddConstEx( id, "STATUS_NDIS_INVALID_PORT", 0xC023002D, -1);
    AddConstEx( id, "STATUS_NDIS_INVALID_PORT_STATE", 0xC023002E, -1);
    AddConstEx( id, "STATUS_NDIS_LOW_POWER_STATE", 0xC023002F, -1);
    AddConstEx( id, "STATUS_NDIS_REINIT_REQUIRED", 0xC0230030, -1);
    AddConstEx( id, "STATUS_NDIS_NOT_SUPPORTED", 0xC02300BB, -1);
    AddConstEx( id, "STATUS_NDIS_OFFLOAD_POLICY", 0xC023100F, -1);
    AddConstEx( id, "STATUS_NDIS_OFFLOAD_CONNECTION_REJECTED", 0xC0231012, -1);
    AddConstEx( id, "STATUS_NDIS_OFFLOAD_PATH_REJECTED", 0xC0231013, -1);
    AddConstEx( id, "STATUS_NDIS_DOT11_AUTO_CONFIG_ENABLED", 0xC0232000, -1);
    AddConstEx( id, "STATUS_NDIS_DOT11_MEDIA_IN_USE", 0xC0232001, -1);
    AddConstEx( id, "STATUS_NDIS_DOT11_POWER_STATE_INVALID", 0xC0232002, -1);
    AddConstEx( id, "STATUS_NDIS_PM_WOL_PATTERN_LIST_FULL", 0xC0232003, -1);
    AddConstEx( id, "STATUS_NDIS_PM_PROTOCOL_OFFLOAD_LIST_FULL", 0xC0232004, -1);
    AddConstEx( id, "STATUS_TPM_ERROR_MASK", 0xC0290000, -1);
    AddConstEx( id, "STATUS_TPM_AUTHFAIL", 0xC0290001, -1);
    AddConstEx( id, "STATUS_TPM_BADINDEX", 0xC0290002, -1);
    AddConstEx( id, "STATUS_TPM_BAD_PARAMETER", 0xC0290003, -1);
    AddConstEx( id, "STATUS_TPM_AUDITFAILURE", 0xC0290004, -1);
    AddConstEx( id, "STATUS_TPM_CLEAR_DISABLED", 0xC0290005, -1);
    AddConstEx( id, "STATUS_TPM_DEACTIVATED", 0xC0290006, -1);
    AddConstEx( id, "STATUS_TPM_DISABLED", 0xC0290007, -1);
    AddConstEx( id, "STATUS_TPM_DISABLED_CMD", 0xC0290008, -1);
    AddConstEx( id, "STATUS_TPM_FAIL", 0xC0290009, -1);
    AddConstEx( id, "STATUS_TPM_BAD_ORDINAL", 0xC029000A, -1);
    AddConstEx( id, "STATUS_TPM_INSTALL_DISABLED", 0xC029000B, -1);
    AddConstEx( id, "STATUS_TPM_INVALID_KEYHANDLE", 0xC029000C, -1);
    AddConstEx( id, "STATUS_TPM_KEYNOTFOUND", 0xC029000D, -1);
    AddConstEx( id, "STATUS_TPM_INAPPROPRIATE_ENC", 0xC029000E, -1);
    AddConstEx( id, "STATUS_TPM_MIGRATEFAIL", 0xC029000F, -1);
    AddConstEx( id, "STATUS_TPM_INVALID_PCR_INFO", 0xC0290010, -1);
    AddConstEx( id, "STATUS_TPM_NOSPACE", 0xC0290011, -1);
    AddConstEx( id, "STATUS_TPM_NOSRK", 0xC0290012, -1);
    AddConstEx( id, "STATUS_TPM_NOTSEALED_BLOB", 0xC0290013, -1);
    AddConstEx( id, "STATUS_TPM_OWNER_SET", 0xC0290014, -1);
    AddConstEx( id, "STATUS_TPM_RESOURCES", 0xC0290015, -1);
    AddConstEx( id, "STATUS_TPM_SHORTRANDOM", 0xC0290016, -1);
    AddConstEx( id, "STATUS_TPM_SIZE", 0xC0290017, -1);
    AddConstEx( id, "STATUS_TPM_WRONGPCRVAL", 0xC0290018, -1);
    AddConstEx( id, "STATUS_TPM_BAD_PARAM_SIZE", 0xC0290019, -1);
    AddConstEx( id, "STATUS_TPM_SHA_THREAD", 0xC029001A, -1);
    AddConstEx( id, "STATUS_TPM_SHA_ERROR", 0xC029001B, -1);
    AddConstEx( id, "STATUS_TPM_FAILEDSELFTEST", 0xC029001C, -1);
    AddConstEx( id, "STATUS_TPM_AUTH2FAIL", 0xC029001D, -1);
    AddConstEx( id, "STATUS_TPM_BADTAG", 0xC029001E, -1);
    AddConstEx( id, "STATUS_TPM_IOERROR", 0xC029001F, -1);
    AddConstEx( id, "STATUS_TPM_ENCRYPT_ERROR", 0xC0290020, -1);
    AddConstEx( id, "STATUS_TPM_DECRYPT_ERROR", 0xC0290021, -1);
    AddConstEx( id, "STATUS_TPM_INVALID_AUTHHANDLE", 0xC0290022, -1);
    AddConstEx( id, "STATUS_TPM_NO_ENDORSEMENT", 0xC0290023, -1);
    AddConstEx( id, "STATUS_TPM_INVALID_KEYUSAGE", 0xC0290024, -1);
    AddConstEx( id, "STATUS_TPM_WRONG_ENTITYTYPE", 0xC0290025, -1);
    AddConstEx( id, "STATUS_TPM_INVALID_POSTINIT", 0xC0290026, -1);
    AddConstEx( id, "STATUS_TPM_INAPPROPRIATE_SIG", 0xC0290027, -1);
    AddConstEx( id, "STATUS_TPM_BAD_KEY_PROPERTY", 0xC0290028, -1);
    AddConstEx( id, "STATUS_TPM_BAD_MIGRATION", 0xC0290029, -1);
    AddConstEx( id, "STATUS_TPM_BAD_SCHEME", 0xC029002A, -1);
    AddConstEx( id, "STATUS_TPM_BAD_DATASIZE", 0xC029002B, -1);
    AddConstEx( id, "STATUS_TPM_BAD_MODE", 0xC029002C, -1);
    AddConstEx( id, "STATUS_TPM_BAD_PRESENCE", 0xC029002D, -1);
    AddConstEx( id, "STATUS_TPM_BAD_VERSION", 0xC029002E, -1);
    AddConstEx( id, "STATUS_TPM_NO_WRAP_TRANSPORT", 0xC029002F, -1);
    AddConstEx( id, "STATUS_TPM_AUDITFAIL_UNSUCCESSFUL", 0xC0290030, -1);
    AddConstEx( id, "STATUS_TPM_AUDITFAIL_SUCCESSFUL", 0xC0290031, -1);
    AddConstEx( id, "STATUS_TPM_NOTRESETABLE", 0xC0290032, -1);
    AddConstEx( id, "STATUS_TPM_NOTLOCAL", 0xC0290033, -1);
    AddConstEx( id, "STATUS_TPM_BAD_TYPE", 0xC0290034, -1);
    AddConstEx( id, "STATUS_TPM_INVALID_RESOURCE", 0xC0290035, -1);
    AddConstEx( id, "STATUS_TPM_NOTFIPS", 0xC0290036, -1);
    AddConstEx( id, "STATUS_TPM_INVALID_FAMILY", 0xC0290037, -1);
    AddConstEx( id, "STATUS_TPM_NO_NV_PERMISSION", 0xC0290038, -1);
    AddConstEx( id, "STATUS_TPM_REQUIRES_SIGN", 0xC0290039, -1);
    AddConstEx( id, "STATUS_TPM_KEY_NOTSUPPORTED", 0xC029003A, -1);
    AddConstEx( id, "STATUS_TPM_AUTH_CONFLICT", 0xC029003B, -1);
    AddConstEx( id, "STATUS_TPM_AREA_LOCKED", 0xC029003C, -1);
    AddConstEx( id, "STATUS_TPM_BAD_LOCALITY", 0xC029003D, -1);
    AddConstEx( id, "STATUS_TPM_READ_ONLY", 0xC029003E, -1);
    AddConstEx( id, "STATUS_TPM_PER_NOWRITE", 0xC029003F, -1);
    AddConstEx( id, "STATUS_TPM_FAMILYCOUNT", 0xC0290040, -1);
    AddConstEx( id, "STATUS_TPM_WRITE_LOCKED", 0xC0290041, -1);
    AddConstEx( id, "STATUS_TPM_BAD_ATTRIBUTES", 0xC0290042, -1);
    AddConstEx( id, "STATUS_TPM_INVALID_STRUCTURE", 0xC0290043, -1);
    AddConstEx( id, "STATUS_TPM_KEY_OWNER_CONTROL", 0xC0290044, -1);
    AddConstEx( id, "STATUS_TPM_BAD_COUNTER", 0xC0290045, -1);
    AddConstEx( id, "STATUS_TPM_NOT_FULLWRITE", 0xC0290046, -1);
    AddConstEx( id, "STATUS_TPM_CONTEXT_GAP", 0xC0290047, -1);
    AddConstEx( id, "STATUS_TPM_MAXNVWRITES", 0xC0290048, -1);
    AddConstEx( id, "STATUS_TPM_NOOPERATOR", 0xC0290049, -1);
    AddConstEx( id, "STATUS_TPM_RESOURCEMISSING", 0xC029004A, -1);
    AddConstEx( id, "STATUS_TPM_DELEGATE_LOCK", 0xC029004B, -1);
    AddConstEx( id, "STATUS_TPM_DELEGATE_FAMILY", 0xC029004C, -1);
    AddConstEx( id, "STATUS_TPM_DELEGATE_ADMIN", 0xC029004D, -1);
    AddConstEx( id, "STATUS_TPM_TRANSPORT_NOTEXCLUSIVE", 0xC029004E, -1);
    AddConstEx( id, "STATUS_TPM_OWNER_CONTROL", 0xC029004F, -1);
    AddConstEx( id, "STATUS_TPM_DAA_RESOURCES", 0xC0290050, -1);
    AddConstEx( id, "STATUS_TPM_DAA_INPUT_DATA0", 0xC0290051, -1);
    AddConstEx( id, "STATUS_TPM_DAA_INPUT_DATA1", 0xC0290052, -1);
    AddConstEx( id, "STATUS_TPM_DAA_ISSUER_SETTINGS", 0xC0290053, -1);
    AddConstEx( id, "STATUS_TPM_DAA_TPM_SETTINGS", 0xC0290054, -1);
    AddConstEx( id, "STATUS_TPM_DAA_STAGE", 0xC0290055, -1);
    AddConstEx( id, "STATUS_TPM_DAA_ISSUER_VALIDITY", 0xC0290056, -1);
    AddConstEx( id, "STATUS_TPM_DAA_WRONG_W", 0xC0290057, -1);
    AddConstEx( id, "STATUS_TPM_BAD_HANDLE", 0xC0290058, -1);
    AddConstEx( id, "STATUS_TPM_BAD_DELEGATE", 0xC0290059, -1);
    AddConstEx( id, "STATUS_TPM_BADCONTEXT", 0xC029005A, -1);
    AddConstEx( id, "STATUS_TPM_TOOMANYCONTEXTS", 0xC029005B, -1);
    AddConstEx( id, "STATUS_TPM_MA_TICKET_SIGNATURE", 0xC029005C, -1);
    AddConstEx( id, "STATUS_TPM_MA_DESTINATION", 0xC029005D, -1);
    AddConstEx( id, "STATUS_TPM_MA_SOURCE", 0xC029005E, -1);
    AddConstEx( id, "STATUS_TPM_MA_AUTHORITY", 0xC029005F, -1);
    AddConstEx( id, "STATUS_TPM_PERMANENTEK", 0xC0290061, -1);
    AddConstEx( id, "STATUS_TPM_BAD_SIGNATURE", 0xC0290062, -1);
    AddConstEx( id, "STATUS_TPM_NOCONTEXTSPACE", 0xC0290063, -1);
    AddConstEx( id, "STATUS_TPM_COMMAND_BLOCKED", 0xC0290400, -1);
    AddConstEx( id, "STATUS_TPM_INVALID_HANDLE", 0xC0290401, -1);
    AddConstEx( id, "STATUS_TPM_DUPLICATE_VHANDLE", 0xC0290402, -1);
    AddConstEx( id, "STATUS_TPM_EMBEDDED_COMMAND_BLOCKED", 0xC0290403, -1);
    AddConstEx( id, "STATUS_TPM_EMBEDDED_COMMAND_UNSUPPORTED", 0xC0290404, -1);
    AddConstEx( id, "STATUS_TPM_RETRY", 0xC0290800, -1);
    AddConstEx( id, "STATUS_TPM_NEEDS_SELFTEST", 0xC0290801, -1);
    AddConstEx( id, "STATUS_TPM_DOING_SELFTEST", 0xC0290802, -1);
    AddConstEx( id, "STATUS_TPM_DEFEND_LOCK_RUNNING", 0xC0290803, -1);
    AddConstEx( id, "STATUS_TPM_COMMAND_CANCELED", 0xC0291001, -1);
    AddConstEx( id, "STATUS_TPM_TOO_MANY_CONTEXTS", 0xC0291002, -1);
    AddConstEx( id, "STATUS_TPM_NOT_FOUND", 0xC0291003, -1);
    AddConstEx( id, "STATUS_TPM_ACCESS_DENIED", 0xC0291004, -1);
    AddConstEx( id, "STATUS_TPM_INSUFFICIENT_BUFFER", 0xC0291005, -1);
    AddConstEx( id, "STATUS_TPM_PPI_FUNCTION_UNSUPPORTED", 0xC0291006, -1);
    AddConstEx( id, "STATUS_PCP_ERROR_MASK", 0xC0292000, -1);
    AddConstEx( id, "STATUS_PCP_DEVICE_NOT_READY", 0xC0292001, -1);
    AddConstEx( id, "STATUS_PCP_INVALID_HANDLE", 0xC0292002, -1);
    AddConstEx( id, "STATUS_PCP_INVALID_PARAMETER", 0xC0292003, -1);
    AddConstEx( id, "STATUS_PCP_FLAG_NOT_SUPPORTED", 0xC0292004, -1);
    AddConstEx( id, "STATUS_PCP_NOT_SUPPORTED", 0xC0292005, -1);
    AddConstEx( id, "STATUS_PCP_BUFFER_TOO_SMALL", 0xC0292006, -1);
    AddConstEx( id, "STATUS_PCP_INTERNAL_ERROR", 0xC0292007, -1);
    AddConstEx( id, "STATUS_PCP_AUTHENTICATION_FAILED", 0xC0292008, -1);
    AddConstEx( id, "STATUS_PCP_AUTHENTICATION_IGNORED", 0xC0292009, -1);
    AddConstEx( id, "STATUS_PCP_POLICY_NOT_FOUND", 0xC029200A, -1);
    AddConstEx( id, "STATUS_PCP_PROFILE_NOT_FOUND", 0xC029200B, -1);
    AddConstEx( id, "STATUS_PCP_VALIDATION_FAILED", 0xC029200C, -1);
    AddConstEx( id, "STATUS_PCP_DEVICE_NOT_FOUND", 0xC029200D, -1);
    AddConstEx( id, "STATUS_HV_INVALID_HYPERCALL_CODE", 0xC0350002, -1);
    AddConstEx( id, "STATUS_HV_INVALID_HYPERCALL_INPUT", 0xC0350003, -1);
    AddConstEx( id, "STATUS_HV_INVALID_ALIGNMENT", 0xC0350004, -1);
    AddConstEx( id, "STATUS_HV_INVALID_PARAMETER", 0xC0350005, -1);
    AddConstEx( id, "STATUS_HV_ACCESS_DENIED", 0xC0350006, -1);
    AddConstEx( id, "STATUS_HV_INVALID_PARTITION_STATE", 0xC0350007, -1);
    AddConstEx( id, "STATUS_HV_OPERATION_DENIED", 0xC0350008, -1);
    AddConstEx( id, "STATUS_HV_UNKNOWN_PROPERTY", 0xC0350009, -1);
    AddConstEx( id, "STATUS_HV_PROPERTY_VALUE_OUT_OF_RANGE", 0xC035000A, -1);
    AddConstEx( id, "STATUS_HV_INSUFFICIENT_MEMORY", 0xC035000B, -1);
    AddConstEx( id, "STATUS_HV_PARTITION_TOO_DEEP", 0xC035000C, -1);
    AddConstEx( id, "STATUS_HV_INVALID_PARTITION_ID", 0xC035000D, -1);
    AddConstEx( id, "STATUS_HV_INVALID_VP_INDEX", 0xC035000E, -1);
    AddConstEx( id, "STATUS_HV_INVALID_PORT_ID", 0xC0350011, -1);
    AddConstEx( id, "STATUS_HV_INVALID_CONNECTION_ID", 0xC0350012, -1);
    AddConstEx( id, "STATUS_HV_INSUFFICIENT_BUFFERS", 0xC0350013, -1);
    AddConstEx( id, "STATUS_HV_NOT_ACKNOWLEDGED", 0xC0350014, -1);
    AddConstEx( id, "STATUS_HV_ACKNOWLEDGED", 0xC0350016, -1);
    AddConstEx( id, "STATUS_HV_INVALID_SAVE_RESTORE_STATE", 0xC0350017, -1);
    AddConstEx( id, "STATUS_HV_INVALID_SYNIC_STATE", 0xC0350018, -1);
    AddConstEx( id, "STATUS_HV_OBJECT_IN_USE", 0xC0350019, -1);
    AddConstEx( id, "STATUS_HV_INVALID_PROXIMITY_DOMAIN_INFO", 0xC035001A, -1);
    AddConstEx( id, "STATUS_HV_NO_DATA", 0xC035001B, -1);
    AddConstEx( id, "STATUS_HV_INACTIVE", 0xC035001C, -1);
    AddConstEx( id, "STATUS_HV_NO_RESOURCES", 0xC035001D, -1);
    AddConstEx( id, "STATUS_HV_FEATURE_UNAVAILABLE", 0xC035001E, -1);
    AddConstEx( id, "STATUS_HV_INSUFFICIENT_BUFFER", 0xC0350033, -1);
    AddConstEx( id, "STATUS_HV_INSUFFICIENT_DEVICE_DOMAINS", 0xC0350038, -1);
    AddConstEx( id, "STATUS_HV_INVALID_LP_INDEX", 0xC0350041, -1);
    AddConstEx( id, "STATUS_HV_NOT_PRESENT", 0xC0351000, -1);
    AddConstEx( id, "STATUS_IPSEC_BAD_SPI", 0xC0360001, -1);
    AddConstEx( id, "STATUS_IPSEC_SA_LIFETIME_EXPIRED", 0xC0360002, -1);
    AddConstEx( id, "STATUS_IPSEC_WRONG_SA", 0xC0360003, -1);
    AddConstEx( id, "STATUS_IPSEC_REPLAY_CHECK_FAILED", 0xC0360004, -1);
    AddConstEx( id, "STATUS_IPSEC_INVALID_PACKET", 0xC0360005, -1);
    AddConstEx( id, "STATUS_IPSEC_INTEGRITY_CHECK_FAILED", 0xC0360006, -1);
    AddConstEx( id, "STATUS_IPSEC_CLEAR_TEXT_DROP", 0xC0360007, -1);
    AddConstEx( id, "STATUS_IPSEC_AUTH_FIREWALL_DROP", 0xC0360008, -1);
    AddConstEx( id, "STATUS_IPSEC_THROTTLE_DROP", 0xC0360009, -1);
    AddConstEx( id, "STATUS_IPSEC_DOSP_BLOCK", 0xC0368000, -1);
    AddConstEx( id, "STATUS_IPSEC_DOSP_RECEIVED_MULTICAST", 0xC0368001, -1);
    AddConstEx( id, "STATUS_IPSEC_DOSP_INVALID_PACKET", 0xC0368002, -1);
    AddConstEx( id, "STATUS_IPSEC_DOSP_STATE_LOOKUP_FAILED", 0xC0368003, -1);
    AddConstEx( id, "STATUS_IPSEC_DOSP_MAX_ENTRIES", 0xC0368004, -1);
    AddConstEx( id, "STATUS_IPSEC_DOSP_KEYMOD_NOT_ALLOWED", 0xC0368005, -1);
    AddConstEx( id, "STATUS_IPSEC_DOSP_MAX_PER_IP_RATELIMIT_QUEUES", 0xC0368006, -1);
    AddConstEx( id, "STATUS_VID_DUPLICATE_HANDLER", 0xC0370001, -1);
    AddConstEx( id, "STATUS_VID_TOO_MANY_HANDLERS", 0xC0370002, -1);
    AddConstEx( id, "STATUS_VID_QUEUE_FULL", 0xC0370003, -1);
    AddConstEx( id, "STATUS_VID_HANDLER_NOT_PRESENT", 0xC0370004, -1);
    AddConstEx( id, "STATUS_VID_INVALID_OBJECT_NAME", 0xC0370005, -1);
    AddConstEx( id, "STATUS_VID_PARTITION_NAME_TOO_LONG", 0xC0370006, -1);
    AddConstEx( id, "STATUS_VID_MESSAGE_QUEUE_NAME_TOO_LONG", 0xC0370007, -1);
    AddConstEx( id, "STATUS_VID_PARTITION_ALREADY_EXISTS", 0xC0370008, -1);
    AddConstEx( id, "STATUS_VID_PARTITION_DOES_NOT_EXIST", 0xC0370009, -1);
    AddConstEx( id, "STATUS_VID_PARTITION_NAME_NOT_FOUND", 0xC037000A, -1);
    AddConstEx( id, "STATUS_VID_MESSAGE_QUEUE_ALREADY_EXISTS", 0xC037000B, -1);
    AddConstEx( id, "STATUS_VID_EXCEEDED_MBP_ENTRY_MAP_LIMIT", 0xC037000C, -1);
    AddConstEx( id, "STATUS_VID_MB_STILL_REFERENCED", 0xC037000D, -1);
    AddConstEx( id, "STATUS_VID_CHILD_GPA_PAGE_SET_CORRUPTED", 0xC037000E, -1);
    AddConstEx( id, "STATUS_VID_INVALID_NUMA_SETTINGS", 0xC037000F, -1);
    AddConstEx( id, "STATUS_VID_INVALID_NUMA_NODE_INDEX", 0xC0370010, -1);
    AddConstEx( id, "STATUS_VID_NOTIFICATION_QUEUE_ALREADY_ASSOCIATED", 0xC0370011, -1);
    AddConstEx( id, "STATUS_VID_INVALID_MEMORY_BLOCK_HANDLE", 0xC0370012, -1);
    AddConstEx( id, "STATUS_VID_PAGE_RANGE_OVERFLOW", 0xC0370013, -1);
    AddConstEx( id, "STATUS_VID_INVALID_MESSAGE_QUEUE_HANDLE", 0xC0370014, -1);
    AddConstEx( id, "STATUS_VID_INVALID_GPA_RANGE_HANDLE", 0xC0370015, -1);
    AddConstEx( id, "STATUS_VID_NO_MEMORY_BLOCK_NOTIFICATION_QUEUE", 0xC0370016, -1);
    AddConstEx( id, "STATUS_VID_MEMORY_BLOCK_LOCK_COUNT_EXCEEDED", 0xC0370017, -1);
    AddConstEx( id, "STATUS_VID_INVALID_PPM_HANDLE", 0xC0370018, -1);
    AddConstEx( id, "STATUS_VID_MBPS_ARE_LOCKED", 0xC0370019, -1);
    AddConstEx( id, "STATUS_VID_MESSAGE_QUEUE_CLOSED", 0xC037001A, -1);
    AddConstEx( id, "STATUS_VID_VIRTUAL_PROCESSOR_LIMIT_EXCEEDED", 0xC037001B, -1);
    AddConstEx( id, "STATUS_VID_STOP_PENDING", 0xC037001C, -1);
    AddConstEx( id, "STATUS_VID_INVALID_PROCESSOR_STATE", 0xC037001D, -1);
    AddConstEx( id, "STATUS_VID_EXCEEDED_KM_CONTEXT_COUNT_LIMIT", 0xC037001E, -1);
    AddConstEx( id, "STATUS_VID_KM_INTERFACE_ALREADY_INITIALIZED", 0xC037001F, -1);
    AddConstEx( id, "STATUS_VID_MB_PROPERTY_ALREADY_SET_RESET", 0xC0370020, -1);
    AddConstEx( id, "STATUS_VID_MMIO_RANGE_DESTROYED", 0xC0370021, -1);
    AddConstEx( id, "STATUS_VID_INVALID_CHILD_GPA_PAGE_SET", 0xC0370022, -1);
    AddConstEx( id, "STATUS_VID_RESERVE_PAGE_SET_IS_BEING_USED", 0xC0370023, -1);
    AddConstEx( id, "STATUS_VID_RESERVE_PAGE_SET_TOO_SMALL", 0xC0370024, -1);
    AddConstEx( id, "STATUS_VID_MBP_ALREADY_LOCKED_USING_RESERVED_PAGE", 0xC0370025, -1);
    AddConstEx( id, "STATUS_VID_MBP_COUNT_EXCEEDED_LIMIT", 0xC0370026, -1);
    AddConstEx( id, "STATUS_VID_SAVED_STATE_CORRUPT", 0xC0370027, -1);
    AddConstEx( id, "STATUS_VID_SAVED_STATE_UNRECOGNIZED_ITEM", 0xC0370028, -1);
    AddConstEx( id, "STATUS_VID_SAVED_STATE_INCOMPATIBLE", 0xC0370029, -1);
    AddConstEx( id, "STATUS_VOLMGR_DATABASE_FULL", 0xC0380001, -1);
    AddConstEx( id, "STATUS_VOLMGR_DISK_CONFIGURATION_CORRUPTED", 0xC0380002, -1);
    AddConstEx( id, "STATUS_VOLMGR_DISK_CONFIGURATION_NOT_IN_SYNC", 0xC0380003, -1);
    AddConstEx( id, "STATUS_VOLMGR_PACK_CONFIG_UPDATE_FAILED", 0xC0380004, -1);
    AddConstEx( id, "STATUS_VOLMGR_DISK_CONTAINS_NON_SIMPLE_VOLUME", 0xC0380005, -1);
    AddConstEx( id, "STATUS_VOLMGR_DISK_DUPLICATE", 0xC0380006, -1);
    AddConstEx( id, "STATUS_VOLMGR_DISK_DYNAMIC", 0xC0380007, -1);
    AddConstEx( id, "STATUS_VOLMGR_DISK_ID_INVALID", 0xC0380008, -1);
    AddConstEx( id, "STATUS_VOLMGR_DISK_INVALID", 0xC0380009, -1);
    AddConstEx( id, "STATUS_VOLMGR_DISK_LAST_VOTER", 0xC038000A, -1);
    AddConstEx( id, "STATUS_VOLMGR_DISK_LAYOUT_INVALID", 0xC038000B, -1);
    AddConstEx( id, "STATUS_VOLMGR_DISK_LAYOUT_NON_BASIC_BETWEEN_BASIC_PARTITIONS", 0xC038000C, -1);
    AddConstEx( id, "STATUS_VOLMGR_DISK_LAYOUT_NOT_CYLINDER_ALIGNED", 0xC038000D, -1);
    AddConstEx( id, "STATUS_VOLMGR_DISK_LAYOUT_PARTITIONS_TOO_SMALL", 0xC038000E, -1);
    AddConstEx( id, "STATUS_VOLMGR_DISK_LAYOUT_PRIMARY_BETWEEN_LOGICAL_PARTITIONS", 0xC038000F, -1);
    AddConstEx( id, "STATUS_VOLMGR_DISK_LAYOUT_TOO_MANY_PARTITIONS", 0xC0380010, -1);
    AddConstEx( id, "STATUS_VOLMGR_DISK_MISSING", 0xC0380011, -1);
    AddConstEx( id, "STATUS_VOLMGR_DISK_NOT_EMPTY", 0xC0380012, -1);
    AddConstEx( id, "STATUS_VOLMGR_DISK_NOT_ENOUGH_SPACE", 0xC0380013, -1);
    AddConstEx( id, "STATUS_VOLMGR_DISK_REVECTORING_FAILED", 0xC0380014, -1);
    AddConstEx( id, "STATUS_VOLMGR_DISK_SECTOR_SIZE_INVALID", 0xC0380015, -1);
    AddConstEx( id, "STATUS_VOLMGR_DISK_SET_NOT_CONTAINED", 0xC0380016, -1);
    AddConstEx( id, "STATUS_VOLMGR_DISK_USED_BY_MULTIPLE_MEMBERS", 0xC0380017, -1);
    AddConstEx( id, "STATUS_VOLMGR_DISK_USED_BY_MULTIPLE_PLEXES", 0xC0380018, -1);
    AddConstEx( id, "STATUS_VOLMGR_DYNAMIC_DISK_NOT_SUPPORTED", 0xC0380019, -1);
    AddConstEx( id, "STATUS_VOLMGR_EXTENT_ALREADY_USED", 0xC038001A, -1);
    AddConstEx( id, "STATUS_VOLMGR_EXTENT_NOT_CONTIGUOUS", 0xC038001B, -1);
    AddConstEx( id, "STATUS_VOLMGR_EXTENT_NOT_IN_PUBLIC_REGION", 0xC038001C, -1);
    AddConstEx( id, "STATUS_VOLMGR_EXTENT_NOT_SECTOR_ALIGNED", 0xC038001D, -1);
    AddConstEx( id, "STATUS_VOLMGR_EXTENT_OVERLAPS_EBR_PARTITION", 0xC038001E, -1);
    AddConstEx( id, "STATUS_VOLMGR_EXTENT_VOLUME_LENGTHS_DO_NOT_MATCH", 0xC038001F, -1);
    AddConstEx( id, "STATUS_VOLMGR_FAULT_TOLERANT_NOT_SUPPORTED", 0xC0380020, -1);
    AddConstEx( id, "STATUS_VOLMGR_INTERLEAVE_LENGTH_INVALID", 0xC0380021, -1);
    AddConstEx( id, "STATUS_VOLMGR_MAXIMUM_REGISTERED_USERS", 0xC0380022, -1);
    AddConstEx( id, "STATUS_VOLMGR_MEMBER_IN_SYNC", 0xC0380023, -1);
    AddConstEx( id, "STATUS_VOLMGR_MEMBER_INDEX_DUPLICATE", 0xC0380024, -1);
    AddConstEx( id, "STATUS_VOLMGR_MEMBER_INDEX_INVALID", 0xC0380025, -1);
    AddConstEx( id, "STATUS_VOLMGR_MEMBER_MISSING", 0xC0380026, -1);
    AddConstEx( id, "STATUS_VOLMGR_MEMBER_NOT_DETACHED", 0xC0380027, -1);
    AddConstEx( id, "STATUS_VOLMGR_MEMBER_REGENERATING", 0xC0380028, -1);
    AddConstEx( id, "STATUS_VOLMGR_ALL_DISKS_FAILED", 0xC0380029, -1);
    AddConstEx( id, "STATUS_VOLMGR_NO_REGISTERED_USERS", 0xC038002A, -1);
    AddConstEx( id, "STATUS_VOLMGR_NO_SUCH_USER", 0xC038002B, -1);
    AddConstEx( id, "STATUS_VOLMGR_NOTIFICATION_RESET", 0xC038002C, -1);
    AddConstEx( id, "STATUS_VOLMGR_NUMBER_OF_MEMBERS_INVALID", 0xC038002D, -1);
    AddConstEx( id, "STATUS_VOLMGR_NUMBER_OF_PLEXES_INVALID", 0xC038002E, -1);
    AddConstEx( id, "STATUS_VOLMGR_PACK_DUPLICATE", 0xC038002F, -1);
    AddConstEx( id, "STATUS_VOLMGR_PACK_ID_INVALID", 0xC0380030, -1);
    AddConstEx( id, "STATUS_VOLMGR_PACK_INVALID", 0xC0380031, -1);
    AddConstEx( id, "STATUS_VOLMGR_PACK_NAME_INVALID", 0xC0380032, -1);
    AddConstEx( id, "STATUS_VOLMGR_PACK_OFFLINE", 0xC0380033, -1);
    AddConstEx( id, "STATUS_VOLMGR_PACK_HAS_QUORUM", 0xC0380034, -1);
    AddConstEx( id, "STATUS_VOLMGR_PACK_WITHOUT_QUORUM", 0xC0380035, -1);
    AddConstEx( id, "STATUS_VOLMGR_PARTITION_STYLE_INVALID", 0xC0380036, -1);
    AddConstEx( id, "STATUS_VOLMGR_PARTITION_UPDATE_FAILED", 0xC0380037, -1);
    AddConstEx( id, "STATUS_VOLMGR_PLEX_IN_SYNC", 0xC0380038, -1);
    AddConstEx( id, "STATUS_VOLMGR_PLEX_INDEX_DUPLICATE", 0xC0380039, -1);
    AddConstEx( id, "STATUS_VOLMGR_PLEX_INDEX_INVALID", 0xC038003A, -1);
    AddConstEx( id, "STATUS_VOLMGR_PLEX_LAST_ACTIVE", 0xC038003B, -1);
    AddConstEx( id, "STATUS_VOLMGR_PLEX_MISSING", 0xC038003C, -1);
    AddConstEx( id, "STATUS_VOLMGR_PLEX_REGENERATING", 0xC038003D, -1);
    AddConstEx( id, "STATUS_VOLMGR_PLEX_TYPE_INVALID", 0xC038003E, -1);
    AddConstEx( id, "STATUS_VOLMGR_PLEX_NOT_RAID5", 0xC038003F, -1);
    AddConstEx( id, "STATUS_VOLMGR_PLEX_NOT_SIMPLE", 0xC0380040, -1);
    AddConstEx( id, "STATUS_VOLMGR_STRUCTURE_SIZE_INVALID", 0xC0380041, -1);
    AddConstEx( id, "STATUS_VOLMGR_TOO_MANY_NOTIFICATION_REQUESTS", 0xC0380042, -1);
    AddConstEx( id, "STATUS_VOLMGR_TRANSACTION_IN_PROGRESS", 0xC0380043, -1);
    AddConstEx( id, "STATUS_VOLMGR_UNEXPECTED_DISK_LAYOUT_CHANGE", 0xC0380044, -1);
    AddConstEx( id, "STATUS_VOLMGR_VOLUME_CONTAINS_MISSING_DISK", 0xC0380045, -1);
    AddConstEx( id, "STATUS_VOLMGR_VOLUME_ID_INVALID", 0xC0380046, -1);
    AddConstEx( id, "STATUS_VOLMGR_VOLUME_LENGTH_INVALID", 0xC0380047, -1);
    AddConstEx( id, "STATUS_VOLMGR_VOLUME_LENGTH_NOT_SECTOR_SIZE_MULTIPLE", 0xC0380048, -1);
    AddConstEx( id, "STATUS_VOLMGR_VOLUME_NOT_MIRRORED", 0xC0380049, -1);
    AddConstEx( id, "STATUS_VOLMGR_VOLUME_NOT_RETAINED", 0xC038004A, -1);
    AddConstEx( id, "STATUS_VOLMGR_VOLUME_OFFLINE", 0xC038004B, -1);
    AddConstEx( id, "STATUS_VOLMGR_VOLUME_RETAINED", 0xC038004C, -1);
    AddConstEx( id, "STATUS_VOLMGR_NUMBER_OF_EXTENTS_INVALID", 0xC038004D, -1);
    AddConstEx( id, "STATUS_VOLMGR_DIFFERENT_SECTOR_SIZE", 0xC038004E, -1);
    AddConstEx( id, "STATUS_VOLMGR_BAD_BOOT_DISK", 0xC038004F, -1);
    AddConstEx( id, "STATUS_VOLMGR_PACK_CONFIG_OFFLINE", 0xC0380050, -1);
    AddConstEx( id, "STATUS_VOLMGR_PACK_CONFIG_ONLINE", 0xC0380051, -1);
    AddConstEx( id, "STATUS_VOLMGR_NOT_PRIMARY_PACK", 0xC0380052, -1);
    AddConstEx( id, "STATUS_VOLMGR_PACK_LOG_UPDATE_FAILED", 0xC0380053, -1);
    AddConstEx( id, "STATUS_VOLMGR_NUMBER_OF_DISKS_IN_PLEX_INVALID", 0xC0380054, -1);
    AddConstEx( id, "STATUS_VOLMGR_NUMBER_OF_DISKS_IN_MEMBER_INVALID", 0xC0380055, -1);
    AddConstEx( id, "STATUS_VOLMGR_VOLUME_MIRRORED", 0xC0380056, -1);
    AddConstEx( id, "STATUS_VOLMGR_PLEX_NOT_SIMPLE_SPANNED", 0xC0380057, -1);
    AddConstEx( id, "STATUS_VOLMGR_NO_VALID_LOG_COPIES", 0xC0380058, -1);
    AddConstEx( id, "STATUS_VOLMGR_PRIMARY_PACK_PRESENT", 0xC0380059, -1);
    AddConstEx( id, "STATUS_VOLMGR_NUMBER_OF_DISKS_INVALID", 0xC038005A, -1);
    AddConstEx( id, "STATUS_VOLMGR_MIRROR_NOT_SUPPORTED", 0xC038005B, -1);
    AddConstEx( id, "STATUS_VOLMGR_RAID5_NOT_SUPPORTED", 0xC038005C, -1);
    AddConstEx( id, "STATUS_BCD_TOO_MANY_ELEMENTS", 0xC0390002, -1);
    AddConstEx( id, "STATUS_VHD_DRIVE_FOOTER_MISSING", 0xC03A0001, -1);
    AddConstEx( id, "STATUS_VHD_DRIVE_FOOTER_CHECKSUM_MISMATCH", 0xC03A0002, -1);
    AddConstEx( id, "STATUS_VHD_DRIVE_FOOTER_CORRUPT", 0xC03A0003, -1);
    AddConstEx( id, "STATUS_VHD_FORMAT_UNKNOWN", 0xC03A0004, -1);
    AddConstEx( id, "STATUS_VHD_FORMAT_UNSUPPORTED_VERSION", 0xC03A0005, -1);
    AddConstEx( id, "STATUS_VHD_SPARSE_HEADER_CHECKSUM_MISMATCH", 0xC03A0006, -1);
    AddConstEx( id, "STATUS_VHD_SPARSE_HEADER_UNSUPPORTED_VERSION", 0xC03A0007, -1);
    AddConstEx( id, "STATUS_VHD_SPARSE_HEADER_CORRUPT", 0xC03A0008, -1);
    AddConstEx( id, "STATUS_VHD_BLOCK_ALLOCATION_FAILURE", 0xC03A0009, -1);
    AddConstEx( id, "STATUS_VHD_BLOCK_ALLOCATION_TABLE_CORRUPT", 0xC03A000A, -1);
    AddConstEx( id, "STATUS_VHD_INVALID_BLOCK_SIZE", 0xC03A000B, -1);
    AddConstEx( id, "STATUS_VHD_BITMAP_MISMATCH", 0xC03A000C, -1);
    AddConstEx( id, "STATUS_VHD_PARENT_VHD_NOT_FOUND", 0xC03A000D, -1);
    AddConstEx( id, "STATUS_VHD_CHILD_PARENT_ID_MISMATCH", 0xC03A000E, -1);
    AddConstEx( id, "STATUS_VHD_CHILD_PARENT_TIMESTAMP_MISMATCH", 0xC03A000F, -1);
    AddConstEx( id, "STATUS_VHD_METADATA_READ_FAILURE", 0xC03A0010, -1);
    AddConstEx( id, "STATUS_VHD_METADATA_WRITE_FAILURE", 0xC03A0011, -1);
    AddConstEx( id, "STATUS_VHD_INVALID_SIZE", 0xC03A0012, -1);
    AddConstEx( id, "STATUS_VHD_INVALID_FILE_SIZE", 0xC03A0013, -1);
    AddConstEx( id, "STATUS_VIRTDISK_PROVIDER_NOT_FOUND", 0xC03A0014, -1);
    AddConstEx( id, "STATUS_VIRTDISK_NOT_VIRTUAL_DISK", 0xC03A0015, -1);
    AddConstEx( id, "STATUS_VHD_PARENT_VHD_ACCESS_DENIED", 0xC03A0016, -1);
    AddConstEx( id, "STATUS_VHD_CHILD_PARENT_SIZE_MISMATCH", 0xC03A0017, -1);
    AddConstEx( id, "STATUS_VHD_DIFFERENCING_CHAIN_CYCLE_DETECTED", 0xC03A0018, -1);
    AddConstEx( id, "STATUS_VHD_DIFFERENCING_CHAIN_ERROR_IN_PARENT", 0xC03A0019, -1);
    AddConstEx( id, "STATUS_VIRTUAL_DISK_LIMITATION", 0xC03A001A, -1);
    AddConstEx( id, "STATUS_VHD_INVALID_TYPE", 0xC03A001B, -1);
    AddConstEx( id, "STATUS_VHD_INVALID_STATE", 0xC03A001C, -1);
    AddConstEx( id, "STATUS_VIRTDISK_UNSUPPORTED_DISK_SECTOR_SIZE", 0xC03A001D, -1);
    AddConstEx( id, "STATUS_VIRTDISK_DISK_ALREADY_OWNED", 0xC03A001E, -1);
    AddConstEx( id, "STATUS_VIRTDISK_DISK_ONLINE_AND_WRITABLE", 0xC03A001F, -1);
    AddConstEx( id, "STATUS_CTLOG_TRACKING_NOT_INITIALIZED", 0xC03A0020, -1);
    AddConstEx( id, "STATUS_CTLOG_LOGFILE_SIZE_EXCEEDED_MAXSIZE", 0xC03A0021, -1);
    AddConstEx( id, "STATUS_CTLOG_VHD_CHANGED_OFFLINE", 0xC03A0022, -1);
    AddConstEx( id, "STATUS_CTLOG_INVALID_TRACKING_STATE", 0xC03A0023, -1);
    AddConstEx( id, "STATUS_CTLOG_INCONSISTENT_TRACKING_FILE", 0xC03A0024, -1);
    AddConstEx( id, "STATUS_VHD_METADATA_FULL", 0xC03A0028, -1);
    AddConstEx( id, "STATUS_DIS_NOT_PRESENT", 0xC03C0001, -1);
    AddConstEx( id, "STATUS_DIS_ATTRIBUTE_NOT_FOUND", 0xC03C0002, -1);
    AddConstEx( id, "STATUS_DIS_UNRECOGNIZED_ATTRIBUTE", 0xC03C0003, -1);
    AddConstEx( id, "STATUS_DIS_PARTIAL_DATA", 0xC03C0004, -1);
    AddConstEx( id, "STATUS_RKF_KEY_NOT_FOUND", 0xC0400001, -1);
    AddConstEx( id, "STATUS_RKF_DUPLICATE_KEY", 0xC0400002, -1);
    AddConstEx( id, "STATUS_RKF_BLOB_FULL", 0xC0400003, -1);
    AddConstEx( id, "STATUS_RKF_STORE_FULL", 0xC0400004, -1);
    AddConstEx( id, "STATUS_RKF_FILE_BLOCKED", 0xC0400005, -1);
    AddConstEx( id, "STATUS_RKF_ACTIVE_KEY", 0xC0400006, -1);
    AddConstEx( id, "STATUS_RDBSS_RESTART_OPERATION", 0xC0410001, -1);
    AddConstEx( id, "STATUS_RDBSS_CONTINUE_OPERATION", 0xC0410002, -1);
    AddConstEx( id, "STATUS_RDBSS_POST_OPERATION", 0xC0410003, -1);
    AddConstEx( id, "STATUS_BTH_ATT_INVALID_HANDLE", 0xC0420001, -1);
    AddConstEx( id, "STATUS_BTH_ATT_READ_NOT_PERMITTED", 0xC0420002, -1);
    AddConstEx( id, "STATUS_BTH_ATT_WRITE_NOT_PERMITTED", 0xC0420003, -1);
    AddConstEx( id, "STATUS_BTH_ATT_INVALID_PDU", 0xC0420004, -1);
    AddConstEx( id, "STATUS_BTH_ATT_INSUFFICIENT_AUTHENTICATION", 0xC0420005, -1);
    AddConstEx( id, "STATUS_BTH_ATT_REQUEST_NOT_SUPPORTED", 0xC0420006, -1);
    AddConstEx( id, "STATUS_BTH_ATT_INVALID_OFFSET", 0xC0420007, -1);
    AddConstEx( id, "STATUS_BTH_ATT_INSUFFICIENT_AUTHORIZATION", 0xC0420008, -1);
    AddConstEx( id, "STATUS_BTH_ATT_PREPARE_QUEUE_FULL", 0xC0420009, -1);
    AddConstEx( id, "STATUS_BTH_ATT_ATTRIBUTE_NOT_FOUND", 0xC042000A, -1);
    AddConstEx( id, "STATUS_BTH_ATT_ATTRIBUTE_NOT_LONG", 0xC042000B, -1);
    AddConstEx( id, "STATUS_BTH_ATT_INSUFFICIENT_ENCRYPTION_KEY_SIZE", 0xC042000C, -1);
    AddConstEx( id, "STATUS_BTH_ATT_INVALID_ATTRIBUTE_VALUE_LENGTH", 0xC042000D, -1);
    AddConstEx( id, "STATUS_BTH_ATT_UNLIKELY", 0xC042000E, -1);
    AddConstEx( id, "STATUS_BTH_ATT_INSUFFICIENT_ENCRYPTION", 0xC042000F, -1);
    AddConstEx( id, "STATUS_BTH_ATT_UNSUPPORTED_GROUP_TYPE", 0xC0420010, -1);
    AddConstEx( id, "STATUS_BTH_ATT_INSUFFICIENT_RESOURCES", 0xC0420011, -1);
    AddConstEx( id, "STATUS_BTH_ATT_UNKNOWN_ERROR", 0xC0421000, -1);
    AddConstEx( id, "STATUS_SECUREBOOT_ROLLBACK_DETECTED", 0xC0430001, -1);
    AddConstEx( id, "STATUS_SECUREBOOT_POLICY_VIOLATION", 0xC0430002, -1);
    AddConstEx( id, "STATUS_SECUREBOOT_INVALID_POLICY", 0xC0430003, -1);
    AddConstEx( id, "STATUS_SECUREBOOT_POLICY_PUBLISHER_NOT_FOUND", 0xC0430004, -1);
    AddConstEx( id, "STATUS_SECUREBOOT_POLICY_NOT_SIGNED", 0xC0430005, -1);
    AddConstEx( id, "STATUS_SECUREBOOT_FILE_REPLACED", 0xC0430007, -1);
    AddConstEx( id, "STATUS_AUDIO_ENGINE_NODE_NOT_FOUND", 0xC0440001, -1);
    AddConstEx( id, "STATUS_HDAUDIO_EMPTY_CONNECTION_LIST", 0xC0440002, -1);
    AddConstEx( id, "STATUS_HDAUDIO_CONNECTION_LIST_NOT_SUPPORTED", 0xC0440003, -1);
    AddConstEx( id, "STATUS_HDAUDIO_NO_LOGICAL_DEVICES_CREATED", 0xC0440004, -1);
    AddConstEx( id, "STATUS_HDAUDIO_NULL_LINKED_LIST_ENTRY", 0xC0440005, -1);
    AddConstEx( id, "STATUS_VOLSNAP_BOOTFILE_NOT_VALID", 0xC0500003, -1);
    AddConstEx( id, "STATUS_IO_PREEMPTED", 0xC0510001, -1);
    AddConstEx( id, "STATUS_SVHDX_ERROR_STORED", 0xC05C0000, -1);
    AddConstEx( id, "STATUS_SVHDX_ERROR_NOT_AVAILABLE", 0xC05CFF00, -1);
    AddConstEx( id, "STATUS_SVHDX_UNIT_ATTENTION_AVAILABLE", 0xC05CFF01, -1);
    AddConstEx( id, "STATUS_SVHDX_UNIT_ATTENTION_CAPACITY_DATA_CHANGED", 0xC05CFF02, -1);
    AddConstEx( id, "STATUS_SVHDX_UNIT_ATTENTION_RESERVATIONS_PREEMPTED", 0xC05CFF03, -1);
    AddConstEx( id, "STATUS_SVHDX_UNIT_ATTENTION_RESERVATIONS_RELEASED", 0xC05CFF04, -1);
    AddConstEx( id, "STATUS_SVHDX_UNIT_ATTENTION_REGISTRATIONS_PREEMPTED", 0xC05CFF05, -1);
    AddConstEx( id, "STATUS_SVHDX_UNIT_ATTENTION_OPERATING_DEFINITION_CHANGED", 0xC05CFF06, -1);
    AddConstEx( id, "STATUS_SVHDX_RESERVATION_CONFLICT", 0xC05CFF07, -1);
    AddConstEx( id, "STATUS_SVHDX_WRONG_FILE_TYPE", 0xC05CFF08, -1);
    AddConstEx( id, "STATUS_SVHDX_VERSION_MISMATCH", 0xC05CFF09, -1);
    AddConstEx( id, "STATUS_VHD_SHARED", 0xC05CFF0A, -1);
    AddConstEx( id, "STATUS_SPACES_RESILIENCY_TYPE_INVALID", 0xC0E70003, -1);
    AddConstEx( id, "STATUS_SPACES_DRIVE_SECTOR_SIZE_INVALID", 0xC0E70004, -1);
    AddConstEx( id, "STATUS_SPACES_INTERLEAVE_LENGTH_INVALID", 0xC0E70009, -1);
    AddConstEx( id, "STATUS_SPACES_NUMBER_OF_COLUMNS_INVALID", 0xC0E7000A, -1);
    AddConstEx( id, "STATUS_SPACES_NOT_ENOUGH_DRIVES", 0xC0E7000B, -1);
  }
}

static main(void) {
        Enums();                // enumerations
}

wincheck rc8.50


msbuild 4.0 debugger

$
0
0
Just patch registry:
c:\windows\system32\reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSBuild\4.0" /v DebuggerEnabled /d true
 and for syswow64:
c:\windows\syswow64\reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSBuild\4.0" /v DebuggerEnabled /d true
from

llvm 3.3 - wtf ?

$
0
0
was built under xp 64bit with visual studio 2010
And I got:
30>  Testing Time: 106.52s
30>  ********************
30>  Failing Tests (32):
30>      LLVM :: CodeGen/ARM/lsr-scale-addr-mode.ll
30>      LLVM :: CodeGen/X86/rodata-relocs.ll
30>      LLVM :: Linker/2003-08-24-InheritPtrSize.ll
30>      LLVM :: Linker/2008-03-05-AliasReference2.ll
30>      LLVM :: Linker/2008-07-06-AliasFnDecl2.ll
30>      LLVM :: Linker/2008-07-06-AliasWeakDest2.ll
30>      LLVM :: Linker/2009-09-03-mdnode2.ll
30>      LLVM :: Linker/2011-08-04-DebugLoc2.ll
30>      LLVM :: Linker/2011-08-04-Metadata2.ll
30>      LLVM :: Linker/2011-08-18-unique-class-type2.ll
30>      LLVM :: Linker/2011-08-18-unique-debug-type2.ll
30>      LLVM :: Linker/2011-08-22-ResolveAlias2.ll
30>      LLVM :: Linker/DbgDeclare2.ll
30>      LLVM :: Linker/available_externally_b.ll
30>      LLVM :: Linker/linkmdnode2.ll
30>      LLVM :: Linker/linknamedmdnode2.ll
30>      LLVM :: Linker/metadata-b.ll
30>      LLVM :: Linker/module-flags-1-b.ll
30>      LLVM :: Linker/module-flags-2-b.ll
30>      LLVM :: Linker/module-flags-3-b.ll
30>      LLVM :: Linker/module-flags-4-b.ll
30>      LLVM :: Linker/module-flags-5-b.ll
30>      LLVM :: Linker/module-flags-6-b.ll
30>      LLVM :: Linker/module-flags-7-b.ll
30>      LLVM :: Linker/module-flags-8-b.ll
30>      LLVM :: Linker/partial-type-refinement-link.ll
30>      LLVM :: Linker/testlink2.ll
30>      LLVM :: Linker/unnamed-addr1-b.ll
30>      LLVM :: Linker/visibility2.ll
30>      LLVM :: MC/MachO/gen-dwarf-producer.s
30>      LLVM :: Transforms/ArgumentPromotion/byval-2.ll
30>      LLVM :: Transforms/LoopSimplify/indirectbr.ll
30>
30>    Expected Passes    : 8274
30>    Expected Failures  : 52
30>    Unsupported Tests  : 264
30>    Unexpected Failures: 32

Is it "normal" ?

clang on windows

$
0
0
it's really wonderful - vs2010 falls on target check-clang:

ids files for MFC 12

$
0
0
I uploaded archive of IDS files for both 32 & 64bit MFC 12 dll modules
This archive also contains IDT files used for building

msvcrXXX.dll exports

$
0
0
for msvcr70.dll, msvcr71.dll, msvcr80.dll, msvcr90.dll, msvcr100.dll, msvcr110.dll & msvcr120.dll


$I10_OUTPUT70718090100110120
??0?$_SpinWait@$00@details@Concurrency@@QAE@P6AXXZ@Z100110120
??0?$_SpinWait@$0A@@details@Concurrency@@QAE@P6AXXZ@Z100110120
??0SchedulerPolicy@Concurrency@@QAA@IZZ100110120
??0SchedulerPolicy@Concurrency@@QAE@ABV01@@Z100110120
??0SchedulerPolicy@Concurrency@@QAE@XZ100110120
??0_CancellationTokenState@details@Concurrency@@AAE@XZ110
??0_Cancellation_beacon@details@Concurrency@@QAE@XZ110120
??0_Condition_variable@details@Concurrency@@QAE@XZ110120
??0_Context@details@Concurrency@@QAE@PAVContext@2@@Z110120
??0_Interruption_exception@details@Concurrency@@QAE@PBD@Z110120
??0_Interruption_exception@details@Concurrency@@QAE@XZ110120
??0_NonReentrantBlockingLock@details@Concurrency@@QAE@XZ100110120
??0_NonReentrantPPLLock@details@Concurrency@@QAE@XZ100110120
??0_ReaderWriterLock@details@Concurrency@@QAE@XZ100110120
??0_ReentrantBlockingLock@details@Concurrency@@QAE@XZ100110120
??0_ReentrantLock@details@Concurrency@@QAE@XZ100110120
??0_ReentrantPPLLock@details@Concurrency@@QAE@XZ100110120
??0_Scheduler@details@Concurrency@@QAE@PAVScheduler@2@@Z110120
??0_Scoped_lock@_NonReentrantPPLLock@details@Concurrency@@QAE@AAV123@@Z100110120
??0_Scoped_lock@_ReentrantPPLLock@details@Concurrency@@QAE@AAV123@@Z100110120
??0_SpinLock@details@Concurrency@@QAE@ACJ@Z100110120
??0_StructuredTaskCollection@details@Concurrency@@QAE@PAV_CancellationTokenState@12@@Z110120
??0_TaskCollection@details@Concurrency@@QAE@PAV_CancellationTokenState@12@@Z110120
??0_TaskCollection@details@Concurrency@@QAE@XZ100110120
??0_Timer@details@Concurrency@@IAE@I_N@Z100110120
??0__non_rtti_object@@QAE@ABV0@@Z7071
??0__non_rtti_object@@QAE@PBD@Z7071
??0__non_rtti_object@std@@QAE@ABV01@@Z8090100110120
??0__non_rtti_object@std@@QAE@PBD@Z100110120
??0bad_cast@@AAE@PBQBD@Z71
??0bad_cast@@QAE@ABQBD@Z7071
??0bad_cast@@QAE@ABV0@@Z7071
??0bad_cast@@QAE@PBD@Z71
??0bad_cast@std@@AAE@PBQBD@Z100110120
??0bad_cast@std@@QAE@ABV01@@Z8090100110120
??0bad_cast@std@@QAE@PBD@Z8090100110120
??0bad_target@Concurrency@@QAE@PBD@Z100110120
??0bad_target@Concurrency@@QAE@XZ100110120
??0bad_typeid@@QAE@ABV0@@Z7071
??0bad_typeid@@QAE@PBD@Z7071
??0bad_typeid@std@@QAE@ABV01@@Z8090100110120
??0bad_typeid@std@@QAE@PBD@Z8090100110120
??0context_self_unblock@Concurrency@@QAE@PBD@Z100110120
??0context_self_unblock@Concurrency@@QAE@XZ100110120
??0context_unblock_unbalanced@Concurrency@@QAE@PBD@Z100110120
??0context_unblock_unbalanced@Concurrency@@QAE@XZ100110120
??0critical_section@Concurrency@@QAE@XZ100110120
??0default_scheduler_exists@Concurrency@@QAE@PBD@Z100110120
??0default_scheduler_exists@Concurrency@@QAE@XZ100110120
??0event@Concurrency@@QAE@XZ100110120
??0exception@@QAE@ABQBD@Z7071
??0exception@@QAE@ABV0@@Z7071
??0exception@@QAE@XZ7071
??0exception@std@@QAE@ABQBD@Z8090100110120
??0exception@std@@QAE@ABQBDH@Z8090100110120
??0exception@std@@QAE@ABV01@@Z8090100110120
??0exception@std@@QAE@XZ8090100110120
??0improper_lock@Concurrency@@QAE@PBD@Z100110120
??0improper_lock@Concurrency@@QAE@XZ100110120
??0improper_scheduler_attach@Concurrency@@QAE@PBD@Z100110120
??0improper_scheduler_attach@Concurrency@@QAE@XZ100110120
??0improper_scheduler_detach@Concurrency@@QAE@PBD@Z100110120
??0improper_scheduler_detach@Concurrency@@QAE@XZ100110120
??0improper_scheduler_reference@Concurrency@@QAE@PBD@Z100110120
??0improper_scheduler_reference@Concurrency@@QAE@XZ100110120
??0invalid_link_target@Concurrency@@QAE@PBD@Z100110120
??0invalid_link_target@Concurrency@@QAE@XZ100110120
??0invalid_multiple_scheduling@Concurrency@@QAE@PBD@Z100110120
??0invalid_multiple_scheduling@Concurrency@@QAE@XZ100110120
??0invalid_operation@Concurrency@@QAE@PBD@Z100110120
??0invalid_operation@Concurrency@@QAE@XZ100110120
??0invalid_oversubscribe_operation@Concurrency@@QAE@PBD@Z100110120
??0invalid_oversubscribe_operation@Concurrency@@QAE@XZ100110120
??0invalid_scheduler_policy_key@Concurrency@@QAE@PBD@Z100110120
??0invalid_scheduler_policy_key@Concurrency@@QAE@XZ100110120
??0invalid_scheduler_policy_thread_specification@Concurrency@@QAE@PBD@Z100110120
??0invalid_scheduler_policy_thread_specification@Concurrency@@QAE@XZ100110120
??0invalid_scheduler_policy_value@Concurrency@@QAE@PBD@Z100110120
??0invalid_scheduler_policy_value@Concurrency@@QAE@XZ100110120
??0message_not_found@Concurrency@@QAE@PBD@Z100110120
??0message_not_found@Concurrency@@QAE@XZ100110120
??0missing_wait@Concurrency@@QAE@PBD@Z100110120
??0missing_wait@Concurrency@@QAE@XZ100110120
??0nested_scheduler_missing_detach@Concurrency@@QAE@PBD@Z100110120
??0nested_scheduler_missing_detach@Concurrency@@QAE@XZ100110120
??0operation_timed_out@Concurrency@@QAE@PBD@Z100110120
??0operation_timed_out@Concurrency@@QAE@XZ100110120
??0reader_writer_lock@Concurrency@@QAE@XZ100110120
??0scheduler_not_attached@Concurrency@@QAE@PBD@Z100110120
??0scheduler_not_attached@Concurrency@@QAE@XZ100110120
??0scheduler_resource_allocation_error@Concurrency@@QAE@J@Z100110120
??0scheduler_resource_allocation_error@Concurrency@@QAE@PBDJ@Z100110120
??0scheduler_worker_creation_error@Concurrency@@QAE@J@Z110120
??0scheduler_worker_creation_error@Concurrency@@QAE@PBDJ@Z110120
??0scoped_lock@critical_section@Concurrency@@QAE@AAV12@@Z100110120
??0scoped_lock@reader_writer_lock@Concurrency@@QAE@AAV12@@Z100110120
??0scoped_lock_read@reader_writer_lock@Concurrency@@QAE@AAV12@@Z100110120
??0task_canceled@Concurrency@@QAE@PBD@Z110120
??0task_canceled@Concurrency@@QAE@XZ110120
??0task_canceled@details@Concurrency@@QAE@PBD@Z100
??0task_canceled@details@Concurrency@@QAE@XZ100
??0unsupported_os@Concurrency@@QAE@PBD@Z100110120
??0unsupported_os@Concurrency@@QAE@XZ100110120
??1SchedulerPolicy@Concurrency@@QAE@XZ100110120
??1_CancellationTokenState@details@Concurrency@@UAE@XZ110
??1_Cancellation_beacon@details@Concurrency@@QAE@XZ110120
??1_Condition_variable@details@Concurrency@@QAE@XZ110120
??1_NonReentrantBlockingLock@details@Concurrency@@QAE@XZ100110120
??1_ReentrantBlockingLock@details@Concurrency@@QAE@XZ100110120
??1_Scoped_lock@_NonReentrantPPLLock@details@Concurrency@@QAE@XZ100110120
??1_Scoped_lock@_ReentrantPPLLock@details@Concurrency@@QAE@XZ100110120
??1_SpinLock@details@Concurrency@@QAE@XZ100110120
??1_StructuredTaskCollection@details@Concurrency@@QAE@XZ120
??1_TaskCollection@details@Concurrency@@QAE@XZ100110120
??1_Timer@details@Concurrency@@IAE@XZ100
??1_Timer@details@Concurrency@@MAE@XZ110120
??1__non_rtti_object@@UAE@XZ7071
??1__non_rtti_object@std@@UAE@XZ8090100110120
??1bad_cast@@UAE@XZ7071
??1bad_cast@std@@UAE@XZ8090100110120
??1bad_typeid@@UAE@XZ7071
??1bad_typeid@std@@UAE@XZ8090100110120
??1critical_section@Concurrency@@QAE@XZ100110120
??1event@Concurrency@@QAE@XZ100110120
??1exception@@UAE@XZ7071
??1exception@std@@UAE@XZ8090100110120
??1reader_writer_lock@Concurrency@@QAE@XZ100110120
??1scoped_lock@critical_section@Concurrency@@QAE@XZ100110120
??1scoped_lock@reader_writer_lock@Concurrency@@QAE@XZ100110120
??1scoped_lock_read@reader_writer_lock@Concurrency@@QAE@XZ100110120
??1type_info@@UAE@XZ70718090100110120
??2@YAPAXI@Z70718090100110120
??2@YAPAXIHPBDH@Z8090100110120
??3@YAXPAX@Z70718090100110120
??3@YAXPAXHPBDH@Z110120
??4?$_SpinWait@$00@details@Concurrency@@QAEAAV012@ABV012@@Z100110120
??4?$_SpinWait@$0A@@details@Concurrency@@QAEAAV012@ABV012@@Z100110120
??4SchedulerPolicy@Concurrency@@QAEAAV01@ABV01@@Z100110120
??4__non_rtti_object@@QAEAAV0@ABV0@@Z7071
??4__non_rtti_object@std@@QAEAAV01@ABV01@@Z8090100110120
??4bad_cast@@QAEAAV0@ABV0@@Z7071
??4bad_cast@std@@QAEAAV01@ABV01@@Z8090100110120
??4bad_typeid@@QAEAAV0@ABV0@@Z7071
??4bad_typeid@std@@QAEAAV01@ABV01@@Z8090100110120
??4exception@@QAEAAV0@ABV0@@Z7071
??4exception@std@@QAEAAV01@ABV01@@Z8090100110120
??8type_info@@QBEHABV0@@Z7071
??8type_info@@QBE_NABV0@@Z8090100110120
??9type_info@@QBEHABV0@@Z7071
??9type_info@@QBE_NABV0@@Z8090100110120
??_7__non_rtti_object@@6B@7071
??_7__non_rtti_object@std@@6B@8090100110120
??_7bad_cast@@6B@7071
??_7bad_cast@std@@6B@8090100110120
??_7bad_typeid@@6B@7071
??_7bad_typeid@std@@6B@8090100110120
??_7exception@@6B@70718090100
??_7exception@std@@6B@8090100110120
??_E__non_rtti_object@@UAEPAXI@Z70
??_Ebad_cast@@UAEPAXI@Z70
??_Ebad_typeid@@UAEPAXI@Z70
??_Eexception@@UAEPAXI@Z70
??_F?$_SpinWait@$00@details@Concurrency@@QAEXXZ100110120
??_F?$_SpinWait@$0A@@details@Concurrency@@QAEXXZ100110120
??_F_Context@details@Concurrency@@QAEXXZ110120
??_F_Scheduler@details@Concurrency@@QAEXXZ110120
??_Fbad_cast@@QAEXXZ71
??_Fbad_cast@std@@QAEXXZ8090100110120
??_Fbad_typeid@@QAEXXZ71
??_Fbad_typeid@std@@QAEXXZ8090100110120
??_G__non_rtti_object@@UAEPAXI@Z70
??_Gbad_cast@@UAEPAXI@Z70
??_Gbad_typeid@@UAEPAXI@Z70
??_Gexception@@UAEPAXI@Z70
??_U@YAPAXI@Z70718090100110120
??_U@YAPAXIHPBDH@Z8090100110120
??_V@YAXPAX@Z70718090100110120
??_V@YAXPAXHPBDH@Z110120
?Alloc@Concurrency@@YAPAXI@Z100110120
?Block@Context@Concurrency@@SAXXZ100110120
?CaptureCallstack@platform@details@Concurrency@@YAIPAPAXII@Z120
?Create@CurrentScheduler@Concurrency@@SAXABVSchedulerPolicy@2@@Z100110120
?Create@Scheduler@Concurrency@@SAPAV12@ABVSchedulerPolicy@2@@Z100110120
?CreateResourceManager@Concurrency@@YAPAUIResourceManager@1@XZ100110120
?CreateScheduleGroup@CurrentScheduler@Concurrency@@SAPAVScheduleGroup@2@AAVlocation@2@@Z110120
?CreateScheduleGroup@CurrentScheduler@Concurrency@@SAPAVScheduleGroup@2@XZ100110120
?CurrentContext@Context@Concurrency@@SAPAV12@XZ100110120
?Detach@CurrentScheduler@Concurrency@@SAXXZ100110120
?DisableTracing@Concurrency@@YAJXZ100110120
?EnableTracing@Concurrency@@YAJXZ100110120
?Free@Concurrency@@YAXPAX@Z100110120
?Get@CurrentScheduler@Concurrency@@SAPAVScheduler@2@XZ100110120
?GetCurrentThreadId@platform@details@Concurrency@@YAJXZ120
?GetExecutionContextId@Concurrency@@YAIXZ100110120
?GetNumberOfVirtualProcessors@CurrentScheduler@Concurrency@@SAIXZ100110120
?GetOSVersion@Concurrency@@YA?AW4OSVersion@IResourceManager@1@XZ100110120
?GetPolicy@CurrentScheduler@Concurrency@@SA?AVSchedulerPolicy@2@XZ100110120
?GetPolicyValue@SchedulerPolicy@Concurrency@@QBEIW4PolicyElementKey@2@@Z100110120
?GetProcessorCount@Concurrency@@YAIXZ100110120
?GetProcessorNodeCount@Concurrency@@YAIXZ100110120
?GetSchedulerId@Concurrency@@YAIXZ100110120
?GetSharedTimerQueue@details@Concurrency@@YAPAXXZ100110120
?Id@Context@Concurrency@@SAIXZ100110120
?Id@CurrentScheduler@Concurrency@@SAIXZ100110120
?IsAvailableLocation@CurrentScheduler@Concurrency@@SA_NABVlocation@2@@Z110120
?IsCurrentTaskCollectionCanceling@Context@Concurrency@@SA_NXZ100110120
?Log2@details@Concurrency@@YAKI@Z100110120
?Oversubscribe@Context@Concurrency@@SAX_N@Z100110120
?RegisterShutdownEvent@CurrentScheduler@Concurrency@@SAXPAX@Z100110120
?ResetDefaultSchedulerPolicy@Scheduler@Concurrency@@SAXXZ100110120
?ScheduleGroupId@Context@Concurrency@@SAIXZ100110120
?ScheduleTask@CurrentScheduler@Concurrency@@SAXP6AXPAX@Z0@Z100110120
?ScheduleTask@CurrentScheduler@Concurrency@@SAXP6AXPAX@Z0AAVlocation@2@@Z110120
?SetConcurrencyLimits@SchedulerPolicy@Concurrency@@QAEXII@Z100110120
?SetDefaultSchedulerPolicy@Scheduler@Concurrency@@SAXABVSchedulerPolicy@2@@Z100110120
?SetPolicyValue@SchedulerPolicy@Concurrency@@QAEIW4PolicyElementKey@2@I@Z100110120
?VirtualProcessorId@Context@Concurrency@@SAIXZ100110120
?Yield@Context@Concurrency@@SAXXZ100110120
?_Abort@_StructuredTaskCollection@details@Concurrency@@AAEXXZ100110120
?_Acquire@_NonReentrantBlockingLock@details@Concurrency@@QAEXXZ100110120
?_Acquire@_NonReentrantPPLLock@details@Concurrency@@QAEXPAX@Z100110120
?_Acquire@_ReentrantBlockingLock@details@Concurrency@@QAEXXZ100110120
?_Acquire@_ReentrantLock@details@Concurrency@@QAEXXZ100110120
?_Acquire@_ReentrantPPLLock@details@Concurrency@@QAEXPAX@Z100110120
?_AcquireRead@_ReaderWriterLock@details@Concurrency@@QAEXXZ100110120
?_AcquireWrite@_ReaderWriterLock@details@Concurrency@@QAEXXZ100110120
?_Cancel@_CancellationTokenState@details@Concurrency@@QAEXXZ110
?_Cancel@_StructuredTaskCollection@details@Concurrency@@QAEXXZ100110120
?_Cancel@_TaskCollection@details@Concurrency@@QAEXXZ100110120
?_CheckTaskCollection@_UnrealizedChore@details@Concurrency@@IAEXXZ100110120
?_CleanupToken@_StructuredTaskCollection@details@Concurrency@@AAEXXZ110120
?_ConcRT_Assert@details@Concurrency@@YAXPBD0H@Z100
?_ConcRT_CoreAssert@details@Concurrency@@YAXPBD0H@Z100110120
?_ConcRT_DumpMessage@details@Concurrency@@YAXPB_WZZ100
?_ConcRT_Trace@details@Concurrency@@YAXHPB_WZZ100110120
?_Confirm_cancel@_Cancellation_beacon@details@Concurrency@@QAE_NXZ110120
?_Copy_str@exception@std@@AAEXPBD@Z100110120
?_CurrentContext@_Context@details@Concurrency@@SA?AV123@XZ110120
?_Current_node@location@Concurrency@@SA?AV12@XZ110120
?_DeregisterCallback@_CancellationTokenState@details@Concurrency@@QAEXPAV_CancellationTokenRegistration@23@@Z110
?_Destroy@_AsyncTaskCollection@details@Concurrency@@EAEXXZ110120
?_Destroy@_CancellationTokenState@details@Concurrency@@EAEXXZ110
?_DoYield@?$_SpinWait@$00@details@Concurrency@@IAEXXZ100110120
?_DoYield@?$_SpinWait@$0A@@details@Concurrency@@IAEXXZ100110120
?_Get@_CurrentScheduler@details@Concurrency@@SA?AV_Scheduler@23@XZ110120
?_GetConcRTTraceInfo@Concurrency@@YAPBU_CONCRT_TRACE_INFO@details@1@XZ110120
?_GetConcurrency@details@Concurrency@@YAIXZ110120
?_GetCurrentInlineDepth@_StackGuard@details@Concurrency@@CAAAIXZ110120
?_GetNumberOfVirtualProcessors@_CurrentScheduler@details@Concurrency@@SAIXZ110120
?_GetScheduler@_Scheduler@details@Concurrency@@QAEPAVScheduler@3@XZ110120
?_Id@_CurrentScheduler@details@Concurrency@@SAIXZ110120
?_Invoke@_CancellationTokenRegistration@details@Concurrency@@AAEXXZ110
?_IsCanceling@_StructuredTaskCollection@details@Concurrency@@QAE_NXZ100110120
?_IsCanceling@_TaskCollection@details@Concurrency@@QAE_NXZ100110120
?_IsSynchronouslyBlocked@_Context@details@Concurrency@@QBE_NXZ110120
?_Name_base@type_info@@CAPBDPBV1@PAU__type_info_node@@@Z8090100110120
?_Name_base_internal@type_info@@CAPBDPBV1@PAU__type_info_node@@@Z8090100110120
?_NewCollection@_AsyncTaskCollection@details@Concurrency@@SAPAV123@PAV_CancellationTokenState@23@@Z110120
?_NewTokenState@_CancellationTokenState@details@Concurrency@@SAPAV123@XZ110
?_NumberOfSpins@?$_SpinWait@$00@details@Concurrency@@IAEKXZ100110120
?_NumberOfSpins@?$_SpinWait@$0A@@details@Concurrency@@IAEKXZ100110120
?_Oversubscribe@_Context@details@Concurrency@@SAX_N@Z110120
?_Reference@_Scheduler@details@Concurrency@@QAEIXZ110120
?_RegisterCallback@_CancellationTokenState@details@Concurrency@@QAEPAV_CancellationTokenRegistration@23@P6AXPAX@Z0H@Z110
?_RegisterCallback@_CancellationTokenState@details@Concurrency@@QAEXPAV_CancellationTokenRegistration@23@@Z110
?_Release@_NonReentrantBlockingLock@details@Concurrency@@QAEXXZ100110120
?_Release@_NonReentrantPPLLock@details@Concurrency@@QAEXXZ100110120
?_Release@_ReentrantBlockingLock@details@Concurrency@@QAEXXZ100110120
?_Release@_ReentrantLock@details@Concurrency@@QAEXXZ100110120
?_Release@_ReentrantPPLLock@details@Concurrency@@QAEXXZ100110120
?_Release@_Scheduler@details@Concurrency@@QAEIXZ110120
?_ReleaseRead@_ReaderWriterLock@details@Concurrency@@QAEXXZ100110120
?_ReleaseWrite@_ReaderWriterLock@details@Concurrency@@QAEXXZ100110120
?_ReportUnobservedException@details@Concurrency@@YAXXZ110120
?_Reset@?$_SpinWait@$00@details@Concurrency@@IAEXXZ100110120
?_Reset@?$_SpinWait@$0A@@details@Concurrency@@IAEXXZ100110120
?_RunAndWait@_StructuredTaskCollection@details@Concurrency@@QAG?AW4_TaskCollectionStatus@23@PAV_UnrealizedChore@23@@Z100110120
?_RunAndWait@_TaskCollection@details@Concurrency@@QAG?AW4_TaskCollectionStatus@23@PAV_UnrealizedChore@23@@Z100110120
?_Schedule@_StructuredTaskCollection@details@Concurrency@@QAEXPAV_UnrealizedChore@23@@Z100110120
?_Schedule@_StructuredTaskCollection@details@Concurrency@@QAEXPAV_UnrealizedChore@23@PAVlocation@3@@Z110120
?_Schedule@_TaskCollection@details@Concurrency@@QAEXPAV_UnrealizedChore@23@@Z100110120
?_Schedule@_TaskCollection@details@Concurrency@@QAEXPAV_UnrealizedChore@23@PAVlocation@3@@Z110120
?_ScheduleTask@_CurrentScheduler@details@Concurrency@@SAXP6AXPAX@Z0@Z110120
?_SetSpinCount@?$_SpinWait@$00@details@Concurrency@@QAEXI@Z100110120
?_SetSpinCount@?$_SpinWait@$0A@@details@Concurrency@@QAEXI@Z100110120
?_SetUnobservedExceptionHandler@details@Concurrency@@YAXP6AXXZ@Z110120
?_ShouldSpinAgain@?$_SpinWait@$00@details@Concurrency@@IAE_NXZ100110120
?_ShouldSpinAgain@?$_SpinWait@$0A@@details@Concurrency@@IAE_NXZ100110120
?_SpinOnce@?$_SpinWait@$00@details@Concurrency@@QAE_NXZ100110120
?_SpinOnce@?$_SpinWait@$0A@@details@Concurrency@@QAE_NXZ100110120
?_SpinYield@Context@Concurrency@@SAXXZ100110120
?_Start@_Timer@details@Concurrency@@IAEXXZ100110120
?_Stop@_Timer@details@Concurrency@@IAEXXZ100110120
?_Tidy@exception@std@@AAEXXZ100110120
?_Trace_agents@Concurrency@@YAXW4Agents_EventType@1@_JZZ110120
?_Trace_ppl_function@Concurrency@@YAXABU_GUID@@EW4ConcRT_EventType@1@@Z100110120
?_TryAcquire@_NonReentrantBlockingLock@details@Concurrency@@QAE_NXZ100110120
?_TryAcquire@_ReentrantBlockingLock@details@Concurrency@@QAE_NXZ100110120
?_TryAcquire@_ReentrantLock@details@Concurrency@@QAE_NXZ100110120
?_TryAcquireWrite@_ReaderWriterLock@details@Concurrency@@QAE_NXZ100110120
?_Type_info_dtor@type_info@@CAXPAV1@@Z8090100110120
?_Type_info_dtor_internal@type_info@@CAXPAV1@@Z8090100110120
?_UnderlyingYield@details@Concurrency@@YAXXZ100110120
?_ValidateExecute@@YAHP6GHXZ@Z8090100110120
?_ValidateRead@@YAHPBXI@Z8090100110120
?_ValidateWrite@@YAHPAXI@Z8090100110120
?_Value@_SpinCount@details@Concurrency@@SAIXZ100110120
?_Yield@_Context@details@Concurrency@@SAXXZ110120
?__ExceptionPtrAssign@@YAXPAXPBX@Z100110120
?__ExceptionPtrCompare@@YA_NPBX0@Z100110120
?__ExceptionPtrCopy@@YAXPAXPBX@Z100110120
?__ExceptionPtrCopyException@@YAXPAXPBX1@Z100110120
?__ExceptionPtrCreate@@YAXPAX@Z100110120
?__ExceptionPtrCurrentException@@YAXPAX@Z100110120
?__ExceptionPtrDestroy@@YAXPAX@Z100110120
?__ExceptionPtrRethrow@@YAXPBX@Z100110120
?__ExceptionPtrSwap@@YAXPAX0@Z110120
?__ExceptionPtrToBool@@YA_NPBX@Z110120
?_inconsistency@@YAXXZ8090100110120
?_invalid_parameter@@YAXPBG00II@Z8090100110120
?_is_exception_typeof@@YAHABVtype_info@@PAU_EXCEPTION_POINTERS@@@Z8090100110120
?_name_internal_method@type_info@@QBEPBDPAU__type_info_node@@@Z8090100110120
?_open@@YAHPBDHH@Z8090100110120
?_query_new_handler@@YAP6AHI@ZXZ70718090100110120
?_query_new_mode@@YAHXZ70718090100110120
?_set_new_handler@@YAP6AHI@ZH@Z8090100110120
?_set_new_handler@@YAP6AHI@ZP6AHI@Z@Z70718090100110120
?_set_new_mode@@YAHH@Z70718090100110120
?_set_se_translator@@YAP6AXIPAU_EXCEPTION_POINTERS@@@ZH@Z8090100110120
?_set_se_translator@@YAP6AXIPAU_EXCEPTION_POINTERS@@@ZP6AXI0@Z@Z70718090100110120
?_sopen@@YAHPBDHHH@Z8090100110120
?_type_info_dtor_internal_method@type_info@@QAEXXZ8090100110120
?_wopen@@YAHPB_WHH@Z8090100110120
?_wsopen@@YAHPB_WHHH@Z8090100110120
?before@type_info@@QBEHABV1@@Z70718090100
?before@type_info@@QBE_NABV1@@Z110120
?current@location@Concurrency@@SA?AV12@XZ110120
?from_numa_node@location@Concurrency@@SA?AV12@G@Z110120
?get_error_code@scheduler_resource_allocation_error@Concurrency@@QBEJXZ100110120
?lock@critical_section@Concurrency@@QAEXXZ100110120
?lock@reader_writer_lock@Concurrency@@QAEXXZ100110120
?lock_read@reader_writer_lock@Concurrency@@QAEXXZ100110120
?name@type_info@@QBEPBDPAU__type_info_node@@@Z8090100110120
?name@type_info@@QBEPBDXZ7071
?native_handle@critical_section@Concurrency@@QAEAAV12@XZ100110120
?notify_all@_Condition_variable@details@Concurrency@@QAEXXZ110120
?notify_one@_Condition_variable@details@Concurrency@@QAEXXZ110120
?raw_name@type_info@@QBEPBDXZ70718090100110120
?reset@event@Concurrency@@QAEXXZ100110120
?set@event@Concurrency@@QAEXXZ100110120
?set_new_handler@@YAP6AXXZP6AXXZ@Z70718090100110120
?set_task_execution_resources@Concurrency@@YAXGPAU_GROUP_AFFINITY@@@Z110120
?set_task_execution_resources@Concurrency@@YAXK@Z110120
?set_terminate@@YAP6AXXZH@Z8090100110120
?set_terminate@@YAP6AXXZP6AXXZ@Z70718090100110120
?set_unexpected@@YAP6AXXZH@Z8090100110120
?set_unexpected@@YAP6AXXZP6AXXZ@Z70718090100110120
?swprintf@@YAHPAGIPBGZZ718090100110120
?swprintf@@YAHPA_WIPB_WZZ718090100110120
?terminate@@YAXXZ70718090100110120
?try_lock@critical_section@Concurrency@@QAE_NXZ100110120
?try_lock@reader_writer_lock@Concurrency@@QAE_NXZ100110120
?try_lock_for@critical_section@Concurrency@@QAE_NI@Z110120
?try_lock_read@reader_writer_lock@Concurrency@@QAE_NXZ100110120
?unexpected@@YAXXZ70718090100110120
?unlock@critical_section@Concurrency@@QAEXXZ100110120
?unlock@reader_writer_lock@Concurrency@@QAEXXZ100110120
?vswprintf@@YAHPAGIPBGPAD@Z71
?vswprintf@@YAHPA_WIPB_WPAD@Z718090100110120
?wait@Concurrency@@YAXI@Z100110120
?wait@_Condition_variable@details@Concurrency@@QAEXAAVcritical_section@3@@Z110120
?wait@event@Concurrency@@QAEII@Z100110120
?wait_for@_Condition_variable@details@Concurrency@@QAE_NAAVcritical_section@3@I@Z110120
?wait_for_multiple@event@Concurrency@@SAIPAPAV12@I_NI@Z100110120
?what@exception@@UBEPBDXZ7071
?what@exception@std@@UBEPBDXZ8090100110120
@_calloc_crt@880
@_malloc_crt@480
@_realloc_crt@880
_CIacos70718090100110120
_CIasin70718090100110120
_CIatan70718090100110120
_CIatan270718090100110120
_CIcos70718090100110120
_CIcosh70718090100110120
_CIexp70718090100110120
_CIfmod70718090100110120
_CIlog70718090100110120
_CIlog1070718090100110120
_CIpow70718090100110120
_CIsin70718090100110120
_CIsinh70718090100110120
_CIsqrt70718090100110120
_CItan70718090100110120
_CItanh70718090100110120
_CRT_RTC_INIT70718090100110120
_CRT_RTC_INITW8090100110120
_Cbuild120
_CreateFrameInfo8090100110120
_CxxThrowException70718090100110120
_EH_prolog70718090100110120
_FCbuild120
_FindAndUnlinkFrame8090100110120
_Getdays70718090100110120
_Getmonths70718090100110120
_Gettnames70718090100110120
_HUGE70718090100110120
_IsExceptionObjectToBeDestroyed8090100110120
_LCbuild120
_Lock_shared_ptr_spin_lock110
_NLG_Dispatch28090100110120
_NLG_Return8090100110120
_NLG_Return28090100110120
_SetWinRTOutOfMemoryExceptionCallback120
_Strftime70718090100110120
_Unlock_shared_ptr_spin_lock110
_W_Getdays110120
_W_Getmonths110120
_W_Gettnames110120
_Wcsftime110120
_XcptFilter70718090100110120
__AdjustPointer8090100110120
__BuildCatchObject8090100110120
__BuildCatchObjectHelper8090100110120
__CppXcptFilter718090100110120
__CxxCallUnwindDelDtor8090100
__CxxCallUnwindDtor718090100
__CxxCallUnwindStdDelDtor8090100
__CxxCallUnwindVecDtor718090100
__CxxDetectRethrow70718090100110120
__CxxExceptionFilter70718090100110120
__CxxFrameHandler70718090100110120
__CxxFrameHandler28090100110120
__CxxFrameHandler38090100110120
__CxxLongjmpUnwind70718090100110120
__CxxQueryExceptionSize70718090100110120
__CxxRegisterExceptionObject70718090100110120
__CxxUnregisterExceptionObject70718090100110120
__DestructExceptionObject70718090100110120
__FrameUnwindFilter8090100110120
__GetPlatformExceptionInfo120
__RTCastToVoid70718090100110120
__RTDynamicCast70718090100110120
__RTtypeid70718090100110120
__STRINGTOLD70718090100110120
__STRINGTOLD_L8090100110120
__TypeMatch8090100110120
___crtCreateSemaphoreExW@24110
___fls_getvalue@48090100
___fls_setvalue@88090100
___lc_codepage_func718090100110120
___lc_collate_cp_func718090100110120
___lc_handle_func718090100
___lc_locale_name_func110120
___mb_cur_max_func718090100110120
___mb_cur_max_l_func8090100110120
___setlc_active_func718090100110120
___unguarded_readlc_active_add_func718090100110120
__argc70718090100110120
__argv70718090100110120
__badioinfo70718090100110120
__buffer_overrun7071
__clean_type_info_names_internal8090100110120
__control87_28090100110120
__create_locale8090100110120
__crtCompareStringA70718090100110120
__crtCompareStringEx110120
__crtCompareStringW718090100110120
__crtCreateEventExW120
__crtCreateSemaphoreExW120
__crtCreateSymbolicLinkW110120
__crtEnumSystemLocalesEx110120
__crtFlsAlloc110120
__crtFlsFree110120
__crtFlsGetValue110120
__crtFlsSetValue110120
__crtGetDateFormatEx110120
__crtGetFileInformationByHandleEx120
__crtGetLocaleInfoEx110120
__crtGetLocaleInfoW70718090
__crtGetShowWindowMode110120
__crtGetStringTypeW718090
__crtGetTickCount64120
__crtGetTimeFormatEx110120
__crtGetUserDefaultLocaleName110120
__crtInitializeCriticalSectionEx110120
__crtIsPackagedApp110120
__crtIsValidLocaleName110120
__crtLCMapStringA70718090100110120
__crtLCMapStringEx110120
__crtLCMapStringW718090100110120
__crtSetFileInformationByHandle120
__crtSetThreadStackGuarantee110120
__crtSetUnhandledExceptionFilter110120
__crtSleep120
__crtTerminateProcess110120
__crtUnhandledException110120
__daylight8090100110120
__dllonexit70718090100110120
__doserrno70718090100110120
__dstbias8090100110120
__fpecode70718090100110120
__free_locale8090100110120
__get_app_type8090
__get_current_locale8090100110120
__get_flsindex8090100110120
__get_tlsindex8090100110120
__getmainargs70718090100110120
__initenv70718090100110120
__iob_func718090100110120
__isascii70718090100110120
__iscsym70718090100110120
__iscsymf70718090100110120
__iswcsym8090100110120
__iswcsymf8090100110120
__lc_clike70718090
__lc_codepage70718090
__lc_collate_cp70718090
__lc_handle70718090
__lconv8090100110120
__lconv_init70718090100110120
__libm_sse2_acos8090100110120
__libm_sse2_acosf8090100110120
__libm_sse2_asin8090100110120
__libm_sse2_asinf8090100110120
__libm_sse2_atan8090100110120
__libm_sse2_atan28090100110120
__libm_sse2_atanf8090100110120
__libm_sse2_cos8090100110120
__libm_sse2_cosf8090100110120
__libm_sse2_exp8090100110120
__libm_sse2_expf8090100110120
__libm_sse2_log8090100110120
__libm_sse2_log108090100110120
__libm_sse2_log10f8090100110120
__libm_sse2_logf8090100110120
__libm_sse2_pow8090100110120
__libm_sse2_powf8090100110120
__libm_sse2_sin8090100110120
__libm_sse2_sinf8090100110120
__libm_sse2_tan8090100110120
__libm_sse2_tanf8090100110120
__mb_cur_max70718090100110120
__p___argc70718090100110120
__p___argv70718090100110120
__p___initenv70718090100110120
__p___mb_cur_max70718090100110120
__p___wargv70718090100110120
__p___winitenv70718090100110120
__p__acmdln70718090100110120
__p__amblksiz70718090
__p__commode70718090100110120
__p__daylight70718090100110120
__p__dstbias70718090100110120
__p__environ70718090100110120
__p__fileinfo7071
__p__fmode70718090100110120
__p__iob70718090100110120
__p__mbcasemap70718090100110120
__p__mbctype70718090100110120
__p__osplatform80
__p__osver707180
__p__pctype70718090100110120
__p__pgmptr70718090100110120
__p__pwctype70718090100110120
__p__timezone70718090100110120
__p__tzname70718090100110120
__p__wcmdln70718090100110120
__p__wenviron70718090100110120
__p__winmajor707180
__p__winminor707180
__p__winver707180
__p__wpgmptr70718090100110120
__pctype_func718090100110120
__pioinfo70718090100110120
__pwctype_func718090100110120
__pxcptinfoptrs70718090100110120
__report_gsfailure8090100110120
__security_error_handler7071
__set_app_type70718090100110120
__set_buffer_overrun_handler7071
__set_flsgetvalue8090100
__setlc_active70718090100110120
__setusermatherr70718090100110120
__strncnt8090100110120
__swprintf_l8090100110120
__sys_errlist8090100110120
__sys_nerr8090100110120
__threadhandle70718090100110120
__threadid70718090100110120
__timezone8090100110120
__toascii70718090100110120
__tzname8090100110120
__unDName70718090100110120
__unDNameEx70718090100110120
__unDNameHelper8090100110120
__uncaught_exception70718090100110120
__unguarded_readlc_active70718090100110120
__vswprintf_l8090100110120
__wargv70718090100110120
__wcserror70718090100110120
__wcserror_s8090100110120
__wcsncnt8090100110120
__wgetmainargs70718090100110120
__winitenv70718090100110120
_abnormal_termination70718090100110120
_abs648090100110120
_access70718090100110120
_access_s8090100110120
_acmdln70718090100110120
_adj_fdiv_m16i70718090
_adj_fdiv_m3270718090
_adj_fdiv_m32i70718090
_adj_fdiv_m6470718090
_adj_fdiv_r70718090
_adj_fdivr_m16i70718090
_adj_fdivr_m3270718090
_adj_fdivr_m32i70718090
_adj_fdivr_m6470718090
_adj_fpatan70718090
_adj_fprem70718090
_adj_fprem170718090
_adj_fptan70718090
_adjust_fdiv70718090
_aexit_rtn70718090
_aligned_free70718090100110120
_aligned_malloc70718090100110120
_aligned_msize8090100110120
_aligned_offset_malloc70718090100110120
_aligned_offset_realloc70718090100110120
_aligned_offset_recalloc8090100110120
_aligned_realloc70718090100110120
_aligned_recalloc8090100110120
_amsg_exit70718090100110120
_assert70718090100110120
_atodbl70718090100110120
_atodbl_l8090100110120
_atof_l8090100110120
_atoflt8090100110120
_atoflt_l8090100110120
_atoi6470718090100110120
_atoi64_l8090100110120
_atoi_l8090100110120
_atol_l8090100110120
_atoldbl70718090100110120
_atoldbl_l8090100110120
_atoll_l120
_beep70718090100110120
_beginthread70718090100110120
_beginthreadex70718090100110120
_byteswap_uint648090100110120
_byteswap_ulong8090100110120
_byteswap_ushort8090100110120
_c_exit70718090100110120
_cabs70718090100110120
_callnewh70718090100110120
_calloc_crt8090100110120
_cexit70718090100110120
_cgets70718090100110120
_cgets_s8090100110120
_cgetws70718090100110120
_cgetws_s8090100110120
_chdir70718090100110120
_chdrive70718090100110120
_chgsign70718090100110120
_chgsignf120
_chkesp70718090100110120
_chmod70718090100110120
_chsize70718090100110120
_chsize_s8090100110120
_clearfp70718090100110120
_close70718090100110120
_commit70718090100110120
_commode70718090100110120
_configthreadlocale8090100110120
_control8770718090100110120
_controlfp70718090100110120
_controlfp_s8090100110120
_copysign70718090100110120
_copysignf120
_cprintf70718090100110120
_cprintf_l8090100110120
_cprintf_p8090100110120
_cprintf_p_l8090100110120
_cprintf_s8090100110120
_cprintf_s_l8090100110120
_cputs70718090100110120
_cputws70718090100110120
_creat70718090100110120
_create_locale8090100110120
_crt_debugger_hook8090100110120
_cscanf70718090100110120
_cscanf_l8090100110120
_cscanf_s8090100110120
_cscanf_s_l8090100110120
_ctime328090100110120
_ctime32_s8090100110120
_ctime6470718090100110120
_ctime64_s8090100110120
_ctype70
_cwait70718090100110120
_cwprintf70718090100110120
_cwprintf_l8090100110120
_cwprintf_p8090100110120
_cwprintf_p_l8090100110120
_cwprintf_s8090100110120
_cwprintf_s_l8090100110120
_cwscanf70718090100110120
_cwscanf_l8090100110120
_cwscanf_s8090100110120
_cwscanf_s_l8090100110120
_daylight70718090100110120
_dclass120
_decode_pointer8090
_difftime328090100110120
_difftime648090100110120
_dosmaperr8090100110120
_dpcomp120
_dsign120
_dstbias70718090100110120
_dtest120
_dup70718090100110120
_dup270718090100110120
_dupenv_s8090100110120
_ecvt70718090100110120
_ecvt_s8090100110120
_encode_pointer8090
_encoded_null8090100
_endthread70718090100110120
_endthreadex70718090100110120
_environ70718090100110120
_eof70718090100110120
_errno70718090100110120
_except1120
_except_handler270718090100110120
_except_handler370718090100110120
_except_handler4_common8090100110120
_execl70718090100110120
_execle70718090100110120
_execlp70718090100110120
_execlpe70718090100110120
_execv70718090100110120
_execve70718090100110120
_execvp70718090100110120
_execvpe70718090100110120
_exit70718090100110120
_expand70718090100110120
_fclose_nolock8090100110120
_fcloseall70718090100110120
_fcvt70718090100110120
_fcvt_s8090100110120
_fdclass120
_fdopen70718090100110120
_fdpcomp120
_fdsign120
_fdtest120
_fflush_nolock8090100110120
_fgetchar70718090100110120
_fgetwc_nolock8090100110120
_fgetwchar70718090100110120
_filbuf70718090100110120
_fileinfo7071
_filelength70718090100110120
_filelengthi6470718090100110120
_fileno70718090100110120
_findclose70718090100110120
_findfirst7071
_findfirst328090100110120
_findfirst32i648090100110120
_findfirst6470718090100110120
_findfirst64i328090100110120
_findfirsti647071
_findnext7071
_findnext328090100110120
_findnext32i648090100110120
_findnext6470718090100110120
_findnext64i328090100110120
_findnexti647071
_finite70718090100110120
_flsbuf70718090100110120
_flushall70718090100110120
_fmode70718090100110120
_fpclass70718090100110120
_fpieee_flt70718090100110120
_fpreset70718090100110120
_fprintf_l8090100110120
_fprintf_p8090100110120
_fprintf_p_l8090100110120
_fprintf_s_l8090100110120
_fputchar70718090100110120
_fputwc_nolock8090100110120
_fputwchar70718090100110120
_fread_nolock8090100110120
_fread_nolock_s8090100110120
_free_locale8090100110120
_freea8090100110120
_freea_s8090100110120
_freefls8090100110120
_fscanf_l8090100110120
_fscanf_s_l8090100110120
_fseek_nolock8090100110120
_fseeki648090100110120
_fseeki64_nolock8090100110120
_fsopen70718090100110120
_fstat7071
_fstat328090100110120
_fstat32i648090100110120
_fstat6470718090100110120
_fstat64i328090100110120
_fstati647071
_ftell_nolock8090100110120
_ftelli648090100110120
_ftelli64_nolock8090100110120
_ftime7071
_ftime328090100110120
_ftime32_s8090100110120
_ftime6470718090100110120
_ftime64_s8090100110120
_ftol70718090100110120
_fullpath70718090100110120
_futime7071
_futime328090100110120
_futime6470718090100110120
_fwprintf_l8090100110120
_fwprintf_p8090100110120
_fwprintf_p_l8090100110120
_fwprintf_s_l8090100110120
_fwrite_nolock8090100110120
_fwscanf_l8090100110120
_fwscanf_s_l8090100110120
_gcvt70718090100110120
_gcvt_s8090100110120
_get_amblksiz8090
_get_current_locale8090100110120
_get_daylight8090100110120
_get_doserrno8090100110120
_get_dstbias8090100110120
_get_errno8090100110120
_get_fmode8090100110120
_get_heap_handle718090100110120
_get_invalid_parameter_handler8090100110120
_get_osfhandle70718090100110120
_get_osplatform80
_get_osver80
_get_output_format8090100110120
_get_pgmptr8090100110120
_get_printf_count_output8090100110120
_get_purecall_handler8090100110120
_get_sbh_threshold70718090
_get_terminate8090100110120
_get_timezone8090100110120
_get_tzname8090100110120
_get_unexpected8090100110120
_get_winmajor80
_get_winminor80
_get_winver80
_get_wpgmptr8090100110120
_getc_nolock90100110120
_getch70718090100110120
_getch_nolock8090100110120
_getche70718090100110120
_getche_nolock8090100110120
_getcwd70718090100110120
_getdcwd70718090100110120
_getdcwd_nolock8090100
_getdiskfree70718090100110120
_getdllprocaddr70718090100110120
_getdrive70718090100110120
_getdrives70718090100110120
_getmaxstdio70718090100110120
_getmbcp70718090100110120
_getpid70718090100110120
_getptd8090100110120
_getsystime70718090100110120
_getw70718090100110120
_getwch70718090100110120
_getwch_nolock8090100110120
_getwche70718090100110120
_getwche_nolock8090100110120
_getws70718090100110120
_getws_s8090100110120
_global_unwind270718090100110120
_gmtime328090100110120
_gmtime32_s8090100110120
_gmtime6470718090100110120
_gmtime64_s8090100110120
_heapadd70718090100110120
_heapchk70718090100110120
_heapmin70718090100110120
_heapset70718090100110120
_heapused70718090100110120
_heapwalk70718090100110120
_hypot70718090100110120
_hypotf8090100110120
_i64toa70718090100110120
_i64toa_s8090100110120
_i64tow70718090100110120
_i64tow_s8090100110120
_initptd8090100110120
_initterm70718090100110120
_initterm_e8090100110120
_inp70718090100110120
_inpd70718090100110120
_inpw70718090100110120
_invalid_parameter8090100110120
_invalid_parameter_noinfo8090100110120
_invalid_parameter_noinfo_noreturn100110120
_invoke_watson8090100110120
_iob70718090100110120
_isalnum_l8090100110120
_isalpha_l8090100110120
_isatty70718090100110120
_isblank_l120
_iscntrl_l8090100110120
_isctype70718090100110120
_isctype_l8090100110120
_isdigit_l8090100110120
_isgraph_l8090100110120
_isleadbyte_l8090100110120
_islower_l8090100110120
_ismbbalnum70718090100110120
_ismbbalnum_l8090100110120
_ismbbalpha70718090100110120
_ismbbalpha_l8090100110120
_ismbbblank120
_ismbbblank_l120
_ismbbgraph70718090100110120
_ismbbgraph_l8090100110120
_ismbbkalnum70718090100110120
_ismbbkalnum_l8090100110120
_ismbbkana70718090100110120
_ismbbkana_l8090100110120
_ismbbkprint70718090100110120
_ismbbkprint_l8090100110120
_ismbbkpunct70718090100110120
_ismbbkpunct_l8090100110120
_ismbblead70718090100110120
_ismbblead_l8090100110120
_ismbbprint70718090100110120
_ismbbprint_l8090100110120
_ismbbpunct70718090100110120
_ismbbpunct_l8090100110120
_ismbbtrail70718090100110120
_ismbbtrail_l8090100110120
_ismbcalnum70718090100110120
_ismbcalnum_l8090100110120
_ismbcalpha70718090100110120
_ismbcalpha_l8090100110120
_ismbcblank120
_ismbcblank_l120
_ismbcdigit70718090100110120
_ismbcdigit_l8090100110120
_ismbcgraph70718090100110120
_ismbcgraph_l8090100110120
_ismbchira70718090100110120
_ismbchira_l8090100110120
_ismbckata70718090100110120
_ismbckata_l8090100110120
_ismbcl070718090100110120
_ismbcl0_l8090100110120
_ismbcl170718090100110120
_ismbcl1_l8090100110120
_ismbcl270718090100110120
_ismbcl2_l8090100110120
_ismbclegal70718090100110120
_ismbclegal_l8090100110120
_ismbclower70718090100110120
_ismbclower_l8090100110120
_ismbcprint70718090100110120
_ismbcprint_l8090100110120
_ismbcpunct70718090100110120
_ismbcpunct_l8090100110120
_ismbcspace70718090100110120
_ismbcspace_l8090100110120
_ismbcsymbol70718090100110120
_ismbcsymbol_l8090100110120
_ismbcupper70718090100110120
_ismbcupper_l8090100110120
_ismbslead70718090100110120
_ismbslead_l8090100110120
_ismbstrail70718090100110120
_ismbstrail_l8090100110120
_isnan70718090100110120
_isprint_l8090100110120
_ispunct_l8090100110120
_isspace_l8090100110120
_isupper_l8090100110120
_iswalnum_l8090100110120
_iswalpha_l8090100110120
_iswblank_l120
_iswcntrl_l8090100110120
_iswcsym_l8090100110120
_iswcsymf_l8090100110120
_iswctype_l8090100110120
_iswdigit_l8090100110120
_iswgraph_l8090100110120
_iswlower_l8090100110120
_iswprint_l8090100110120
_iswpunct_l8090100110120
_iswspace_l8090100110120
_iswupper_l8090100110120
_iswxdigit_l8090100110120
_isxdigit_l8090100110120
_itoa70718090100110120
_itoa_s8090100110120
_itow70718090100110120
_itow_s8090100110120
_j070718090100110120
_j170718090100110120
_jn70718090100110120
_kbhit70718090100110120
_ldclass120
_ldpcomp120
_ldsign120
_ldtest120
_lfind70718090100110120
_lfind_s8090100110120
_libm_sse2_acos_precise110120
_libm_sse2_asin_precise110120
_libm_sse2_atan_precise110120
_libm_sse2_cos_precise110120
_libm_sse2_exp_precise110120
_libm_sse2_log10_precise110120
_libm_sse2_log_precise110120
_libm_sse2_pow_precise110120
_libm_sse2_sin_precise110120
_libm_sse2_sqrt_precise110120
_libm_sse2_tan_precise110120
_loaddll70718090100110120
_local_unwind270718090100110120
_local_unwind48090100110120
_localtime328090100110120
_localtime32_s8090100110120
_localtime6470718090100110120
_localtime64_s8090100110120
_lock70718090100110120
_lock_file8090100110120
_locking70718090100110120
_logb70718090100110120
_longjmpex70718090100110120
_lrotl70718090100110120
_lrotr70718090100110120
_lsearch70718090100110120
_lsearch_s8090100110120
_lseek70718090100110120
_lseeki6470718090100110120
_ltoa70718090100110120
_ltoa_s8090100110120
_ltow70718090100110120
_ltow_s8090100110120
_makepath70718090100110120
_makepath_s8090100110120
_malloc_crt8090100110120
_mbbtombc70718090100110120
_mbbtombc_l8090100110120
_mbbtype70718090100110120
_mbbtype_l8090100110120
_mbcasemap70718090100110120
_mbccpy70718090100110120
_mbccpy_l8090100110120
_mbccpy_s8090100110120
_mbccpy_s_l8090100110120
_mbcjistojms70718090100110120
_mbcjistojms_l8090100110120
_mbcjmstojis70718090100110120
_mbcjmstojis_l8090100110120
_mbclen70718090100110120
_mbclen_l8090100110120
_mbctohira70718090100110120
_mbctohira_l8090100110120
_mbctokata70718090100110120
_mbctokata_l8090100110120
_mbctolower70718090100110120
_mbctolower_l8090100110120
_mbctombb70718090100110120
_mbctombb_l8090100110120
_mbctoupper70718090100110120
_mbctoupper_l8090100110120
_mbctype70718090100110120
_mblen_l8090100110120
_mbsbtype70718090100110120
_mbsbtype_l8090100110120
_mbscat7071
_mbscat_s8090100110120
_mbscat_s_l8090100110120
_mbschr70718090100110120
_mbschr_l8090100110120
_mbscmp70718090100110120
_mbscmp_l8090100110120
_mbscoll70718090100110120
_mbscoll_l8090100110120
_mbscpy7071
_mbscpy_s8090100110120
_mbscpy_s_l8090100110120
_mbscspn70718090100110120
_mbscspn_l8090100110120
_mbsdec70718090100110120
_mbsdec_l8090100110120
_mbsdup7071
_mbsicmp70718090100110120
_mbsicmp_l8090100110120
_mbsicoll70718090100110120
_mbsicoll_l8090100110120
_mbsinc70718090100110120
_mbsinc_l8090100110120
_mbslen70718090100110120
_mbslen_l8090100110120
_mbslwr70718090100110120
_mbslwr_l8090100110120
_mbslwr_s8090100110120
_mbslwr_s_l8090100110120
_mbsnbcat70718090100110120
_mbsnbcat_l8090100110120
_mbsnbcat_s8090100110120
_mbsnbcat_s_l8090100110120
_mbsnbcmp70718090100110120
_mbsnbcmp_l8090100110120
_mbsnbcnt70718090100110120
_mbsnbcnt_l8090100110120
_mbsnbcoll70718090100110120
_mbsnbcoll_l8090100110120
_mbsnbcpy70718090100110120
_mbsnbcpy_l8090100110120
_mbsnbcpy_s8090100110120
_mbsnbcpy_s_l8090100110120
_mbsnbicmp70718090100110120
_mbsnbicmp_l8090100110120
_mbsnbicoll70718090100110120
_mbsnbicoll_l8090100110120
_mbsnbset70718090100110120
_mbsnbset_l8090100110120
_mbsnbset_s8090100110120
_mbsnbset_s_l8090100110120
_mbsncat70718090100110120
_mbsncat_l8090100110120
_mbsncat_s8090100110120
_mbsncat_s_l8090100110120
_mbsnccnt70718090100110120
_mbsnccnt_l8090100110120
_mbsncmp70718090100110120
_mbsncmp_l8090100110120
_mbsncoll70718090100110120
_mbsncoll_l8090100110120
_mbsncpy70718090100110120
_mbsncpy_l8090100110120
_mbsncpy_s8090100110120
_mbsncpy_s_l8090100110120
_mbsnextc70718090100110120
_mbsnextc_l8090100110120
_mbsnicmp70718090100110120
_mbsnicmp_l8090100110120
_mbsnicoll70718090100110120
_mbsnicoll_l8090100110120
_mbsninc70718090100110120
_mbsninc_l8090100110120
_mbsnlen8090100110120
_mbsnlen_l8090100110120
_mbsnset70718090100110120
_mbsnset_l8090100110120
_mbsnset_s8090100110120
_mbsnset_s_l8090100110120
_mbspbrk70718090100110120
_mbspbrk_l8090100110120
_mbsrchr70718090100110120
_mbsrchr_l8090100110120
_mbsrev70718090100110120
_mbsrev_l8090100110120
_mbsset70718090100110120
_mbsset_l8090100110120
_mbsset_s8090100110120
_mbsset_s_l8090100110120
_mbsspn70718090100110120
_mbsspn_l8090100110120
_mbsspnp70718090100110120
_mbsspnp_l8090100110120
_mbsstr70718090100110120
_mbsstr_l8090100110120
_mbstok70718090100110120
_mbstok_l8090100110120
_mbstok_s8090100110120
_mbstok_s_l8090100110120
_mbstowcs_l8090100110120
_mbstowcs_s_l8090100110120
_mbstrlen70718090100110120
_mbstrlen_l8090100110120
_mbstrnlen8090100110120
_mbstrnlen_l8090100110120
_mbsupr70718090100110120
_mbsupr_l8090100110120
_mbsupr_s8090100110120
_mbsupr_s_l8090100110120
_mbtowc_l8090100110120
_memccpy70718090100110120
_memicmp70718090100110120
_memicmp_l8090100110120
_mkdir70718090100110120
_mkgmtime328090100110120
_mkgmtime648090100110120
_mktemp70718090100110120
_mktemp_s8090100110120
_mktime328090100110120
_mktime6470718090100110120
_msize70718090100110120
_nextafter70718090100110120
_onexit70718090100110120
_open70718090100110120
_open_osfhandle70718090100110120
_osplatform707180
_osver707180
_outp70718090100110120
_outpd70718090100110120
_outpw70718090100110120
_pclose70718090100110120
_pctype70718090100110120
_pgmptr70718090100110120
_pipe70718090100110120
_popen70718090100110120
_printf_l8090100110120
_printf_p8090100110120
_printf_p_l8090100110120
_printf_s_l8090100110120
_purecall70718090100110120
_putch70718090100110120
_putch_nolock8090100110120
_putenv70718090100110120
_putenv_s8090100110120
_putw70718090100110120
_putwch70718090100110120
_putwch_nolock8090100110120
_putws70718090100110120
_pwctype70718090100110120
_read70718090100110120
_realloc_crt8090100110120
_recalloc8090100110120
_recalloc_crt8090100110120
_resetstkoflw70718090100110120
_rmdir70718090100110120
_rmtmp70718090100110120
_rotl70718090100110120
_rotl648090100110120
_rotr70718090100110120
_rotr648090100110120
_safe_fdiv70718090
_safe_fdivr70718090
_safe_fprem70718090
_safe_fprem170718090
_scalb70718090100110120
_scanf_l8090100110120
_scanf_s_l8090100110120
_scprintf70718090100110120
_scprintf_l8090100110120
_scprintf_p8090100110120
_scprintf_p_l8090100110120
_scwprintf70718090100110120
_scwprintf_l8090100110120
_scwprintf_p8090100110120
_scwprintf_p_l8090100110120
_searchenv70718090100110120
_searchenv_s8090100110120
_seh_longjmp_unwind70718090100110120
_seh_longjmp_unwind48090100110120
_set_SSE2_enable718090100110120
_set_abort_behavior8090100110120
_set_amblksiz8090
_set_controlfp8090100110120
_set_doserrno8090100110120
_set_errno8090100110120
_set_error_mode70718090100110120
_set_fmode8090100110120
_set_invalid_parameter_handler8090100110120
_set_malloc_crt_max_wait8090100110120
_set_output_format8090100110120
_set_printf_count_output8090100110120
_set_purecall_handler718090100110120
_set_sbh_threshold70718090
_set_security_error_handler7071
_seterrormode70718090100110120
_setjmp70718090100110120
_setjmp370718090100110120
_setmaxstdio70718090100110120
_setmbcp70718090100110120
_setmode70718090100110120
_setsystime70718090100110120
_sleep70718090100110120
_snprintf70718090100110120
_snprintf_c8090100110120
_snprintf_c_l8090100110120
_snprintf_l8090100110120
_snprintf_s8090100110120
_snprintf_s_l8090100110120
_snscanf70718090100110120
_snscanf_l8090100110120
_snscanf_s8090100110120
_snscanf_s_l8090100110120
_snwprintf70718090100110120
_snwprintf_l8090100110120
_snwprintf_s8090100110120
_snwprintf_s_l8090100110120
_snwscanf70718090100110120
_snwscanf_l8090100110120
_snwscanf_s8090100110120
_snwscanf_s_l8090100110120
_sopen70718090100110120
_sopen_s8090100110120
_spawnl70718090100110120
_spawnle70718090100110120
_spawnlp70718090100110120
_spawnlpe70718090100110120
_spawnv70718090100110120
_spawnve70718090100110120
_spawnvp70718090100110120
_spawnvpe70718090100110120
_splitpath70718090100110120
_splitpath_s8090100110120
_sprintf_l8090100110120
_sprintf_p8090100110120
_sprintf_p_l8090100110120
_sprintf_s_l8090100110120
_sscanf_l8090100110120
_sscanf_s_l8090100110120
_stat7071
_stat328090100110120
_stat32i648090100110120
_stat6470718090100110120
_stat64i328090100110120
_stati647071
_statusfp70718090100110120
_statusfp28090100110120
_strcmpi7071
_strcoll_l8090100110120
_strdate70718090100110120
_strdate_s8090100110120
_strdup70718090100110120
_strerror70718090100110120
_strerror_s8090100110120
_strftime_l8090100110120
_stricmp70718090100110120
_stricmp_l8090100110120
_stricoll70718090100110120
_stricoll_l8090100110120
_strlwr70718090100110120
_strlwr_l8090100110120
_strlwr_s8090100110120
_strlwr_s_l8090100110120
_strncoll70718090100110120
_strncoll_l8090100110120
_strnicmp70718090100110120
_strnicmp_l8090100110120
_strnicoll70718090100110120
_strnicoll_l8090100110120
_strnset70718090100110120
_strnset_s8090100110120
_strrev70718090100110120
_strset70718090100110120
_strset_s8090100110120
_strtime70718090100110120
_strtime_s8090100110120
_strtod_l8090100110120
_strtof_l120
_strtoi6470718090100110120
_strtoi64_l8090100110120
_strtoimax_l120
_strtol_l8090100110120
_strtold_l120
_strtoll_l120
_strtoui6470718090100110120
_strtoui64_l8090100110120
_strtoul_l8090100110120
_strtoull_l120
_strtoumax_l120
_strupr70718090100110120
_strupr_l8090100110120
_strupr_s8090100110120
_strupr_s_l8090100110120
_strxfrm_l8090100110120
_swab70718090100110120
_swprintf8090100110120
_swprintf_c8090100110120
_swprintf_c_l90100110120
_swprintf_p8090100110120
_swprintf_p_l8090100110120
_swprintf_s_l8090100110120
_swscanf_l8090100110120
_swscanf_s_l8090100110120
_sys_errlist70718090100110120
_sys_nerr70718090100110120
_tell70718090100110120
_telli6470718090100110120
_tempnam70718090100110120
_time328090100110120
_time6470718090100110120
_timezone70718090100110120
_tolower70718090100110120
_tolower_l8090100110120
_toupper70718090100110120
_toupper_l8090100110120
_towlower_l8090100110120
_towupper_l8090100110120
_tzname70718090100110120
_tzset70718090100110120
_ui64toa70718090100110120
_ui64toa_s8090100110120
_ui64tow70718090100110120
_ui64tow_s8090100110120
_ultoa70718090100110120
_ultoa_s8090100110120
_ultow70718090100110120
_ultow_s8090100110120
_umask70718090100110120
_umask_s8090100110120
_ungetc_nolock8090100110120
_ungetch70718090100110120
_ungetch_nolock8090100110120
_ungetwc_nolock8090100110120
_ungetwch70718090100110120
_ungetwch_nolock8090100110120
_unlink70718090100110120
_unloaddll70718090100110120
_unlock70718090100110120
_unlock_file8090100110120
_utime7071
_utime328090100110120
_utime6470718090100110120
_vacopy120
_vcprintf8090100110120
_vcprintf_l8090100110120
_vcprintf_p8090100110120
_vcprintf_p_l8090100110120
_vcprintf_s8090100110120
_vcprintf_s_l8090100110120
_vcwprintf8090100110120
_vcwprintf_l8090100110120
_vcwprintf_p8090100110120
_vcwprintf_p_l8090100110120
_vcwprintf_s8090100110120
_vcwprintf_s_l8090100110120
_vfprintf_l8090100110120
_vfprintf_p8090100110120
_vfprintf_p_l8090100110120
_vfprintf_s_l8090100110120
_vfwprintf_l8090100110120
_vfwprintf_p8090100110120
_vfwprintf_p_l8090100110120
_vfwprintf_s_l8090100110120
_vprintf_l8090100110120
_vprintf_p8090100110120
_vprintf_p_l8090100110120
_vprintf_s_l8090100110120
_vscprintf70718090100110120
_vscprintf_l8090100110120
_vscprintf_p8090100110120
_vscprintf_p_l8090100110120
_vscwprintf70718090100110120
_vscwprintf_l8090100110120
_vscwprintf_p8090100110120
_vscwprintf_p_l8090100110120
_vsnprintf70718090100110120
_vsnprintf_c8090100110120
_vsnprintf_c_l8090100110120
_vsnprintf_l8090100110120
_vsnprintf_s8090100110120
_vsnprintf_s_l8090100110120
_vsnwprintf70718090100110120
_vsnwprintf_l8090100110120
_vsnwprintf_s8090100110120
_vsnwprintf_s_l8090100110120
_vsprintf_l8090100110120
_vsprintf_p8090100110120
_vsprintf_p_l8090100110120
_vsprintf_s_l8090100110120
_vswprintf8090100110120
_vswprintf_c8090100110120
_vswprintf_c_l8090100110120
_vswprintf_l8090100110120
_vswprintf_p8090100110120
_vswprintf_p_l8090100110120
_vswprintf_s_l8090100110120
_vwprintf_l8090100110120
_vwprintf_p8090100110120
_vwprintf_p_l8090100110120
_vwprintf_s_l8090100110120
_waccess70718090100110120
_waccess_s8090100110120
_wasctime70718090100110120
_wasctime_s8090100110120
_wassert8090100110120
_wchdir70718090100110120
_wchmod70718090100110120
_wcmdln70718090100110120
_wcreat70718090100110120
_wcreate_locale110120
_wcscoll_l8090100110120
_wcsdup70718090100110120
_wcserror70718090100110120
_wcserror_s8090100110120
_wcsftime_l8090100110120
_wcsicmp70718090100110120
_wcsicmp_l8090100110120
_wcsicoll70718090100110120
_wcsicoll_l8090100110120
_wcslwr70718090100110120
_wcslwr_l8090100110120
_wcslwr_s8090100110120
_wcslwr_s_l8090100110120
_wcsncoll70718090100110120
_wcsncoll_l8090100110120
_wcsnicmp70718090100110120
_wcsnicmp_l8090100110120
_wcsnicoll70718090100110120
_wcsnicoll_l8090100110120
_wcsnset70718090100110120
_wcsnset_s8090100110120
_wcsrev70718090100110120
_wcsset70718090100110120
_wcsset_s8090100110120
_wcstod_l8090100110120
_wcstof_l120
_wcstoi6470718090100110120
_wcstoi64_l8090100110120
_wcstoimax_l120
_wcstol_l8090100110120
_wcstold_l120
_wcstoll_l120
_wcstombs_l8090100110120
_wcstombs_s_l8090100110120
_wcstoui6470718090100110120
_wcstoui64_l8090100110120
_wcstoul_l8090100110120
_wcstoull_l120
_wcstoumax_l120
_wcsupr70718090100110120
_wcsupr_l8090100110120
_wcsupr_s8090100110120
_wcsupr_s_l8090100110120
_wcsxfrm_l8090100110120
_wctime7071
_wctime328090100110120
_wctime32_s8090100110120
_wctime6470718090100110120
_wctime64_s8090100110120
_wctomb_l8090100110120
_wctomb_s_l8090100110120
_wctype70718090100110120
_wdupenv_s8090100110120
_wenviron70718090100110120
_wexecl70718090100110120
_wexecle70718090100110120
_wexeclp70718090100110120
_wexeclpe70718090100110120
_wexecv70718090100110120
_wexecve70718090100110120
_wexecvp70718090100110120
_wexecvpe70718090100110120
_wfdopen70718090100110120
_wfindfirst7071
_wfindfirst328090100110120
_wfindfirst32i648090100110120
_wfindfirst6470718090100110120
_wfindfirst64i328090100110120
_wfindfirsti647071
_wfindnext7071
_wfindnext328090100110120
_wfindnext32i648090100110120
_wfindnext6470718090100110120
_wfindnext64i328090100110120
_wfindnexti647071
_wfopen70718090100110120
_wfopen_s8090100110120
_wfreopen70718090100110120
_wfreopen_s8090100110120
_wfsopen70718090100110120
_wfullpath70718090100110120
_wgetcwd70718090100110120
_wgetdcwd70718090100110120
_wgetdcwd_nolock8090100
_wgetenv70718090100110120
_wgetenv_s8090100110120
_winmajor707180
_winminor707180
_winver707180
_wmakepath70718090100110120
_wmakepath_s8090100110120
_wmkdir70718090100110120
_wmktemp70718090100110120
_wmktemp_s8090100110120
_wopen70718090100110120
_wperror70718090100110120
_wpgmptr70718090100110120
_wpopen70718090100110120
_wprintf_l8090100110120
_wprintf_p8090100110120
_wprintf_p_l8090100110120
_wprintf_s_l8090100110120
_wputenv70718090100110120
_wputenv_s8090100110120
_wremove70718090100110120
_wrename70718090100110120
_write70718090100110120
_wrmdir70718090100110120
_wscanf_l8090100110120
_wscanf_s_l8090100110120
_wsearchenv70718090100110120
_wsearchenv_s8090100110120
_wsetlocale70718090100110120
_wsopen70718090100110120
_wsopen_s8090100110120
_wspawnl70718090100110120
_wspawnle70718090100110120
_wspawnlp70718090100110120
_wspawnlpe70718090100110120
_wspawnv70718090100110120
_wspawnve70718090100110120
_wspawnvp70718090100110120
_wspawnvpe70718090100110120
_wsplitpath70718090100110120
_wsplitpath_s8090100110120
_wstat7071
_wstat328090100110120
_wstat32i648090100110120
_wstat6470718090100110120
_wstat64i328090100110120
_wstati647071
_wstrdate70718090100110120
_wstrdate_s8090100110120
_wstrtime70718090100110120
_wstrtime_s8090100110120
_wsystem70718090100110120
_wtempnam70718090100110120
_wtmpnam70718090100110120
_wtmpnam_s8090100110120
_wtof70718090100110120
_wtof_l8090100110120
_wtoi70718090100110120
_wtoi6470718090100110120
_wtoi64_l8090100110120
_wtoi_l8090100110120
_wtol70718090100110120
_wtol_l8090100110120
_wtoll120
_wtoll_l120
_wunlink70718090100110120
_wutime7071
_wutime328090100110120
_wutime6470718090100110120
_y070718090100110120
_y170718090100110120
_yn70718090100110120
abort70718090100110120
abs70718090100110120
acos70718090100110120
acosh120
acoshf120
acoshl120
asctime70718090100110120
asctime_s8090100110120
asin70718090100110120
asinh120
asinhf120
asinhl120
atan70718090100110120
atan270718090100110120
atanh120
atanhf120
atanhl120
atexit70718090100110120
atof70718090100110120
atoi70718090100110120
atol70718090100110120
atoll120
bsearch70718090100110120
bsearch_s8090100110120
btowc8090100110120
cabs120
cabsf120
cabsl120
cacos120
cacosf120
cacosh120
cacoshf120
cacoshl120
cacosl120
calloc70718090100110120
carg120
cargf120
cargl120
casin120
casinf120
casinh120
casinhf120
casinhl120
casinl120
catan120
catanf120
catanh120
catanhf120
catanhl120
catanl120
cbrt120
cbrtf120
cbrtl120
ccos120
ccosf120
ccosh120
ccoshf120
ccoshl120
ccosl120
ceil70718090100110120
cexp120
cexpf120
cexpl120
cimag120
cimagf120
cimagl120
clearerr70718090100110120
clearerr_s8090100110120
clock70718090100110120
clog120
clog10120
clog10f120
clog10l120
clogf120
clogl120
conj120
conjf120
conjl120
copysign120
copysignf120
copysignl120
cos70718090100110120
cosh70718090100110120
cpow120
cpowf120
cpowl120
cproj120
cprojf120
cprojl120
creal120
crealf120
creall120
csin120
csinf120
csinh120
csinhf120
csinhl120
csinl120
csqrt120
csqrtf120
csqrtl120
ctan120
ctanf120
ctanh120
ctanhf120
ctanhl120
ctanl120
ctime7071
difftime7071
div70718090100110120
erf120
erfc120
erfcf120
erfcl120
erff120
erfl120
exit70718090100110120
exp70718090100110120
exp2120
exp2f120
exp2l120
expm1120
expm1f120
expm1l120
fabs70718090100110120
fclose70718090100110120
fdim120
fdimf120
fdiml120
feclearexcept120
fegetenv120
fegetexceptflag120
fegetround120
feholdexcept120
feof70718090100110120
feraiseexcept120
ferror70718090100110120
fesetenv120
fesetexceptflag120
fesetround120
fetestexcept120
feupdateenv120
fflush70718090100110120
fgetc70718090100110120
fgetpos70718090100110120
fgets70718090100110120
fgetwc70718090100110120
fgetws70718090100110120
floor70718090100110120
fma120
fmaf120
fmal120
fmax120
fmaxf120
fmaxl120
fmin120
fminf120
fminl120
fmod70718090100110120
fopen70718090100110120
fopen_s8090100110120
fprintf70718090100110120
fprintf_s8090100110120
fputc70718090100110120
fputs70718090100110120
fputwc70718090100110120
fputws70718090100110120
fread70718090100110120
fread_s8090100110120
free70718090100110120
freopen70718090100110120
freopen_s8090100110120
frexp70718090100110120
fscanf70718090100110120
fscanf_s8090100110120
fseek70718090100110120
fsetpos70718090100110120
ftell70718090100110120
fwprintf70718090100110120
fwprintf_s8090100110120
fwrite70718090100110120
fwscanf70718090100110120
fwscanf_s8090100110120
getc70718090100110120
getchar70718090100110120
getenv70718090100110120
getenv_s8090100110120
gets70718090100110120
gets_s8090100110120
getwc70718090100110120
getwchar70718090100110120
gmtime7071
ilogb120
ilogbf120
ilogbl120
imaxabs120
imaxdiv120
is_wctype70718090100110120
isalnum70718090100110120
isalpha70718090100110120
isblank120
iscntrl70718090100110120
isdigit70718090100110120
isgraph70718090100110120
isleadbyte70718090100110120
islower70718090100110120
isprint70718090100110120
ispunct70718090100110120
isspace70718090100110120
isupper70718090100110120
iswalnum70718090100110120
iswalpha70718090100110120
iswascii70718090100110120
iswblank120
iswcntrl70718090100110120
iswctype70718090100110120
iswdigit70718090100110120
iswgraph70718090100110120
iswlower70718090100110120
iswprint70718090100110120
iswpunct70718090100110120
iswspace70718090100110120
iswupper70718090100110120
iswxdigit70718090100110120
isxdigit70718090100110120
labs70718090100110120
ldexp70718090100110120
ldiv70718090100110120
lgamma120
lgammaf120
lgammal120
llabs100110120
lldiv100110120
llrint120
llrintf120
llrintl120
llround120
llroundf120
llroundl120
localeconv70718090100110120
localtime7071
log70718090100110120
log1070718090100110120
log1p120
log1pf120
log1pl120
log2120
log2f120
log2l120
logb120
logbf120
logbl120
longjmp70718090100110120
lrint120
lrintf120
lrintl120
lround120
lroundf120
lroundl120
malloc70718090100110120
mblen70718090100110120
mbrlen8090100110120
mbrtowc8090100110120
mbsrtowcs8090100110120
mbsrtowcs_s8090100110120
mbstowcs70718090100110120
mbstowcs_s8090100110120
mbtowc70718090100110120
memchr70718090100110120
memcmp70718090100110120
memcpy70718090100110120
memcpy_s8090100110120
memmove70718090100110120
memmove_s8090100110120
memset70718090100110120
mktime7071
modf70718090100110120
nan120
nanf120
nanl120
nearbyint120
nearbyintf120
nearbyintl120
nextafter120
nextafterf120
nextafterl120
nexttoward120
nexttowardf120
nexttowardl120
norm120
normf120
norml120
perror70718090100110120
pow70718090100110120
printf70718090100110120
printf_s8090100110120
putc70718090100110120
putchar70718090100110120
puts70718090100110120
putwc70718090100110120
putwchar70718090100110120
qsort70718090100110120
qsort_s8090100110120
raise70718090100110120
rand70718090100110120
rand_s8090100110120
realloc70718090100110120
remainder120
remainderf120
remainderl120
remove70718090100110120
remquo120
remquof120
remquol120
rename70718090100110120
rewind70718090100110120
rint120
rintf120
rintl120
round120
roundf120
roundl120
scalbln120
scalblnf120
scalblnl120
scalbn120
scalbnf120
scalbnl120
scanf70718090100110120
scanf_s8090100110120
setbuf70718090100110120
setlocale70718090100110120
setvbuf70718090100110120
signal70718090100110120
sin70718090100110120
sinh70718090100110120
sprintf70718090100110120
sprintf_s8090100110120
sqrt70718090100110120
srand70718090100110120
sscanf70718090100110120
sscanf_s8090100110120
strcat70718090100110120
strcat_s8090100110120
strchr70718090100110120
strcmp70718090100110120
strcoll70718090100110120
strcpy70718090100110120
strcpy_s8090100110120
strcspn70718090100110120
strerror70718090100110120
strerror_s8090100110120
strftime70718090100110120
strlen70718090100110120
strncat70718090100110120
strncat_s8090100110120
strncmp70718090100110120
strncpy70718090100110120
strncpy_s8090100110120
strnlen8090100110120
strpbrk70718090100110120
strrchr70718090100110120
strspn70718090100110120
strstr70718090100110120
strtod70718090100110120
strtof120
strtoimax120
strtok70718090100110120
strtok_s8090100110120
strtol70718090100110120
strtold120
strtoll120
strtoul70718090100110120
strtoull120
strtoumax120
strxfrm70718090100110120
swprintf7071
swprintf_s8090100110120
swscanf70718090100110120
swscanf_s8090100110120
system70718090100110120
tan70718090100110120
tanh70718090100110120
tgamma120
tgammaf120
tgammal120
time7071
tmpfile70718090100110120
tmpfile_s8090100110120
tmpnam70718090100110120
tmpnam_s8090100110120
tolower70718090100110120
toupper70718090100110120
towctrans120
towlower70718090100110120
towupper70718090100110120
trunc120
truncf120
truncl120
ungetc70718090100110120
ungetwc70718090100110120
vfprintf70718090100110120
vfprintf_s8090100110120
vfscanf120
vfscanf_s120
vfwprintf70718090100110120
vfwprintf_s8090100110120
vfwscanf120
vfwscanf_s120
vprintf70718090100110120
vprintf_s8090100110120
vscanf120
vscanf_s120
vsprintf70718090100110120
vsprintf_s8090100110120
vsscanf120
vsscanf_s120
vswprintf7071
vswprintf_s8090100110120
vswscanf120
vswscanf_s120
vwprintf70718090100110120
vwprintf_s8090100110120
vwscanf120
vwscanf_s120
wcrtomb8090100110120
wcrtomb_s8090100110120
wcscat70718090100110120
wcscat_s8090100110120
wcschr70718090100110120
wcscmp70718090100110120
wcscoll70718090100110120
wcscpy70718090100110120
wcscpy_s8090100110120
wcscspn70718090100110120
wcsftime70718090100110120
wcslen70718090100110120
wcsncat70718090100110120
wcsncat_s8090100110120
wcsncmp70718090100110120
wcsncpy70718090100110120
wcsncpy_s8090100110120
wcsnlen8090100110120
wcspbrk70718090100110120
wcsrchr70718090100110120
wcsrtombs8090100110120
wcsrtombs_s8090100110120
wcsspn70718090100110120
wcsstr70718090100110120
wcstod70718090100110120
wcstof120
wcstoimax120
wcstok70718090100110120
wcstok_s8090100110120
wcstol70718090100110120
wcstold120
wcstoll120
wcstombs70718090100110120
wcstombs_s8090100110120
wcstoul70718090100110120
wcstoull120
wcstoumax120
wcsxfrm70718090100110120
wctob8090100110120
wctomb70718090100110120
wctomb_s8090100110120
wctrans120
wctype120
wmemcpy_s100110120
wmemmove_s100110120
wprintf70718090100110120
wprintf_s8090100110120
wscanf70718090100110120
wscanf_s8090100110120

ida 6.5

$
0
0
changelog
PC: handle code sequences which load imagebase value into a temporary register (common in x64 Windows code)
yeah, finally I don`t need to recompile my plugin wpic64 for each new ida version

added win8_um.til and wdk8_km.til for Windows8 WDK (user and kernel mode headers)
he-he. How about WdfFunctions ?

Capstone

$
0
0
I play a bit today with this disasm library with BSD license and I should notethatit is nowvirtually unusable
  1. size of libcapstone.so is 6.5Mb and even if you remove arch/Mips, arch/AArch64 and arch/ARM from Makefile size of libcapstone.so is still 3.5Mb. Just to compare - size of libudis86.a on the same machine is only 452Kb
  2. with udis86 you can easy remove tables with mnemonics (for example they are useless in code analyzers) but this is hard to do with capstone - every arch/mapping.c file contains mix of register names, mnemonic tabs and insn_map structures
  3. X86GenDisassemblerTables.inc has size 37Mb ! Authors claim"That is the price to pay for good performance". Perhaps, but 37Mb - it's too much IMHO
  4. It seems also that it is very hard to build a library that will fill cs_x86 structure and does not contain references to xprintf or other CRT functions (for example if you plan to use this library in kernel mode driver)

wincheck rc8.51

$
0
0
Downloadmirror
Changelog:
  • add checking of some callbacks in MS crt modules (like purecall_handler, pInvalidArgHandler etc)
  • add MiFlags dumping
  • some bugs were fixed

apisetschema.dll from windows 10 Technical Preview

$
0
0
no big changes at first glance


API-ms-win-advapi32-auth-l1-1-0advapi32.dll
API-ms-win-advapi32-encryptedfile-l1-1-0advapi32.dll
API-ms-win-advapi32-eventingcontroller-l1-1-0advapi32.dll
API-ms-win-advapi32-eventlog-l1-1-0advapi32.dll
API-ms-win-advapi32-hwprof-l1-1-0advapi32.dll
API-ms-win-advapi32-idletask-l1-1-0advapi32.dll
API-ms-win-advapi32-lsa-l1-1-0advapi32.dll
API-ms-win-advapi32-msi-l1-1-0advapi32.dll
API-ms-win-advapi32-ntmarta-l1-1-0advapi32.dll
API-ms-win-advapi32-psm-app-l1-1-0twinapi.appcore.dll
API-ms-win-advapi32-registry-l1-1-0advapi32.dll
API-ms-win-advapi32-safer-l1-1-0advapi32.dll
API-ms-win-advapi32-shutdown-l1-1-0advapi32.dll
API-ms-win-appmodel-identity-l1-2-0kernel.appcore.dll
API-ms-win-appmodel-opc-l1-1-0opcservices.dll
API-ms-win-appmodel-runtime-internal-l1-1-0kernel.appcore.dll
API-ms-win-appmodel-runtime-internal-l1-1-1kernel.appcore.dll
API-ms-win-appmodel-runtime-l1-1-0kernel.appcore.dll
API-ms-win-appmodel-runtime-l1-1-1kernel.appcore.dll
API-ms-win-appmodel-state-ext-l1-2-0kernel.appcore.dll
API-ms-win-appmodel-state-l1-1-0kernel.appcore.dll
API-ms-win-appmodel-state-l1-1-1kernel.appcore.dll
API-ms-win-appmodel-state-l1-1-2kernel.appcore.dll
API-ms-win-appmodel-state-l1-2-0kernel.appcore.dll
API-ms-win-appxdeploymentclient-appxdeploy-l1-1-0appxdeploymentclient.dll
API-ms-win-authz-claimpolicies-l1-1-0authz.dll
API-ms-win-authz-context-l1-1-0authz.dll
API-ms-win-authz-remote-l1-1-0logoncli.dll
API-ms-win-base-bootconfig-l1-1-0advapi32.dll
API-ms-win-base-util-l1-1-0advapi32.dll
API-ms-win-biometrics-winbio-l1-1-0winbio.dll
API-ms-win-biometrics-winbio-l1-2-0winbioext.dll
API-ms-win-branding-winbrand-l1-1-0winbrand.dll
API-ms-win-cluster-clusapi-l1-1-0clusapi.dll
API-ms-win-cluster-clusapi-l1-1-1clusapi.dll
API-ms-win-cluster-clusapi-l1-1-2clusapi.dll
API-ms-win-cluster-resutils-l1-1-0resutils.dll
API-ms-win-cluster-resutils-l1-1-1resutils.dll
API-ms-win-cmd-util-l1-1-0cmdext.dll
API-ms-win-cng-rng-l1-1-0bcryptprimitives.dll
API-ms-win-com-clbcatq-l1-1-0clbcatq.dll
API-ms-win-com-coml2-l1-1-1coml2.dll
API-ms-win-com-ole32-l1-1-0ole32.dll
API-ms-win-com-ole32-l1-1-1ole32.dll
API-ms-win-com-ole32-l1-1-2ole32.dll
API-ms-win-com-ole32-l1-1-3ole32.dll
API-ms-win-com-psmregister-l1-1-0kernel.appcore.dll
API-ms-win-composition-ghost-l1-1-0dwmghost.dll
API-ms-win-composition-redirection-l1-1-0dwmredir.dll
API-ms-win-composition-windowmanager-l1-1-0udwm.dll
API-ms-win-compositor-hosting-l1-1-0user32.dll
API-ms-win-core-apiquery-l1-1-0ntdll.dll
API-ms-win-core-appcompat-l1-1-0kernelbase.dll
API-ms-win-core-appcompat-l1-1-1kernelbase.dll
API-ms-win-core-appinit-l1-1-0kernel32.dllkernelbase.dll
API-ms-win-core-atoms-l1-1-0kernel32.dll
API-ms-win-core-bem-l1-1-0kernelbase.dll
API-ms-win-core-bicltapi-l1-1-1bi.dll
API-ms-win-core-bicltapi-l1-1-2bi.dll
API-ms-win-core-biplmapi-l1-1-0twinapi.appcore.dll
API-ms-win-core-biplmapi-l1-1-1twinapi.appcore.dll
API-ms-win-core-biplmapi-l1-1-2twinapi.appcore.dll
API-ms-win-core-biptcltapi-l1-1-1twinapi.appcore.dll
API-ms-win-core-biptcltapi-l1-1-2twinapi.appcore.dll
API-ms-win-core-calendar-l1-1-0kernel32.dll
API-ms-win-core-com-l1-1-0combase.dll
API-ms-win-core-com-l1-1-1combase.dll
API-ms-win-core-com-l2-1-1coml2.dll
API-ms-win-core-com-private-l1-1-0combase.dll
API-ms-win-core-comm-l1-1-0kernelbase.dll
API-ms-win-core-console-l1-1-0kernelbase.dll
API-ms-win-core-console-l2-1-0kernelbase.dll
API-ms-win-core-crt-l1-1-0ntdll.dll
API-ms-win-core-crt-l2-1-0kernelbase.dll
API-ms-win-core-datetime-l1-1-0kernelbase.dll
API-ms-win-core-datetime-l1-1-1kernelbase.dll
API-ms-win-core-debug-l1-1-0kernelbase.dll
API-ms-win-core-debug-l1-1-1kernelbase.dll
API-ms-win-core-delayload-l1-1-0kernelbase.dll
API-ms-win-core-delayload-l1-1-1kernelbase.dll
API-ms-win-core-errorhandling-l1-1-0kernelbase.dll
API-ms-win-core-errorhandling-l1-1-1kernelbase.dll
API-ms-win-core-errorhandling-l1-1-2kernelbase.dll
API-ms-win-core-fibers-l1-1-0kernelbase.dll
API-ms-win-core-fibers-l1-1-1kernelbase.dll
API-ms-win-core-fibers-l2-1-0kernel32.dll
API-ms-win-core-fibers-l2-1-1kernel32.dll
API-ms-win-core-file-l1-1-0kernelbase.dll
API-ms-win-core-file-l1-1-1kernelbase.dll
API-ms-win-core-file-l1-2-0kernelbase.dll
API-ms-win-core-file-l1-2-1kernelbase.dll
API-ms-win-core-file-l1-2-2kernelbase.dll
API-ms-win-core-file-l2-1-0kernelbase.dll
API-ms-win-core-file-l2-1-1kernelbase.dll
API-ms-win-core-file-l2-1-2kernelbase.dll
API-ms-win-core-firmware-l1-1-0kernel32.dll
API-ms-win-core-handle-l1-1-0kernelbase.dll
API-ms-win-core-heap-l1-1-0kernelbase.dll
API-ms-win-core-heap-l1-2-0kernelbase.dll
API-ms-win-core-heap-obsolete-l1-1-0kernel32.dll
API-ms-win-core-interlocked-l1-1-0kernelbase.dll
API-ms-win-core-interlocked-l1-1-1kernelbase.dll
API-ms-win-core-interlocked-l1-2-0kernelbase.dll
API-ms-win-core-io-l1-1-0kernel32.dllkernelbase.dll
API-ms-win-core-io-l1-1-1kernel32.dllkernelbase.dll
API-ms-win-core-job-l1-1-0kernelbase.dll
API-ms-win-core-job-l2-1-0kernel32.dll
API-ms-win-core-kernel32-legacy-l1-1-0kernel32.dll
API-ms-win-core-kernel32-legacy-l1-1-1kernel32.dll
API-ms-win-core-kernel32-legacy-l1-1-2kernel32.dll
API-ms-win-core-kernel32-private-l1-1-0kernel32.dll
API-ms-win-core-kernel32-private-l1-1-1kernel32.dll
API-ms-win-core-kernel32-private-l1-1-2kernel32.dll
API-ms-win-core-libraryloader-l1-1-0kernelbase.dll
API-ms-win-core-libraryloader-l1-1-1kernelbase.dll
API-ms-win-core-libraryloader-l1-2-0kernelbase.dll
API-ms-win-core-libraryloader-l2-1-0kernelbase.dll
API-ms-win-core-libraryloader-private-l1-1-0kernelbase.dll
API-ms-win-core-localization-l1-1-0kernelbase.dll
API-ms-win-core-localization-l1-2-0kernelbase.dll
API-ms-win-core-localization-l1-2-1kernelbase.dll
API-ms-win-core-localization-l2-1-0kernelbase.dll
API-ms-win-core-localization-obsolete-l1-1-0kernelbase.dll
API-ms-win-core-localization-obsolete-l1-2-0kernelbase.dll
API-ms-win-core-localization-private-l1-1-0kernelbase.dll
API-ms-win-core-localregistry-l1-1-0kernelbase.dll
API-ms-win-core-marshal-l1-1-0combase.dll
API-ms-win-core-memory-l1-1-0kernelbase.dll
API-ms-win-core-memory-l1-1-1kernelbase.dll
API-ms-win-core-memory-l1-1-2kernelbase.dll
API-ms-win-core-memory-l1-1-3kernelbase.dll
API-ms-win-core-misc-l1-1-0kernelbase.dll
API-ms-win-core-multipleproviderrouter-l1-1-0mpr.dll
API-ms-win-core-namedpipe-l1-1-0kernelbase.dll
API-ms-win-core-namedpipe-l1-2-0kernelbase.dll
API-ms-win-core-namespace-l1-1-0kernelbase.dll
API-ms-win-core-normalization-l1-1-0kernelbase.dll
API-ms-win-core-path-l1-1-0kernelbase.dll
API-ms-win-core-perfcounters-l1-1-0kernelbase.dll
API-ms-win-core-privateprofile-l1-1-0kernel32.dll
API-ms-win-core-privateprofile-l1-1-1kernel32.dll
API-ms-win-core-processenvironment-l1-1-0kernelbase.dll
API-ms-win-core-processenvironment-l1-1-1kernelbase.dll
API-ms-win-core-processenvironment-l1-2-0kernelbase.dll
API-ms-win-core-processsecurity-l1-1-0kernel32.dllkernelbase.dll
API-ms-win-core-processsnapshot-l1-1-0kernelbase.dll
API-ms-win-core-processthreads-l1-1-0kernel32.dllkernelbase.dll
API-ms-win-core-processthreads-l1-1-1kernel32.dllkernelbase.dll
API-ms-win-core-processthreads-l1-1-2kernel32.dllkernelbase.dll
API-ms-win-core-processtopology-l1-1-0kernelbase.dll
API-ms-win-core-processtopology-l1-2-0kernelbase.dll
API-ms-win-core-processtopology-obsolete-l1-1-0kernel32.dll
API-ms-win-core-processtopology-private-l1-1-0kernelbase.dll
API-ms-win-core-profile-l1-1-0kernelbase.dll
API-ms-win-core-psapi-ansi-l1-1-0kernelbase.dll
API-ms-win-core-psapi-l1-1-0kernelbase.dll
API-ms-win-core-psapi-obsolete-l1-1-0kernelbase.dll
API-ms-win-core-psapiansi-l1-1-0kernelbase.dll
API-ms-win-core-psm-app-l1-1-0twinapi.appcore.dll
API-ms-win-core-psm-appnotify-l1-1-0twinapi.appcore.dll
API-ms-win-core-psm-info-l1-1-0appsruprov.dll
API-ms-win-core-psm-key-l1-1-0kernelbase.dll
API-ms-win-core-psm-plm-l1-1-0twinapi.appcore.dll
API-ms-win-core-psm-plm-l1-1-1twinapi.appcore.dll
API-ms-win-core-psm-plm-l1-1-2twinapi.appcore.dll
API-ms-win-core-psm-tc-l1-1-0twinapi.appcore.dll
API-ms-win-core-quirks-l1-1-0kernelbase.dll
API-ms-win-core-realtime-l1-1-0kernelbase.dll
API-ms-win-core-registry-l1-1-0kernelbase.dll
API-ms-win-core-registry-l2-1-0advapi32.dll
API-ms-win-core-registry-private-l1-1-0advapi32.dll
API-ms-win-core-registryuserspecific-l1-1-0kernelbase.dll
API-ms-win-core-rtlsupport-l1-1-0ntdll.dll
API-ms-win-core-rtlsupport-l1-1-1ntdll.dll
API-ms-win-core-rtlsupport-l1-2-0ntdll.dll
API-ms-win-core-shlwapi-legacy-l1-1-0kernelbase.dll
API-ms-win-core-shlwapi-obsolete-l1-1-0kernelbase.dll
API-ms-win-core-shlwapi-obsolete-l1-2-0kernelbase.dll
API-ms-win-core-shutdown-l1-1-0advapi32.dll
API-ms-win-core-shutdown-l1-1-1advapi32.dll
API-ms-win-core-sidebyside-l1-1-0kernelbase.dll
API-ms-win-core-string-l1-1-0kernelbase.dll
API-ms-win-core-string-l2-1-0kernelbase.dll
API-ms-win-core-string-l2-1-1kernelbase.dll
API-ms-win-core-string-obsolete-l1-1-0kernel32.dll
API-ms-win-core-string-obsolete-l1-1-1kernel32.dll
API-ms-win-core-stringansi-l1-1-0kernelbase.dll
API-ms-win-core-stringloader-l1-1-0kernelbase.dll
API-ms-win-core-stringloader-l1-1-1kernelbase.dll
API-ms-win-core-synch-l1-1-0kernelbase.dll
API-ms-win-core-synch-l1-1-1kernelbase.dll
API-ms-win-core-synch-l1-2-0kernelbase.dll
API-ms-win-core-synch-l1-2-1kernelbase.dll
API-ms-win-core-sysinfo-l1-1-0kernelbase.dll
API-ms-win-core-sysinfo-l1-1-1kernelbase.dll
API-ms-win-core-sysinfo-l1-2-0kernelbase.dll
API-ms-win-core-sysinfo-l1-2-1kernelbase.dll
API-ms-win-core-sysinfo-l1-2-2kernelbase.dll
API-ms-win-core-systemtopology-l1-1-0kernelbase.dll
API-ms-win-core-threadpool-l1-1-0kernelbase.dll
API-ms-win-core-threadpool-l1-2-0kernelbase.dll
API-ms-win-core-threadpool-legacy-l1-1-0kernelbase.dll
API-ms-win-core-threadpool-private-l1-1-0kernelbase.dll
API-ms-win-core-timezone-l1-1-0kernelbase.dll
API-ms-win-core-timezone-private-l1-1-0kernelbase.dll
API-ms-win-core-toolhelp-l1-1-0kernel32.dll
API-ms-win-core-url-l1-1-0kernelbase.dll
API-ms-win-core-util-l1-1-0kernel32.dllkernelbase.dll
API-ms-win-core-util-l1-1-1kernel32.dllkernelbase.dll
API-ms-win-core-version-l1-1-0kernelbase.dll
API-ms-win-core-version-private-l1-1-0kernelbase.dll
API-ms-win-core-versionansi-l1-1-0kernelbase.dll
API-ms-win-core-windowserrorreporting-l1-1-0kernelbase.dll
API-ms-win-core-winrt-error-l1-1-0combase.dll
API-ms-win-core-winrt-error-l1-1-1combase.dll
API-ms-win-core-winrt-errorprivate-l1-1-0combase.dll
API-ms-win-core-winrt-errorprivate-l1-1-1combase.dll
API-ms-win-core-winrt-l1-1-0combase.dll
API-ms-win-core-winrt-propertysetprivate-l1-1-0wintypes.dll
API-ms-win-core-winrt-propertysetprivate-l1-1-1wintypes.dll
API-ms-win-core-winrt-registration-l1-1-0combase.dll
API-ms-win-core-winrt-robuffer-l1-1-0wintypes.dll
API-ms-win-core-winrt-roparameterizediid-l1-1-0combase.dll
API-ms-win-core-winrt-string-l1-1-0combase.dll
API-ms-win-core-wow64-l1-1-0kernelbase.dll
API-ms-win-core-wow64-l1-1-1kernelbase.dll
API-ms-win-core-xstate-l1-1-0ntdll.dll
API-ms-win-core-xstate-l1-1-1ntdll.dll
API-ms-win-core-xstate-l2-1-0kernelbase.dll
API-ms-win-deprecated-apis-obsolete-l1-1-0kernelbase.dll
API-ms-win-devices-config-l1-1-0cfgmgr32.dll
API-ms-win-devices-config-l1-1-1cfgmgr32.dll
API-ms-win-devices-query-l1-1-0cfgmgr32.dll
API-ms-win-devices-query-l1-1-1cfgmgr32.dll
API-ms-win-devices-swdevice-l1-1-0cfgmgr32.dll
API-ms-win-devices-swdevice-l1-1-1cfgmgr32.dll
API-ms-win-devmgmt-dm-l1-1-0dmapisetextimpl.dll
API-ms-win-domainjoin-netjoin-l1-1-0netjoin.dll
API-ms-win-downlevel-advapi32-l1-1-0kernelbase.dll
API-ms-win-downlevel-advapi32-l1-1-1kernelbase.dll
API-ms-win-downlevel-advapi32-l2-1-0sechost.dll
API-ms-win-downlevel-advapi32-l2-1-1sechost.dll
API-ms-win-downlevel-advapi32-l3-1-0ntmarta.dll
API-ms-win-downlevel-advapi32-l4-1-0advapi32.dll
API-ms-win-downlevel-kernel32-l1-1-0kernelbase.dll
API-ms-win-downlevel-kernel32-l2-1-0kernel32.dll
API-ms-win-downlevel-normaliz-l1-1-0kernelbase.dll
API-ms-win-downlevel-ole32-l1-1-0combase.dll
API-ms-win-downlevel-ole32-l1-1-1combase.dll
API-ms-win-downlevel-shell32-l1-1-0shcore.dll
API-ms-win-downlevel-shlwapi-l1-1-0kernelbase.dll
API-ms-win-downlevel-shlwapi-l1-1-1kernelbase.dll
API-ms-win-downlevel-shlwapi-l2-1-0shcore.dll
API-ms-win-downlevel-shlwapi-l2-1-1shcore.dll
API-ms-win-downlevel-user32-l1-1-0kernelbase.dll
API-ms-win-downlevel-user32-l1-1-1kernelbase.dll
API-ms-win-downlevel-version-l1-1-0kernelbase.dll
API-ms-win-dwmapi-ext-l1-1-0dwmapi.dll
API-ms-win-dx-d3d9-l1-1-0d3d9.dll
API-ms-win-dx-d3dkmt-l1-1-0gdi32.dll
API-ms-win-dx-d3dkmt-l1-1-1gdi32.dll
API-ms-win-els-elscore-l1-1-0elscore.dll
API-ms-win-eventing-classicprovider-l1-1-0kernelbase.dll
API-ms-win-eventing-consumer-l1-1-0sechost.dll
API-ms-win-eventing-controller-l1-1-0sechost.dll
API-ms-win-eventing-legacy-l1-1-0advapi32.dll
API-ms-win-eventing-obsolete-l1-1-0sechost.dll
API-ms-win-eventing-provider-l1-1-0kernelbase.dll
API-ms-win-eventlog-legacy-l1-1-0advapi32.dll
API-ms-win-eventlog-private-l1-1-0advapi32.dll
API-ms-win-familysafety-childaccount-l1-1-0familysafetyext.dll
API-ms-win-firewallapi-webproxy-l1-1-0firewallapi.dll
API-ms-win-firewallapi-webproxy-l1-1-1firewallapi.dll
API-ms-win-fs-clfs-l1-1-0clfs.sys
API-ms-win-fsutilext-ifsutil-l1-1-0fsutilext.dll
API-ms-win-fsutilext-ulib-l1-1-0fsutilext.dll
API-ms-win-fveapi-query-l1-1-0fveapi.dll
API-ms-win-gdi-clipping-l1-1-0gdi32.dll
API-ms-win-gdi-dc-create-l1-1-0gdi32.dll
API-ms-win-gdi-dc-create-l1-1-1gdi32.dll
API-ms-win-gdi-dc-create-l1-1-2gdi32.dll
API-ms-win-gdi-dc-l1-2-0gdi32.dll
API-ms-win-gdi-dc-l1-2-1gdi32.dll
API-ms-win-gdi-devcaps-l1-1-0gdi32.dll
API-ms-win-gdi-dpiinfo-l1-1-0gdi32.dll
API-ms-win-gdi-draw-l1-1-0gdi32.dll
API-ms-win-gdi-draw-l1-1-1gdi32.dll
API-ms-win-gdi-draw-l1-1-2gdi32.dll
API-ms-win-gdi-font-l1-1-0gdi32.dll
API-ms-win-gdi-font-l1-1-1gdi32.dll
API-ms-win-gdi-font-l1-1-2gdi32.dll
API-ms-win-gdi-metafile-l1-1-0gdi32.dll
API-ms-win-gdi-metafile-l1-1-1gdi32.dll
API-ms-win-gdi-metafile-l1-1-2gdi32.dll
API-ms-win-gdi-path-l1-1-0gdi32.dll
API-ms-win-gdi-print-l1-1-0gdi32.dll
API-ms-win-gdi-private-l1-1-0gdi32.dll
API-ms-win-gdi-render-l1-1-0gdi32.dll
API-ms-win-gdi-rgn-l1-1-0gdi32.dll
API-ms-win-gdi-wcs-l1-1-0gdi32.dll
API-ms-win-globalization-collation-l1-1-0globcollationhost.dll
API-ms-win-globalization-input-l1-1-0globinputhost.dll
API-ms-win-gpapi-grouppolicy-l1-1-0gpapi.dll
API-ms-win-gpsvc-grouppolicy-l1-1-0gpsvc.dll
API-ms-win-gui-dui70-l1-1-0dui70.dll
API-ms-win-gui-ieui-l1-1-0ieui.dll
API-ms-win-gui-uxinit-l1-1-0uxinit.dll
API-ms-win-http-time-l1-1-0kernelbase.dll
API-ms-win-imm-l1-1-0imm32.dll
API-ms-win-imm-l1-1-1imm32.dll
API-ms-win-kernel32-appcompat-l1-1-0kernel32.dll
API-ms-win-kernel32-datetime-l1-1-0kernel32.dll
API-ms-win-kernel32-elevation-l1-1-0kernel32.dll
API-ms-win-kernel32-errorhandling-l1-1-0kernel32.dll
API-ms-win-kernel32-file-l1-1-0kernel32.dll
API-ms-win-kernel32-localization-l1-1-0kernel32.dll
API-ms-win-kernel32-package-current-l1-1-0kernel.appcore.dll
API-ms-win-kernel32-package-l1-1-0kernel.appcore.dll
API-ms-win-kernel32-package-l1-1-1kernel.appcore.dll
API-ms-win-kernel32-package-l1-1-2kernel.appcore.dll
API-ms-win-kernel32-quirks-l1-1-0kernel32.dll
API-ms-win-kernel32-registry-l1-1-0kernel32.dll
API-ms-win-kernel32-sidebyside-l1-1-0kernel32.dll
API-ms-win-kernel32-transacted-l1-1-0kernel32.dll
API-ms-win-kernel32-windowserrorreporting-l1-1-0kernel32.dll
API-ms-win-kernel32-windowserrorreporting-l1-1-1kernel32.dll
API-ms-win-kernelbase-processthread-l1-1-0kernel32.dll
API-ms-win-legacy-shlwapi-l1-1-0kernelbase.dll
API-ms-win-mm-joystick-l1-1-0winmmbase.dll
API-ms-win-mm-mci-l1-1-0winmm.dll
API-ms-win-mm-misc-l1-1-0winmmbase.dll
API-ms-win-mm-misc-l1-1-1winmmbase.dll
API-ms-win-mm-misc-l2-1-0winmm.dll
API-ms-win-mm-mme-l1-1-0winmmbase.dll
API-ms-win-mm-msacm-l1-1-0msacm32.dll
API-ms-win-mm-pehelper-l1-1-0mf.dll
API-ms-win-mm-playsound-l1-1-0winmm.dll
API-ms-win-mm-time-l1-1-0kernel32.dll
API-ms-win-mm-wmdrmsdk-l1-1-0wmdrmsdk.dll
API-ms-win-moderncore-win32k-base-ntgdi-l1-1-0win32kfull.sys
API-ms-win-moderncore-win32k-base-ntuser-l1-1-0win32kfull.sys
API-ms-win-moderncore-win32k-base-sysentry-l1-1-0win32k.sys
API-ms-win-mpr-multipleproviderrouter-l1-1-0mprext.dll
API-ms-win-mrmcorer-resmanager-l1-1-0mrmcorer.dll
API-ms-win-msa-ui-l1-1-0msauserext.dll
API-ms-win-msa-user-l1-1-0msauserext.dll
API-ms-win-msa-user-l1-1-1msauserext.dll
API-ms-win-msi-misc-l1-1-0msi.dll
API-ms-win-msiltcfg-msi-l1-1-0msiltcfg.dll
API-ms-win-msimg-draw-l1-1-0msimg32.dll
API-ms-win-net-isoext-l1-1-0firewallapi.dll
API-ms-win-net-isolation-l1-1-0firewallapi.dll
API-ms-win-net-isolation-l1-1-1firewallapi.dll
API-ms-win-netprovision-netprovfw-l1-1-0netprovfw.dll
API-ms-win-networking-wcmapi-l1-1-0wcmapi.dll
API-ms-win-networking-winipsec-l1-1-0winipsec.dll
API-ms-win-networking-wlanapi-l1-1-0wlanapi.dll
API-ms-win-newdev-config-l1-1-0newdev.dll
API-ms-win-ntdsa-activedirectoryserver-l1-1-0ntdsa.dll
API-ms-win-ntdsapi-activedirectoryclient-l1-1-0ntdsapi.dll
API-ms-win-ntos-clipsp-l1-1-0clipsp.sys
API-ms-win-ntos-kcminitcfg-l1-1-0cmimcext.sys
API-ms-win-ntos-tm-l1-1-0tm.sys
API-ms-win-ntos-ucode-l1-1-0ntosext.sys
API-ms-win-ntos-werkernel-l1-1-0werkernel.sys
API-ms-win-ntuser-caret-l1-1-0user32.dll
API-ms-win-ntuser-chartranslation-l1-1-0user32.dll
API-ms-win-ntuser-dc-access-ext-l1-1-0user32.dll
API-ms-win-ntuser-dialogbox-l1-1-0user32.dll
API-ms-win-ntuser-dialogbox-l1-1-1user32.dll
API-ms-win-ntuser-dialogbox-l1-1-2user32.dll
API-ms-win-ntuser-draw-l1-1-0user32.dll
API-ms-win-ntuser-draw-l1-1-1user32.dll
API-ms-win-ntuser-draw-l1-1-2user32.dll
API-ms-win-ntuser-gui-l1-1-0user32.dll
API-ms-win-ntuser-gui-l1-1-1user32.dll
API-ms-win-ntuser-gui-l1-2-0user32.dll
API-ms-win-ntuser-gui-l1-2-1user32.dll
API-ms-win-ntuser-ie-message-l1-1-0user32.dll
API-ms-win-ntuser-ie-window-l1-1-0user32.dll
API-ms-win-ntuser-ie-wmpointer-l1-1-0user32.dll
API-ms-win-ntuser-keyboard-l1-1-0user32.dll
API-ms-win-ntuser-keyboard-l1-1-1user32.dll
API-ms-win-ntuser-keyboard-l1-1-2user32.dll
API-ms-win-ntuser-menu-l1-1-0user32.dll
API-ms-win-ntuser-menu-l1-1-1user32.dll
API-ms-win-ntuser-menu-l1-1-2user32.dll
API-ms-win-ntuser-message-l1-1-0user32.dll
API-ms-win-ntuser-message-l1-1-1user32.dll
API-ms-win-ntuser-misc-l1-1-0user32.dll
API-ms-win-ntuser-misc-l1-2-0user32.dll
API-ms-win-ntuser-misc-l1-3-0user32.dll
API-ms-win-ntuser-misc-l1-3-1user32.dll
API-ms-win-ntuser-mouse-l1-1-0user32.dll
API-ms-win-ntuser-powermanagement-l1-1-0user32.dll
API-ms-win-ntuser-private-l1-1-0user32.dll
API-ms-win-ntuser-private-l1-1-1user32.dll
API-ms-win-ntuser-rectangle-ext-l1-1-0user32.dll
API-ms-win-ntuser-rectangle-l1-1-0user32.dll
API-ms-win-ntuser-rim-l1-1-0user32.dll
API-ms-win-ntuser-rotationmanager-l1-1-0user32.dll
API-ms-win-ntuser-rotationmanager-l1-1-1user32.dll
API-ms-win-ntuser-server-l1-1-0user32.dll
API-ms-win-ntuser-string-l1-1-0user32.dll
API-ms-win-ntuser-synch-l1-1-0user32.dll
API-ms-win-ntuser-sysparams-ext-l1-1-0user32.dll
API-ms-win-ntuser-touch-hittest-l1-1-0user32.dll
API-ms-win-ntuser-uicontext-ext-l1-1-0user32.dll
API-ms-win-ntuser-window-l1-1-0user32.dll
API-ms-win-ntuser-window-l1-1-1user32.dll
API-ms-win-ntuser-window-l1-1-2user32.dll
API-ms-win-ntuser-window-l1-1-3user32.dll
API-ms-win-ntuser-windowclass-l1-1-0user32.dll
API-ms-win-ntuser-windowclass-l1-1-1user32.dll
API-ms-win-ntuser-windowclass-l1-1-2user32.dll
API-ms-win-ntuser-windowstation-l1-1-0user32.dll
API-ms-win-ntuser-windowstation-l1-1-1user32.dll
API-ms-win-obsolete-localization-l1-1-0kernelbase.dll
API-ms-win-obsolete-psapi-l1-1-0kernelbase.dll
API-ms-win-obsolete-shlwapi-l1-1-0kernelbase.dll
API-ms-win-ole32-bindctx-l1-1-0ole32.dll
API-ms-win-ole32-ie-ext-l1-1-0ole32.dll
API-ms-win-ole32-ie-l1-1-0ole32.dll
API-ms-win-ole32-oleautomation-l1-1-0ole32.dll
API-ms-win-oleacc-l1-1-0oleacc.dll
API-ms-win-oleacc-l1-1-1oleacc.dll
API-ms-win-oobe-notification-l1-1-0kernel32.dll
API-ms-win-perf-legacy-l1-1-0advapi32.dll
API-ms-win-power-base-l1-1-0powrprof.dll
API-ms-win-power-setting-l1-1-0powrprof.dll
API-ms-win-printer-winspool-l1-1-0winspool.drv
API-ms-win-printer-winspool-l1-1-1winspool.drv
API-ms-win-profile-profsvc-l1-1-0profsvcext.dll
API-ms-win-profile-userenv-l1-1-0profext.dll
API-ms-win-ras-rasapi32-l1-1-0rasapi32.dll
API-ms-win-ras-rasapi32-l1-1-1rasapi32.dll
API-ms-win-ras-rasdlg-l1-1-0rasdlg.dll
API-ms-win-ras-rasman-l1-1-0rasman.dll
API-ms-win-ras-tapi32-l1-1-0tapi32.dll
API-ms-win-raschapext-eap-l1-1-0raschapext.dll
API-ms-win-rastlsext-eap-l1-1-0rastlsext.dll
API-ms-win-reinfo-query-l1-1-0reinfo.dll
API-ms-win-ro-typeresolution-l1-1-0wintypes.dll
API-ms-win-rometadata-dispenser-l1-1-0rometadata.dll
API-ms-win-rtcore-gdi-devcaps-l1-1-0gdi32.dll
API-ms-win-rtcore-gdi-object-l1-1-0gdi32.dll
API-ms-win-rtcore-gdi-rgn-l1-1-0gdi32.dll
API-ms-win-rtcore-gdi-rgn-l1-1-1gdi32.dll
API-ms-win-rtcore-ntuser-clipboard-l1-1-0user32.dll
API-ms-win-rtcore-ntuser-dc-access-l1-1-0user32.dll
API-ms-win-rtcore-ntuser-dpi-l1-1-0user32.dll
API-ms-win-rtcore-ntuser-draw-l1-1-0user32.dll
API-ms-win-rtcore-ntuser-iam-l1-1-0user32.dll
API-ms-win-rtcore-ntuser-powermanagement-l1-1-0user32.dll
API-ms-win-rtcore-ntuser-private-l1-1-0user32.dll
API-ms-win-rtcore-ntuser-private-l1-1-1user32.dll
API-ms-win-rtcore-ntuser-shell-l1-1-0user32.dll
API-ms-win-rtcore-ntuser-synch-ext-l1-1-0user32.dll
API-ms-win-rtcore-ntuser-synch-l1-1-0user32.dll
API-ms-win-rtcore-ntuser-syscolors-l1-1-0user32.dll
API-ms-win-rtcore-ntuser-sysparams-l1-1-0user32.dll
API-ms-win-rtcore-ntuser-window-ext-l1-1-0user32.dll
API-ms-win-rtcore-ntuser-window-l1-1-0user32.dll
API-ms-win-rtcore-ntuser-winevent-l1-1-0user32.dll
API-ms-win-rtcore-ntuser-wmpointer-l1-1-0user32.dll
API-ms-win-rtcore-ntuser-wmpointer-l1-1-1user32.dll
API-ms-win-rtcore-ole32-clipboard-l1-1-0ole32.dll
API-ms-win-samsrv-accountstore-l1-1-0samsrv.dll
API-ms-win-scesrv-server-l1-1-0scesrv.dll
API-ms-win-secur32-translatename-l1-1-0secur32.dll
API-ms-win-security-accesshlpr-l1-1-0sechost.dll
API-ms-win-security-activedirectoryclient-l1-1-0kernelbase.dll
API-ms-win-security-appcontainer-l1-1-0kernelbase.dll
API-ms-win-security-audit-l1-1-0sechost.dll
API-ms-win-security-audit-l1-1-1sechost.dll
API-ms-win-security-base-l1-1-0kernelbase.dll
API-ms-win-security-base-l1-1-1kernelbase.dll
API-ms-win-security-base-l1-2-0kernelbase.dll
API-ms-win-security-base-private-l1-1-0kernelbase.dll
API-ms-win-security-base-private-l1-1-1kernelbase.dll
API-ms-win-security-credentials-l1-1-0sechost.dll
API-ms-win-security-credentials-l2-1-0sechost.dll
API-ms-win-security-credui-l1-1-0credui.dll
API-ms-win-security-credui-l1-1-1credui.dll
API-ms-win-security-cryptoapi-l1-1-0cryptsp.dll
API-ms-win-security-cryptui-l1-1-0cryptui.dll
API-ms-win-security-cryptui-l1-1-1cryptui.dll
API-ms-win-security-efs-l1-1-0efsext.dll
API-ms-win-security-grouppolicy-l1-1-0kernelbase.dll
API-ms-win-security-kerberos-l1-1-0kerberos.dll
API-ms-win-security-logon-l1-1-0advapi32.dll
API-ms-win-security-lsalookup-l1-1-0sechost.dll
API-ms-win-security-lsalookup-l1-1-1sechost.dll
API-ms-win-security-lsalookup-l1-1-2sechost.dll
API-ms-win-security-lsalookup-l2-1-0advapi32.dll
API-ms-win-security-lsalookup-l2-1-1advapi32.dll
API-ms-win-security-lsapolicy-l1-1-0sechost.dll
API-ms-win-security-provider-l1-1-0ntmarta.dll
API-ms-win-security-sddl-ansi-l1-1-0advapi32.dll
API-ms-win-security-sddl-l1-1-0sechost.dll
API-ms-win-security-sddlparsecond-l1-1-0sechost.dll
API-ms-win-security-systemfunctions-l1-1-0advapi32.dll
API-ms-win-security-trustee-l1-1-0advapi32.dll
API-ms-win-security-trustee-l1-1-1advapi32.dll
API-ms-win-security-vaultcli-l1-1-0vaultcli.dll
API-ms-win-security-vaultcli-l1-1-1vaultcli.dll
API-ms-win-service-core-l1-1-0sechost.dll
API-ms-win-service-core-l1-1-1sechost.dll
API-ms-win-service-management-l1-1-0sechost.dll
API-ms-win-service-management-l2-1-0sechost.dll
API-ms-win-service-private-l1-1-0sechost.dll
API-ms-win-service-private-l1-1-1sechost.dll
API-ms-win-service-winsvc-l1-1-0sechost.dll
API-ms-win-service-winsvc-l1-2-0sechost.dll
API-ms-win-session-userinit-l1-1-0userinitext.dll
API-ms-win-session-usertoken-l1-1-0wtsapi32.dll
API-ms-win-session-wininit-l1-1-0wininitext.dll
API-ms-win-session-winlogon-l1-1-0winlogonext.dll
API-ms-win-session-winsta-l1-1-0winsta.dll
API-ms-win-session-wtsapi32-l1-1-0wtsapi32.dll
API-ms-win-setupapi-classinstallers-l1-1-0setupapi.dll
API-ms-win-setupapi-classinstallers-l1-1-1setupapi.dll
API-ms-win-setupapi-inf-l1-1-0setupapi.dll
API-ms-win-setupapi-logging-l1-1-0setupapi.dll
API-ms-win-shcore-comhelpers-l1-1-0shcore.dll
API-ms-win-shcore-obsolete-l1-1-0shcore.dll
API-ms-win-shcore-registry-l1-1-0shcore.dll
API-ms-win-shcore-registry-l1-1-1shcore.dll
API-ms-win-shcore-scaling-l1-1-0shcore.dll
API-ms-win-shcore-scaling-l1-1-1shcore.dll
API-ms-win-shcore-stream-l1-1-0shcore.dll
API-ms-win-shcore-stream-winrt-l1-1-0shcore.dll
API-ms-win-shcore-sysinfo-l1-1-0shcore.dll
API-ms-win-shcore-thread-l1-1-0shcore.dll
API-ms-win-shcore-unicodeansi-l1-1-0shcore.dll
API-ms-win-shell-comctl32-l1-1-0comctl32.dll
API-ms-win-shell-comdlg32-l1-1-0comdlg32.dll
API-ms-win-shell-propsys-l1-1-0propsys.dll
API-ms-win-shell-settingsync-l1-1-0settingsyncpolicy.dll
API-ms-win-shell-settingsync-l1-1-1settingsyncpolicy.dll
API-ms-win-shell-shell32-l1-2-0shell32.dll
API-ms-win-shell-shell32-l1-2-1shell32.dll
API-ms-win-shell-shellcom-l1-1-0kernelbase.dll
API-ms-win-shell-shellfolders-l1-1-0kernelbase.dll
API-ms-win-shell-shlwapi-l1-1-0shlwapi.dll
API-ms-win-shell32-shellcom-l1-1-0shell32.dll
API-ms-win-shell32-shellfolders-l1-1-0shell32.dll
API-ms-win-shlwapi-ie-l1-1-0shlwapi.dll
API-ms-win-shlwapi-winrt-storage-l1-1-0shlwapi.dll
API-ms-win-shlwapi-winrt-storage-l1-1-1shlwapi.dll
API-ms-win-smbshare-browser-l1-1-0browser.dll
API-ms-win-smbshare-sscore-l1-1-0sscoreext.dll
API-ms-win-spinf-inf-l1-1-0spinf.dll
API-ms-win-storage-iscsidsc-l1-1-0iscsidsc.dll
API-ms-win-sxs-oleautomation-l1-1-0sxs.dll
API-ms-win-tsf-msctf-l1-1-0msctf.dll
API-ms-win-ttlsext-eap-l1-1-0ttlsext.dll
API-ms-win-uiacore-l1-1-0uiautomationcore.dll
API-ms-win-umpoext-umpo-l1-1-0umpoext.dll
API-ms-win-usp10-l1-1-0gdi32.dll
API-ms-win-uxtheme-themes-l1-1-0uxtheme.dll
API-ms-win-uxtheme-themes-l1-1-1uxtheme.dll
API-ms-win-webio-pal-l1-1-0webio.dll
API-ms-win-wer-reporting-l1-1-0wer.dll
API-ms-win-wevtapi-eventlog-l1-1-0wevtapi.dll
API-ms-win-wevtapi-eventlog-l1-1-1wevtapi.dll
API-ms-win-wevtapi-eventlog-l1-1-2wevtapi.dll
API-ms-win-winbici-l1-1-0winbici.dll
API-ms-win-winhttp-pal-l1-1-0winhttp.dll
API-ms-win-winrt-storage-l1-1-0shell32.dll
API-ms-win-wlan-grouppolicy-l1-1-0wlgpclnt.dll
API-ms-win-wlan-onexui-l1-1-0onexui.dll
API-ms-win-wlan-scard-l1-1-0winscard.dll
API-ms-win-wsclient-devlicense-l1-1-0wsclient.dll
API-ms-win-wsclient-devlicense-l1-1-1wsclient.dll
API-ms-win-wwaext-misc-l1-1-0wwaext.dll
API-ms-win-wwaext-module-l1-1-0wwaext.dll
API-ms-win-wwan-wwapi-l1-1-0wwapi.dll
API-ms-win-xaml-controls-l1-1-0windows.ui.xaml.phone.dll

windows 10 Technical Preview W32pServiceTable

$
0
0
W32pServiceLimit .eq. 0x441 and now available via exported function win32k!SysEntryGetW32pServiceLimit

NtUserGetOwnerTransformedMonitorRect
NtUserYieldTask
NtUserSetSensorPresence
NtGdiWidenPath
NtGdiUpdateColors
NtGdiUnrealizeObject
NtGdiUnmapMemFont
NtGdiUnloadPrinterDriver
NtGdiTransparentBlt
NtGdiTransformPoints
NtGdiSwapBuffers
NtGdiStrokePath
NtGdiStrokeAndFillPath
NtGdiStretchDIBitsInternal
NtGdiStretchBlt
NtGdiStartPage
NtGdiStartDoc
NtGdiSetSizeDevice
NtGdiSetVirtualResolution
NtGdiSetTextJustification
NtGdiSetSystemPaletteUse
NtGdiSetRectRgn
NtGdiSetPixelFormat
NtGdiSetPixel
NtGdiSetOPMSigningKeyAndSequenceNumbers
NtGdiSetLayout
NtGdiMirrorWindowOrg
NtGdiGetDeviceWidth
NtGdiSetMiterLimit
NtGdiSetMetaRgn
NtGdiSetMagicColors
NtGdiSetLinkedUFIs
NtGdiSetIcmMode
NtGdiSetFontXform
NtGdiSetFontEnumeration
NtGdiSetDIBitsToDeviceInternal
NtGdiSetDeviceGammaRamp
NtGdiSetColorSpace
NtGdiSetColorAdjustment
NtGdiSetBrushOrg
NtGdiSetBrushAttributes
NtGdiSetBoundsRect
NtGdiSetBitmapDimension
NtGdiSetBitmapBits
NtGdiSetBitmapAttributes
NtGdiSelectPen
NtGdiSelectFont
NtGdiSelectClipPath
NtGdiSelectBrush
NtGdiSelectBitmap
NtGdiScaleWindowExtEx
NtGdiScaleViewportExtEx
NtGdiSaveDC
NtGdiRoundRect
NtGdiRestoreDC
NtGdiResizePalette
NtGdiResetDC
NtGdiRemoveFontMemResourceEx
NtGdiRemoveFontResourceW
NtGdiRectVisible
NtGdiRectInRegion
NtGdiRectangle
NtGdiQueryFontAssocInfo
NtGdiQueryFonts
NtGdiPtVisible
NtGdiPtInRegion
NtGdiPolyTextOutW
NtGdiPolyPolyDraw
NtGdiPolyDraw
NtGdiPlgBlt
NtGdiPathToRegion
NtGdiPolyPatBlt
NtGdiPatBlt
NtGdiOpenDCW
NtGdiOffsetRgn
NtGdiOffsetClipRgn
NtGdiMoveTo
NtGdiMonoBitmap
NtGdiModifyWorldTransform
NtGdiMaskBlt
NtGdiMakeInfoDC
NtGdiMakeFontDir
NtGdiLineTo
NtGdiInvertRgn
NtGdiIntersectClipRect
NtGdiInitSpool
NtGdiInit
NtGdiIcmBrushInfo
NtGdiHfontCreate
NtGdiGradientFill
NtGdiGetWidthTable
NtGdiGetFontUnicodeRanges
NtGdiAddEmbFontToDC
NtGdiChangeGhostFont
NtGdiGetEmbedFonts
NtGdiGetUFIPathname
NtGdiGetEmbUFI
NtGdiGetUFI
NtGdiGetTransform
NtGdiGetTextMetricsW
NtGdiGetTextFaceW
NtGdiGetTextExtentExW
NtGdiGetTextExtent
NtGdiGetTextCharsetInfo
NtGdiGetSystemPaletteUse
NtGdiGetSuggestedOPMProtectedOutputArraySize
NtGdiGetStringBitmapW
NtGdiGetStockObject
NtGdiGetStats
NtGdiGetSpoolMessage
NtGdiGetServerMetaFileBits
NtGdiGetRgnBox
NtGdiGetRegionData
NtGdiGetRealizationInfo
NtGdiGetRasterizerCaps
NtGdiGetRandomRgn
NtGdiGetPixel
NtGdiGetPath
NtGdiGetOutlineTextMetricsInternalW
NtGdiGetOPMRandomNumber
NtGdiGetObjectBitmapHandle
NtGdiGetNearestPaletteIndex
NtGdiGetNearestColor
NtGdiGetMonitorID
NtGdiGetMiterLimit
NtGdiGetLinkedUFIs
NtGdiGetKerningPairs
NtGdiGetOPMInformation
NtGdiGetGlyphOutline
NtGdiGetGlyphIndicesWInternal
NtGdiGetGlyphIndicesW
NtGdiGetFontResourceInfoInternalW
NtGdiGetFontFileInfo
NtGdiGetFontFileData
NtGdiGetFontData
NtGdiGetEudcTimeStampEx
NtGdiGetETM
NtGdiGetDIBitsInternal
NtGdiGetDeviceCapsAll
NtGdiGetDeviceGammaRamp
NtGdiGetDeviceCaps
NtGdiGetDCPoint
NtGdiGetDCObject
NtGdiGetDCforBitmap
NtGdiGetDCDword
NtGdiGetCurrentDpiInfo
NtGdiGetCOPPCompatibleOPMInformation
NtGdiGetColorSpaceforBitmap
NtGdiGetColorAdjustment
NtGdiGetCharWidthInfo
NtGdiGetCharWidthW
NtGdiGetCharSet
NtGdiGetCharacterPlacementW
NtGdiGetCharABCWidthsW
NtGdiGetCertificateSize
NtGdiGetCertificate
NtGdiGetBoundsRect
NtGdiGetBitmapDimension
NtGdiGetBitmapBits
NtGdiGetAppClipBox
NtGdiGetAndSetDCDword
NtGdiFullscreenControl
NtGdiFrameRgn
NtGdiForceUFIMapping
NtGdiFlush
NtGdiFlattenPath
NtGdiFillRgn
NtGdiFillPath
NtGdiExtTextOutW
NtGdiExtSelectClipRgn
NtGdiExtGetObjectW
NtGdiExtFloodFill
NtGdiExtEscape
NtGdiExtCreateRegion
NtGdiExtCreatePen
NtGdiExcludeClipRect
NtGdiEudcLoadUnloadLink
NtGdiEqualRgn
NtGdiEnumObjects
NtGdiEnumFonts
NtGdiEndPath
NtGdiEndPage
NtGdiEndGdiRendering
NtGdiEndDoc
NtGdiEnableEudc
NtGdiEllipse
NtGdiDrawEscape
NtGdiDoPalette
NtGdiDoBanding
NtGdiGetPerBandInfo
NtGdiDestroyOPMProtectedOutput
NtGdiDescribePixelFormat
NtGdiDeleteObjectApp
NtGdiDeleteColorTransform
NtGdiDeleteColorSpace
NtGdiDeleteClientObj
NtGdiDxgGenericThunk
NtGdiDvpReleaseNotification
NtGdiDvpAcquireNotification
NtGdiDvpWaitForVideoPortSync
NtGdiDvpUpdateVideoPort
NtGdiDvpGetVideoSignalStatus
NtGdiDvpGetVideoPortConnectInfo
NtGdiDvpGetVideoPortOutputFormats
NtGdiDvpGetVideoPortLine
NtGdiDvpGetVideoPortInputFormats
NtGdiDvpGetVideoPortFlipStatus
NtGdiDvpGetVideoPortField
NtGdiDvpGetVideoPortBandwidth
NtGdiDvpFlipVideoPort
NtGdiDvpDestroyVideoPort
NtGdiDvpCreateVideoPort
NtGdiDvpColorControl
NtGdiDvpCanCreateVideoPort
NtGdiDdWaitForVerticalBlank
NtGdiDdUpdateOverlay
NtGdiDdUnlockD3D
NtGdiDdUnlock
NtGdiDdUnattachSurface
NtGdiDdSetOverlayPosition
NtGdiDdCreateSurfaceEx
NtGdiDdSetGammaRamp
NtGdiDdSetExclusiveMode
NtGdiDdSetColorKey
NtGdiDdResetVisrgn
NtGdiDdRenderMoComp
NtGdiDdReleaseDC
NtGdiDdReenableDirectDrawObject
NtGdiDdQueryMoCompStatus
NtGdiDdQueryDirectDrawObject
NtGdiDdLockD3D
NtGdiDdLock
NtGdiDdGetScanLine
NtGdiDdGetMoCompFormats
NtGdiDdGetMoCompGuids
NtGdiDdGetMoCompBuffInfo
NtGdiDdGetInternalMoCompInfo
NtGdiDdGetFlipStatus
NtGdiDdGetDxHandle
NtGdiDdGetDriverInfo
NtGdiDdGetDC
NtGdiDdGetBltStatus
NtGdiDdGetAvailDriverMemory
NtGdiDdFlipToGDISurface
NtGdiDdFlip
NtGdiDdEndMoCompFrame
NtGdiDdDestroyD3DBuffer
NtGdiDdDestroySurface
NtGdiDdDestroyMoComp
NtGdiDdDeleteSurfaceObject
NtGdiDdDeleteDirectDrawObject
NtGdiDdCreateSurfaceObject
NtGdiDdCreateMoComp
NtGdiDdCreateD3DBuffer
NtGdiDdCreateSurface
NtGdiDdCreateDirectDrawObject
NtGdiDdColorControl
NtGdiDdCanCreateD3DBuffer
NtGdiDdCanCreateSurface
NtGdiDdBlt
NtGdiDdBeginMoCompFrame
NtGdiDdAttachSurface
NtGdiDdAlphaBlt
NtGdiDdAddAttachedSurface
NtGdiDdGetDriverState
NtGdiD3dDrawPrimitives2
NtGdiD3dValidateTextureStageState
NtGdiD3dContextDestroyAll
NtGdiD3dContextDestroy
NtGdiD3dContextCreate
NtGdiCreateSolidBrush
NtGdiCreateServerMetaFile
NtGdiCreateRoundRectRgn
NtGdiCreateRectRgn
NtGdiCreatePen
NtGdiCreatePatternBrushInternal
NtGdiCreatePaletteInternal
NtGdiCreateOPMProtectedOutputs
NtGdiCreateMetafileDC
NtGdiCreateHatchBrushInternal
NtGdiCreateHalftonePalette
NtGdiCreateEllipticRgn
NtGdiCreateSessionMappedDIBSection
NtGdiCreateDIBSection
NtGdiCreateDIBitmapInternal
NtGdiCreateDIBBrush
NtGdiCreateCompatibleDC
NtGdiCreateCompatibleBitmap
NtGdiCreateColorTransform
NtGdiCreateColorSpace
NtGdiCreateClientObj
NtGdiCreateBitmapFromDxSurface2
NtGdiCreateBitmapFromDxSurface
NtGdiCreateBitmap
NtGdiConvertMetafileRect
NtGdiConfigureOPMProtectedOutput
NtGdiComputeXformCoefficients
NtGdiCombineTransform
NtGdiCombineRgn
NtGdiColorCorrectPalette
NtGdiClearBrushAttributes
NtGdiClearBitmapAttributes
NtGdiCloseFigure
NtGdiCheckBitmapBits
NtGdiCancelDC
NtGdiBitBlt
NtGdiBeginPath
NtGdiBeginGdiRendering
NtGdiArcInternal
NtGdiFontIsLinked
NtGdiAnyLinkedFonts
NtGdiAngleArc
NtGdiAlphaBlend
NtGdiAddRemoteMMInstanceToDC
NtGdiRemoveMergeFont
NtGdiAddFontMemResourceEx
NtGdiAddRemoteFontToDC
NtGdiAddFontResourceW
NtGdiAbortPath
NtGdiAbortDoc
NtUserDefSetText
NtUserDeferWindowPosAndBand
NtUserDdeInitialize
NtUserCanBrokerForceForeground
NtUserCreateWindowStation
NtUserCreateWindowEx
NtUserCreateLocalMemHandle
NtUserCreateInputContext
NtUserCreateDesktopEx
NtUserCreateCaret
NtUserCreateAcceleratorTable
NtUserCountClipboardFormats
NtUserCopyAcceleratorTable
NtUserConvertMemHandle
NtUserConsoleControl
NtUserCloseWindowStation
NtUserCloseDesktop
NtUserCloseClipboard
NtUserClipCursor
NtUserChildWindowFromPointEx
NtUserCheckMenuItem
NtUserCheckWindowThreadDesktop
NtUserDwmValidateWindow
NtUserCheckAccessForIntegrityLevel
NtUserDisplayConfigSetDeviceInfo
NtUserDisplayConfigGetDeviceInfo
NtUserQueryDisplayConfig
NtUserSetDisplayConfig
NtUserGetDisplayConfigBufferSizes
NtUserChangeDisplaySettings
NtUserChangeClipboardChain
NtUserCallTwoParam
NtUserCallOneParam
NtUserCallNoParam
NtUserCallNextHookEx
NtUserCallMsgFilter
NtUserCallHwndParamLock
NtUserCallHwndParam
NtUserCallHwndOpt
NtUserCallHwndLock
NtUserCallHwnd
NtUserBuildPropList
NtUserBuildNameList
NtUserBuildHwndList
NtUserBuildHimcList
NtUserBlockInput
NtUserBitBltSysBmp
NtUserBeginPaint
NtUserAttachThreadInput
NtUserAssociateInputContext
NtUserAlterWindowStyle
NtUserAddClipboardFormatListener
NtUserActivateKeyboardLayout
NtUserDelegateCapturePointers
NtUserDelegateInput
NtUserDispatchMessage
NtUserDisableProcessWindowFiltering
NtUserDisableThreadIme
NtUserDestroyWindow
NtUserDestroyMenu
NtUserDestroyInputContext
NtUserDestroyCursor
NtUserDestroyAcceleratorTable
NtUserDeleteMenu
NtUserDoSoundDisconnect
NtUserDoSoundConnect
NtUserGhostWindowFromHungWindow
NtUserGetWOWClass
NtUserGetWindowPlacement
NtUserGetWindowDisplayAffinity
NtUserGetWindowDC
NtUserGetWindowCompositionAttribute
NtUserGetWindowCompositionInfo
NtUserGetWindowBand
NtUserGetUpdateRgn
NtUserGetUpdateRect
NtUserGetUpdatedClipboardFormats
NtUserGetTopLevelWindow
NtUserGetTitleBarInfo
NtUserGetThreadState
NtUserGetThreadDesktop
NtUserGetSystemMenu
NtUserGetScrollBarInfo
NtUserGetRegisteredRawInputDevices
NtUserGetRawInputDeviceList
NtUserGetRawInputDeviceInfo
NtUserGetRawInputData
NtUserGetRawInputBuffer
NtUserGetProcessWindowStation
NtUserGetPriorityClipboardFormat
NtUserGetOpenClipboardWindow
NtUserGetObjectInformation
NtUserGetMouseMovePointsEx
NtUserGetMessage
NtUserGetMenuItemRect
NtUserGetMenuIndex
NtUserGetMenuBarInfo
NtUserGetListBoxInfo
NtUserGetKeyState
NtUserGetKeyNameText
NtUserGetKeyboardState
NtUserGetKeyboardLayoutName
NtUserGetKeyboardLayoutList
NtUserGetInternalWindowPos
NtUserGetInputLocaleInfo
NtUserGetImeInfoEx
NtUserGetImeHotKey
NtUserGetIconSize
NtUserGetIconInfo
NtUserGetGUIThreadInfo
NtUserGetGuiResources
NtUserGetForegroundWindow
NtUserGetDpiSystemMetrics
NtUserGetDoubleClickTime
NtUserGetDesktopID
NtUserGetDCEx
NtUserGetDC
NtUserGetCursorInfo
NtUserGetCursorFrameInfo
NtUserGetCurrentInputMessageSource
NtUserGetCIMSSM
NtUserGetCPD
NtUserGetControlColor
NtUserGetControlBrush
NtUserGetComboBoxInfo
NtUserGetClipCursor
NtUserGetClipboardViewer
NtUserGetClipboardSequenceNumber
NtUserGetClipboardOwner
NtUserGetClipboardFormatName
NtUserGetClipboardData
NtUserGetClassName
NtUserGetClassInfoEx
NtUserGetCaretPos
NtUserGetCaretBlinkTime
NtUserGetAtomName
NtUserGetAsyncKeyState
NtUserGetAppImeLevel
NtUserGetAncestor
NtUserGetAltTabInfo
NtUserFrostCrashedWindow
NtUserFlashWindowEx
NtUserFindWindowEx
NtUserFindExistingCursorIcon
NtUserFillWindow
NtUserExcludeUpdateRgn
NtUserEvent
NtUserEnumDisplaySettings
NtUserEnumDisplayMonitors
NtUserEnumDisplayDevices
NtUserEndPaint
NtUserEndMenu
NtUserEndDeferWindowPosEx
NtUserEnableScrollBar
NtUserEnableMenuItem
NtUserEmptyClipboard
NtUserDrawMenuBarTemp
NtUserDrawIconEx
NtUserDrawCaptionTemp
NtUserDrawCaption
NtUserDrawAnimatedRects
NtUserDragObject
NtUserDragDetect
NtUserHandleDelegatedInput
NtUserRealChildWindowFromPoint
NtUserQueryWindow
NtUserQuerySendMessage
NtUserQueryInputContext
NtUserQueryInformationThread
NtUserQueryBSDRWindow
NtUserPerMonitorDPIPhysicalToLogicalPoint
NtUserProcessConnect
NtUserPrintWindow
NtUserPostThreadMessage
NtUserPostMessage
NtUserPhysicalToLogicalPoint
NtUserPeekMessage
NtUserPaintMonitor
NtUserPaintDesktop
NtUserOpenWindowStation
NtUserOpenThreadDesktop
NtUserOpenInputDesktop
NtUserOpenDesktop
NtUserOpenClipboard
NtUserNotifyWinEvent
NtUserNotifyProcessCreate
NtUserNotifyIMEStatus
NtUserMoveWindow
NtUserModifyUserStartupInfoFlags
NtUserMNDragOver
NtUserMNDragLeave
NtUserMinMaximize
NtUserMessageCall
NtUserMenuItemFromPoint
NtUserMapVirtualKeyEx
NtUserLayoutCompleted
NtUserLogicalToPerMonitorDPIPhysicalPoint
NtUserLogicalToPhysicalPoint
NtUserLockWorkStation
NtUserLockWindowUpdate
NtUserLockWindowStation
NtUserLoadKeyboardLayoutEx
NtUserKillTimer
NtUserIsTopLevelWindow
NtUserIsClipboardFormatAvailable
NtUserInvalidateRgn
NtUserInvalidateRect
NtUserInternalGetWindowIcon
NtUserInternalGetWindowText
NtUserInitTask
NtUserInitializeClientPfnArrays
NtUserInitialize
NtUserImpersonateDdeClientWindow
NtUserHungWindowFromGhostWindow
NtUserHiliteMenuItem
NtUserHideCaret
NtUserHardErrorControl
NtUserRealInternalGetMessage
NtUserRealWaitMessageEx
NtUserTranslateMessage
NtUserTranslateAccelerator
NtUserPaintMenuBar
NtUserCalcMenuBar
NtUserCalculatePopupWindowPosition
NtUserTrackPopupMenuEx
NtUserTrackMouseEvent
NtUserToUnicodeEx
NtUserThunkedMenuItemInfo
NtUserThunkedMenuInfo
NtUserTestForInteractiveUser
NtUserSendEventMessage
NtUserSystemParametersInfo
NtUserSwitchDesktop
NtUserSoundSentry
NtUserShutdownReasonDestroy
NtUserShutdownBlockReasonQuery
NtUserShutdownBlockReasonCreate
NtUserShowWindowAsync
NtUserShowWindow
NtUserShowScrollBar
NtUserShowCaret
NtUserSetWinEventHook
NtUserSetWindowWord
NtUserSetWindowStationUser
NtUserSetWindowsHookEx
NtUserSetWindowsHookAW
NtUserSetWindowRgnEx
NtUserGetWindowRgnEx
NtUserSetWindowRgn
NtUserSetWindowPos
NtUserSetWindowPlacement
NtUserSetWindowLong
NtUserSetWindowFNID
NtUserSetWindowDisplayAffinity
NtUserSetWindowCompositionTransition
NtUserUpdateDefaultDesktopThumbnail
NtUserSetWindowCompositionAttribute
NtUserSetWindowBand
NtUserSetProcessUIAccessZorder
NtUserSetProcessDpiAwareness
NtUserSetTimer
NtUserSetThreadState
NtUserSetThreadLayoutHandles
NtUserSetThreadDesktop
NtUserSetThreadInputBlocked
NtUserSetSystemTimer
NtUserSetSystemMenu
NtUserSetSystemCursor
NtUserSetSysColors
NtUserSetShellWindowEx
NtUserSetImmersiveBackgroundWindow
NtUserSetScrollInfo
NtUserSetProp
NtUserGetProp
NtUserSetProcessWindowStation
NtUserSetParent
NtUserSetObjectInformation
NtUserSetMenuFlagRtoL
NtUserSetMenuDefaultItem
NtUserSetMenuContextHelpId
NtUserSetMenu
NtUserSetKeyboardState
NtUserSetInternalWindowPos
NtUserSetInformationThread
NtUserSetImeOwnerWindow
NtUserSetImeInfoEx
NtUserSetImeHotKey
NtUserSetFocus
NtUserSetCursorIconData
NtUserSetCursorContents
NtUserSetCursor
NtUserSetClipboardViewer
NtUserSetClipboardData
NtUserSetClassWord
NtUserSetClassLong
NtUserSetChildWindowNoActivate
NtUserSetCapture
NtUserSetAppImeLevel
NtUserSetActiveWindow
NtUserSendInput
NtUserSelectPalette
NtUserScrollWindowEx
NtUserScrollDC
NtUserSBGetParms
NtUserResolveDesktopForWOW
NtUserRemoveProp
NtUserRemoveMenu
NtUserRemoveClipboardFormatListener
NtUserRegisterWindowMessage
NtUserRegisterTasklist
NtUserRegisterServicesProcess
NtUserRegisterRawInputDevices
NtUserRegisterHotKey
NtUserRegisterDManipHook
NtUserGetDManipHookInitFunction
NtUserRegisterManipulationThread
NtUserSetManipulationInputTarget
NtUserRegisterUserApiHook
NtUserRegisterErrorReportingDialog
NtUserRegisterClassExWOW
NtUserRegisterBSDRWindow
NtUserRedrawWindow
NtUserUndelegateInput
NtUserGetWindowMinimizeRect
NtUserDwmStopRedirection
NtUserDwmStartRedirection
NtUserDwmGetRemoteSessionOcclusionEvent
NtUserDwmGetRemoteSessionOcclusionState
NtUserUpdateWindowTransform
NtUserCheckProcessSession
NtUserUnregisterSessionPort
NtUserRegisterSessionPort
NtUserCtxDisplayIOCtl
NtUserRemoteStopScreenUpdates
NtUserRemoteRedrawScreen
NtUserRemoteRedrawRectangle
NtUserRemoteConnect
NtUserWaitAvailableMessageEx
NtUserWindowFromPoint
NtUserWindowFromPhysicalPoint
NtUserWaitMessage
NtUserWaitForMsgAndEvent
NtUserWaitForInputIdle
NtUserVkKeyScanEx
NtUserValidateTimerCallback
NtUserValidateRect
NtUserValidateHandleSecure
NtUserUserHandleGrantAccess
NtUserUpdatePerUserSystemParameters
NtUserSetLayeredWindowAttributes
NtUserGetLayeredWindowAttributes
NtUserUpdateLayeredWindow
NtUserUpdateInstance
NtUserUpdateInputContext
NtUserUnregisterHotKey
NtUserUnregisterUserApiHook
NtUserUnregisterClass
NtUserUnlockWindowStation
NtUserUnloadKeyboardLayout
NtUserUnhookWinEvent
NtUserUnhookWindowsHookEx
NtUserGetTouchInputInfo
NtUserIsTouchWindow
NtUserModifyWindowTouchCapability
NtGdiEngStretchBltROP
NtGdiEngTextOut
NtGdiEngTransparentBlt
NtGdiEngGradientFill
NtGdiEngAlphaBlend
NtGdiEngLineTo
NtGdiEngPaint
NtGdiEngStrokeAndFillPath
NtGdiEngFillPath
NtGdiEngStrokePath
NtGdiEngMarkBandingSurface
NtGdiEngPlgBlt
NtGdiEngStretchBlt
NtGdiEngBitBlt
NtGdiEngLockSurface
NtGdiEngUnlockSurface
NtGdiEngEraseSurface
NtGdiEngDeleteSurface
NtGdiEngDeletePalette
NtGdiEngCopyBits
NtGdiEngComputeGlyphSet
NtGdiEngCreatePalette
NtGdiEngCreateDeviceBitmap
NtGdiEngCreateDeviceSurface
NtGdiEngCreateBitmap
NtGdiEngAssociateSurface
NtUserSetWindowFeedbackSetting
NtUserRegisterEdgy
NtUserRegisterShellPTPListener
NtUserGetWindowFeedbackSetting
NtUserHidePointerContactVisualization
NtUserGetTouchValidationStatus
NtUserInitializeTouchInjection
NtUserInjectTouchInput
NtUserRegisterTouchHitTestingWindow
NtUserSetDisplayMapping
NtUserSetCalibrationData
NtUserGetPhysicalDeviceRect
NtUserRegisterTouchPadCapable
NtUserGetRawPointerDeviceData
NtUserGetPointerDeviceCursors
NtUserGetPointerDeviceRects
NtUserRegisterPointerDeviceNotifications
NtUserGetPointerDeviceProperties
NtUserGetPointerDevice
NtUserGetPointerDevices
NtUserEnableTouchPad
NtUserGetPrecisionTouchPadConfiguration
NtUserSetPrecisionTouchPadConfiguration
NtUserPromotePointer
NtUserDiscardPointerFrameMessages
NtUserRegisterPointerInputTarget
NtUserGetPointerFrameArrivalTimes
NtUserGetPointerInputTransform
NtUserGetPointerInfoList
NtUserGetPointerCursorId
NtUserGetPointerType
NtUserGetGestureConfig
NtUserSetGestureConfig
NtUserGetGestureExtArgs
NtUserGetGestureInfo
NtUserInjectGesture
NtUserChangeWindowMessageFilterEx
NtGdiXLATEOBJ_hGetColorTransform
NtGdiXLATEOBJ_iXlate
NtGdiXLATEOBJ_cGetPalette
NtGdiEngDeleteClip
NtGdiEngCreateClip
NtGdiEngDeletePath
NtGdiCLIPOBJ_ppoGetPath
NtGdiCLIPOBJ_cEnumStart
NtGdiCLIPOBJ_bEnum
NtGdiBRUSHOBJ_hGetColorTransform
NtGdiBRUSHOBJ_pvGetRbrush
NtGdiBRUSHOBJ_pvAllocRbrush
NtGdiBRUSHOBJ_ulGetBrushColor
NtGdiXFORMOBJ_iGetXform
NtGdiXFORMOBJ_bApplyXform
NtGdiFONTOBJ_pQueryGlyphAttrs
NtGdiFONTOBJ_pfdg
NtGdiFONTOBJ_pifi
NtGdiFONTOBJ_cGetGlyphs
NtGdiFONTOBJ_pxoGetXform
NtGdiFONTOBJ_vGetInfo
NtGdiFONTOBJ_cGetAllGlyphHandles
NtGdiFONTOBJ_pvTrueTypeFontFile
NtGdiSTROBJ_dwGetCodePage
NtGdiSTROBJ_vEnumStart
NtGdiSTROBJ_bGetAdvanceWidths
NtGdiSTROBJ_bEnumPositionsOnly
NtGdiSTROBJ_bEnum
NtGdiPATHOBJ_bEnumClipLines
NtGdiPATHOBJ_vEnumStartClipLines
NtGdiPATHOBJ_vEnumStart
NtGdiPATHOBJ_bEnum
NtGdiPATHOBJ_vGetBounds
NtGdiEngCheckAbort
NtGdiGetDhpdev
NtGdiHT_Get8BPPMaskPalette
NtGdiHT_Get8BPPFormatPalette
NtGdiUpdateTransform
NtGdiUMPDEngFreeUserMem
NtGdiBRUSHOBJ_DeleteRbrush
NtGdiSetPUMPDOBJ
NtGdiSetUMPDSandboxState
NtGdiDrawStream
NtGdiHLSurfSetInformation
NtGdiHLSurfGetInformation
NtGdiDwmCreatedBitmapRemotingOutput
NtGdiDdDDIGetScanLine
NtGdiDdDDIReleaseProcessVidPnSourceOwners
NtGdiDdDDIGetProcessSchedulingPriorityClass
NtGdiDdDDISetProcessSchedulingPriorityClass
NtGdiDdDDIGetContextSchedulingPriority
NtGdiDdDDISetContextSchedulingPriority
NtGdiDdDDIDestroyDCFromMemory
NtGdiDdDDICreateDCFromMemory
NtGdiDdDDIGetDeviceState
NtGdiDdDDISetGammaRamp
NtGdiDdDDIWaitForVerticalBlankEvent
NtGdiDdDDIDestroyOverlay
NtGdiDdDDIFlipOverlay
NtGdiDdDDIUpdateOverlay
NtGdiDdDDICreateOverlay
NtGdiDdDDIGetPresentQueueEvent
NtGdiDdDDIGetPresentHistory
NtGdiDdDDISetVidPnSourceOwner1
NtGdiDdDDISetVidPnSourceOwner
NtGdiDdDDIQueryStatistics
NtGdiDdDDIEscape
NtGdiDdDDIGetSharedPrimaryHandle
NtGdiDdDDICloseAdapter
NtGdiDdDDIOpenAdapterFromLuid
NtGdiDdDDIEnumAdapters
NtGdiDdDDIEnumAdapters2
NtGdiDdDDIOpenAdapterFromHdc
NtGdiDdDDIOpenAdapterFromDeviceName
NtGdiDdDDIRender
NtGdiDdDDIPresent
NtGdiDdDDIGetMultisampleMethodList
NtGdiDdDDISetDisplayMode
NtGdiDdDDIGetDisplayModeList
NtGdiDdDDIUnlock
NtGdiDdDDILock
NtGdiDdDDIQueryAdapterInfo
NtGdiDdDDIGetRuntimeData
NtGdiDdDDISignalSynchronizationObject
NtGdiDdDDIWaitForSynchronizationObject
NtGdiDdDDIDestroySynchronizationObject
NtGdiDdDDIOpenSynchronizationObject
NtGdiDdDDICreateSynchronizationObject
NtGdiDdDDIDestroyContext
NtGdiDdDDICreateContext
NtGdiDdDDIDestroyDevice
NtGdiDdDDICreateDevice
NtGdiDdDDIQueryAllocationResidency
NtGdiDdDDISetAllocationPriority
NtGdiDdDDIDestroyAllocation
NtGdiDdDDIDestroyAllocation2
NtGdiDdDDIOpenResourceFromNtHandle
NtGdiDdDDIOpenSyncObjectFromNtHandle
NtGdiDdDDIOpenSyncObjectFromNtHandle2
NtGdiDdDDIOpenResource
NtGdiDdDDIOpenNtHandleFromName
NtGdiDdDDIOpenSyncObjectNtHandleFromName
NtGdiDdDDIShareObjects
NtGdiDdDDIQueryResourceInfoFromNtHandle
NtGdiDdDDIQueryResourceInfo
NtGdiDdDDICreateAllocation
NtGdiDdDDIOutputDuplReleaseFrame
NtGdiDdDDIQueryRemoteVidPnSourceFromGdiDisplayName
NtGdiDdDDIOutputDuplPresent
NtGdiDdDDIReleaseKeyedMutex2
NtGdiDdDDIAcquireKeyedMutex2
NtGdiDdDDIOpenKeyedMutex2
NtGdiDdDDICreateKeyedMutex2
NtGdiDdDDIOutputDuplGetPointerShapeData
NtGdiDdDDIOutputDuplGetMetaData
NtGdiDdDDIOutputDuplGetFrameInfo
NtGdiDdDDIDestroyOutputDupl
NtGdiDdDDICreateOutputDupl
NtGdiDdDDIReclaimAllocations
NtGdiDdDDIOfferAllocations
NtGdiDdDDICheckSharedResourceAccess
NtGdiDdDDICheckVidPnExclusiveOwnership
NtGdiDdDDIGetOverlayState
NtGdiDdDDIConfigureSharedResource
NtGdiDdDDIReleaseKeyedMutex
NtGdiDdDDIAcquireKeyedMutex
NtGdiDdDDIDestroyKeyedMutex
NtGdiDdDDIOpenKeyedMutex
NtGdiDdDDICreateKeyedMutex
NtGdiDdDDISharedPrimaryUnLockNotification
NtGdiDdDDISharedPrimaryLockNotification
NtGdiDdDDISetDisplayPrivateDriverFormat
NtGdiDdDDICheckExclusiveOwnership
NtGdiDdDDICheckMonitorPowerState
NtGdiDdDDIWaitForIdle
NtGdiDdDDICheckOcclusion
NtGdiDdDDIInvalidateActiveVidPn
NtGdiDdDDIPollDisplayChildren
NtGdiDdDDISetQueuedLimit
NtGdiDdDDIPinDirectFlipResources
NtGdiDdDDIUnpinDirectFlipResources
NtGdiDdDDIWaitForVerticalBlankEvent2
NtGdiDdDDIGetDWMVerticalBlankEvent
NtGdiDdDDISetSyncRefreshCountWaitTarget
NtGdiDdDDISetContextInProcessSchedulingPriority
NtGdiDdDDIGetContextInProcessSchedulingPriority
NtGdiDdDDIGetSharedResourceAdapterLuid
NtGdiDdDDISetStereoEnabled
NtGdiDdDDIPresentMultiPlaneOverlay
NtGdiDdDDICheckMultiPlaneOverlaySupport
NtGdiDdDDIMakeResident
NtGdiDdDDIEvict
NtGdiDdDDIWaitForSynchronizationObjectFromCpu
NtGdiDdDDISignalSynchronizationObjectFromCpu
NtGdiDdDDIWaitForSynchronizationObjectFromGpu
NtGdiDdDDISignalSynchronizationObjectFromGpu
NtGdiDdDDISignalSynchronizationObjectFromGpu2
NtGdiDdDDICreatePagingQueue
NtGdiDdDDIDestroyPagingQueue
NtGdiDdDDILock2
NtGdiDdDDIUnlock2
NtGdiDdDDIInvalidateCache
NtGdiDdDDIMapGpuVirtualAddress
NtGdiDdDDIReserveGpuVirtualAddress
NtGdiDdDDIFreeGpuVirtualAddress
NtGdiDdDDIUpdateGpuVirtualAddress
NtGdiDdDDICreateContextVirtual
NtGdiDdDDISubmitCommand
NtGdiDdDDIGetCachedHybridQueryValue
NtGdiDdDDICacheHybridQueryValue
NtGdiDdDDINetDispGetNextChunkInfo
NtGdiDdDDINetDispQueryMiracastDisplayDeviceSupport
NtGdiDdDDINetDispStartMiracastDisplayDevice
NtGdiDdDDINetDispStopMiracastDisplayDevice
NtGdiDdDDINetDispQueryMiracastDisplayDeviceStatus
NtGdiDdDDINetDispStopSessions
NtGdiDdDDIQueryVideoMemoryInfo
NtGdiDdDDIChangeVideoMemoryReservation
NtGdiDdDDICreateSwapChain
NtGdiDdDDIOpenSwapChain
NtGdiDdDDIGetSwapChainMetadata
NtGdiDdDDIAcquireSwapChain
NtGdiDdDDIReleaseSwapChain
NtGdiDdDDIAbandonSwapChain
NtGdiDdDDISetDodIndirectSwapchain
NtGdiDdDDICheckMultiPlaneOverlaySupport2
NtGdiDdDDIPresentMultiPlaneOverlay2
NtGdiDdDDIReclaimAllocations2
NtGdiMakeObjectUnXferable
NtGdiMakeObjectXferable
NtGdiDestroyPhysicalMonitor
NtGdiGetPhysicalMonitorDescription
NtGdiGetPhysicalMonitors
NtGdiGetNumberOfPhysicalMonitors
NtGdiDDCCIGetTimingReport
NtGdiDDCCIGetCapabilitiesString
NtGdiDDCCIGetCapabilitiesStringLength
NtGdiDDCCISaveCurrentSettings
NtGdiDDCCISetVCPFeature
NtGdiDDCCIGetVCPFeature
NtGdiDdQueryVisRgnUniqueness
NtGdiDdDestroyFullscreenSprite
NtGdiDdNotifyFullscreenSpriteUpdate
NtGdiDdCreateFullscreenSprite
NtUserShowSystemCursor
NtUserSetMirrorRendering
NtUserMagGetContextInformation
NtUserMagSetContextInformation
NtUserMagControl
NtUserSlicerControl
NtUserHwndSetRedirectionInfo
NtUserHwndQueryRedirectionInfo
NtCreateCompositionSurfaceHandle
NtValidateCompositionSurfaceHandle
NtBindCompositionSurface
NtUnBindCompositionSurface
NtQueryCompositionSurfaceBinding
NtNotifyPresentToCompositionSurface
NtQueryCompositionSurfaceStatistics
NtOpenCompositionSurfaceSectionInfo
NtOpenCompositionSurfaceSwapChainHandleInfo
NtQueryCompositionSurfaceRenderingRealization
NtOpenCompositionSurfaceDirtyRegion
NtSetCompositionSurfaceOutOfFrameDirectFlipNotification
NtSetCompositionSurfaceStatistics
NtSetCompositionSurfaceBufferCompositionMode
NtSetCompositionSurfaceIndependentFlipInfo
NtCreateCompositionInputSink
NtDuplicateCompositionInputSink
NtQueryCompositionInputSink
NtQueryCompositionInputSinkLuid
NtUpdateInputSinkTransforms
NtCompositionInputThread
NtQueryCompositionInputQueueAndTransform
NtTokenManagerOpenSectionAndEvents
NtTokenManagerThread
NtTokenManagerGetOutOfFrameDirectFlipSurfaceUpdates
NtTokenManagerDeleteOutstandingDirectFlipTokens
NtTokenManagerCreateCompositionTokenHandle
NtDCompositionBeginFrame
NtDCompositionConfirmFrame
NtDCompositionRetireFrame
NtDCompositionDiscardFrame
NtDCompositionGetFrameSurfaceUpdates
NtDCompositionGetFrameLegacyTokens
NtDCompositionDestroyConnection
NtDCompositionGetConnectionBatch
NtDCompositionGetFrameStatistics
NtDCompositionGetDeletedResources
NtDCompositionSetResourceDeletedNotificationTag
NtDCompositionCreateConnection
NtDCompositionDestroyChannel
NtDCompositionReleaseAllResources
NtDCompositionSubmitDWMBatch
NtDCompositionCommitChannel
NtDCompositionWaitForChannel
NtDCompositionSetChannelCommitCompletionEvent
NtDCompositionTelemetryTouchInteractionBegin
NtDCompositionTelemetryTouchInteractionUpdate
NtDCompositionTelemetryTouchInteractionEnd
NtDCompositionTelemetrySetApplicationId
NtDCompositionTelemetryAnimationScenarioBegin
NtDCompositionTelemetryAnimationScenarioReference
NtDCompositionTelemetryAnimationScenarioUnreference
NtDCompositionCurrentBatchId
NtDCompositionReleaseResource
NtDCompositionRemoveCrossDeviceVisualChild
NtDCompositionRemoveVisualChild
NtDCompositionAddCrossDeviceVisualChild
NtDCompositionAddVisualChild
NtDCompositionReplaceVisualChildren
NtDCompositionSetResourceAnimationProperty
NtDCompositionSetResourceReferenceArrayProperty
NtDCompositionSetResourceReferenceProperty
NtDCompositionSetResourceBufferProperty
NtDCompositionSetResourceIntegerProperty
NtDCompositionSetResourceFloatProperty
NtDCompositionSetResourceHandleProperty
NtDCompositionCreateResource
NtDCompositionOpenSharedResource
NtDCompositionOpenSharedResourceHandle
NtDCompositionCreateDwmChannel
NtDCompositionCreateChannel
NtDCompositionSynchronize
NtDCompositionDwmSyncFlush
NtDCompositionReferenceSharedResourceOnDwmChannel
NtDCompositionSignalGpuFence
NtDCompositionCreateAndBindSharedSection
NtDCompositionSetDebugCounter
NtDCompositionGetChannels
NtDCompositionConnectPipe
NtDCompositionRegisterThumbnailVisual
NtDCompositionRegisterVirtualDesktopVisual
NtDCompositionDuplicateHandleToProcess
NtDCompositionSetVisualInputSink
NtDCompositionSetMessageKey
NtDCompositionGetAnimationTime
NtUserDestroyDCompositionHwndTarget
NtUserCreateDCompositionHwndTarget
NtUserWaitForRedirectionStartComplete
NtUserSignalRedirectionStartComplete
NtUserSetActiveProcessForMonitor
NtUserGetDisplayAutoRotationPreferencesByProcessId
NtUserGetDisplayAutoRotationPreferences
NtUserSetDisplayAutoRotationPreferences
NtUserSetAutoRotation
NtUserGetAutoRotationState
NtUserAutoRotateScreen
NtUserAcquireIAMKey
NtUserSetActivationFilter
NtUserSetFallbackForeground
NtUserSetBrokeredForeground
NtUserDisableImmersiveOwner
NtUserClearForeground
NtUserEnableIAMAccess
NtUserGetProcessUIContextInformation
NtUserSetProcessRestrictionExemption
NtUserEnableMouseInPointer
NtUserIsMouseInPointerEnabled
NtUserPromoteMouseInPointer
NtUserAutoPromoteMouseInPointer
NtUserEnableMouseInputForCursorSuppression
NtUserIsMouseInputEnabled
NtUserInternalClipCursor
NtUserCheckProcessForClipboardAccess
NtUserGetClipboardAccessToken
NtUserGetQueueEventStatus
NtUserCompositionInputSinkLuidFromPoint
NtUserUpdateWindowInputSinkHints
NtUserTransformPoint
NtUserTransformRect
NtUserGetHimetricScaleFactorFromPixelLocation
NtUserGetProcessDpiAwareness
NtUserGetDpiForMonitor
NtUserReportInertia
NtUserLinkDpiCursor
NtUserGetCursorDims
NtUserInitializeInputDeviceInjection
NtUserInitializePointerDeviceInjection
NtUserSetFeatureReportResponse
NtUserInjectPointerInput
NtUserInjectDeviceInput

CmControlVector from windows 10 Technical Preview

$
0
0
just to compare with w8.1 rtm


KeyValueNamew81rtmw10tp
Session Manager\Debug Print FilterACPI_Kd_ACPI_Maskw81rtmw10tp
Session Manager\Debug Print FilterALPC_Kd_ALPC_Maskw81rtmw10tp
Session Manager\Debug Print FilterAMLI_Kd_AMLI_Maskw81rtmw10tp
Session Manager\Debug Print FilterAPPCOMPAT_Kd_APPCOMPAT_Maskw81rtmw10tp
Session Manager\Debug Print FilterAUTOCHK_Kd_AUTOCHK_Maskw81rtmw10tp
PowerActiveIdleLevel_PopFxActiveIdleLevelw81rtmw10tp
PowerActiveIdleThreshold_PopFxActiveIdleThresholdw81rtmw10tp
PowerActiveIdleTimeout_PopFxActiveIdleTimeoutw81rtmw10tp
TimeZoneInformationActiveTimeBias_ExpLastTimeZoneBiasw81rtmw10tp
Session Manager\ExecutiveAdditionalCriticalWorkerThreads_ExpAdditionalCriticalWorkerThreadsw81rtmw10tp
Session Manager\ExecutiveAdditionalDelayedWorkerThreads_ExpAdditionalDelayedWorkerThreadsw81rtmw10tp
Session Manager\KernelAdjustDpcThreshold_KiAdjustDpcThresholdw81rtmw10tp
Session Manager\Memory ManagementAllocationPreference_MmAllocationPreferencew81rtmw10tp
Session Manager\Kernel\Extended StateAllowedFeatures_KeConfigAllowedXStateFeaturesw81rtmw10tp
Session ManagerAlpcMessageLog_AlpcpMessageLogEnabledw81rtmw10tp
Session ManagerAlpcWakePolicy_AlpcpWakePolicyDefaultw81rtmw10tp
Session Manager\Quota SystemApplicationBlockedMessageLimit_PspJobNoWakeChargeLimitw81rtmw10tp
LSAAuditBaseDirectories_ObpAuditBaseDirectoriesw81rtmw10tp
LSAAuditBaseObjects_ObpAuditBaseObjectsw81rtmw10tp
CrashControlAutoReboot_IopAutoRebootw81rtmw10tp
Session Manager\Debug Print FilterBURNENG_Kd_BURNENG_Maskw81rtmw10tp
TimeZoneInformationBias_ExpAltTimeZoneBiasw81rtmw10tp
Session Manager\KernelBugCheckUnexpectedInterrupts_KiBugCheckUnexpectedInterruptsw81rtmw10tp
Session Manager\Debug Print FilterCACHEMGR_Kd_CACHEMGR_Maskw81rtmw10tp
Session Manager\Debug Print FilterCAPIMG_Kd_CAPIMG_Mask w10tp
Session Manager\Debug Print FilterCDAUDIO_Kd_CDAUDIO_Maskw81rtmw10tp
Session Manager\Debug Print FilterCDROM_Kd_CDROM_Maskw81rtmw10tp
Session Manager\Debug Print FilterCFR_Kd_CFR_Maskw81rtmw10tp
Session Manager\Debug Print FilterCLASSPNP_Kd_CLASSPNP_Maskw81rtmw10tp
Session Manager\Debug Print FilterCNG_Kd_CNG_Maskw81rtmw10tp
Session Manager\Debug Print FilterCONFIG_Kd_CONFIG_Maskw81rtmw10tp
Session Manager\Debug Print FilterCOVERAGE_Kd_COVERAGE_Maskw81rtmw10tp
Session Manager\Debug Print FilterCRASHDUMP_Kd_CRASHDUMP_Maskw81rtmw10tp
Session Manager\Debug Print FilterCRASHDUMPXHCI_Kd_CRASHDUMPXHCI_Maskw81rtmw10tp
WindowsCSDBuildNumber_CmNtSpBuildNumberw81rtmw10tp
WindowsCSDReleaseType_CmNtCSDReleaseTypew81rtmw10tp
WindowsCSDVersion_CmNtCSDVersionw81rtmw10tp
Session ManagerCWDIllegalInDLLSearch_PspCurDirDevicesSkippedForDllsw81rtmw10tp
Session Manager\KernelCacheErrataOverride_KiTLBCOverridew81rtmw10tp
Session Manager\Memory ManagementClearPageFileAtShutdown_MmZeroPageFilew81rtmw10tp
PowerCoalescingFlushInterval_PopCoalescingFlushIntervalw81rtmw10tp
PowerCoalescingTimerInterval_PopCoalescingTimerIntervalw81rtmw10tp
Session Manager\I/O SystemCountOperations_IoCountOperationsw81rtmw10tp
Session Manager\ExecutiveCoverageMaxPagedPool_ExCovMaxPagedPoolToUsew81rtmw10tp
Session ManagerCriticalSectionTimeout_MmCritsectTimeoutSecondsw81rtmw10tp
PowerCsEnabled_PopCsEnabledRegw81rtmw10tp
Session Manager\Debug Print FilterDCOMSS_Kd_DCOMSS_Maskw81rtmw10tp
Session Manager\Debug Print FilterDEFAULT_Kd_DEFAULT_Maskw81rtmw10tp
Session Manager\Debug Print FilterDFRGIFC_Kd_DFRGIFC_Maskw81rtmw10tp
Session Manager\Debug Print FilterDFSC_Kd_DFSC_Maskw81rtmw10tp
Session Manager\Debug Print FilterDISK_Kd_DISK_Maskw81rtmw10tp
Session Manager\Debug Print FilterDMADMIN_Kd_DMADMIN_Maskw81rtmw10tp
Session Manager\Debug Print FilterDMCONFIG_Kd_DMCONFIG_Maskw81rtmw10tp
Session Manager\Debug Print FilterDMIO_Kd_DMIO_Maskw81rtmw10tp
Session Manager\Debug Print FilterDMSERVER_Kd_DMSERVER_Maskw81rtmw10tp
Session Manager\Debug Print FilterDMSYNTH_Kd_DMSYNTH_Maskw81rtmw10tp
Session Manager\KernelDPCTimeout_KiDPCTimeoutw81rtmw10tp
Session Manager\Debug Print FilterDRIVEEXTENDER_Kd_DRIVEEXTENDER_Maskw81rtmw10tp
Session Manager\Memory ManagementDeadlockRecursionDepthLimit_ViRecursionDepthLimitFromRegistryw81rtmw10tp
Session Manager\Memory ManagementDeadlockSearchNodesLimit_ViSearchedNodesLimitFromRegistryw81rtmw10tp
Session ManagerDebugger Retries_KdpContextw81rtmw10tp
Session Manager\KernelDebuggerIsStallOwner_KiDebuggerIsStallOwnerw81rtmw10tp
Session ManagerDebuggerMaxModuleMsgs_DbgkpMaxModuleMsgsw81rtmw10tp
Nls\LanguageDefault_CmDefaultLanguageIdw81rtmw10tp
Session Manager\Configuration ManagerDelayCloseSize_CmpDelayedCloseSizew81rtmw10tp
Session Manager\Configuration ManagerDelayDerefKCBLimit_CmpDelayDerefKCBLimit w10tp
Session Manager\KernelDisableAutoBoost_KiAbForceDisablew81rtmw10tp
Session Manager\I/O SystemDisableDiskCounters_PsDisableDiskCountersw81rtmw10tp
Session Manager\KernelDisableExceptionChainValidation_PspSehValidationPolicyw81rtmw10tp
Session Manager\KernelDisableLightWeightSuspend_KiDisableLightWeightSuspend w10tp
WHEA\PolicyDisableOffline_WheaRegPolicyDisableOfflinew81rtmw10tp
Session Manager\Memory ManagementDisablePageCombining_MmDisablePageCombiningw81rtmw10tp
Session Manager\Memory ManagementDisablePagingExecutive_MmDisablePagingExecutivew81rtmw10tp
PowerDisableVsyncLatencyUpdate_PpmDisableVsyncLatencyUpdatew81rtmw10tp
Session Manager\KnownDLLsDllDirectory_NtKnownDllsPath w10tp
Session Manager\KernelDpcQueueDepth_KiMaximumDpcQueueDepthw81rtmw10tp
Session Manager\KernelDpcWatchdogPeriod_KeDpcWatchdogPeriodw81rtmw10tp
PowerDripsWatchdogAction_PopDripsWatchdogActionw81rtmw10tp
PowerDripsWatchdogTimeout_PopDripsWatchdogTimeoutw81rtmw10tp
Session Manager\Memory ManagementDynamicMemory_MmDynamicPfnw81rtmw10tp
Session Manager\Debug Print FilterEMS_Kd_EMS_Maskw81rtmw10tp
Session Manager\Debug Print FilterENVIRON_Kd_ENVIRON_Maskw81rtmw10tp
Session Manager\Debug Print FilterEXFAT_Kd_EXFAT_Maskw81rtmw10tp
Session Manager\Memory ManagementEnableCfg_MmEnableCfgw81rtmw10tp
Session Manager\Memory ManagementEnableCooling_MmEnableCoolingw81rtmw10tp
Session Manager\Configuration ManagerEnablePeriodicBackup_CmpDoIdleProcessingw81rtmw10tp
Session Manager\Configuration Manager\LastKnownGoodEnabled_CmpLKGEnabledw81rtmw10tp
PowerEnergyEstimationDisabled_PopEnergyEstimationDisabled w10tp
Session ManagerErrorPortCommTimeout_DbgkErrorPortCommTimeoutw81rtmw10tp
Session ManagerErrorPortStartTimeout_DbgkErrorPortStartTimeoutw81rtmw10tp
PowerExitLatencyCheckEnabled_PpmExitLatencyCheckEnabledw81rtmw10tp
Session Manager\Debug Print FilterFASTFAT_Kd_FASTFAT_Maskw81rtmw10tp
Session Manager\Debug Print FilterFCPORT_Kd_FCPORT_Maskw81rtmw10tp
Session Manager\Debug Print FilterFDC_Kd_FDC_Maskw81rtmw10tp
Session Manager\Debug Print FilterFILETRACE_Kd_FILETRACE_Maskw81rtmw10tp
Session Manager\Debug Print FilterFLOPPY_Kd_FLOPPY_Maskw81rtmw10tp
Session Manager\Debug Print FilterFLTMGR_Kd_FLTMGR_Maskw81rtmw10tp
Session Manager\Debug Print FilterFLTREGRESS_Kd_FLTREGRESS_Maskw81rtmw10tp
Session Manager\Debug Print FilterFSTUB_Kd_FSTUB_Maskw81rtmw10tp
Session Manager\Debug Print FilterFUSION_Kd_FUSION_Maskw81rtmw10tp
Session Manager\Debug Print FilterFVEVOL_Kd_FVEVOL_Maskw81rtmw10tp
Session Manager\Configuration ManagerFastBoot_CmFastBootw81rtmw10tp
Session Manager\PowerFlushPolicy_PopFlushPolicyw81rtmw10tp
Session Manager\Memory ManagementForceValidateIo_MmForceValidateIow81rtmw10tp
Session Manager\Configuration ManagerFreezeThawTimeoutInSeconds_CmFreezeThawTimeoutInSecondsw81rtmw10tp
Session Manager\Debug Print FilterGPIO_Kd_GPIO_Maskw81rtmw10tp
ValidationRunlevelsGlobal_CmGlobalValidationRunlevelw81rtmw10tp
Session ManagerGlobalFlag_CmNtGlobalFlagw81rtmw10tp
Session Manager\Debug Print FilterHALIA64_Kd_HALIA64_Maskw81rtmw10tp
Session Manager\Debug Print FilterHEAP_Kd_HEAP_Maskw81rtmw10tp
Session Manager\Debug Print FilterHPS_Kd_HPS_Maskw81rtmw10tp
Session ManagerHeapDeCommitFreeBlockThreshold_MmHeapDeCommitFreeBlockThresholdw81rtmw10tp
Session ManagerHeapDeCommitTotalFreeThreshold_MmHeapDeCommitTotalFreeThresholdw81rtmw10tp
Session ManagerHeapSegmentCommit_MmHeapSegmentCommitw81rtmw10tp
Session ManagerHeapSegmentReserve_MmHeapSegmentReservew81rtmw10tp
PowerHiberFileSizePercent_PopHiberFileSizePercentRegw81rtmw10tp
PowerHiberbootEnabled_PopHiberbootEnabledRegw81rtmw10tp
PowerHibernateEnabled_PopHiberEnabledRegw81rtmw10tp
Session Manager\Memory ManagementHighMemoryThreshold_MmHighMemoryThresholdw81rtmw10tp
Session Manager\Debug Print FilterI8042PRT_Kd_I8042PRT_Maskw81rtmw10tp
Session Manager\Debug Print FilterIDEP_Kd_IDEP_Maskw81rtmw10tp
Session Manager\Debug Print FilterIDLETASK_Kd_IDLETASK_Maskw81rtmw10tp
Session Manager\Debug Print FilterIHVAUDIO_Kd_IHVAUDIO_Maskw81rtmw10tp
Session Manager\Debug Print FilterIHVBUS_Kd_IHVBUS_Maskw81rtmw10tp
Session Manager\Debug Print FilterIHVDRIVER_Kd_IHVDRIVER_Maskw81rtmw10tp
Session Manager\Debug Print FilterIHVNETWORK_Kd_IHVNETWORK_Maskw81rtmw10tp
Session Manager\Debug Print FilterIHVSTREAMING_Kd_IHVSTREAMING_Maskw81rtmw10tp
Session Manager\Debug Print FilterIHVVIDEO_Kd_IHVVIDEO_Maskw81rtmw10tp
Session Manager\Debug Print FilterIMAPI_Kd_IMAPI_Maskw81rtmw10tp
Session Manager\Debug Print FilterINFINIBAND_Kd_INFINIBAND_Maskw81rtmw10tp
Session Manager\Debug Print FilterIOSTRESS_Kd_IOSTRESS_Maskw81rtmw10tp
Session Manager\Debug Print FilterISAPNP_Kd_ISAPNP_Maskw81rtmw10tp
Session Manager\KernelIdealDpcRate_KiIdealDpcRatew81rtmw10tp
Session Manager\PowerIdleScanInterval_PopIdleScanIntervalw81rtmw10tp
PowerIdleStateTimeout_PopPepIdleStateTimeoutw81rtmw10tp
PowerIgnoreCsComplianceCheck_PopIgnoreCsComplianceCheck w10tp
WHEA\PolicyIgnoreDummyWrite_WheaRegPolicyIgnoreDummyWrite w10tp
Session ManagerImageExecutionOptions_ViImageExecutionOptionsw81rtmw10tp
Session ManagerInitConsoleFlags_InitConsoleFlags w10tp
Session ManagerInitial Process_NtInitialUserProcessBufferw81rtm 
Nls\LanguageInstallLanguage_CmInstallUILanguageIdw81rtmw10tp
Session Manager\I/O SystemIoAllowLoadCrashDumpDriver_IopAllowLoadCrashDumpDriverw81rtmw10tp
Session Manager\I/O SystemIoCaseInsensitive_IopCaseInsensitivew81rtmw10tp
Session Manager\I/O SystemIoEnableSessionZeroAccessCheck_IopSessionZeroAccessCheckEnabledw81rtmw10tp
Session Manager\I/O SystemIoFailZeroAccessCreate_IopFailZeroAccessCreatew81rtmw10tp
Session Manager\I/O SystemIoIrpCompletionTimeoutInSeconds_IopIrpCompletionTimeoutInSeconds w10tp
PowerIpiLastClockOwnerDisable_PpmIpiLastClockOwnerDisablew81rtmw10tp
Session Manager\Debug Print FilterKBDCLASS_Kd_KBDCLASS_Maskw81rtmw10tp
Session Manager\Debug Print FilterKBDHID_Kd_KBDHID_Maskw81rtmw10tp
Session Manager\Debug Print FilterKSECDD_Kd_KSECDD_Maskw81rtmw10tp
Session Manager\Debug Print FilterKTM_Kd_KTM_Maskw81rtmw10tp
EmbeddedNT\ExecutiveKernelOnlyConfiguration_PsEmbeddedNTMaskw81rtmw10tp
Session Manager\KernelKernelSEHOPEnabled_KiI386SEHOPEnabledw81rtmw10tp
Session Manager\ExecutiveKernelWorkerTestFlags_ExpWorkerQueueTestFlags w10tp
Session Manager\Debug Print FilterLDR_Kd_LDR_Maskw81rtmw10tp
Session Manager\Debug Print FilterLSASS_Kd_LSASS_Maskw81rtmw10tp
Session Manager\Debug Print FilterLSERMOUS_Kd_LSERMOUS_Maskw81rtmw10tp
Session Manager\Debug Print FilterLUAFV_Kd_LUAFV_Maskw81rtmw10tp
Session Manager\I/O SystemLargeIrpStackLocations_IopLargeIrpStackLocationsw81rtmw10tp
Session Manager\Memory ManagementLargePageDrivers_MmLargePageDriverBufferw81rtmw10tp
Session Manager\Memory ManagementLargePageMinimum_MmLargePageMinimumw81rtmw10tp
PowerLatencyToleranceDeepSleepdword_636644 w10tp
PowerLatencyToleranceDefault_PpmLatencyToleranceLimitw81rtmw10tp
PowerLatencyToleranceFSVPdword_636640w81rtmw10tp
PowerLatencyTolerancePerfOverridedword_636638w81rtmw10tp
PowerLatencyToleranceScreenOffIRdword_62A2C4w81rtm 
PowerLatencyToleranceVSyncEnableddword_63663Cw81rtmw10tp
PowerLowLatencyScalingPercentage_PpmLowLatencyPerformanceScalingFactorw81rtmw10tp
Session Manager\Memory ManagementLowMemoryThreshold_MmLowMemoryThresholdw81rtmw10tp
Session Manager\Debug Print FilterMCHGR_Kd_MCHGR_Maskw81rtmw10tp
Session Manager\Debug Print FilterMM_Kd_MM_Maskw81rtmw10tp
Session Manager\Debug Print FilterMMCSS_Kd_MMCSS_Maskw81rtmw10tp
Session Manager\Debug Print FilterMOUCLASS_Kd_MOUCLASS_Maskw81rtmw10tp
Session Manager\Debug Print FilterMOUHID_Kd_MOUHID_Maskw81rtmw10tp
Session Manager\Debug Print FilterMOUNTMGR_Kd_MOUNTMGR_Maskw81rtmw10tp
Session Manager\Debug Print FilterMPIO_Kd_MPIO_Maskw81rtmw10tp
Session Manager\Debug Print FilterMSDSM_Kd_MSDSM_Maskw81rtmw10tp
Session Manager\Memory ManagementMapAllocationFragment_MmAllocationFragmentw81rtmw10tp
WHEAMaxCorrectedMCEOutstanding_WheapMaxCorrectedMCEOutstandingw81rtmw10tp
Session Manager\KernelMaxDynamicTickDuration_KiMaxDynamicTickDuration w10tp
Session Manager\ExecutiveMaxTimeSeparationBeforeCorrect_ExpMaxTimeSeperationBeforeCorrectw81rtmw10tp
Session Manager\ExecutiveMaximumKernelWorkerThreads_ExpMaximumKernelWorkerThreads w10tp
Session Manager\KernelMaximumSharedReadyQueueSize_KiMaximumSharedReadyQueueSizew81rtmw10tp
Session Manager\I/O SystemMediumIrpStackLocations_IopMediumIrpStackLocationsw81rtmw10tp
WMI\TraceMemInfoInterval_EtwpMemInfoIntervalw81rtmw10tp
WHEA\PolicyMemPersistOffline_WheaRegPolicyMemPersistOfflinew81rtmw10tp
WHEA\PolicyMemPfaDisable_WheaRegPolicyMemPfaDisablew81rtmw10tp
WHEA\PolicyMemPfaPageCount_WheaRegPolicyMemPfaPageCountw81rtmw10tp
WHEA\PolicyMemPfaThreshold_WheaRegPolicyMemPfaThresholdw81rtmw10tp
WHEA\PolicyMemPfaTimeout_WheaRegPolicyMemPfaTimeoutw81rtmw10tp
PowerMfBufferingThreshold_PpmMfBufferingThreshold w10tp
PowerMfOverridesDisabled_PpmMfOverridesDisabled w10tp
Session Manager\KernelMinimumDpcRate_KiMinimumDpcRatew81rtmw10tp
Session Manager\Memory ManagementMinimumStackCommitInBytes_MmMinimumStackCommitInBytesw81rtmw10tp
Session Manager\Memory ManagementMirroring_MmMirroringw81rtmw10tp
Session Manager\KernelMitigationOptions_PspSystemMitigationOptionsw81rtmw10tp
Session Manager\Memory ManagementModifiedWriteMaximum_MmModifiedWriteMaximumPagesw81rtmw10tp
Session Manager\Memory ManagementMoveImages_MmMoveImagesw81rtmw10tp
PowerMultiparkGranularity_PpmParkMultiparkGranularityw81rtmw10tp
Session Manager\Debug Print FilterNDIS_Kd_NDIS_Maskw81rtmw10tp
Session Manager\Debug Print FilterNETAPI_Kd_NETAPI_Maskw81rtmw10tp
Session Manager\Debug Print FilterNTFS_Kd_NTFS_Maskw81rtmw10tp
Session Manager\Debug Print FilterNTOSPNP_Kd_NTOSPNP_Maskw81rtmw10tp
Session Manager\Debug Print FilterNVCTRACE_Kd_NVCTRACE_Maskw81rtmw10tp
Session Manager\Memory ManagementNonPagedPoolLimit_MmNonPagedPoolLimitw81rtmw10tp
Session Manager\Memory ManagementNonPagedPoolQuota_PspDefaultResourceLimitsw81rtmw10tp
Session Manager\KernelObCaseInsensitive_ObpCaseInsensitivew81rtmw10tp
Session Manager\KernelObObjectSecurityInheritance_ObpObjectSecurityInheritancew81rtmw10tp
Session Manager\KernelObTracePermanent_ObpTracePermanentw81rtmw10tp
Session Manager\KernelObTracePoolTags_ObpTracePoolTagsBufferw81rtmw10tp
Session Manager\KernelObTraceProcessName_ObpTraceProcessNameBufferw81rtmw10tp
Session Manager\KernelObUnsecureGlobalNames_ObpUnsecureGlobalNamesBufferw81rtmw10tp
Session ManagerObjectSecurityMode_ObpObjectSecurityModew81rtmw10tp
Session Manager\Debug Print FilterPCI_Kd_PCI_Maskw81rtmw10tp
Session Manager\Debug Print FilterPCIIDE_Kd_PCIIDE_Maskw81rtmw10tp
Session Manager\Debug Print FilterPERFLIB_Kd_PERFLIB_Maskw81rtmw10tp
Session Manager\Debug Print FilterPNPMEM_Kd_PNPMEM_Maskw81rtmw10tp
Session Manager\Debug Print FilterPNPMGR_Kd_PNPMGR_Maskw81rtmw10tp
Session Manager\Debug Print FilterPOWER_Kd_POWER_Maskw81rtmw10tp
Session Manager\Debug Print FilterPREFETCHER_Kd_PREFETCHER_Maskw81rtmw10tp
Session Manager\Debug Print FilterPRINTSPOOLER_Kd_PRINTSPOOLER_Maskw81rtmw10tp
Session Manager\Debug Print FilterPROCESSOR_Kd_PROCESSOR_Maskw81rtmw10tp
Session Manager\Debug Print FilterPSHED_Kd_PSHED_Maskw81rtmw10tp
Session Manager\Memory ManagementPageValidationAction_MmPageValidationActionw81rtmw10tp
Session Manager\Memory ManagementPageValidationFrequency_MmPageValidationFrequencyw81rtmw10tp
Session Manager\Memory ManagementPagedPoolLimit_MmPagedPoolLimitw81rtmw10tp
Session Manager\Memory ManagementPagedPoolQuotadword_928D1Cw81rtmw10tp
Session Manager\Memory ManagementPagingFileQuotadword_928D20w81rtmw10tp
PowerParkDistributionThreshold_PpmParkDistributionThresholdw81rtmw10tp
PowerParkUsingConcurrency_PpmParkUseConcurrencyw81rtm 
PowerParkWithCoreGranularity_PpmParkUseCoreGranularityw81rtmw10tp
Session Manager\KernelPassiveWatchdogTimeout_KiPassiveWatchdogTimeoutw81rtmw10tp
PowerPdcCsChecksTest_PopPdcCsChecksTestingEnabledw81rtmw10tp
PowerPdcTest_PopPdcTestingEnabledw81rtmw10tp
PowerPerfArtificialDomain_PpmPerfArtificialDomainw81rtmw10tp
PowerPerfBoostAtGuaranteed_PpmPerfBoostAtGuaranteedw81rtmw10tp
PowerPerfCalculateActualUtilization_PpmPerfCalculateActualUtilizationw81rtmw10tp
PowerPerfIdealAggressiveIncreasePolicyThreshold_PpmPerfIdealAggressiveIncreaseThresholdw81rtmw10tp
PowerPerfInterruptRateThreshold_PpmPerfInterruptRateThreshold w10tp
PowerPerfOverrideDecreaseThreshold_PpmPerfOverrideDecreaseThreshold w10tp
PowerPerfOverrideIncreaseThreshold_PpmPerfOverrideIncreaseThreshold w10tp
PowerPerfPageFaultRateThreshold_PpmPerfPageFaultRateThreshold w10tp
PowerPerfQueryOnDevicePowerChanges_PopFxPerfQueryOnDevicePowerChanges w10tp
PowerPerfSingleStepSize_PpmPerfSingleStepSizew81rtmw10tp
PowerPlatformAoAcOverride_PopPlatformAoAcOverridew81rtmw10tp
PowerPlatformRoleOverride_PopPlatformRoleOverridew81rtmw10tp
Session Manager\KernelPoCleanShutdownFlags_PopShutdownCleanlyw81rtmw10tp
Session Manager\Memory ManagementPoolTag_MmSpecialPoolTagw81rtmw10tp
Session Manager\Memory ManagementPoolTagOverruns_MmSpecialPoolCatchOverrunsw81rtmw10tp
Session Manager\Memory ManagementPoolTagSmallTableSize_PoolTrackTableSizew81rtmw10tp
Session Manager\Memory ManagementPoolUsageMaximum_MmConsumedPoolPercentagew81rtmw10tp
Session Manager\KernelPowerOffFrozenProcessors_KiPowerOffFrozenProcessors w10tp
Session ManagerPowerPolicySimulate_PopSimulatew81rtmw10tp
Session ManagerPowerSimulateHiberBugcheck_PopSimulateHiberBugcheckw81rtmw10tp
LSA\auditProcessAccessesToAudit_SepProcessAccessesToAuditw81rtmw10tp
ProductOptionsProductPolicyunk_98A4E8w81rtmw10tp
ProductOptionsProductSuite_CmSuiteBufferw81rtmw10tp
ProductOptionsProductType_MmProductTypew81rtmw10tp
WMI\TraceProfileInterval_EtwpProfileIntervalw81rtmw10tp
Session Manager\Memory ManagementProtectNonPagedPool_MmProtectFreedNonPagedPoolw81rtmw10tp
Session Manager\Configuration ManagerProtectedStorage_CmProtectedStoragew81rtmw10tp
Session ManagerProtectionMode_ObpProtectionModew81rtmw10tp
Session Manager\Debug Print FilterREDBOOK_Kd_REDBOOK_Maskw81rtmw10tp
Session Manager\Debug Print FilterREFS_Kd_REFS_Maskw81rtmw10tp
Session Manager\Kernel\RNGRNGAuxiliarySeed_ExpRNGAuxiliarySeedw81rtmw10tp
Session Manager\Debug Print FilterRPCPROXY_Kd_RPCPROXY_Maskw81rtmw10tp
Session Manager\Debug Print FilterRSFILTER_Kd_RSFILTER_Maskw81rtmw10tp
Session Manager\Debug Print FilterRTLTHREADPOOL_Kd_RTLTHREADPOOL_Maskw81rtmw10tp
TimeZoneInformationRealTimeIsUniversal_ExpRealTimeIsUniversalw81rtmw10tp
Session Manager\Configuration ManagerRegistryFlushGlobalFlags_CmpGlobalFlushControlFlagsw81rtmw10tp
Session Manager\Configuration ManagerRegistryLazyFlushInterval_CmpLazyFlushIntervalInSecondsw81rtmw10tp
Session Manager\Configuration ManagerRegistryLazyReconcileInterval_CmpLazyReconcileIntervalInSecondsw81rtmw10tp
 RegistryLockTable_CmRegistryLockTablePagesw81rtmw10tp
Session Manager\Configuration ManagerRegistryLogFileSizeCap_CmpLogFileSizeCap w10tp
Session Manager\Configuration ManagerRegistryReorganizationLimit_CmpReorganizeLimitw81rtmw10tp
Session Manager\Configuration ManagerRegistryReorganizationLimitDays_CmpReorganizeDelayDaysw81rtmw10tp
 RegistrySizeLimit_CmRegistrySizeLimitw81rtmw10tp
Session ManagerResourceCheckFlags_ExResourceCheckFlagsw81rtmw10tp
Session ManagerResourceTimeoutCount_ExResourceTimeoutCountw81rtmw10tp
PowerRespectDomainAboveNominal_PpmPerfRespectDomainAboveNominalw81rtm 
Session Manager\Debug Print FilterSAMSS_Kd_SAMSS_Maskw81rtmw10tp
Session Manager\Debug Print FilterSBP2PORT_Kd_SBP2PORT_Maskw81rtmw10tp
Session Manager\Debug Print FilterSCCLIENT_Kd_SCCLIENT_Maskw81rtmw10tp
Session Manager\Debug Print FilterSCSERVER_Kd_SCSERVER_Maskw81rtmw10tp
Session Manager\Debug Print FilterSCSIMINIPORT_Kd_SCSIMINIPORT_Maskw81rtmw10tp
Session Manager\Debug Print FilterSCSIPORT_Kd_SCSIPORT_Maskw81rtmw10tp
Session Manager\Debug Print FilterSE_Kd_SE_Maskw81rtmw10tp
Session Manager\Debug Print FilterSERENUM_Kd_SERENUM_Maskw81rtmw10tp
Session Manager\Debug Print FilterSERIAL_Kd_SERIAL_Maskw81rtmw10tp
Session Manager\Debug Print FilterSERMOUSE_Kd_SERMOUSE_Maskw81rtmw10tp
Session Manager\Debug Print FilterSETUP_Kd_SETUP_Maskw81rtmw10tp
Session Manager\Debug Print FilterSHPC_Kd_SHPC_Maskw81rtmw10tp
Session Manager\Debug Print FilterSIS_Kd_SIS_Maskw81rtmw10tp
Session Manager\Debug Print FilterSMSS_Kd_SMSS_Maskw81rtmw10tp
Session Manager\Debug Print FilterSOFTPCI_Kd_SOFTPCI_Maskw81rtmw10tp
Session Manager\Debug Print FilterSR_Kd_SR_Maskw81rtmw10tp
Session Manager\Debug Print FilterSSPICLI_Kd_SSPICLI_Maskw81rtmw10tp
Session Manager\Debug Print FilterSTORMINIPORT_Kd_STORMINIPORT_Maskw81rtmw10tp
Session Manager\Debug Print FilterSTORPORT_Kd_STORPORT_Maskw81rtmw10tp
Session Manager\Debug Print FilterSTORPROP_Kd_STORPROP_Maskw81rtmw10tp
Session Manager\Debug Print FilterSTORVSP_Kd_STORVSP_Maskw81rtmw10tp
Session Manager\Debug Print FilterSVCHOST_Kd_SVCHOST_Maskw81rtmw10tp
Session Manager\Debug Print FilterSXS_Kd_SXS_Maskw81rtmw10tp
Session Manager\Debug Print FilterSYSTEM_Kd_SYSTEM_Maskw81rtmw10tp
Session Manager\KernelSeAllowAllApplicationAceRemoval_SepAllowAllApplicationAceRemovalw81rtmw10tp
Session Manager\Memory ManagementSecondLevelDataCache_MmSecondaryColorsw81rtmw10tp
Session Manager\Configuration ManagerSelfHealingEnabled_CmSelfHealw81rtmw10tp
Session Manager\KernelSerializeTimerExpiration_KiSerializeTimerExpirationw81rtmw10tp
Session Manager\Memory ManagementSessionSpaceLimit_MmSessionSpaceLimitw81rtmw10tp
WHEASingleBitEccErrorThreshold_WheapSingleBitEccErrorThresholdw81rtmw10tp
Session Manager\PowerSkipTickOverride_PopSkipTickPolicyw81rtmw10tp
Session Manager\PowerSleepStudyDeviceAccountingLevel_PopSleepStudyDeviceAccountingLevelw81rtmw10tp
Session Manager\PowerSleepStudyDisabled_PopSleepStudyDisabledw81rtmw10tp
WMI\TraceStackCaptureTimeout_EtwpStackCaptureTimeoutw81rtmw10tp
Session Manager\Quota SystemSystemBlockedMessageLimit_PspSystemNoWakeChargeLimitw81rtmw10tp
Session Manager\Memory ManagementSystemCacheLimit_MmSystemCacheLimitw81rtmw10tp
Session Manager\Configuration ManagerSystemHiveLimitSize_CmSystemHiveLimitSizew81rtmw10tp
Session Manager\Memory ManagementSystemPtesLimit_MmSystemPtesLimitw81rtmw10tp
Session Manager\Debug Print FilterTAPE_Kd_TAPE_Maskw81rtmw10tp
Session Manager\Debug Print FilterTCPIP_Kd_TCPIP_Maskw81rtmw10tp
Session Manager\Debug Print FilterTCPIP6_Kd_TCPIP6_Maskw81rtmw10tp
Session Manager\Debug Print FilterTERMSRV_Kd_TERMSRV_Maskw81rtmw10tp
Session Manager\Debug Print FilterTHREADORDER_Kd_THREADORDER_Maskw81rtmw10tp
Session Manager\Debug Print FilterTPM_Kd_TPM_Maskw81rtmw10tp
Terminal ServerTSAppCompat_ExpMultiUserTSw81rtmw10tp
Session Manager\Debug Print FilterTWOTRACK_Kd_TWOTRACK_Maskw81rtmw10tp
Session Manager\Debug Print FilterTXF_Kd_TXF_Maskw81rtmw10tp
Session Manager\PowerThermalZoneMetricsSqmPeriod_PopThermalMetricsSqmPeriodw81rtmw10tp
Session Manager\KernelThreadDpcEnable_KeThreadDpcEnablew81rtmw10tp
Session Manager\Kernel\Extended StateThreadPersistentFeatures_KeConfigThreadPersistentXStateFeaturesw81rtmw10tp
Session Manager\ExecutiveTickcountRolloverDelay_InitTickRolloverDelayw81rtmw10tp
Session Manager\KernelTimerCheckFlags_KeTimerCheckFlagsw81rtmw10tp
Session Manager\Memory ManagementTrackLockedPages_MmTrackLockedPagesw81rtmw10tp
Session Manager\Memory ManagementTrackPtes_MmTrackPtesw81rtmw10tp
Session Manager\Debug Print FilterUDFS_Kd_UDFS_Maskw81rtmw10tp
Session Manager\Debug Print FilterUHCD_Kd_UHCD_Maskw81rtmw10tp
Session Manager\Debug Print FilterUNIMODEM_Kd_UNIMODEM_Maskw81rtmw10tp
Session Manager\Debug Print FilterUSBSTOR_Kd_USBSTOR_Maskw81rtmw10tp
Session Manager\Debug Print FilterUSERGDI_Kd_USERGDI_Maskw81rtmw10tp
Session Manager\Debug Print FilterVDS_Kd_VDS_Maskw81rtmw10tp
Session Manager\Debug Print FilterVDSBAS_Kd_VDSBAS_Maskw81rtmw10tp
Session Manager\Debug Print FilterVDSDYN_Kd_VDSDYN_Maskw81rtmw10tp
Session Manager\Debug Print FilterVDSDYNDR_Kd_VDSDYNDR_Maskw81rtmw10tp
Session Manager\Debug Print FilterVDSLDR_Kd_VDSLDR_Maskw81rtmw10tp
Session Manager\Debug Print FilterVDSUTIL_Kd_VDSUTIL_Maskw81rtmw10tp
Session Manager\Debug Print FilterVERIFIER_Kd_VERIFIER_Maskw81rtmw10tp
Session Manager\Debug Print FilterVIDEO_Kd_VIDEO_Maskw81rtmw10tp
Session Manager\Debug Print FilterVIDEOPRT_Kd_VIDEOPRT_Maskw81rtmw10tp
Session Manager\Debug Print FilterVSS_Kd_VSS_Maskw81rtmw10tp
Session Manager\Debug Print FilterVSSDYNDISK_Kd_VSSDYNDISK_Maskw81rtmw10tp
Session Manager\KernelVerifierDpcScalingFactor_KeVerifierDpcScalingFactorw81rtmw10tp
Session Manager\Memory ManagementVerifierFaultApplications_VerifierFaultApplicationsBufferw81rtmw10tp
Session Manager\Memory ManagementVerifierFaultBootMinutes_VfFaultInjectionBootMinutesw81rtmw10tp
Session Manager\Memory ManagementVerifierFaultProbability_VfFaultInjectionProbabilityw81rtmw10tp
Session Manager\Memory ManagementVerifierFaultTags_VerifierFaultTagsBufferw81rtmw10tp
Session Manager\Memory ManagementVerifierHandleTraces_VfHandleTracingEntriesw81rtmw10tp
Session Manager\Memory ManagementVerifierIrpStackTraces_IovIrpTracesLengthw81rtmw10tp
Session Manager\Memory ManagementVerifierIrpTimeout_VfWdIrpTimeoutMsecw81rtmw10tp
Session Manager\Memory ManagementVerifierOptions_VfOptionFlagsw81rtmw10tp
Session Manager\Memory ManagementVerifierPoolTracesLength_VfPoolTracesLengthw81rtmw10tp
Session Manager\Memory ManagementVerifierRandomTargets_VfRandomVerifiedDriversw81rtmw10tp
Session Manager\Memory ManagementVerifyBTSBufferSize_ViVerifyBTSBufferSizew81rtmw10tp
Session Manager\Memory ManagementVerifyDriverLevel_MmVerifyDriverLevelw81rtmw10tp
Session Manager\Memory ManagementVerifyDrivers_MmVerifyDriverBufferw81rtmw10tp
Session Manager\Memory ManagementVerifyDriversSuppress_VfXdvSuppressDriversBufferw81rtmw10tp
Session Manager\Memory ManagementVerifyMode_VfVerifyModew81rtmw10tp
Session Manager\Memory ManagementVerifyTriage_ViVerifyTriagew81rtmw10tp
Session Manager\Memory ManagementVerifyTriageRules_ViVerifyTriageRulesw81rtmw10tp
Session Manager\Configuration ManagerVirtualizationEnabled_CmVEEnabledw81rtmw10tp
Session Manager\Configuration ManagerVolatileBoot_CmpVolatileBootw81rtmw10tp
Session Manager\Debug Print FilterW32TIME_Kd_W32TIME_Maskw81rtmw10tp
Session Manager\Debug Print FilterWDI_Kd_WDI_Maskw81rtmw10tp
Session Manager\Debug Print FilterWDT_Kd_WDT_Maskw81rtmw10tp
Session Manager\Debug Print FilterWER_Kd_WER_Maskw81rtmw10tp
Session Manager\Debug Print FilterWHEA_Kd_WHEA_Maskw81rtmw10tp
Session Manager\Debug Print FilterWIN2000_Kd_WIN2000_Maskw81rtmw10tp
Session Manager\Debug Print FilterWMICORE_Kd_WMICORE_Maskw81rtmw10tp
Session Manager\Debug Print FilterWMILIB_Kd_WMILIB_Maskw81rtmw10tp
Session Manager\Debug Print FilterWOW64_Kd_WOW64_Maskw81rtmw10tp
Session Manager\Debug Print FilterWSOCKTRANSPORT_Kd_WSOCKTRANSPORT_Maskw81rtmw10tp
Session Manager\PowerWatchdogResumeTimeout_PopWatchdogResumeTimeoutw81rtmw10tp
Session Manager\PowerWatchdogSleepTimeout_PopWatchdogSleepTimeoutw81rtmw10tp
PowerWatchdogWorkOrderTimeout_PopFxWatchdogWorkOrderTimeoutw81rtmw10tp
PriorityControlWin32PrioritySeparation_PsRawPrioritySeparationw81rtmw10tp
Session Manager\ExecutiveWorkerFactoryThreadCreationTimeout_ExpWorkerFactoryThreadCreationTimeoutInSecondsw81rtmw10tp
Session Manager\ExecutiveWorkerFactoryThreadIdleTimeout_ExpWorkerFactoryThreadIdleTimeoutInSecondsw81rtmw10tp
Session Manager\ExecutiveWorkerThreadTimeoutInSeconds_ExpWorkerThreadTimeoutInSeconds w10tp
Session Manager\Memory ManagementWorkingSetPagesQuotadword_928D24w81rtmw10tp
Session Manager\Memory ManagementWorkingSetSwapSharedPages_PspOutSwapSharedPages w10tp
Session Manager\KernelXMMIZeroingEnable_KiXMMIZeroingEnablew81rtmw10tp
Session Manager\Debug Print FilterXSAVE_Kd_XSAVE_Maskw81rtmw10tp

KiServiceTable from windows 10 Technical Preview

$
0
0
KiServiceLimit eq 0x1B1

NtAccessCheck
NtWorkerFactoryWorkerReady
NtAcceptConnectPort
NtYieldExecution
NtWriteVirtualMemory
NtWriteRequestData
NtWriteFileGather
NtWriteFile
NtWaitLowEventPair
NtWaitHighEventPair
NtWaitForWorkViaWorkerFactory
NtWaitForSingleObject
NtWaitForMultipleObjects32
NtWaitForMultipleObjects
NtWaitForKeyedEvent
NtWaitForDebugEvent
NtWaitForAlertByThreadId
NtVdmControl
NtUnsubscribeWnfStateChange
NtUpdateWnfStateData
NtUnmapViewOfSection
NtUnmapViewOfSectionEx
NtUnlockVirtualMemory
NtUnlockFile
NtUnloadKeyEx
NtUnloadKey2
NtUnloadKey
NtUnloadDriver
NtUmsThreadYield
NtTranslateFilePath
NtTraceEvent
NtTraceControl
NtThawTransactions
NtThawRegistry
NtTestAlert
NtTerminateThread
NtTerminateProcess
NtTerminateJobObject
NtSystemDebugControl
NtSuspendThread
NtSuspendProcess
NtSubscribeWnfStateChange
NtStopProfile
NtStartProfile
NtSinglePhaseReject
NtSignalAndWaitForSingleObject
NtShutdownWorkerFactory
NtShutdownSystem
NtSetWnfProcessNotificationEvent
NtSetVolumeInformationFile
NtSetValueKey
NtSetUuidSeed
NtSetTimerResolution
NtSetTimerEx
NtSetTimer
NtSetThreadExecutionState
NtSetSystemTime
NtSetSystemPowerState
NtSetSystemInformation
NtSetSystemEnvironmentValueEx
NtSetSystemEnvironmentValue
NtSetSecurityObject
NtSetQuotaInformationFile
NtSetLowWaitHighEventPair
NtSetLowEventPair
NtSetLdtEntries
NtSetIRTimer
NtSetTimer2
NtCancelTimer2
NtSetIoCompletionEx
NtSetIoCompletion
NtSetIntervalProfile
NtSetInformationWorkerFactory
NtSetInformationTransactionManager
NtSetInformationTransaction
NtSetInformationToken
NtSetInformationThread
NtSetInformationResourceManager
NtSetInformationProcess
NtSetInformationObject
NtSetInformationKey
NtSetInformationJobObject
NtSetInformationFile
NtSetInformationEnlistment
NtSetInformationDebugObject
NtSetHighWaitLowEventPair
NtSetHighEventPair
NtSetEventBoostPriority
NtSetEvent
NtSetEaFile
NtSetDriverEntryOrder
NtSetDefaultUILanguage
NtSetDefaultLocale
NtSetDefaultHardErrorPort
NtSetDebugFilterState
NtSetContextThread
NtSetCachedSigningLevel
NtSetBootOptions
NtSetBootEntryOrder
NtSerializeBoot
NtSecureConnectPort
NtSaveMergedKeys
NtSaveKeyEx
NtSaveKey
NtRollforwardTransactionManager
NtRollbackTransaction
NtRollbackEnlistment
NtRollbackComplete
NtResumeThread
NtResumeProcess
NtRestoreKey
NtResetWriteWatch
NtResetEvent
NtRequestWaitReplyPort
NtRequestPort
NtReplyWaitReplyPort
NtReplyWaitReceivePortEx
NtReplyWaitReceivePort
NtReplyPort
NtReplacePartitionUnit
NtReplaceKey
NtRenameTransactionManager
NtRenameKey
NtRemoveProcessDebug
NtRemoveIoCompletionEx
NtRemoveIoCompletion
NtReleaseWorkerFactoryWorker
NtReleaseSemaphore
NtReleaseMutant
NtReleaseKeyedEvent
NtRegisterThreadTerminatePort
NtRegisterProtocolAddressInformation
NtRecoverTransactionManager
NtRecoverResourceManager
NtRecoverEnlistment
NtReadVirtualMemory
NtReadRequestData
NtReadOnlyEnlistment
NtReadFileScatter
NtReadFile
NtRaiseHardError
NtRaiseException
NtQueueApcThreadEx
NtQueueApcThread
NtQueryWnfStateData
NtQueryWnfStateNameInformation
NtQueryVolumeInformationFile
NtQueryVirtualMemory
NtQueryValueKey
NtQueryTimerResolution
NtQueryTimer
NtQuerySystemTime
NtQuerySystemInformationEx
NtQuerySystemInformation
NtQuerySystemEnvironmentValueEx
NtQuerySystemEnvironmentValue
NtQuerySymbolicLinkObject
NtQuerySemaphore
NtQuerySecurityObject
NtQuerySecurityAttributesToken
NtQuerySection
NtQueryQuotaInformationFile
NtQueryPortInformationProcess
NtQueryPerformanceCounter
NtQueryOpenSubKeysEx
NtQueryOpenSubKeys
NtQueryObject
NtQueryMutant
NtQueryMultipleValueKey
NtQueryLicenseValue
NtQueryKey
NtQueryIoCompletion
NtQueryIntervalProfile
NtQueryInstallUILanguage
NtQueryInformationWorkerFactory
NtQueryInformationTransactionManager
NtQueryInformationTransaction
NtQueryInformationToken
NtQueryInformationThread
NtQueryInformationResourceManager
NtQueryInformationProcess
NtQueryInformationPort
NtQueryInformationJobObject
NtQueryInformationFile
NtQueryInformationEnlistment
NtQueryInformationAtom
NtQueryFullAttributesFile
NtQueryEvent
NtQueryEaFile
NtQueryDriverEntryOrder
NtQueryDirectoryObject
NtQueryDirectoryFile
NtQueryDefaultUILanguage
NtQueryDefaultLocale
NtQueryDebugFilterState
NtQueryBootOptions
NtQueryBootEntryOrder
NtQueryAttributesFile
NtPulseEvent
NtProtectVirtualMemory
NtPropagationFailed
NtPropagationComplete
NtPrivilegeObjectAuditAlarm
NtPrivilegedServiceAuditAlarm
NtPrivilegeCheck
NtSetInformationVirtualMemory
NtPrePrepareEnlistment
NtPrePrepareComplete
NtPrepareEnlistment
NtPrepareComplete
NtPowerInformation
NtPlugPlayControl
NtOpenTransactionManager
NtOpenTransaction
NtOpenTimer
NtOpenThreadTokenEx
NtOpenThreadToken
NtOpenThread
NtOpenSymbolicLinkObject
NtOpenSession
NtOpenSemaphore
NtOpenSection
NtOpenResourceManager
NtOpenProcessTokenEx
NtOpenProcessToken
NtOpenProcess
NtOpenPrivateNamespace
NtOpenObjectAuditAlarm
NtOpenMutant
NtOpenKeyTransactedEx
NtOpenKeyTransacted
NtOpenKeyEx
NtOpenKeyedEvent
NtOpenKey
NtOpenJobObject
NtOpenIoCompletion
NtOpenFile
NtOpenEventPair
NtOpenEvent
NtOpenEnlistment
NtOpenDirectoryObject
NtNotifyChangeSession
NtNotifyChangeMultipleKeys
NtNotifyChangeKey
NtNotifyChangeDirectoryFile
NtModifyDriverEntry
NtModifyBootEntry
NtMapViewOfSection
NtMapUserPhysicalPagesScatter
NtMapUserPhysicalPages
NtMapCMFModule
NtMakeTemporaryObject
NtMakePermanentObject
NtLockVirtualMemory
NtLockRegistryKey
NtLockProductActivationKeys
NtLockFile
NtLoadKeyEx
NtLoadKey2
NtLoadKey
NtLoadDriver
NtListenPort
NtIsUILanguageComitted
NtIsSystemResumeAutomatic
NtIsProcessInJob
NtInitiatePowerAction
NtInitializeRegistry
NtInitializeNlsFiles
NtImpersonateThread
NtImpersonateClientOfPort
NtImpersonateAnonymousToken
NtGetWriteWatch
NtGetNotificationResourceManager
NtGetNlsSectionPtr
NtGetNextThread
NtGetNextProcess
NtGetMUIRegistryInfo
NtGetDevicePowerState
NtGetCurrentProcessorNumber
NtGetContextThread
NtGetCompleteWnfStateSubscription
NtGetCachedSigningLevel
NtFsControlFile
NtFreezeTransactions
NtFreezeRegistry
NtFreeVirtualMemory
NtFreeUserPhysicalPages
NtFlushWriteBuffer
NtFlushVirtualMemory
NtFlushProcessWriteBuffers
NtFlushKey
NtFlushInstructionCache
NtFlushInstallUILanguage
NtFlushBuffersFile
NtFlushBuffersFileEx
NtFindAtom
NtFilterToken
NtFilterTokenEx
NtFilterBootOption
NtExtendSection
NtEnumerateValueKey
NtEnumerateTransactionObject
NtEnumerateSystemEnvironmentValuesEx
NtEnumerateKey
NtEnumerateDriverEntries
NtEnumerateBootEntries
NtEnableLastKnownGood
NtDuplicateToken
NtDuplicateObject
NtDrawText
NtDisplayString
NtDisableLastKnownGood
NtDeviceIoControlFile
NtDeleteWnfStateName
NtDeleteWnfStateData
NtDeleteValueKey
NtDeletePrivateNamespace
NtDeleteObjectAuditAlarm
NtDeleteKey
NtDeleteFile
NtDeleteDriverEntry
NtDeleteBootEntry
NtDeleteAtom
NtDelayExecution
NtDebugContinue
NtDebugActiveProcess
NtCreateWorkerFactory
NtCreateWnfStateName
NtCreateWaitCompletionPacket
NtCreateWaitablePort
NtCreateUserProcess
NtCreateTransactionManager
NtCreateTransaction
NtCreateToken
NtCreateLowBoxToken
NtCreateTokenEx
NtCreateTimer
NtCreateThreadEx
NtCreateThread
NtCreateSymbolicLinkObject
NtCreateSemaphore
NtCreateSection
NtCreateResourceManager
NtCreateProfileEx
NtCreateProfile
NtCreateProcessEx
NtCreateProcess
NtCreatePrivateNamespace
NtCreatePort
NtCreatePagingFile
NtCreateNamedPipeFile
NtCreateMutant
NtCreateMailslotFile
NtCreateKeyTransacted
NtCreateKeyedEvent
NtCreateKey
NtCreateJobSet
NtCreateJobObject
NtCreateIRTimer
NtCreateTimer2
NtCreateIoCompletion
NtCreateFile
NtCreateEventPair
NtCreateEvent
NtCreateEnlistment
NtCreateDirectoryObjectEx
NtCreateDirectoryObject
NtCreateDebugObject
NtContinue
NtConnectPort
NtCompressKey
NtCompleteConnectPort
NtCompareTokens
NtCompactKeys
NtCommitTransaction
NtCommitEnlistment
NtCommitComplete
NtCloseObjectAuditAlarm
NtClose
NtClearEvent
NtCancelWaitCompletionPacket
NtCancelTimer
NtCancelSynchronousIoFile
NtCancelIoFileEx
NtCancelIoFile
NtCallbackReturn
NtAssociateWaitCompletionPacket
NtAssignProcessToJobObject
NtAreMappedFilesTheSame
NtApphelpCacheControl
NtAlpcSetInformation
NtAlpcSendWaitReceivePort
NtAlpcRevokeSecurityContext
NtAlpcQueryInformationMessage
NtAlpcQueryInformation
NtAlpcOpenSenderThread
NtAlpcOpenSenderProcess
NtAlpcImpersonateClientOfPort
NtAlpcDisconnectPort
NtAlpcDeleteSecurityContext
NtAlpcDeleteSectionView
NtAlpcDeleteResourceReserve
NtAlpcDeletePortSection
NtAlpcCreateSecurityContext
NtAlpcCreateSectionView
NtAlpcCreateResourceReserve
NtAlpcCreatePortSection
NtAlpcCreatePort
NtAlpcConnectPort
NtAlpcConnectPortEx
NtAlpcCancelMessage
NtAlpcAcceptConnectPort
NtAllocateVirtualMemory
NtAllocateUuids
NtAllocateUserPhysicalPages
NtAllocateReserveObject
NtAllocateLocallyUniqueId
NtAlertThreadByThreadId
NtAlertThread
NtAlertResumeThread
NtAdjustPrivilegesToken
NtAdjustGroupsToken
NtAdjustTokenClaimsAndDeviceGroups
NtAddDriverEntry
NtAddBootEntry
NtAddAtom
NtAddAtomEx
NtAccessCheckByTypeResultListAndAuditAlarmByHandle
NtAccessCheckByTypeResultListAndAuditAlarm
NtAccessCheckByTypeResultList
NtAccessCheckByTypeAndAuditAlarm
NtAccessCheckByType
NtAccessCheckAndAuditAlarm

Viewing all 264 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>