How does it work?

MagNumDB is a database that contains about 500,000 items. These items are constants, names, values all extracted from more than 9,000 header files (.h, .hxx, .hpp, .idl, etc.) provided by standard Windows and Visual Studio SDKs and WDKs.

Some values have been extracted from the very special uuid.lib file that contains the value of thousands of guids and property keys, not present anywhere else in header files. This can explain some duplicates (because names in uuid.lib are not always exactly the same as names in .h parsed files...).

It also contains around 100,000 undocumented guids that we found ... meeeeep ...

 "C2P5"

To build this database, we have tried many existing parsers, things like CLANG or other fine tools, but they just don't suit our needs. They can't handle thousands of files that don't compile together, they can't handle some specific (or just very old) Microsoft constructs or annotations, they don't remember the stack of #define directives that led to a definition, they only give you a final AST, not a partial one, etc.

So, in the end, we have written a C/C++ parser named C2P5 (for C/CPP/PreProcessor/Parser), tailored specifically for computing constants. C2P5 is capable of preprocessing, parsing and partially evaluating all header files as if they were included in a one big virtual project (that of course, does not compile) on a 32G RAM machine. It currently supports the following preprocessor and C/C++ constructs:

  • #define preprocessor that define constants
  • #define preprocessor that define expression to compute constants
  • C and C++ constants, strings and enum definitions, and some level of pointerness
  • Special GUID constructs like DECLSPEC_UUID, DEFINE_GUIDSTRUCT, MIDL_INTERFACE, you name it
  • PROPERTYKEY constructs
  • Some IDL constructs
  • Etc.

The parser remembers dynamic preprocessor definitions (#if, #ifdef, etc.) that are conditions for constants definitions and expression computation. All parsed items are saved in the database, as well as the associated conditions. There may be more than one item corresponding to a given name, if there are differences in their associated conditions stack.

C2P5 supports the following types of constants, regardless of the way they are defined in source files:

  • integer, signed or unsigned, from 8-bit to 128-bit
  • floating point number, single (32-bit) or double (64-bit)
  • globally unique identifier, or guid, uuid, CLSID, IID, etc.
  • string, in narrow, wide, or utf-8/16/32 formats
  • character, in narrow, wide, or utf-8/16/32 formats
  • pointer, a constant cast as a pointer
  • property key, or PROPERTYKEY, or PKEY, a combination of a guid (fmtid) and a 32-bit integer (id).

 Powered by

C2P5 and this MagNumDB web site are written in C# and use a Lucene database as a full-text search engine. C2P5 uses a customized ANTLR4 C/C++ grammar for expression parsing, and another one for preprocessor parsing.

 

 Frequently Asked Questions

  • Q: Can I run custom queries?
    A: Yes. You can use Lucene's query syntax. Note the Database is case insensitive. Check out the list of columns with their corresponding database column names:

    • Index: the item's index.
    • Name: the item's name, or title. For enum values, it's prefixed with the enum's name.
      Corresponding database field: title.
    • Type: the item's type, expressed in a specific, universal system.
      Corresponding database's field: valuetype, but use the value of the Storage type column for queries on items type.
    • Value: the item's value. For string values, it's displayed as is w/o quotes nor escaping.
      Corresponding database field: value. There is also a typedvalue field that can contain database's Int32, Int64, Float, Double or String typed values.
    • Hex Value: the item's hexadecimal value, only valid for integer types.
      There is no corresponding database field.
    • Signed Value: the item's signed value, only valid for integer and double types. Useful when you found a unsigned number and want to get the corresponding signed value (uint -> int for example).
      There is no corresponding database field.
    • Source lines(s): the source lines from which the item was extracted. Comments and characters such as TAB, CR are preserved.
      Corresponding database field: source.
    • File path: the file path from which the item was extracted, terminated by the line index.
      Corresponding database field: filepath. There are also directory and filename fields. filename is useful to query for values in a given file.
    • Score: Database's score value. Items are returned sorted by score.
    • Guid formats: a utility columns that proposes all possible guid formats. Only valid for guid types.
      There is no corresponding database field
    • Char type: the character encoding (narrow, wide, etc.). Only valid for char and string values.
      Corresponding database field: chartype.
    • Storage type: the exact storage type in the database. Only used for specific queries.
      Corresponding database field: valuetype.
    • Conditions: the list of preprocessor conditions for a given item. If a condition is surrounded with a REVERSE function, it means the reverse condition of what's surrounded was the condition.
      Corresponding database field: conditions. There may be multiple conditions fields for one item.

    Some important points to note:

    • If you search for a negative number (like error codes expressed using signed integers), you can surround the search with double quotes, for example searching for "-2147009290" is equivalent to searching for 0x80073CF6, 80073CF6 (or even 3CF6 in this specific case). If you don't surround negative numbers with double quotes, the system will search for signed and unsigned corresponding values.
    • The full-text search uses items' name, value, hex value, guid formats, source lines, etc. so refine your search if you get back too many items.
    • You can search for guid binary values using just a part of their full definition. For example, if you search for '79eac9c5', it will get you 3 guid entries
    • Leading wild card search (*whatever) is allowed, but it may slow down the search significantly.

    Here are some example or custom queries:

    title:wm_user returns the WM_USER Windows message item, not all items that reference the WM_USER token.

    title:wm_u* returns all items (Windows messages probably) whose name starts with WM_U*.

    value:1024 AND title:wm_* returns all items (Windows messages probably) whose name starts with WM_U* and value is 1024. Note AND must be UPPERCASE for database to understand it as an AND operator.

    value:"00000002-0000-0000-C000-000000000046" returns the IMalloc IID guid value.

  • Q: I always get back 400 items at most. Why?
    A: The MagNumDb site currently limits the number of returned items to this value by design. This should be enough for most real search scenarios (like enums with a big list of values).

  • Q: Some values are empty. Why?
    A: The expression evaluator cannot always compute the final value, because it sometimes require contextual information (custom defines, compiler architecture, etc.) that the parser doesn't have at parsing time. You can enable the Source line(s) column to check what's the corresponding source and try to work it out by yourself. The origin file path and line number is also included.

  • Q: Can I get all values for a given enum?
    A: Sure. For example, __VSHPROPID is the name of an enum, and a query like this: parent:__VSHPROPID will get all the enum's values (66 entries).

  • Q: I sometimes get back items whose name starts with "__magnumdb__enum_". Why?
    A: C allows unnamed enums. The MagNumDb parser just gives them a name, using the defining file name and a counter.

  • Q: I sometimes get back the same item/name twice or more with different values. For example:  TARGET_IS_NT60_OR_LATER. Why?
    A: This can be the case with defines. Their value may be different if they were surrounded by # directives (#if, #else, etc.) in the original source code. You can enable the Condition(s) column to check what are the corresponding conditions for a given item.
    Note: if a condition is surrounded with a funny REVERSE function token, it means the reverse condition of what's surrounded.

  • Q: I can't connect from an IP address but from another one, it works. Why?
    A: The server is constantly monitored for excessive usage. It's possible your IP address has been banned because massive sets of queries where observed. If you think this is an error, send us an email.

 Database Details

  • Last update date: Wednesday July 9, 2025
  • Items count: 531751
  • Windows SDK version: 10.0.26100.0.4188
  • Windows App SDK version: 1.7.250606001
  • NetFx SDK version: 4.8
  • MSVC Tools version: 14.44.35207
  • KMDF version: 1.33
  • UMDF version: 2.33

 Rest API

There is a JSON version API (you will have to figure out the schema, it's pretty obvious) that you can call here (the search query is the 'q' parameter):

   https://www.magnumdb.com/api.aspx?q=0xC000000D&key=you-api-key-goes-here

Note this API also has a 400 items maximum limit and the server is monitored for excessive usage (the key can be removed without notice). If you want to get a key, send us an email.

 

 Privacy & Terms

This privacy policy is for the www.magnumdb.com website and governs the privacy of online users who choose to use it. It sets out the different areas where user privacy is concerned and outlines the obligations and requirements of the users, the website and website owners.

 Cookies

www.magnumdb.com uses cookies for the sole reason of monitoring and improving our services, using Google Analytics. You can however decide to opt out of having your anonymized browsing activity within this site recorded by monitoring cookies, if you follow the instructions from Google here: Google Analytics Opt-out Browser Add-on

 User Information Storage

www.magnumdb.com stores no User Information nor Personal Data, at all.

 Data Security and Retention

This site application is hosted in Microsoft Azure in the "Central US" data center. See Microsoft’s Azure Trust Center for more information.

We make reasonable efforts to ensure a level of security appropriate to the risk associated with the processing of data.

Unfortunately, no data transmission or storage system can be guaranteed to be 100% secure. If you have reason to believe that your interaction with us is no longer secure, please contact us immediately.

We do not retain any Personal Data. Where we retain data, we do so in accordance with any limitation periods and records retention obligations that are imposed by applicable law.

   Disclaimer

All product names, logos, and brands are property of their respective owners. All company, product and service names used in this website are for identification purposes only.

All values, names, source code fragments displayed here have been extracted from files that are property of their respective owners.

THIS SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND OTHER THAN AS SPECIFICALLY SET FORTH IN THE LICENSE AGREEMENT, INCLUDING WITHOUT LIMITATION WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

 

 Contact

We welcome feedback.
Seen anything missing? A bug? A wrong value? Do you have any suggestion for improvements? Do you have an idea for a cool new feature?

Please contact us here

 About MagNumDB

MagNumDB © 2017-2025 Simon Mourier V2.0.1.0/NET9. All rights reserved.

Profile for Simon Mourier at Stack Overflow, Q&A for professional and enthusiast programmers


All product names, logos, and brands are property of their respective owners. All company, product and service names used in this website are for identification purposes only.

All values, names, source code fragments displayed here have been extracted from files that are property of their respective owners.

THIS SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND OTHER THAN AS SPECIFICALLY SET FORTH IN THE LICENSE AGREEMENT, INCLUDING WITHOUT LIMITATION WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Index Score Name Type Value Hex value Signed value Guid formats Char type Storage type Source line(s) File path Condition(s)
Index Score Name Type Value Hex value Signed value Guid formats Char type Storage type Source line(s) File path Condition(s)
1 5.1042485 MsoLanguageID::msoLanguageIDTsonga Int32 1073 0x00000431 1073 System.Int32
msoLanguageIDTsonga = 1073,
%ProgramFiles%\Microsoft Visual Studio\2022\Professional\VSSDK\VisualStudioIntegration\Common\Inc\office10\msotl.h(5253,0)
2 5.1042485 CV_HREG_e::CV_IA64_IntR49 Int32 1073 0x00000431 1073 System.Int32
CV_IA64_IntR49  =   1073,
%ProgramFiles%\Microsoft Visual Studio\2022\Professional\DIA SDK\include\cvconst.h(2125,0)
3 5.1042485 grp2 Int32 1073 0x00000431 1073 System.Int32
#define grp2        0x0431
%ProgramFiles(x86)%\Windows Kits\10\Include\10.0.26100.0\um\dlgs.h(99,0)
  • If WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
4 5.1042485 ERROR_SERVICE_EXISTS Int32 1073 0x00000431 1073 System.Int32
#define ERROR_SERVICE_EXISTS             1073L
%ProgramFiles(x86)%\Windows Kits\10\Include\10.0.26100.0\shared\winerror.h(6956,0)
5 5.1042485 cmdidMoveFileToProject4 Int32 1073 0x00000431 1073 System.Int32
#define cmdidMoveFileToProject4         1073
%ProgramFiles%\Microsoft Visual Studio\2022\Professional\VSSDK\VisualStudioIntegration\Common\Inc\stdidcmd.h(1103,0)
6 5.1042485 IDM_VS_CTXT_FOLDERNODE Int32 1073 0x00000431 1073 System.Int32
#define IDM_VS_CTXT_FOLDERNODE        0x0431
%ProgramFiles%\Microsoft Visual Studio\2022\Professional\VSSDK\VisualStudioIntegration\Common\Inc\vsshlids.h(1517,0)
7 5.1042485 IDM_MEMORY_WINDOW_TOOLBAR1 Int32 1073 0x00000431 1073 System.Int32
#define IDM_MEMORY_WINDOW_TOOLBAR1      0x0431
%ProgramFiles%\Microsoft Visual Studio\2022\Professional\VSSDK\VisualStudioIntegration\Common\Inc\VsDbgCmd.h(53,0)
8 5.1042485 ERR_INVALID_HMTX_OR_VMTX Int32 1073 0x00000431 1073 System.Int32
#define ERR_INVALID_HMTX_OR_VMTX 1073
%ProgramFiles(x86)%\Windows Kits\10\Include\10.0.26100.0\um\fontsub.h(145,0)
  • If WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
  • Ifndef ERR_GENERIC
9 5.1042485 D3D12_MESSAGE_ID::D3D12_MESSAGE_ID_LIVE_PROTECTED_RESOURCE_SESSION Int32 1073 0x00000431 1073 System.Int32
D3D12_MESSAGE_ID_LIVE_PROTECTED_RESOURCE_SESSION	= 1073,
%ProgramFiles(x86)%\Windows Kits\10\Include\10.0.26100.0\um\d3d12sdklayers.h(3003,0)
  • If WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP | WINAPI_PARTITION_GAMES)
10 5.1042485 D3D12DDICAPS_TYPE::D3D12DDICAPS_TYPE_0074_PROTECTED_RESOURCE_SESSION_TYPES Int32 1073 0x00000431 1073 System.Int32
D3D12DDICAPS_TYPE_0074_PROTECTED_RESOURCE_SESSION_TYPES      = 1073,
%ProgramFiles(x86)%\Windows Kits\10\Include\10.0.26100.0\um\d3d12umddi.h(133,0)
  • If WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
  • If D3D12DDI_MINOR_HEADER_VERSION >= 2
11 5.1042485 __x_ABI_CWindows_CUI_CXaml_CCore_CDirect_CXamlPropertyIndex::XamlPropertyIndex_GridViewItemPresenter_SelectionCheckMarkVisualEnabled Int32 1073 0x00000431 1073 System.Int32
XamlPropertyIndex_GridViewItemPresenter_SelectionCheckMarkVisualEnabled = 1073,
%ProgramFiles(x86)%\Windows Kits\10\Include\10.0.26100.0\winrt\windows.ui.xaml.core.direct.h(4083,0)
  • REVERSE(If defined(__cplusplus) && !defined(CINTERFACE))
  • If WINDOWS_UI_XAML_CORE_DIRECT_XAMLDIRECTCONTRACT_VERSION >= 0x10000
12 5.1042485 XamlPropertyIndex::GridViewItemPresenter_SelectionCheckMarkVisualEnabled Int32 1073 0x00000431 1073 System.Int32
GridViewItemPresenter_SelectionCheckMarkVisualEnabled                 = 1073,
%ProgramFiles(x86)%\Windows Kits\10\Include\10.0.26100.0\winrt\windows.ui.xaml.core.direct.idl(1145,0)
13 4.8936048 EM_SCROLLCARET Int32 1073 0x00000431 1073 System.Int32
#define EM_SCROLLCARET			(WM_USER + 49)
%ProgramFiles(x86)%\Windows Kits\10\Include\10.0.26100.0\um\Richedit.h(95,0)
  • If WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
  • Ifndef EM_SCROLLCARET
14 4.8936048 EditDocument Int32 1073 0x00000431 1073 System.Int32
static const int EditDocument = 1073;
%ProgramFiles%\Microsoft Visual Studio\2022\Professional\VSSDK\VisualStudioIntegration\Common\Inc\KnownImageIds.h(1233,0)
15 4.8936048 TB_GETIMAGELIST Int32 1073 0x00000431 1073 System.Int32
#define TB_GETIMAGELIST         (WM_USER + 49)
%ProgramFiles(x86)%\Windows Kits\10\Include\10.0.26100.0\um\commctrl.h(1463,0)
  • If WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
  • Ifndef NOUSER
  • Ifndef NOTOOLBAR
  • If (_WIN32_IE >= 0x0300)
16 4.8936048 HID_USAGE_SENSORS_DATA_FIELD_ATMOSPHERIC_PRESSURE UInt16 1073 0x0431 1073 System.UInt16
#define HID_USAGE_SENSORS_DATA_FIELD_ATMOSPHERIC_PRESSURE                             ((USAGE) 0x0431)
%ProgramFiles(x86)%\Windows Kits\10\Include\10.0.26100.0\shared\hidusage.h(2266,0)
17 4.8936048 DISPID_SVGRESIZE Int32 1073 0x00000431 1073 System.Int32
#define DISPID_SVGRESIZE                        (DISPID_NORMAL_FIRST + 73)
%ProgramFiles(x86)%\Windows Kits\10\Include\10.0.26100.0\um\MsHtmdid.h(815,0)
18 4.8936048 DISPID_IHTMLDOCUMENT3_RECALC Int32 1073 0x00000431 1073 System.Int32
#define DISPID_IHTMLDOCUMENT3_RECALC                              DISPID_OMDOCUMENT+73
%ProgramFiles(x86)%\Windows Kits\10\Include\10.0.26100.0\um\MsHtmdid.h(5235,0)
19 4.8936048 DISPID_IDOMMOUSEEVENT_LAYERY Int32 1073 0x00000431 1073 System.Int32
#define DISPID_IDOMMOUSEEVENT_LAYERY                              DISPID_DOMMOUSEEVENT+23
%ProgramFiles(x86)%\Windows Kits\10\Include\10.0.26100.0\um\MsHtmdid.h(6204,0)
20 4.8936048 DISPID_ISVGSVGELEMENT_FORCEREDRAW Int32 1073 0x00000431 1073 System.Int32
#define DISPID_ISVGSVGELEMENT_FORCEREDRAW                         DISPID_SVGSVGELEMENT+23
%ProgramFiles(x86)%\Windows Kits\10\Include\10.0.26100.0\um\MsHtmdid.h(6802,0)
21 4.8936048 DISPID_ISVGPATHELEMENT_GETTOTALLENGTH Int32 1073 0x00000431 1073 System.Int32
#define DISPID_ISVGPATHELEMENT_GETTOTALLENGTH                     DISPID_SVGPATHELEMENT+23
%ProgramFiles(x86)%\Windows Kits\10\Include\10.0.26100.0\um\MsHtmdid.h(6917,0)
22 4.8936048 DISPID_ISVGLINEARGRADIENTELEMENT_Y1 Int32 1073 0x00000431 1073 System.Int32
#define DISPID_ISVGLINEARGRADIENTELEMENT_Y1                       DISPID_SVGLINEARGRADIENTELEMENT+3
%ProgramFiles(x86)%\Windows Kits\10\Include\10.0.26100.0\um\MsHtmdid.h(6970,0)
23 4.8936048 DISPID_ISVGRADIALGRADIENTELEMENT_CY Int32 1073 0x00000431 1073 System.Int32
#define DISPID_ISVGRADIALGRADIENTELEMENT_CY                       DISPID_SVGRADIALGRADIENTELEMENT+3
%ProgramFiles(x86)%\Windows Kits\10\Include\10.0.26100.0\um\MsHtmdid.h(6977,0)
24 4.8936048 DISPID_ISVGTEXTPOSITIONINGELEMENT_Y Int32 1073 0x00000431 1073 System.Int32
#define DISPID_ISVGTEXTPOSITIONINGELEMENT_Y                       DISPID_SVGTEXTPOSITIONINGELEMENT+3
%ProgramFiles(x86)%\Windows Kits\10\Include\10.0.26100.0\um\MsHtmdid.h(7157,0)
25 4.8936048 DISPID_ISVGTEXTPATHELEMENT_METHOD Int32 1073 0x00000431 1073 System.Int32
#define DISPID_ISVGTEXTPATHELEMENT_METHOD                         DISPID_SVGTEXTPATHELEMENT+3
%ProgramFiles(x86)%\Windows Kits\10\Include\10.0.26100.0\um\MsHtmdid.h(7318,0)
26 1.9201937 JET_errTooManyMempoolEntries Int32 -1073 0xFFFFFBCF -1073 System.Int32
#define JET_errTooManyMempoolEntries        -1073 /* Too many mempool entries requested */
#define JET_errTooManyMempoolEntries        -1073 /* Too many mempool entries requested */
%ProgramFiles(x86)%\Windows Kits\10\Include\10.0.26100.0\um\esent.h(3397,0)
  • If !defined(_JET_INCLUDED)
27 0.8936846 icmdCpJapaneseEUC Int32 431 0x000001AF 431 System.Int32
#define icmdCpJapaneseEUC         431
%ProgramFiles%\Microsoft Visual Studio\2022\Professional\VSSDK\VisualStudioIntegration\Common\Inc\wbids.h(173,0)
28 0.8936846 CV_HREG_e::CV_AMD64_XMM15IH Int32 431 0x000001AF 431 System.Int32
CV_AMD64_XMM15IH    = 431,
%ProgramFiles%\Microsoft Visual Studio\2022\Professional\DIA SDK\include\cvconst.h(3639,0)
29 0.8936846 WDFFUNCENUM::WdfGetTriageInfoTableIndex Int32 431 0x000001AF 431 System.Int32
WdfGetTriageInfoTableIndex = 431,
%ProgramFiles(x86)%\Windows Kits\10\Include\wdf\kmdf\1.11\wdffuncenum.h(456,0)
30 0.8936846 cmdidImmediateMode Int32 431 0x000001AF 431 System.Int32
#define cmdidImmediateMode      431
%ProgramFiles%\Microsoft Visual Studio\2022\Professional\VSSDK\VisualStudioIntegration\Common\Inc\stdidcmd.h(587,0)
31 0.8936846 D3D12_MESSAGE_ID::D3D12_MESSAGE_ID_DEVICE_CREATECOMPUTESHADER_UAVSNOTSUPPORTED Int32 431 0x000001AF 431 System.Int32
D3D12_MESSAGE_ID_DEVICE_CREATECOMPUTESHADER_UAVSNOTSUPPORTED	= 431,
%ProgramFiles(x86)%\Windows Kits\10\Include\10.0.26100.0\um\d3d12sdklayers.h(2547,0)
  • If WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP | WINAPI_PARTITION_GAMES)
32 0.8936846 CERTENROLL_OBJECTID::XCN_OIDVerisign_FailInfo Int32 431 0x000001AF 431 System.Int32
XCN_OIDVerisign_FailInfo	= 431,
%ProgramFiles(x86)%\Windows Kits\10\Include\10.0.26100.0\um\certenroll.h(2122,0)
  • If WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
33 0.8936846 SV_SRVHEURISTICS_PARMNUM Int32 431 0x000001AF 431 System.Int32
#define SV_SRVHEURISTICS_PARMNUM        431
%ProgramFiles(x86)%\Windows Kits\10\Include\10.0.26100.0\um\lmserver.h(1170,0)
  • If WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP | WINAPI_PARTITION_SYSTEM)
34 0.8936846 __x_ABI_CWindows_CWeb_CHttp_CHttpStatusCode::HttpStatusCode_RequestHeaderFieldsTooLarge Int32 431 0x000001AF 431 System.Int32
HttpStatusCode_RequestHeaderFieldsTooLarge = 431,
%ProgramFiles(x86)%\Windows Kits\10\Include\10.0.26100.0\winrt\Windows.Web.Http.h(8851,0)
  • REVERSE(If defined(__cplusplus) && !defined(CINTERFACE))
  • If WINDOWS_FOUNDATION_UNIVERSALAPICONTRACT_VERSION >= 0x10000
35 0.8936846 __x_ABI_CWindows_CUI_CXaml_CCore_CDirect_CXamlPropertyIndex::XamlPropertyIndex_PaneThemeTransition_Edge Int32 431 0x000001AF 431 System.Int32
XamlPropertyIndex_PaneThemeTransition_Edge = 431,
%ProgramFiles(x86)%\Windows Kits\10\Include\10.0.26100.0\winrt\windows.ui.xaml.core.direct.h(3522,0)
  • REVERSE(If defined(__cplusplus) && !defined(CINTERFACE))
  • If WINDOWS_UI_XAML_CORE_DIRECT_XAMLDIRECTCONTRACT_VERSION >= 0x10000
36 0.8936846 XamlPropertyIndex::PaneThemeTransition_Edge Int32 431 0x000001AF 431 System.Int32
PaneThemeTransition_Edge                                              = 431,
%ProgramFiles(x86)%\Windows Kits\10\Include\10.0.26100.0\winrt\windows.ui.xaml.core.direct.idl(584,0)
37 0.8936846 HttpStatusCode::RequestHeaderFieldsTooLarge Int32 431 0x000001AF 431 System.Int32
RequestHeaderFieldsTooLarge   = 431,
%ProgramFiles(x86)%\Windows Kits\10\Include\10.0.26100.0\winrt\windows.web.http.idl(358,0)
38 0.8936846 __VSSYSCOLOREX3::VSCOLOR_STARTPAGE_BUTTON_PIN_HOVER Int32 -431 0xFFFFFE51 -431 System.Int32
VSCOLOR_STARTPAGE_BUTTON_PIN_HOVER	= -431,
%ProgramFiles%\Microsoft Visual Studio\2022\Professional\VSSDK\VisualStudioIntegration\Common\Inc\vsshell100.h(1860,0)
39 0.84008473 VCOM_ProcessApplyHooksStart Guid 1001792e-0106-1073-0000-000000000080 N: 1001792e010610730000000000000080
B: {1001792e-0106-1073-0000-000000000080}
P: (1001792e-0106-1073-0000-000000000080)
X: {0x1001792e,0x0106,0x1073,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80}}
A: 2E790110060173100000000000000080
System.Guid
static GUID VCOM_ProcessApplyHooksStart = {0x1001792e,0x0106,0x1073,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80}};
Undocumented\undocguids3.h(17768,0)
40 0.84008473 VCOM_ProcessApplyHooksStop Guid 1001792f-0206-1073-0000-000000000080 N: 1001792f020610730000000000000080
B: {1001792f-0206-1073-0000-000000000080}
P: (1001792f-0206-1073-0000-000000000080)
X: {0x1001792f,0x0206,0x1073,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80}}
A: 2F790110060273100000000000000080
System.Guid
static GUID VCOM_ProcessApplyHooksStop = {0x1001792f,0x0206,0x1073,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80}};
Undocumented\undocguids3.h(17770,0)
41 0.84008473 TlmNoFileExtension Guid 0020001e-0000-0000-1073-018001000000 N: 0020001e000000001073018001000000
B: {0020001e-0000-0000-1073-018001000000}
P: (0020001e-0000-0000-1073-018001000000)
X: {0x0020001e,0x0000,0x0000,{0x10,0x73,0x01,0x80,0x01,0x00,0x00,0x00}}
A: 1E002000000000001073018001000000
System.Guid
static GUID TlmNoFileExtension = { 0x0020001e,0x0000,0x0000,{0x10,0x73,0x01,0x80,0x01,0x00,0x00,0x00} };
Undocumented\undocguids2.h(2289,0)
42 0.84008473 _VCOM_ProcessApplyHooksStart Guid 1001792e-0106-1073-0000-000000000080 N: 1001792e010610730000000000000080
B: {1001792e-0106-1073-0000-000000000080}
P: (1001792e-0106-1073-0000-000000000080)
X: {0x1001792e,0x0106,0x1073,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80}}
A: 2E790110060173100000000000000080
System.Guid
static GUID _VCOM_ProcessApplyHooksStart = {0x1001792e,0x0106,0x1073,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80}};
Undocumented\undocguids3.h(142618,0)
43 0.84008473 _VCOM_ProcessApplyHooksStop Guid 1001792f-0206-1073-0000-000000000080 N: 1001792f020610730000000000000080
B: {1001792f-0206-1073-0000-000000000080}
P: (1001792f-0206-1073-0000-000000000080)
X: {0x1001792f,0x0206,0x1073,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80}}
A: 2F790110060273100000000000000080
System.Guid
static GUID _VCOM_ProcessApplyHooksStop = {0x1001792f,0x0206,0x1073,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80}};
Undocumented\undocguids3.h(142620,0)
44 0.7605295 IOCTL_AACS_READ_MEDIA_KEY_BLOCK Int32 3363012 0x003350C4 3363012 System.Int32
#define IOCTL_AACS_READ_MEDIA_KEY_BLOCK       CTL_CODE(IOCTL_DVD_BASE, 0x431, METHOD_BUFFERED, FILE_READ_ACCESS)
%ProgramFiles(x86)%\Windows Kits\10\Include\10.0.26100.0\shared\ntddcdvd.h(70,0)
  • If WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP | WINAPI_PARTITION_SYSTEM)
45 0.74473715 ChartFilter Int32 431 0x000001AF 431 System.Int32
static const int ChartFilter = 431;
%ProgramFiles%\Microsoft Visual Studio\2022\Professional\VSSDK\VisualStudioIntegration\Common\Inc\KnownImageIds.h(537,0)
46 0.6319305 ERROR_ENCRYPTING_METADATA_DISALLOWED Int32 431 0x000001AF 431 System.Int32
#define ERROR_ENCRYPTING_METADATA_DISALLOWED 431L
%ProgramFiles(x86)%\Windows Kits\10\Include\10.0.26100.0\shared\winerror.h(3198,0)
47 0.6319305 IDG_VS_RESULTSLISTOUTLINE Int32 431 0x000001AF 431 System.Int32
#define IDG_VS_RESULTSLISTOUTLINE     0x01AF
%ProgramFiles%\Microsoft Visual Studio\2022\Professional\VSSDK\VisualStudioIntegration\Common\Inc\vsshlids.h(939,0)
48 0.6319305 D3D10_MESSAGE_ID::D3D10_MESSAGE_ID_LIVE_GEOMETRYSHADER Int32 431 0x000001AF 431 System.Int32
D3D10_MESSAGE_ID_LIVE_GEOMETRYSHADER	= ( D3D10_MESSAGE_ID_LIVE_VERTEXSHADER + 1 ) ,
%ProgramFiles(x86)%\Windows Kits\10\Include\10.0.26100.0\um\d3d10sdklayers.h(825,0)
  • If WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
49 0.6319305 D3D11_MESSAGE_ID::D3D11_MESSAGE_ID_LIVE_GEOMETRYSHADER Int32 431 0x000001AF 431 System.Int32
D3D11_MESSAGE_ID_LIVE_GEOMETRYSHADER	= ( D3D11_MESSAGE_ID_LIVE_VERTEXSHADER + 1 ) ,
%ProgramFiles(x86)%\Windows Kits\10\Include\10.0.26100.0\um\d3d11sdklayers.h(1236,0)
  • If WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP)
50 0.6319305 ThDisableBoost Int32 431 0x000001AF 431 System.Int32
#define ThDisableBoost 0x1af
Misc\oldsdk\kspalpha.h(498,0)
51 0.5266087 HID_USAGE_CONSUMER_AL_VIRUS_PROTECTION UInt16 431 0x01AF 431 System.UInt16
#define HID_USAGE_CONSUMER_AL_VIRUS_PROTECTION                           ((USAGE) 0x01AF)
%ProgramFiles(x86)%\Windows Kits\10\Include\10.0.26100.0\shared\hidusage.h(776,0)
52 0.5266087 DISPID_A_TRANSFORM Int32 70967 0x00011537 70967 System.Int32
#define DISPID_A_TRANSFORM                      (DISPID_A_FIRST+431)
%ProgramFiles(x86)%\Windows Kits\10\Include\10.0.26100.0\um\MsHtmdid.h(1403,0)
53 0.45605657 IDS_CAP_RECORDING_ERROR Int32 431 0x000001AF 431 System.Int32
#define IDS_CAP_RECORDING_ERROR     431  /* "Error: Cannot write to capture file.  Data rate too high or disk full." */
#define IDS_CAP_RECORDING_ERROR     431  /* "Error: Cannot write to capture file.  Data rate too high or disk full." */
%ProgramFiles(x86)%\Windows Kits\10\Include\10.0.26100.0\um\Vfw.h(3727,0)
  • If WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
  • Ifndef NOAVICAP
54 0.13165218 __x_ABI_CWindows_CWeb_CHttp_CHttpStatusCode Enum
enum __x_ABI_CWindows_CWeb_CHttp_CHttpStatusCode
{
    HttpStatusCode_None = 0,
    HttpStatusCode_Continue = 100,
    HttpStatusCode_SwitchingProtocols = 101,
    HttpStatusCode_Processing = 102,
    HttpStatusCode_Ok = 200,
    HttpStatusCode_Created = 201,
    HttpStatusCode_Accepted = 202,
    HttpStatusCode_NonAuthoritativeInformation = 203,
    HttpStatusCode_NoContent = 204,
    HttpStatusCode_ResetContent = 205,
    HttpStatusCode_PartialContent = 206,
    HttpStatusCode_MultiStatus = 207,
    HttpStatusCode_AlreadyReported = 208,
    HttpStatusCode_IMUsed = 226,
    HttpStatusCode_MultipleChoices = 300,
    HttpStatusCode_MovedPermanently = 301,
    HttpStatusCode_Found = 302,
    HttpStatusCode_SeeOther = 303,
    HttpStatusCode_NotModified = 304,
    HttpStatusCode_UseProxy = 305,
    HttpStatusCode_TemporaryRedirect = 307,
    HttpStatusCode_PermanentRedirect = 308,
    HttpStatusCode_BadRequest = 400,
    HttpStatusCode_Unauthorized = 401,
    HttpStatusCode_PaymentRequired = 402,
    HttpStatusCode_Forbidden = 403,
    HttpStatusCode_NotFound = 404,
    HttpStatusCode_MethodNotAllowed = 405,
    HttpStatusCode_NotAcceptable = 406,
    HttpStatusCode_ProxyAuthenticationRequired = 407,
    HttpStatusCode_RequestTimeout = 408,
    HttpStatusCode_Conflict = 409,
    HttpStatusCode_Gone = 410,
    HttpStatusCode_LengthRequired = 411,
    HttpStatusCode_PreconditionFailed = 412,
    HttpStatusCode_RequestEntityTooLarge = 413,
    HttpStatusCode_RequestUriTooLong = 414,
    HttpStatusCode_UnsupportedMediaType = 415,
    HttpStatusCode_RequestedRangeNotSatisfiable = 416,
    HttpStatusCode_ExpectationFailed = 417,
    HttpStatusCode_UnprocessableEntity = 422,
    HttpStatusCode_Locked = 423,
    HttpStatusCode_FailedDependency = 424,
    HttpStatusCode_UpgradeRequired = 426,
    HttpStatusCode_PreconditionRequired = 428,
    HttpStatusCode_TooManyRequests = 429,
    HttpStatusCode_RequestHeaderFieldsTooLarge = 431,
    HttpStatusCode_InternalServerError = 500,
    HttpStatusCode_NotImplemented = 501,
    HttpStatusCode_BadGateway = 502,
    HttpStatusCode_ServiceUnavailable = 503,
    HttpStatusCode_GatewayTimeout = 504,
    HttpStatusCode_HttpVersionNotSupported = 505,
    HttpStatusCode_VariantAlsoNegotiates = 506,
    HttpStatusCode_InsufficientStorage = 507,
    HttpStatusCode_LoopDetected = 508,
    HttpStatusCode_NotExtended = 510,
    HttpStatusCode_NetworkAuthenticationRequired = 511,
};
%ProgramFiles(x86)%\Windows Kits\10\Include\10.0.26100.0\winrt\Windows.Web.Http.h(8803,0)
  • REVERSE(If defined(__cplusplus) && !defined(CINTERFACE))
  • If WINDOWS_FOUNDATION_UNIVERSALAPICONTRACT_VERSION >= 0x10000
55 0.13165218 HttpStatusCode Enum
enum HttpStatusCode
            {
                None                          = 0,
                Continue                      = 100,
                SwitchingProtocols            = 101,
                Processing                    = 102,
                Ok                            = 200,
                Created                       = 201,
                Accepted                      = 202,
                NonAuthoritativeInformation   = 203,
                NoContent                     = 204,
                ResetContent                  = 205,
                PartialContent                = 206,
                MultiStatus                   = 207,
                AlreadyReported               = 208,
                IMUsed                        = 226,
                MultipleChoices               = 300,
                MovedPermanently              = 301,
                Found                         = 302,
                SeeOther                      = 303,
                NotModified                   = 304,
                UseProxy                      = 305,
                TemporaryRedirect             = 307,
                PermanentRedirect             = 308,
                BadRequest                    = 400,
                Unauthorized                  = 401,
                PaymentRequired               = 402,
                Forbidden                     = 403,
                NotFound                      = 404,
                MethodNotAllowed              = 405,
                NotAcceptable                 = 406,
                ProxyAuthenticationRequired   = 407,
                RequestTimeout                = 408,
                Conflict                      = 409,
                Gone                          = 410,
                LengthRequired                = 411,
                PreconditionFailed            = 412,
                RequestEntityTooLarge         = 413,
                RequestUriTooLong             = 414,
                UnsupportedMediaType          = 415,
                RequestedRangeNotSatisfiable  = 416,
                ExpectationFailed             = 417,
                UnprocessableEntity           = 422,
                Locked                        = 423,
                FailedDependency              = 424,
                UpgradeRequired               = 426,
                PreconditionRequired          = 428,
                TooManyRequests               = 429,
                RequestHeaderFieldsTooLarge   = 431,
                InternalServerError           = 500,
                NotImplemented                = 501,
                BadGateway                    = 502,
                ServiceUnavailable            = 503,
                GatewayTimeout                = 504,
                HttpVersionNotSupported       = 505,
                VariantAlsoNegotiates         = 506,
                InsufficientStorage           = 507,
                LoopDetected                  = 508,
                NotExtended                   = 510,
                NetworkAuthenticationRequired = 511
            };
%ProgramFiles(x86)%\Windows Kits\10\Include\10.0.26100.0\winrt\windows.web.http.idl(310,0)
56 0.06582609 __VSSYSCOLOREX3 Enum
enum __tagVSSYSCOLOREX3
    {
        VSCOLOR_ACTIVEBORDER	= -192,
        VSCOLOR_ACTIVECAPTION	= -193,
        VSCOLOR_APPWORKSPACE	= -194,
        VSCOLOR_BACKGROUND	= -195,
        VSCOLOR_BUTTONFACE	= -196,
        VSCOLOR_BUTTONHIGHLIGHT	= -197,
        VSCOLOR_BUTTONSHADOW	= -198,
        VSCOLOR_BUTTONTEXT	= -199,
        VSCOLOR_CAPTIONTEXT	= -200,
        VSCOLOR_GRAYTEXT	= -201,
        VSCOLOR_HIGHLIGHT	= -202,
        VSCOLOR_HIGHLIGHTTEXT	= -203,
        VSCOLOR_INACTIVEBORDER	= -204,
        VSCOLOR_INACTIVECAPTION	= -205,
        VSCOLOR_INACTIVECAPTIONTEXT	= -206,
        VSCOLOR_INFOBACKGROUND	= -207,
        VSCOLOR_INFOTEXT	= -208,
        VSCOLOR_MENU	= -209,
        VSCOLOR_MENUTEXT	= -210,
        VSCOLOR_SCROLLBAR	= -211,
        VSCOLOR_THREEDDARKSHADOW	= -212,
        VSCOLOR_THREEDFACE	= -213,
        VSCOLOR_THREEDHIGHLIGHT	= -214,
        VSCOLOR_THREEDLIGHTSHADOW	= -215,
        VSCOLOR_THREEDSHADOW	= -216,
        VSCOLOR_WINDOW	= -217,
        VSCOLOR_WINDOWFRAME	= -218,
        VSCOLOR_WINDOWTEXT	= -219,
        VSCOLOR_AUTOHIDE_TAB_TEXT	= -220,
        VSCOLOR_AUTOHIDE_TAB_BACKGROUND_BEGIN	= -221,
        VSCOLOR_AUTOHIDE_TAB_BACKGROUND_END	= -222,
        VSCOLOR_AUTOHIDE_TAB_BORDER	= -223,
        VSCOLOR_AUTOHIDE_TAB_MOUSEOVER_TEXT	= -224,
        VSCOLOR_AUTOHIDE_TAB_MOUSEOVER_BACKGROUND_BEGIN	= -225,
        VSCOLOR_AUTOHIDE_TAB_MOUSEOVER_BACKGROUND_END	= -226,
        VSCOLOR_AUTOHIDE_TAB_MOUSEOVER_BORDER	= -227,
        VSCOLOR_AUTOHIDE_RESIZEGRIP	= -228,
        VSCOLOR_CLASSDESIGNER_CLASSCOMPARTMENT	= -229,
        VSCOLOR_CLASSDESIGNER_CLASSHEADERBACKGROUND	= -230,
        VSCOLOR_CLASSDESIGNER_COMMENTBORDER	= -231,
        VSCOLOR_CLASSDESIGNER_COMMENTSHAPEBACKGROUND	= -232,
        VSCOLOR_CLASSDESIGNER_COMMENTTEXT	= -233,
        VSCOLOR_CLASSDESIGNER_COMPARTMENTSEPARATOR	= -234,
        VSCOLOR_CLASSDESIGNER_CONNECTIONROUTEBORDER	= -235,
        VSCOLOR_CLASSDESIGNER_DEFAULTCONNECTION	= -236,
        VSCOLOR_CLASSDESIGNER_DEFAULTSHAPETITLEBACKGROUND	= -237,
        VSCOLOR_CLASSDESIGNER_DEFAULTSHAPEBACKGROUND	= -238,
        VSCOLOR_CLASSDESIGNER_DEFAULTSHAPEBORDER	= -239,
        VSCOLOR_CLASSDESIGNER_DEFAULTSHAPESUBTITLE	= -240,
        VSCOLOR_CLASSDESIGNER_DEFAULTSHAPETEXT	= -241,
        VSCOLOR_CLASSDESIGNER_DEFAULTSHAPETITLE	= -242,
        VSCOLOR_CLASSDESIGNER_DELEGATECOMPARTMENT	= -243,
        VSCOLOR_CLASSDESIGNER_DELEGATEHEADER	= -244,
        VSCOLOR_CLASSDESIGNER_DIAGRAMBACKGROUND	= -245,
        VSCOLOR_CLASSDESIGNER_EMPHASISBORDER	= -246,
        VSCOLOR_CLASSDESIGNER_ENUMHEADER	= -247,
        VSCOLOR_CLASSDESIGNER_FIELDASSOCIATION	= -248,
        VSCOLOR_CLASSDESIGNER_GRADIENTEND	= -249,
        VSCOLOR_CLASSDESIGNER_INHERITANCE	= -250,
        VSCOLOR_CLASSDESIGNER_INTERFACEHEADER	= -251,
        VSCOLOR_CLASSDESIGNER_INTERFACECOMPARTMENT	= -252,
        VSCOLOR_CLASSDESIGNER_LASSO	= -253,
        VSCOLOR_CLASSDESIGNER_LOLLIPOP	= -254,
        VSCOLOR_CLASSDESIGNER_PROPERTYASSOCIATION	= -255,
        VSCOLOR_CLASSDESIGNER_REFERENCEDASSEMBLYBORDER	= -256,
        VSCOLOR_CLASSDESIGNER_RESIZINGSHAPEBORDER	= -257,
        VSCOLOR_CLASSDESIGNER_SHAPEBORDER	= -258,
        VSCOLOR_CLASSDESIGNER_SHAPESHADOW	= -259,
        VSCOLOR_CLASSDESIGNER_TEMPCONNECTION	= -260,
        VSCOLOR_CLASSDESIGNER_TYPEDEF	= -261,
        VSCOLOR_CLASSDESIGNER_TYPEDEFHEADER	= -262,
        VSCOLOR_CLASSDESIGNER_UNRESOLVEDTEXT	= -263,
        VSCOLOR_CLASSDESIGNER_VBMODULECOMPARTMENT	= -264,
        VSCOLOR_CLASSDESIGNER_VBMODULEHEADER	= -265,
        VSCOLOR_COMBOBOX_BACKGROUND	= -266,
        VSCOLOR_COMBOBOX_BORDER	= -267,
        VSCOLOR_COMBOBOX_DISABLED_BACKGROUND	= -268,
        VSCOLOR_COMBOBOX_DISABLED_BORDER	= -269,
        VSCOLOR_COMBOBOX_DISABLED_GLYPH	= -270,
        VSCOLOR_COMBOBOX_GLYPH	= -271,
        VSCOLOR_COMBOBOX_MOUSEDOWN_BACKGROUND	= -272,
        VSCOLOR_COMBOBOX_MOUSEDOWN_BORDER	= -273,
        VSCOLOR_COMBOBOX_MOUSEOVER_BACKGROUND_BEGIN	= -274,
        VSCOLOR_COMBOBOX_MOUSEOVER_BACKGROUND_MIDDLE1	= -275,
        VSCOLOR_COMBOBOX_MOUSEOVER_BACKGROUND_MIDDLE2	= -276,
        VSCOLOR_COMBOBOX_MOUSEOVER_BACKGROUND_END	= -277,
        VSCOLOR_COMBOBOX_MOUSEOVER_BORDER	= -278,
        VSCOLOR_COMBOBOX_MOUSEOVER_GLYPH	= -279,
        VSCOLOR_COMBOBOX_POPUP_BACKGROUND_BEGIN	= -280,
        VSCOLOR_COMBOBOX_POPUP_BACKGROUND_END	= -281,
        VSCOLOR_COMBOBOX_POPUP_BORDER	= -282,
        VSCOLOR_COMMANDBAR_CHECKBOX	= -283,
        VSCOLOR_COMMANDBAR_MENU_BACKGROUND_GRADIENTBEGIN	= -284,
        VSCOLOR_COMMANDBAR_MENU_BACKGROUND_GRADIENTEND	= -285,
        VSCOLOR_COMMANDBAR_MENU_BORDER	= -286,
        VSCOLOR_COMMANDBAR_MENU_ICONBACKGROUND	= -287,
        VSCOLOR_COMMANDBAR_MENU_MOUSEOVER_SUBMENU_GLYPH	= -288,
        VSCOLOR_COMMANDBAR_MENU_SEPARATOR	= -289,
        VSCOLOR_COMMANDBAR_MENU_SUBMENU_GLYPH	= -290,
        VSCOLOR_COMMANDBAR_MOUSEDOWN_BACKGROUND_BEGIN	= -291,
        VSCOLOR_COMMANDBAR_MOUSEDOWN_BACKGROUND_MIDDLE	= -292,
        VSCOLOR_COMMANDBAR_MOUSEDOWN_BACKGROUND_END	= -293,
        VSCOLOR_COMMANDBAR_MOUSEDOWN_BORDER	= -294,
        VSCOLOR_COMMANDBAR_MOUSEOVER_BACKGROUND_BEGIN	= -295,
        VSCOLOR_COMMANDBAR_MOUSEOVER_BACKGROUND_MIDDLE1	= -296,
        VSCOLOR_COMMANDBAR_MOUSEOVER_BACKGROUND_MIDDLE2	= -297,
        VSCOLOR_COMMANDBAR_MOUSEOVER_BACKGROUND_END	= -298,
        VSCOLOR_COMMANDBAR_OPTIONS_BACKGROUND	= -299,
        VSCOLOR_COMMANDBAR_OPTIONS_GLYPH	= -300,
        VSCOLOR_COMMANDBAR_OPTIONS_MOUSEDOWN_BACKGROUND_BEGIN	= -301,
        VSCOLOR_COMMANDBAR_OPTIONS_MOUSEDOWN_BACKGROUND_MIDDLE	= -302,
        VSCOLOR_COMMANDBAR_OPTIONS_MOUSEDOWN_BACKGROUND_END	= -303,
        VSCOLOR_COMMANDBAR_OPTIONS_MOUSEOVER_BACKGROUND_BEGIN	= -304,
        VSCOLOR_COMMANDBAR_OPTIONS_MOUSEOVER_BACKGROUND_MIDDLE1	= -305,
        VSCOLOR_COMMANDBAR_OPTIONS_MOUSEOVER_BACKGROUND_MIDDLE2	= -306,
        VSCOLOR_COMMANDBAR_OPTIONS_MOUSEOVER_BACKGROUND_END	= -307,
        VSCOLOR_COMMANDBAR_OPTIONS_MOUSEOVER_GLYPH	= -308,
        VSCOLOR_COMMANDBAR_SELECTED_BORDER	= -309,
        VSCOLOR_COMMANDBAR_TOOLBAR_BORDER	= -310,
        VSCOLOR_COMMANDBAR_TOOLBAR_SEPARATOR	= -311,
        VSCOLOR_COMMANDSHELF_BACKGROUND_GRADIENTBEGIN	= -312,
        VSCOLOR_COMMANDSHELF_BACKGROUND_GRADIENTMIDDLE	= -313,
        VSCOLOR_COMMANDSHELF_BACKGROUND_GRADIENTEND	= -314,
        VSCOLOR_COMMANDSHELF_HIGHLIGHT_GRADIENTBEGIN	= -315,
        VSCOLOR_COMMANDSHELF_HIGHLIGHT_GRADIENTMIDDLE	= -316,
        VSCOLOR_COMMANDSHELF_HIGHLIGHT_GRADIENTEND	= -317,
        VSCOLOR_DIAGREPORT_BACKGROUND	= -318,
        VSCOLOR_DIAGREPORT_SECONDARYPAGE_HEADER	= -319,
        VSCOLOR_DIAGREPORT_SECONDARYPAGE_SUBTITLE	= -320,
        VSCOLOR_DIAGREPORT_SECONDARYPAGE_TITLE	= -321,
        VSCOLOR_DIAGREPORT_SUMMARYPAGE_HEADER	= -322,
        VSCOLOR_DIAGREPORT_SUMMARYPAGE_SUBTITLE	= -323,
        VSCOLOR_DIAGREPORT_SUMMARYPAGE_TITLE	= -324,
        VSCOLOR_DIAGREPORT_TEXT	= -325,
        VSCOLOR_DOCKTARGET_BACKGROUND	= -326,
        VSCOLOR_DOCKTARGET_BORDER	= -327,
        VSCOLOR_DOCKTARGET_BUTTON_BACKGROUND_BEGIN	= -328,
        VSCOLOR_DOCKTARGET_BUTTON_BACKGROUND_END	= -329,
        VSCOLOR_DOCKTARGET_BUTTON_BORDER	= -330,
        VSCOLOR_DOCKTARGET_GLYPH_BACKGROUND_BEGIN	= -331,
        VSCOLOR_DOCKTARGET_GLYPH_BACKGROUND_END	= -332,
        VSCOLOR_DOCKTARGET_GLYPH_ARROW	= -333,
        VSCOLOR_DOCKTARGET_GLYPH_BORDER	= -334,
        VSCOLOR_DROPDOWN_BACKGROUND	= -335,
        VSCOLOR_DROPDOWN_BORDER	= -336,
        VSCOLOR_DROPDOWN_DISABLED_BACKGROUND	= -337,
        VSCOLOR_DROPDOWN_DISABLED_BORDER	= -338,
        VSCOLOR_DROPDOWN_DISABLED_GLYPH	= -339,
        VSCOLOR_DROPDOWN_GLYPH	= -340,
        VSCOLOR_DROPDOWN_MOUSEDOWN_BACKGROUND	= -341,
        VSCOLOR_DROPDOWN_MOUSEDOWN_BORDER	= -342,
        VSCOLOR_DROPDOWN_MOUSEOVER_BACKGROUND_BEGIN	= -343,
        VSCOLOR_DROPDOWN_MOUSEOVER_BACKGROUND_MIDDLE1	= -344,
        VSCOLOR_DROPDOWN_MOUSEOVER_BACKGROUND_MIDDLE2	= -345,
        VSCOLOR_DROPDOWN_MOUSEOVER_BACKGROUND_END	= -346,
        VSCOLOR_DROPDOWN_MOUSEOVER_BORDER	= -347,
        VSCOLOR_DROPDOWN_MOUSEOVER_GLYPH	= -348,
        VSCOLOR_DROPDOWN_POPUP_BACKGROUND_BEGIN	= -349,
        VSCOLOR_DROPDOWN_POPUP_BACKGROUND_END	= -350,
        VSCOLOR_DROPDOWN_POPUP_BORDER	= -351,
        VSCOLOR_DROPSHADOW_BACKGROUND	= -352,
        VSCOLOR_ENVIRONMENT_BACKGROUND_GRADIENTMIDDLE1	= -353,
        VSCOLOR_ENVIRONMENT_BACKGROUND_GRADIENTMIDDLE2	= -354,
        VSCOLOR_ENVIRONMENT_BACKGROUND_TEXTURE1	= -355,
        VSCOLOR_ENVIRONMENT_BACKGROUND_TEXTURE2	= -356,
        VSCOLOR_EXTENSIONMANAGER_STAR_HIGHLIGHT1	= -357,
        VSCOLOR_EXTENSIONMANAGER_STAR_HIGHLIGHT2	= -358,
        VSCOLOR_EXTENSIONMANAGER_STAR_INACTIVE1	= -359,
        VSCOLOR_EXTENSIONMANAGER_STAR_INACTIVE2	= -360,
        VSCOLOR_FILETAB_HOT_BORDER	= -361,
        VSCOLOR_FILETAB_HOT_TEXT	= -362,
        VSCOLOR_FILETAB_HOT_GLYPH	= -363,
        VSCOLOR_FILETAB_INACTIVE_GRADIENTTOP	= -364,
        VSCOLOR_FILETAB_INACTIVE_GRADIENTBOTTOM	= -365,
        VSCOLOR_FILETAB_INACTIVE_DOCUMENTBORDER_BACKGROUND	= -366,
        VSCOLOR_FILETAB_INACTIVE_DOCUMENTBORDER_EDGE	= -367,
        VSCOLOR_FILETAB_INACTIVE_TEXT	= -368,
        VSCOLOR_FILETAB_LASTACTIVE_GRADIENTTOP	= -369,
        VSCOLOR_FILETAB_LASTACTIVE_GRADIENTMIDDLE1	= -370,
        VSCOLOR_FILETAB_LASTACTIVE_GRADIENTMIDDLE2	= -371,
        VSCOLOR_FILETAB_LASTACTIVE_GRADIENTBOTTOM	= -372,
        VSCOLOR_FILETAB_LASTACTIVE_DOCUMENTBORDER_BACKGROUND	= -373,
        VSCOLOR_FILETAB_LASTACTIVE_DOCUMENTBORDER_EDGE	= -374,
        VSCOLOR_FILETAB_LASTACTIVE_TEXT	= -375,
        VSCOLOR_FILETAB_LASTACTIVE_GLYPH	= -376,
        VSCOLOR_FILETAB_SELECTED_GRADIENTMIDDLE1	= -377,
        VSCOLOR_FILETAB_SELECTED_GRADIENTMIDDLE2	= -378,
        VSCOLOR_NEWPROJECT_BACKGROUND	= -379,
        VSCOLOR_NEWPROJECT_PROVIDER_HOVER_FOREGROUND	= -380,
        VSCOLOR_NEWPROJECT_PROVIDER_HOVER_BEGIN	= -381,
        VSCOLOR_NEWPROJECT_PROVIDER_HOVER_MIDDLE1	= -382,
        VSCOLOR_NEWPROJECT_PROVIDER_HOVER_MIDDLE2	= -383,
        VSCOLOR_NEWPROJECT_PROVIDER_HOVER_END	= -384,
        VSCOLOR_NEWPROJECT_PROVIDER_INACTIVE_FOREGROUND	= -385,
        VSCOLOR_NEWPROJECT_PROVIDER_INACTIVE_BEGIN	= -386,
        VSCOLOR_NEWPROJECT_PROVIDER_INACTIVE_END	= -387,
        VSCOLOR_NEWPROJECT_ITEM_SELECTED_BORDER	= -388,
        VSCOLOR_NEWPROJECT_ITEM_SELECTED	= -389,
        VSCOLOR_NEWPROJECT_ITEM_INACTIVE_BEGIN	= -390,
        VSCOLOR_NEWPROJECT_ITEM_INACTIVE_END	= -391,
        VSCOLOR_NEWPROJECT_ITEM_INACTIVE_BORDER	= -392,
        VSCOLOR_PAGE_CONTENTEXPANDER_CHEVRON	= -393,
        VSCOLOR_PAGE_CONTENTEXPANDER_SEPARATOR	= -394,
        VSCOLOR_PAGE_SIDEBAREXPANDER_BODY	= -395,
        VSCOLOR_PAGE_SIDEBAREXPANDER_CHEVRON	= -396,
        VSCOLOR_PAGE_SIDEBAREXPANDER_HEADER	= -397,
        VSCOLOR_PAGE_SIDEBAREXPANDER_HEADER_HOVER	= -398,
        VSCOLOR_PAGE_SIDEBAREXPANDER_HEADER_PRESSED	= -399,
        VSCOLOR_PAGE_SIDEBAREXPANDER_SEPARATOR	= -400,
        VSCOLOR_PAGE_SIDEBAREXPANDER_TEXT	= -401,
        VSCOLOR_SCROLLBAR_ARROW_BACKGROUND	= -402,
        VSCOLOR_SCROLLBAR_ARROW_DISABLED_BACKGROUND	= -403,
        VSCOLOR_SCROLLBAR_ARROW_MOUSEOVER_BACKGROUND	= -404,
        VSCOLOR_SCROLLBAR_ARROW_PRESSED_BACKGROUND	= -405,
        VSCOLOR_SCROLLBAR_BACKGROUND	= -406,
        VSCOLOR_SCROLLBAR_DISABLED_BACKGROUND	= -407,
        VSCOLOR_SCROLLBAR_THUMB_BACKGROUND	= -408,
        VSCOLOR_SCROLLBAR_THUMB_BORDER	= -409,
        VSCOLOR_SCROLLBAR_THUMB_GLYPH	= -410,
        VSCOLOR_SCROLLBAR_THUMB_MOUSEOVER_BACKGROUND	= -411,
        VSCOLOR_SCROLLBAR_THUMB_PRESSED_BACKGROUND	= -412,
        VSCOLOR_SEARCHBOX_BACKGROUND	= -413,
        VSCOLOR_SEARCHBOX_BORDER	= -414,
        VSCOLOR_SEARCHBOX_MOUSEOVER_BACKGROUND_BEGIN	= -415,
        VSCOLOR_SEARCHBOX_MOUSEOVER_BACKGROUND_MIDDLE1	= -416,
        VSCOLOR_SEARCHBOX_MOUSEOVER_BACKGROUND_MIDDLE2	= -417,
        VSCOLOR_SEARCHBOX_MOUSEOVER_BACKGROUND_END	= -418,
        VSCOLOR_SEARCHBOX_MOUSEOVER_BORDER	= -419,
        VSCOLOR_SEARCHBOX_PRESSED_BACKGROUND	= -420,
        VSCOLOR_SEARCHBOX_PRESSED_BORDER	= -421,
        VSCOLOR_STARTPAGE_BACKGROUND_GRADIENTBEGIN	= -422,
        VSCOLOR_STARTPAGE_BACKGROUND_GRADIENTEND	= -423,
        VSCOLOR_STARTPAGE_BUTTON_BORDER	= -424,
        VSCOLOR_STARTPAGE_BUTTON_MOUSEOVER_BACKGROUND_BEGIN	= -425,
        VSCOLOR_STARTPAGE_BUTTON_MOUSEOVER_BACKGROUND_END	= -426,
        VSCOLOR_STARTPAGE_BUTTON_MOUSEOVER_BACKGROUND_MIDDLE1	= -427,
        VSCOLOR_STARTPAGE_BUTTON_MOUSEOVER_BACKGROUND_MIDDLE2	= -428,
        VSCOLOR_STARTPAGE_BUTTON_PINNED	= -429,
        VSCOLOR_STARTPAGE_BUTTON_PIN_DOWN	= -430,
        VSCOLOR_STARTPAGE_BUTTON_PIN_HOVER	= -431,
        VSCOLOR_STARTPAGE_BUTTON_UNPINNED	= -432,
        VSCOLOR_STARTPAGE_BUTTONTEXT	= -433,
        VSCOLOR_STARTPAGE_BUTTONTEXT_HOVER	= -434,
        VSCOLOR_STARTPAGE_SELECTEDITEM_BACKGROUND	= -435,
        VSCOLOR_STARTPAGE_SELECTEDITEM_STROKE	= -436,
        VSCOLOR_STARTPAGE_SEPARATOR	= -437,
        VSCOLOR_STARTPAGE_TAB_BACKGROUND_BEGIN	= -438,
        VSCOLOR_STARTPAGE_TAB_BACKGROUND_END	= -439,
        VSCOLOR_STARTPAGE_TAB_MOUSEOVER_BACKGROUND_BEGIN	= -440,
        VSCOLOR_STARTPAGE_TAB_MOUSEOVER_BACKGROUND_END	= -441,
        VSCOLOR_STARTPAGE_TEXT_BODY	= -442,
        VSCOLOR_STARTPAGE_TEXT_BODY_SELECTED	= -443,
        VSCOLOR_STARTPAGE_TEXT_BODY_UNSELECTED	= -444,
        VSCOLOR_STARTPAGE_TEXT_CONTROL_LINK_SELECTED	= -445,
        VSCOLOR_STARTPAGE_TEXT_CONTROL_LINK_SELECTED_HOVER	= -446,
        VSCOLOR_STARTPAGE_TEXT_DATE	= -447,
        VSCOLOR_STARTPAGE_TEXT_HEADING	= -448,
        VSCOLOR_STARTPAGE_TEXT_HEADING_MOUSEOVER	= -449,
        VSCOLOR_STARTPAGE_TEXT_HEADING_SELECTED	= -450,
        VSCOLOR_STARTPAGE_TEXT_SUBHEADING	= -451,
        VSCOLOR_STARTPAGE_TEXT_SUBHEADING_MOUSEOVER	= -452,
        VSCOLOR_STARTPAGE_TEXT_SUBHEADING_SELECTED	= -453,
        VSCOLOR_STARTPAGE_UNSELECTEDITEM_BACKGROUND_BEGIN	= -454,
        VSCOLOR_STARTPAGE_UNSELECTEDITEM_BACKGROUND_END	= -455,
        VSCOLOR_STARTPAGE_UNSELECTEDITEM_STROKE	= -456,
        VSCOLOR_STATUSBAR_TEXT	= -457,
        VSCOLOR_TITLEBAR_ACTIVE_GRADIENTMIDDLE1	= -458,
        VSCOLOR_TITLEBAR_ACTIVE_GRADIENTMIDDLE2	= -459,
        VSCOLOR_TOOLBOX_SELECTED_HEADING_BEGIN	= -460,
        VSCOLOR_TOOLBOX_SELECTED_HEADING_MIDDLE1	= -461,
        VSCOLOR_TOOLBOX_SELECTED_HEADING_MIDDLE2	= -462,
        VSCOLOR_TOOLBOX_SELECTED_HEADING_END	= -463,
        VSCOLOR_TOOLWINDOW_BUTTON_INACTIVE_GLYPH	= -464,
        VSCOLOR_TOOLWINDOW_BUTTON_INACTIVE	= -465,
        VSCOLOR_TOOLWINDOW_BUTTON_INACTIVE_BORDER	= -466,
        VSCOLOR_TOOLWINDOW_BUTTON_HOVER_INACTIVE_GLYPH	= -467,
        VSCOLOR_TOOLWINDOW_BUTTON_DOWN_INACTIVE_GLYPH	= -468,
        VSCOLOR_TOOLWINDOW_BUTTON_ACTIVE_GLYPH	= -469,
        VSCOLOR_TOOLWINDOW_BUTTON_HOVER_ACTIVE_GLYPH	= -470,
        VSCOLOR_TOOLWINDOW_BUTTON_DOWN_ACTIVE_GLYPH	= -471,
        VSCOLOR_TOOLWINDOW_CONTENTTAB_GRADIENTBEGIN	= -472,
        VSCOLOR_TOOLWINDOW_CONTENTTAB_GRADIENTEND	= -473,
        VSCOLOR_TOOLWINDOW_FLOATING_FRAME	= -474,
        VSCOLOR_TOOLWINDOW_TAB_MOUSEOVER_BACKGROUND_BEGIN	= -475,
        VSCOLOR_TOOLWINDOW_TAB_MOUSEOVER_BACKGROUND_END	= -476,
        VSCOLOR_TOOLWINDOW_TAB_MOUSEOVER_BORDER	= -477,
        VSCOLOR_TOOLWINDOW_TAB_MOUSEOVER_TEXT	= -478,
        VSCOLOR_VIZSURFACE_BROWN_DARK	= -479,
        VSCOLOR_VIZSURFACE_BROWN_LIGHT	= -480,
        VSCOLOR_VIZSURFACE_BROWN_MEDIUM	= -481,
        VSCOLOR_VIZSURFACE_DARKGOLD_DARK	= -482,
        VSCOLOR_VIZSURFACE_DARKGOLD_LIGHT	= -483,
        VSCOLOR_VIZSURFACE_DARKGOLD_MEDIUM	= -484,
        VSCOLOR_VIZSURFACE_GOLD_DARK	= -485,
        VSCOLOR_VIZSURFACE_GOLD_LIGHT	= -486,
        VSCOLOR_VIZSURFACE_GOLD_MEDIUM	= -487,
        VSCOLOR_VIZSURFACE_GREEN_DARK	= -488,
        VSCOLOR_VIZSURFACE_GREEN_LIGHT	= -489,
        VSCOLOR_VIZSURFACE_GREEN_MEDIUM	= -490,
        VSCOLOR_VIZSURFACE_PLUM_DARK	= -491,
        VSCOLOR_VIZSURFACE_PLUM_LIGHT	= -492,
        VSCOLOR_VIZSURFACE_PLUM_MEDIUM	= -493,
        VSCOLOR_VIZSURFACE_RED_DARK	= -494,
        VSCOLOR_VIZSURFACE_RED_LIGHT	= -495,
        VSCOLOR_VIZSURFACE_RED_MEDIUM	= -496,
        VSCOLOR_VIZSURFACE_SOFTBLUE_DARK	= -497,
        VSCOLOR_VIZSURFACE_SOFTBLUE_LIGHT	= -498,
        VSCOLOR_VIZSURFACE_SOFTBLUE_MEDIUM	= -499,
        VSCOLOR_VIZSURFACE_STEELBLUE_DARK	= -500,
        VSCOLOR_VIZSURFACE_STEELBLUE_LIGHT	= -501,
        VSCOLOR_VIZSURFACE_STEELBLUE_MEDIUM	= -502,
        VSCOLOR_VIZSURFACE_STRONGBLUE_DARK	= -503,
        VSCOLOR_VIZSURFACE_STRONGBLUE_LIGHT	= -504,
        VSCOLOR_VIZSURFACE_STRONGBLUE_MEDIUM	= -505,
        VSCOLOR_LASTEX3	= -505
    } 	__VSSYSCOLOREX3;
%ProgramFiles%\Microsoft Visual Studio\2022\Professional\VSSDK\VisualStudioIntegration\Common\Inc\vsshell100.h(1619,0)
57 0.052660875 WDFFUNCENUM Enum
typedef enum _WDFFUNCENUM {

    WdfChildListCreateTableIndex = 0,
    WdfChildListGetDeviceTableIndex = 1,
    WdfChildListRetrievePdoTableIndex = 2,
    WdfChildListRetrieveAddressDescriptionTableIndex = 3,
    WdfChildListBeginScanTableIndex = 4,
    WdfChildListEndScanTableIndex = 5,
    WdfChildListBeginIterationTableIndex = 6,
    WdfChildListRetrieveNextDeviceTableIndex = 7,
    WdfChildListEndIterationTableIndex = 8,
    WdfChildListAddOrUpdateChildDescriptionAsPresentTableIndex = 9,
    WdfChildListUpdateChildDescriptionAsMissingTableIndex = 10,
    WdfChildListUpdateAllChildDescriptionsAsPresentTableIndex = 11,
    WdfChildListRequestChildEjectTableIndex = 12,
    WdfCollectionCreateTableIndex = 13,
    WdfCollectionGetCountTableIndex = 14,
    WdfCollectionAddTableIndex = 15,
    WdfCollectionRemoveTableIndex = 16,
    WdfCollectionRemoveItemTableIndex = 17,
    WdfCollectionGetItemTableIndex = 18,
    WdfCollectionGetFirstItemTableIndex = 19,
    WdfCollectionGetLastItemTableIndex = 20,
    WdfCommonBufferCreateTableIndex = 21,
    WdfCommonBufferGetAlignedVirtualAddressTableIndex = 22,
    WdfCommonBufferGetAlignedLogicalAddressTableIndex = 23,
    WdfCommonBufferGetLengthTableIndex = 24,
    WdfControlDeviceInitAllocateTableIndex = 25,
    WdfControlDeviceInitSetShutdownNotificationTableIndex = 26,
    WdfControlFinishInitializingTableIndex = 27,
    WdfDeviceGetDeviceStateTableIndex = 28,
    WdfDeviceSetDeviceStateTableIndex = 29,
    WdfWdmDeviceGetWdfDeviceHandleTableIndex = 30,
    WdfDeviceWdmGetDeviceObjectTableIndex = 31,
    WdfDeviceWdmGetAttachedDeviceTableIndex = 32,
    WdfDeviceWdmGetPhysicalDeviceTableIndex = 33,
    WdfDeviceWdmDispatchPreprocessedIrpTableIndex = 34,
    WdfDeviceAddDependentUsageDeviceObjectTableIndex = 35,
    WdfDeviceAddRemovalRelationsPhysicalDeviceTableIndex = 36,
    WdfDeviceRemoveRemovalRelationsPhysicalDeviceTableIndex = 37,
    WdfDeviceClearRemovalRelationsDevicesTableIndex = 38,
    WdfDeviceGetDriverTableIndex = 39,
    WdfDeviceRetrieveDeviceNameTableIndex = 40,
    WdfDeviceAssignMofResourceNameTableIndex = 41,
    WdfDeviceGetIoTargetTableIndex = 42,
    WdfDeviceGetDevicePnpStateTableIndex = 43,
    WdfDeviceGetDevicePowerStateTableIndex = 44,
    WdfDeviceGetDevicePowerPolicyStateTableIndex = 45,
    WdfDeviceAssignS0IdleSettingsTableIndex = 46,
    WdfDeviceAssignSxWakeSettingsTableIndex = 47,
    WdfDeviceOpenRegistryKeyTableIndex = 48,
    WdfDeviceSetSpecialFileSupportTableIndex = 49,
    WdfDeviceSetCharacteristicsTableIndex = 50,
    WdfDeviceGetCharacteristicsTableIndex = 51,
    WdfDeviceGetAlignmentRequirementTableIndex = 52,
    WdfDeviceSetAlignmentRequirementTableIndex = 53,
    WdfDeviceInitFreeTableIndex = 54,
    WdfDeviceInitSetPnpPowerEventCallbacksTableIndex = 55,
    WdfDeviceInitSetPowerPolicyEventCallbacksTableIndex = 56,
    WdfDeviceInitSetPowerPolicyOwnershipTableIndex = 57,
    WdfDeviceInitRegisterPnpStateChangeCallbackTableIndex = 58,
    WdfDeviceInitRegisterPowerStateChangeCallbackTableIndex = 59,
    WdfDeviceInitRegisterPowerPolicyStateChangeCallbackTableIndex = 60,
    WdfDeviceInitSetIoTypeTableIndex = 61,
    WdfDeviceInitSetExclusiveTableIndex = 62,
    WdfDeviceInitSetPowerNotPageableTableIndex = 63,
    WdfDeviceInitSetPowerPageableTableIndex = 64,
    WdfDeviceInitSetPowerInrushTableIndex = 65,
    WdfDeviceInitSetDeviceTypeTableIndex = 66,
    WdfDeviceInitAssignNameTableIndex = 67,
    WdfDeviceInitAssignSDDLStringTableIndex = 68,
    WdfDeviceInitSetDeviceClassTableIndex = 69,
    WdfDeviceInitSetCharacteristicsTableIndex = 70,
    WdfDeviceInitSetFileObjectConfigTableIndex = 71,
    WdfDeviceInitSetRequestAttributesTableIndex = 72,
    WdfDeviceInitAssignWdmIrpPreprocessCallbackTableIndex = 73,
    WdfDeviceInitSetIoInCallerContextCallbackTableIndex = 74,
    WdfDeviceCreateTableIndex = 75,
    WdfDeviceSetStaticStopRemoveTableIndex = 76,
    WdfDeviceCreateDeviceInterfaceTableIndex = 77,
    WdfDeviceSetDeviceInterfaceStateTableIndex = 78,
    WdfDeviceRetrieveDeviceInterfaceStringTableIndex = 79,
    WdfDeviceCreateSymbolicLinkTableIndex = 80,
    WdfDeviceQueryPropertyTableIndex = 81,
    WdfDeviceAllocAndQueryPropertyTableIndex = 82,
    WdfDeviceSetPnpCapabilitiesTableIndex = 83,
    WdfDeviceSetPowerCapabilitiesTableIndex = 84,
    WdfDeviceSetBusInformationForChildrenTableIndex = 85,
    WdfDeviceIndicateWakeStatusTableIndex = 86,
    WdfDeviceSetFailedTableIndex = 87,
    WdfDeviceStopIdleTableIndex = 88,
    WdfDeviceResumeIdleTableIndex = 89,
    WdfDeviceGetFileObjectTableIndex = 90,
    WdfDeviceEnqueueRequestTableIndex = 91,
    WdfDeviceGetDefaultQueueTableIndex = 92,
    WdfDeviceConfigureRequestDispatchingTableIndex = 93,
    WdfDmaEnablerCreateTableIndex = 94,
    WdfDmaEnablerGetMaximumLengthTableIndex = 95,
    WdfDmaEnablerGetMaximumScatterGatherElementsTableIndex = 96,
    WdfDmaEnablerSetMaximumScatterGatherElementsTableIndex = 97,
    WdfDmaTransactionCreateTableIndex = 98,
    WdfDmaTransactionInitializeTableIndex = 99,
    WdfDmaTransactionInitializeUsingRequestTableIndex = 100,
    WdfDmaTransactionExecuteTableIndex = 101,
    WdfDmaTransactionReleaseTableIndex = 102,
    WdfDmaTransactionDmaCompletedTableIndex = 103,
    WdfDmaTransactionDmaCompletedWithLengthTableIndex = 104,
    WdfDmaTransactionDmaCompletedFinalTableIndex = 105,
    WdfDmaTransactionGetBytesTransferredTableIndex = 106,
    WdfDmaTransactionSetMaximumLengthTableIndex = 107,
    WdfDmaTransactionGetRequestTableIndex = 108,
    WdfDmaTransactionGetCurrentDmaTransferLengthTableIndex = 109,
    WdfDmaTransactionGetDeviceTableIndex = 110,
    WdfDpcCreateTableIndex = 111,
    WdfDpcEnqueueTableIndex = 112,
    WdfDpcCancelTableIndex = 113,
    WdfDpcGetParentObjectTableIndex = 114,
    WdfDpcWdmGetDpcTableIndex = 115,
    WdfDriverCreateTableIndex = 116,
    WdfDriverGetRegistryPathTableIndex = 117,
    WdfDriverWdmGetDriverObjectTableIndex = 118,
    WdfDriverOpenParametersRegistryKeyTableIndex = 119,
    WdfWdmDriverGetWdfDriverHandleTableIndex = 120,
    WdfDriverRegisterTraceInfoTableIndex = 121,
    WdfDriverRetrieveVersionStringTableIndex = 122,
    WdfDriverIsVersionAvailableTableIndex = 123,
    WdfFdoInitWdmGetPhysicalDeviceTableIndex = 124,
    WdfFdoInitOpenRegistryKeyTableIndex = 125,
    WdfFdoInitQueryPropertyTableIndex = 126,
    WdfFdoInitAllocAndQueryPropertyTableIndex = 127,
    WdfFdoInitSetEventCallbacksTableIndex = 128,
    WdfFdoInitSetFilterTableIndex = 129,
    WdfFdoInitSetDefaultChildListConfigTableIndex = 130,
    WdfFdoQueryForInterfaceTableIndex = 131,
    WdfFdoGetDefaultChildListTableIndex = 132,
    WdfFdoAddStaticChildTableIndex = 133,
    WdfFdoLockStaticChildListForIterationTableIndex = 134,
    WdfFdoRetrieveNextStaticChildTableIndex = 135,
    WdfFdoUnlockStaticChildListFromIterationTableIndex = 136,
    WdfFileObjectGetFileNameTableIndex = 137,
    WdfFileObjectGetFlagsTableIndex = 138,
    WdfFileObjectGetDeviceTableIndex = 139,
    WdfFileObjectWdmGetFileObjectTableIndex = 140,
    WdfInterruptCreateTableIndex = 141,
    WdfInterruptQueueDpcForIsrTableIndex = 142,
    WdfInterruptSynchronizeTableIndex = 143,
    WdfInterruptAcquireLockTableIndex = 144,
    WdfInterruptReleaseLockTableIndex = 145,
    WdfInterruptEnableTableIndex = 146,
    WdfInterruptDisableTableIndex = 147,
    WdfInterruptWdmGetInterruptTableIndex = 148,
    WdfInterruptGetInfoTableIndex = 149,
    WdfInterruptSetPolicyTableIndex = 150,
    WdfInterruptGetDeviceTableIndex = 151,
    WdfIoQueueCreateTableIndex = 152,
    WdfIoQueueGetStateTableIndex = 153,
    WdfIoQueueStartTableIndex = 154,
    WdfIoQueueStopTableIndex = 155,
    WdfIoQueueStopSynchronouslyTableIndex = 156,
    WdfIoQueueGetDeviceTableIndex = 157,
    WdfIoQueueRetrieveNextRequestTableIndex = 158,
    WdfIoQueueRetrieveRequestByFileObjectTableIndex = 159,
    WdfIoQueueFindRequestTableIndex = 160,
    WdfIoQueueRetrieveFoundRequestTableIndex = 161,
    WdfIoQueueDrainSynchronouslyTableIndex = 162,
    WdfIoQueueDrainTableIndex = 163,
    WdfIoQueuePurgeSynchronouslyTableIndex = 164,
    WdfIoQueuePurgeTableIndex = 165,
    WdfIoQueueReadyNotifyTableIndex = 166,
    WdfIoTargetCreateTableIndex = 167,
    WdfIoTargetOpenTableIndex = 168,
    WdfIoTargetCloseForQueryRemoveTableIndex = 169,
    WdfIoTargetCloseTableIndex = 170,
    WdfIoTargetStartTableIndex = 171,
    WdfIoTargetStopTableIndex = 172,
    WdfIoTargetGetStateTableIndex = 173,
    WdfIoTargetGetDeviceTableIndex = 174,
    WdfIoTargetQueryTargetPropertyTableIndex = 175,
    WdfIoTargetAllocAndQueryTargetPropertyTableIndex = 176,
    WdfIoTargetQueryForInterfaceTableIndex = 177,
    WdfIoTargetWdmGetTargetDeviceObjectTableIndex = 178,
    WdfIoTargetWdmGetTargetPhysicalDeviceTableIndex = 179,
    WdfIoTargetWdmGetTargetFileObjectTableIndex = 180,
    WdfIoTargetWdmGetTargetFileHandleTableIndex = 181,
    WdfIoTargetSendReadSynchronouslyTableIndex = 182,
    WdfIoTargetFormatRequestForReadTableIndex = 183,
    WdfIoTargetSendWriteSynchronouslyTableIndex = 184,
    WdfIoTargetFormatRequestForWriteTableIndex = 185,
    WdfIoTargetSendIoctlSynchronouslyTableIndex = 186,
    WdfIoTargetFormatRequestForIoctlTableIndex = 187,
    WdfIoTargetSendInternalIoctlSynchronouslyTableIndex = 188,
    WdfIoTargetFormatRequestForInternalIoctlTableIndex = 189,
    WdfIoTargetSendInternalIoctlOthersSynchronouslyTableIndex = 190,
    WdfIoTargetFormatRequestForInternalIoctlOthersTableIndex = 191,
    WdfMemoryCreateTableIndex = 192,
    WdfMemoryCreatePreallocatedTableIndex = 193,
    WdfMemoryGetBufferTableIndex = 194,
    WdfMemoryAssignBufferTableIndex = 195,
    WdfMemoryCopyToBufferTableIndex = 196,
    WdfMemoryCopyFromBufferTableIndex = 197,
    WdfLookasideListCreateTableIndex = 198,
    WdfMemoryCreateFromLookasideTableIndex = 199,
    WdfDeviceMiniportCreateTableIndex = 200,
    WdfDriverMiniportUnloadTableIndex = 201,
    WdfObjectGetTypedContextWorkerTableIndex = 202,
    WdfObjectAllocateContextTableIndex = 203,
    WdfObjectContextGetObjectTableIndex = 204,
    WdfObjectReferenceActualTableIndex = 205,
    WdfObjectDereferenceActualTableIndex = 206,
    WdfObjectCreateTableIndex = 207,
    WdfObjectDeleteTableIndex = 208,
    WdfObjectQueryTableIndex = 209,
    WdfPdoInitAllocateTableIndex = 210,
    WdfPdoInitSetEventCallbacksTableIndex = 211,
    WdfPdoInitAssignDeviceIDTableIndex = 212,
    WdfPdoInitAssignInstanceIDTableIndex = 213,
    WdfPdoInitAddHardwareIDTableIndex = 214,
    WdfPdoInitAddCompatibleIDTableIndex = 215,
    WdfPdoInitAddDeviceTextTableIndex = 216,
    WdfPdoInitSetDefaultLocaleTableIndex = 217,
    WdfPdoInitAssignRawDeviceTableIndex = 218,
    WdfPdoMarkMissingTableIndex = 219,
    WdfPdoRequestEjectTableIndex = 220,
    WdfPdoGetParentTableIndex = 221,
    WdfPdoRetrieveIdentificationDescriptionTableIndex = 222,
    WdfPdoRetrieveAddressDescriptionTableIndex = 223,
    WdfPdoUpdateAddressDescriptionTableIndex = 224,
    WdfPdoAddEjectionRelationsPhysicalDeviceTableIndex = 225,
    WdfPdoRemoveEjectionRelationsPhysicalDeviceTableIndex = 226,
    WdfPdoClearEjectionRelationsDevicesTableIndex = 227,
    WdfDeviceAddQueryInterfaceTableIndex = 228,
    WdfRegistryOpenKeyTableIndex = 229,
    WdfRegistryCreateKeyTableIndex = 230,
    WdfRegistryCloseTableIndex = 231,
    WdfRegistryWdmGetHandleTableIndex = 232,
    WdfRegistryRemoveKeyTableIndex = 233,
    WdfRegistryRemoveValueTableIndex = 234,
    WdfRegistryQueryValueTableIndex = 235,
    WdfRegistryQueryMemoryTableIndex = 236,
    WdfRegistryQueryMultiStringTableIndex = 237,
    WdfRegistryQueryUnicodeStringTableIndex = 238,
    WdfRegistryQueryStringTableIndex = 239,
    WdfRegistryQueryULongTableIndex = 240,
    WdfRegistryAssignValueTableIndex = 241,
    WdfRegistryAssignMemoryTableIndex = 242,
    WdfRegistryAssignMultiStringTableIndex = 243,
    WdfRegistryAssignUnicodeStringTableIndex = 244,
    WdfRegistryAssignStringTableIndex = 245,
    WdfRegistryAssignULongTableIndex = 246,
    WdfRequestCreateTableIndex = 247,
    WdfRequestCreateFromIrpTableIndex = 248,
    WdfRequestReuseTableIndex = 249,
    WdfRequestChangeTargetTableIndex = 250,
    WdfRequestFormatRequestUsingCurrentTypeTableIndex = 251,
    WdfRequestWdmFormatUsingStackLocationTableIndex = 252,
    WdfRequestSendTableIndex = 253,
    WdfRequestGetStatusTableIndex = 254,
    WdfRequestMarkCancelableTableIndex = 255,
    WdfRequestUnmarkCancelableTableIndex = 256,
    WdfRequestIsCanceledTableIndex = 257,
    WdfRequestCancelSentRequestTableIndex = 258,
    WdfRequestIsFrom32BitProcessTableIndex = 259,
    WdfRequestSetCompletionRoutineTableIndex = 260,
    WdfRequestGetCompletionParamsTableIndex = 261,
    WdfRequestAllocateTimerTableIndex = 262,
    WdfRequestCompleteTableIndex = 263,
    WdfRequestCompleteWithPriorityBoostTableIndex = 264,
    WdfRequestCompleteWithInformationTableIndex = 265,
    WdfRequestGetParametersTableIndex = 266,
    WdfRequestRetrieveInputMemoryTableIndex = 267,
    WdfRequestRetrieveOutputMemoryTableIndex = 268,
    WdfRequestRetrieveInputBufferTableIndex = 269,
    WdfRequestRetrieveOutputBufferTableIndex = 270,
    WdfRequestRetrieveInputWdmMdlTableIndex = 271,
    WdfRequestRetrieveOutputWdmMdlTableIndex = 272,
    WdfRequestRetrieveUnsafeUserInputBufferTableIndex = 273,
    WdfRequestRetrieveUnsafeUserOutputBufferTableIndex = 274,
    WdfRequestSetInformationTableIndex = 275,
    WdfRequestGetInformationTableIndex = 276,
    WdfRequestGetFileObjectTableIndex = 277,
    WdfRequestProbeAndLockUserBufferForReadTableIndex = 278,
    WdfRequestProbeAndLockUserBufferForWriteTableIndex = 279,
    WdfRequestGetRequestorModeTableIndex = 280,
    WdfRequestForwardToIoQueueTableIndex = 281,
    WdfRequestGetIoQueueTableIndex = 282,
    WdfRequestRequeueTableIndex = 283,
    WdfRequestStopAcknowledgeTableIndex = 284,
    WdfRequestWdmGetIrpTableIndex = 285,
    WdfIoResourceRequirementsListSetSlotNumberTableIndex = 286,
    WdfIoResourceRequirementsListSetInterfaceTypeTableIndex = 287,
    WdfIoResourceRequirementsListAppendIoResListTableIndex = 288,
    WdfIoResourceRequirementsListInsertIoResListTableIndex = 289,
    WdfIoResourceRequirementsListGetCountTableIndex = 290,
    WdfIoResourceRequirementsListGetIoResListTableIndex = 291,
    WdfIoResourceRequirementsListRemoveTableIndex = 292,
    WdfIoResourceRequirementsListRemoveByIoResListTableIndex = 293,
    WdfIoResourceListCreateTableIndex = 294,
    WdfIoResourceListAppendDescriptorTableIndex = 295,
    WdfIoResourceListInsertDescriptorTableIndex = 296,
    WdfIoResourceListUpdateDescriptorTableIndex = 297,
    WdfIoResourceListGetCountTableIndex = 298,
    WdfIoResourceListGetDescriptorTableIndex = 299,
    WdfIoResourceListRemoveTableIndex = 300,
    WdfIoResourceListRemoveByDescriptorTableIndex = 301,
    WdfCmResourceListAppendDescriptorTableIndex = 302,
    WdfCmResourceListInsertDescriptorTableIndex = 303,
    WdfCmResourceListGetCountTableIndex = 304,
    WdfCmResourceListGetDescriptorTableIndex = 305,
    WdfCmResourceListRemoveTableIndex = 306,
    WdfCmResourceListRemoveByDescriptorTableIndex = 307,
    WdfStringCreateTableIndex = 308,
    WdfStringGetUnicodeStringTableIndex = 309,
    WdfObjectAcquireLockTableIndex = 310,
    WdfObjectReleaseLockTableIndex = 311,
    WdfWaitLockCreateTableIndex = 312,
    WdfWaitLockAcquireTableIndex = 313,
    WdfWaitLockReleaseTableIndex = 314,
    WdfSpinLockCreateTableIndex = 315,
    WdfSpinLockAcquireTableIndex = 316,
    WdfSpinLockReleaseTableIndex = 317,
    WdfTimerCreateTableIndex = 318,
    WdfTimerStartTableIndex = 319,
    WdfTimerStopTableIndex = 320,
    WdfTimerGetParentObjectTableIndex = 321,
    WdfUsbTargetDeviceCreateTableIndex = 322,
    WdfUsbTargetDeviceRetrieveInformationTableIndex = 323,
    WdfUsbTargetDeviceGetDeviceDescriptorTableIndex = 324,
    WdfUsbTargetDeviceRetrieveConfigDescriptorTableIndex = 325,
    WdfUsbTargetDeviceQueryStringTableIndex = 326,
    WdfUsbTargetDeviceAllocAndQueryStringTableIndex = 327,
    WdfUsbTargetDeviceFormatRequestForStringTableIndex = 328,
    WdfUsbTargetDeviceGetNumInterfacesTableIndex = 329,
    WdfUsbTargetDeviceSelectConfigTableIndex = 330,
    WdfUsbTargetDeviceWdmGetConfigurationHandleTableIndex = 331,
    WdfUsbTargetDeviceRetrieveCurrentFrameNumberTableIndex = 332,
    WdfUsbTargetDeviceSendControlTransferSynchronouslyTableIndex = 333,
    WdfUsbTargetDeviceFormatRequestForControlTransferTableIndex = 334,
    WdfUsbTargetDeviceIsConnectedSynchronousTableIndex = 335,
    WdfUsbTargetDeviceResetPortSynchronouslyTableIndex = 336,
    WdfUsbTargetDeviceCyclePortSynchronouslyTableIndex = 337,
    WdfUsbTargetDeviceFormatRequestForCyclePortTableIndex = 338,
    WdfUsbTargetDeviceSendUrbSynchronouslyTableIndex = 339,
    WdfUsbTargetDeviceFormatRequestForUrbTableIndex = 340,
    WdfUsbTargetPipeGetInformationTableIndex = 341,
    WdfUsbTargetPipeIsInEndpointTableIndex = 342,
    WdfUsbTargetPipeIsOutEndpointTableIndex = 343,
    WdfUsbTargetPipeGetTypeTableIndex = 344,
    WdfUsbTargetPipeSetNoMaximumPacketSizeCheckTableIndex = 345,
    WdfUsbTargetPipeWriteSynchronouslyTableIndex = 346,
    WdfUsbTargetPipeFormatRequestForWriteTableIndex = 347,
    WdfUsbTargetPipeReadSynchronouslyTableIndex = 348,
    WdfUsbTargetPipeFormatRequestForReadTableIndex = 349,
    WdfUsbTargetPipeConfigContinuousReaderTableIndex = 350,
    WdfUsbTargetPipeAbortSynchronouslyTableIndex = 351,
    WdfUsbTargetPipeFormatRequestForAbortTableIndex = 352,
    WdfUsbTargetPipeResetSynchronouslyTableIndex = 353,
    WdfUsbTargetPipeFormatRequestForResetTableIndex = 354,
    WdfUsbTargetPipeSendUrbSynchronouslyTableIndex = 355,
    WdfUsbTargetPipeFormatRequestForUrbTableIndex = 356,
    WdfUsbInterfaceGetInterfaceNumberTableIndex = 357,
    WdfUsbInterfaceGetNumEndpointsTableIndex = 358,
    WdfUsbInterfaceGetDescriptorTableIndex = 359,
    WdfUsbInterfaceSelectSettingTableIndex = 360,
    WdfUsbInterfaceGetEndpointInformationTableIndex = 361,
    WdfUsbTargetDeviceGetInterfaceTableIndex = 362,
    WdfUsbInterfaceGetConfiguredSettingIndexTableIndex = 363,
    WdfUsbInterfaceGetNumConfiguredPipesTableIndex = 364,
    WdfUsbInterfaceGetConfiguredPipeTableIndex = 365,
    WdfUsbTargetPipeWdmGetPipeHandleTableIndex = 366,
    WdfVerifierDbgBreakPointTableIndex = 367,
    WdfVerifierKeBugCheckTableIndex = 368,
    WdfWmiProviderCreateTableIndex = 369,
    WdfWmiProviderGetDeviceTableIndex = 370,
    WdfWmiProviderIsEnabledTableIndex = 371,
    WdfWmiProviderGetTracingHandleTableIndex = 372,
    WdfWmiInstanceCreateTableIndex = 373,
    WdfWmiInstanceRegisterTableIndex = 374,
    WdfWmiInstanceDeregisterTableIndex = 375,
    WdfWmiInstanceGetDeviceTableIndex = 376,
    WdfWmiInstanceGetProviderTableIndex = 377,
    WdfWmiInstanceFireEventTableIndex = 378,
    WdfWorkItemCreateTableIndex = 379,
    WdfWorkItemEnqueueTableIndex = 380,
    WdfWorkItemGetParentObjectTableIndex = 381,
    WdfWorkItemFlushTableIndex = 382,
    WdfCommonBufferCreateWithConfigTableIndex = 383,
    WdfDmaEnablerGetFragmentLengthTableIndex = 384,
    WdfDmaEnablerWdmGetDmaAdapterTableIndex = 385,
    WdfUsbInterfaceGetNumSettingsTableIndex = 386,
    WdfDeviceRemoveDependentUsageDeviceObjectTableIndex = 387,
    WdfDeviceGetSystemPowerActionTableIndex = 388,
    WdfInterruptSetExtendedPolicyTableIndex = 389,
    WdfIoQueueAssignForwardProgressPolicyTableIndex = 390,
    WdfPdoInitAssignContainerIDTableIndex = 391,
    WdfPdoInitAllowForwardingRequestToParentTableIndex = 392,
    WdfRequestMarkCancelableExTableIndex = 393,
    WdfRequestIsReservedTableIndex = 394,
    WdfRequestForwardToParentDeviceIoQueueTableIndex = 395,
    WdfCxDeviceInitAllocateTableIndex = 396,
    WdfCxDeviceInitAssignWdmIrpPreprocessCallbackTableIndex = 397,
    WdfCxDeviceInitSetIoInCallerContextCallbackTableIndex = 398,
    WdfCxDeviceInitSetRequestAttributesTableIndex = 399,
    WdfCxDeviceInitSetFileObjectConfigTableIndex = 400,
    WdfDeviceWdmDispatchIrpTableIndex = 401,
    WdfDeviceWdmDispatchIrpToIoQueueTableIndex = 402,
    WdfDeviceInitSetRemoveLockOptionsTableIndex = 403,
    WdfDeviceConfigureWdmIrpDispatchCallbackTableIndex = 404,
    WdfDmaEnablerConfigureSystemProfileTableIndex = 405,
    WdfDmaTransactionInitializeUsingOffsetTableIndex = 406,
    WdfDmaTransactionGetTransferInfoTableIndex = 407,
    WdfDmaTransactionSetChannelConfigurationCallbackTableIndex = 408,
    WdfDmaTransactionSetTransferCompleteCallbackTableIndex = 409,
    WdfDmaTransactionSetImmediateExecutionTableIndex = 410,
    WdfDmaTransactionAllocateResourcesTableIndex = 411,
    WdfDmaTransactionSetDeviceAddressOffsetTableIndex = 412,
    WdfDmaTransactionFreeResourcesTableIndex = 413,
    WdfDmaTransactionCancelTableIndex = 414,
    WdfDmaTransactionWdmGetTransferContextTableIndex = 415,
    WdfInterruptQueueWorkItemForIsrTableIndex = 416,
    WdfInterruptTryToAcquireLockTableIndex = 417,
    WdfIoQueueStopAndPurgeTableIndex = 418,
    WdfIoQueueStopAndPurgeSynchronouslyTableIndex = 419,
    WdfIoTargetPurgeTableIndex = 420,
    WdfUsbTargetDeviceCreateWithParametersTableIndex = 421,
    WdfUsbTargetDeviceQueryUsbCapabilityTableIndex = 422,
    WdfUsbTargetDeviceCreateUrbTableIndex = 423,
    WdfUsbTargetDeviceCreateIsochUrbTableIndex = 424,
    WdfDeviceWdmAssignPowerFrameworkSettingsTableIndex = 425,
    WdfDmaTransactionStopSystemTransferTableIndex = 426,
    WdfCxVerifierKeBugCheckTableIndex = 427,
    WdfInterruptReportActiveTableIndex = 428,
    WdfInterruptReportInactiveTableIndex = 429,
    WdfDeviceInitSetReleaseHardwareOrderOnFailureTableIndex = 430,
    WdfGetTriageInfoTableIndex = 431,
    WdfFunctionTableNumEntries = 432,
} WDFFUNCENUM;
%ProgramFiles(x86)%\Windows Kits\10\Include\wdf\kmdf\1.11\wdffuncenum.h(23,0)
58 0.052660875 WDFFUNCENUM Enum
typedef enum _WDFFUNCENUM {

    WdfChildListCreateTableIndex = 0,
    WdfChildListGetDeviceTableIndex = 1,
    WdfChildListRetrievePdoTableIndex = 2,
    WdfChildListRetrieveAddressDescriptionTableIndex = 3,
    WdfChildListBeginScanTableIndex = 4,
    WdfChildListEndScanTableIndex = 5,
    WdfChildListBeginIterationTableIndex = 6,
    WdfChildListRetrieveNextDeviceTableIndex = 7,
    WdfChildListEndIterationTableIndex = 8,
    WdfChildListAddOrUpdateChildDescriptionAsPresentTableIndex = 9,
    WdfChildListUpdateChildDescriptionAsMissingTableIndex = 10,
    WdfChildListUpdateAllChildDescriptionsAsPresentTableIndex = 11,
    WdfChildListRequestChildEjectTableIndex = 12,
    WdfCollectionCreateTableIndex = 13,
    WdfCollectionGetCountTableIndex = 14,
    WdfCollectionAddTableIndex = 15,
    WdfCollectionRemoveTableIndex = 16,
    WdfCollectionRemoveItemTableIndex = 17,
    WdfCollectionGetItemTableIndex = 18,
    WdfCollectionGetFirstItemTableIndex = 19,
    WdfCollectionGetLastItemTableIndex = 20,
    WdfCommonBufferCreateTableIndex = 21,
    WdfCommonBufferGetAlignedVirtualAddressTableIndex = 22,
    WdfCommonBufferGetAlignedLogicalAddressTableIndex = 23,
    WdfCommonBufferGetLengthTableIndex = 24,
    WdfControlDeviceInitAllocateTableIndex = 25,
    WdfControlDeviceInitSetShutdownNotificationTableIndex = 26,
    WdfControlFinishInitializingTableIndex = 27,
    WdfDeviceGetDeviceStateTableIndex = 28,
    WdfDeviceSetDeviceStateTableIndex = 29,
    WdfWdmDeviceGetWdfDeviceHandleTableIndex = 30,
    WdfDeviceWdmGetDeviceObjectTableIndex = 31,
    WdfDeviceWdmGetAttachedDeviceTableIndex = 32,
    WdfDeviceWdmGetPhysicalDeviceTableIndex = 33,
    WdfDeviceWdmDispatchPreprocessedIrpTableIndex = 34,
    WdfDeviceAddDependentUsageDeviceObjectTableIndex = 35,
    WdfDeviceAddRemovalRelationsPhysicalDeviceTableIndex = 36,
    WdfDeviceRemoveRemovalRelationsPhysicalDeviceTableIndex = 37,
    WdfDeviceClearRemovalRelationsDevicesTableIndex = 38,
    WdfDeviceGetDriverTableIndex = 39,
    WdfDeviceRetrieveDeviceNameTableIndex = 40,
    WdfDeviceAssignMofResourceNameTableIndex = 41,
    WdfDeviceGetIoTargetTableIndex = 42,
    WdfDeviceGetDevicePnpStateTableIndex = 43,
    WdfDeviceGetDevicePowerStateTableIndex = 44,
    WdfDeviceGetDevicePowerPolicyStateTableIndex = 45,
    WdfDeviceAssignS0IdleSettingsTableIndex = 46,
    WdfDeviceAssignSxWakeSettingsTableIndex = 47,
    WdfDeviceOpenRegistryKeyTableIndex = 48,
    WdfDeviceSetSpecialFileSupportTableIndex = 49,
    WdfDeviceSetCharacteristicsTableIndex = 50,
    WdfDeviceGetCharacteristicsTableIndex = 51,
    WdfDeviceGetAlignmentRequirementTableIndex = 52,
    WdfDeviceSetAlignmentRequirementTableIndex = 53,
    WdfDeviceInitFreeTableIndex = 54,
    WdfDeviceInitSetPnpPowerEventCallbacksTableIndex = 55,
    WdfDeviceInitSetPowerPolicyEventCallbacksTableIndex = 56,
    WdfDeviceInitSetPowerPolicyOwnershipTableIndex = 57,
    WdfDeviceInitRegisterPnpStateChangeCallbackTableIndex = 58,
    WdfDeviceInitRegisterPowerStateChangeCallbackTableIndex = 59,
    WdfDeviceInitRegisterPowerPolicyStateChangeCallbackTableIndex = 60,
    WdfDeviceInitSetIoTypeTableIndex = 61,
    WdfDeviceInitSetExclusiveTableIndex = 62,
    WdfDeviceInitSetPowerNotPageableTableIndex = 63,
    WdfDeviceInitSetPowerPageableTableIndex = 64,
    WdfDeviceInitSetPowerInrushTableIndex = 65,
    WdfDeviceInitSetDeviceTypeTableIndex = 66,
    WdfDeviceInitAssignNameTableIndex = 67,
    WdfDeviceInitAssignSDDLStringTableIndex = 68,
    WdfDeviceInitSetDeviceClassTableIndex = 69,
    WdfDeviceInitSetCharacteristicsTableIndex = 70,
    WdfDeviceInitSetFileObjectConfigTableIndex = 71,
    WdfDeviceInitSetRequestAttributesTableIndex = 72,
    WdfDeviceInitAssignWdmIrpPreprocessCallbackTableIndex = 73,
    WdfDeviceInitSetIoInCallerContextCallbackTableIndex = 74,
    WdfDeviceCreateTableIndex = 75,
    WdfDeviceSetStaticStopRemoveTableIndex = 76,
    WdfDeviceCreateDeviceInterfaceTableIndex = 77,
    WdfDeviceSetDeviceInterfaceStateTableIndex = 78,
    WdfDeviceRetrieveDeviceInterfaceStringTableIndex = 79,
    WdfDeviceCreateSymbolicLinkTableIndex = 80,
    WdfDeviceQueryPropertyTableIndex = 81,
    WdfDeviceAllocAndQueryPropertyTableIndex = 82,
    WdfDeviceSetPnpCapabilitiesTableIndex = 83,
    WdfDeviceSetPowerCapabilitiesTableIndex = 84,
    WdfDeviceSetBusInformationForChildrenTableIndex = 85,
    WdfDeviceIndicateWakeStatusTableIndex = 86,
    WdfDeviceSetFailedTableIndex = 87,
    WdfDeviceStopIdleTableIndex = 88,
    WdfDeviceResumeIdleTableIndex = 89,
    WdfDeviceGetFileObjectTableIndex = 90,
    WdfDeviceEnqueueRequestTableIndex = 91,
    WdfDeviceGetDefaultQueueTableIndex = 92,
    WdfDeviceConfigureRequestDispatchingTableIndex = 93,
    WdfDmaEnablerCreateTableIndex = 94,
    WdfDmaEnablerGetMaximumLengthTableIndex = 95,
    WdfDmaEnablerGetMaximumScatterGatherElementsTableIndex = 96,
    WdfDmaEnablerSetMaximumScatterGatherElementsTableIndex = 97,
    WdfDmaTransactionCreateTableIndex = 98,
    WdfDmaTransactionInitializeTableIndex = 99,
    WdfDmaTransactionInitializeUsingRequestTableIndex = 100,
    WdfDmaTransactionExecuteTableIndex = 101,
    WdfDmaTransactionReleaseTableIndex = 102,
    WdfDmaTransactionDmaCompletedTableIndex = 103,
    WdfDmaTransactionDmaCompletedWithLengthTableIndex = 104,
    WdfDmaTransactionDmaCompletedFinalTableIndex = 105,
    WdfDmaTransactionGetBytesTransferredTableIndex = 106,
    WdfDmaTransactionSetMaximumLengthTableIndex = 107,
    WdfDmaTransactionGetRequestTableIndex = 108,
    WdfDmaTransactionGetCurrentDmaTransferLengthTableIndex = 109,
    WdfDmaTransactionGetDeviceTableIndex = 110,
    WdfDpcCreateTableIndex = 111,
    WdfDpcEnqueueTableIndex = 112,
    WdfDpcCancelTableIndex = 113,
    WdfDpcGetParentObjectTableIndex = 114,
    WdfDpcWdmGetDpcTableIndex = 115,
    WdfDriverCreateTableIndex = 116,
    WdfDriverGetRegistryPathTableIndex = 117,
    WdfDriverWdmGetDriverObjectTableIndex = 118,
    WdfDriverOpenParametersRegistryKeyTableIndex = 119,
    WdfWdmDriverGetWdfDriverHandleTableIndex = 120,
    WdfDriverRegisterTraceInfoTableIndex = 121,
    WdfDriverRetrieveVersionStringTableIndex = 122,
    WdfDriverIsVersionAvailableTableIndex = 123,
    WdfFdoInitWdmGetPhysicalDeviceTableIndex = 124,
    WdfFdoInitOpenRegistryKeyTableIndex = 125,
    WdfFdoInitQueryPropertyTableIndex = 126,
    WdfFdoInitAllocAndQueryPropertyTableIndex = 127,
    WdfFdoInitSetEventCallbacksTableIndex = 128,
    WdfFdoInitSetFilterTableIndex = 129,
    WdfFdoInitSetDefaultChildListConfigTableIndex = 130,
    WdfFdoQueryForInterfaceTableIndex = 131,
    WdfFdoGetDefaultChildListTableIndex = 132,
    WdfFdoAddStaticChildTableIndex = 133,
    WdfFdoLockStaticChildListForIterationTableIndex = 134,
    WdfFdoRetrieveNextStaticChildTableIndex = 135,
    WdfFdoUnlockStaticChildListFromIterationTableIndex = 136,
    WdfFileObjectGetFileNameTableIndex = 137,
    WdfFileObjectGetFlagsTableIndex = 138,
    WdfFileObjectGetDeviceTableIndex = 139,
    WdfFileObjectWdmGetFileObjectTableIndex = 140,
    WdfInterruptCreateTableIndex = 141,
    WdfInterruptQueueDpcForIsrTableIndex = 142,
    WdfInterruptSynchronizeTableIndex = 143,
    WdfInterruptAcquireLockTableIndex = 144,
    WdfInterruptReleaseLockTableIndex = 145,
    WdfInterruptEnableTableIndex = 146,
    WdfInterruptDisableTableIndex = 147,
    WdfInterruptWdmGetInterruptTableIndex = 148,
    WdfInterruptGetInfoTableIndex = 149,
    WdfInterruptSetPolicyTableIndex = 150,
    WdfInterruptGetDeviceTableIndex = 151,
    WdfIoQueueCreateTableIndex = 152,
    WdfIoQueueGetStateTableIndex = 153,
    WdfIoQueueStartTableIndex = 154,
    WdfIoQueueStopTableIndex = 155,
    WdfIoQueueStopSynchronouslyTableIndex = 156,
    WdfIoQueueGetDeviceTableIndex = 157,
    WdfIoQueueRetrieveNextRequestTableIndex = 158,
    WdfIoQueueRetrieveRequestByFileObjectTableIndex = 159,
    WdfIoQueueFindRequestTableIndex = 160,
    WdfIoQueueRetrieveFoundRequestTableIndex = 161,
    WdfIoQueueDrainSynchronouslyTableIndex = 162,
    WdfIoQueueDrainTableIndex = 163,
    WdfIoQueuePurgeSynchronouslyTableIndex = 164,
    WdfIoQueuePurgeTableIndex = 165,
    WdfIoQueueReadyNotifyTableIndex = 166,
    WdfIoTargetCreateTableIndex = 167,
    WdfIoTargetOpenTableIndex = 168,
    WdfIoTargetCloseForQueryRemoveTableIndex = 169,
    WdfIoTargetCloseTableIndex = 170,
    WdfIoTargetStartTableIndex = 171,
    WdfIoTargetStopTableIndex = 172,
    WdfIoTargetGetStateTableIndex = 173,
    WdfIoTargetGetDeviceTableIndex = 174,
    WdfIoTargetQueryTargetPropertyTableIndex = 175,
    WdfIoTargetAllocAndQueryTargetPropertyTableIndex = 176,
    WdfIoTargetQueryForInterfaceTableIndex = 177,
    WdfIoTargetWdmGetTargetDeviceObjectTableIndex = 178,
    WdfIoTargetWdmGetTargetPhysicalDeviceTableIndex = 179,
    WdfIoTargetWdmGetTargetFileObjectTableIndex = 180,
    WdfIoTargetWdmGetTargetFileHandleTableIndex = 181,
    WdfIoTargetSendReadSynchronouslyTableIndex = 182,
    WdfIoTargetFormatRequestForReadTableIndex = 183,
    WdfIoTargetSendWriteSynchronouslyTableIndex = 184,
    WdfIoTargetFormatRequestForWriteTableIndex = 185,
    WdfIoTargetSendIoctlSynchronouslyTableIndex = 186,
    WdfIoTargetFormatRequestForIoctlTableIndex = 187,
    WdfIoTargetSendInternalIoctlSynchronouslyTableIndex = 188,
    WdfIoTargetFormatRequestForInternalIoctlTableIndex = 189,
    WdfIoTargetSendInternalIoctlOthersSynchronouslyTableIndex = 190,
    WdfIoTargetFormatRequestForInternalIoctlOthersTableIndex = 191,
    WdfMemoryCreateTableIndex = 192,
    WdfMemoryCreatePreallocatedTableIndex = 193,
    WdfMemoryGetBufferTableIndex = 194,
    WdfMemoryAssignBufferTableIndex = 195,
    WdfMemoryCopyToBufferTableIndex = 196,
    WdfMemoryCopyFromBufferTableIndex = 197,
    WdfLookasideListCreateTableIndex = 198,
    WdfMemoryCreateFromLookasideTableIndex = 199,
    WdfDeviceMiniportCreateTableIndex = 200,
    WdfDriverMiniportUnloadTableIndex = 201,
    WdfObjectGetTypedContextWorkerTableIndex = 202,
    WdfObjectAllocateContextTableIndex = 203,
    WdfObjectContextGetObjectTableIndex = 204,
    WdfObjectReferenceActualTableIndex = 205,
    WdfObjectDereferenceActualTableIndex = 206,
    WdfObjectCreateTableIndex = 207,
    WdfObjectDeleteTableIndex = 208,
    WdfObjectQueryTableIndex = 209,
    WdfPdoInitAllocateTableIndex = 210,
    WdfPdoInitSetEventCallbacksTableIndex = 211,
    WdfPdoInitAssignDeviceIDTableIndex = 212,
    WdfPdoInitAssignInstanceIDTableIndex = 213,
    WdfPdoInitAddHardwareIDTableIndex = 214,
    WdfPdoInitAddCompatibleIDTableIndex = 215,
    WdfPdoInitAddDeviceTextTableIndex = 216,
    WdfPdoInitSetDefaultLocaleTableIndex = 217,
    WdfPdoInitAssignRawDeviceTableIndex = 218,
    WdfPdoMarkMissingTableIndex = 219,
    WdfPdoRequestEjectTableIndex = 220,
    WdfPdoGetParentTableIndex = 221,
    WdfPdoRetrieveIdentificationDescriptionTableIndex = 222,
    WdfPdoRetrieveAddressDescriptionTableIndex = 223,
    WdfPdoUpdateAddressDescriptionTableIndex = 224,
    WdfPdoAddEjectionRelationsPhysicalDeviceTableIndex = 225,
    WdfPdoRemoveEjectionRelationsPhysicalDeviceTableIndex = 226,
    WdfPdoClearEjectionRelationsDevicesTableIndex = 227,
    WdfDeviceAddQueryInterfaceTableIndex = 228,
    WdfRegistryOpenKeyTableIndex = 229,
    WdfRegistryCreateKeyTableIndex = 230,
    WdfRegistryCloseTableIndex = 231,
    WdfRegistryWdmGetHandleTableIndex = 232,
    WdfRegistryRemoveKeyTableIndex = 233,
    WdfRegistryRemoveValueTableIndex = 234,
    WdfRegistryQueryValueTableIndex = 235,
    WdfRegistryQueryMemoryTableIndex = 236,
    WdfRegistryQueryMultiStringTableIndex = 237,
    WdfRegistryQueryUnicodeStringTableIndex = 238,
    WdfRegistryQueryStringTableIndex = 239,
    WdfRegistryQueryULongTableIndex = 240,
    WdfRegistryAssignValueTableIndex = 241,
    WdfRegistryAssignMemoryTableIndex = 242,
    WdfRegistryAssignMultiStringTableIndex = 243,
    WdfRegistryAssignUnicodeStringTableIndex = 244,
    WdfRegistryAssignStringTableIndex = 245,
    WdfRegistryAssignULongTableIndex = 246,
    WdfRequestCreateTableIndex = 247,
    WdfRequestCreateFromIrpTableIndex = 248,
    WdfRequestReuseTableIndex = 249,
    WdfRequestChangeTargetTableIndex = 250,
    WdfRequestFormatRequestUsingCurrentTypeTableIndex = 251,
    WdfRequestWdmFormatUsingStackLocationTableIndex = 252,
    WdfRequestSendTableIndex = 253,
    WdfRequestGetStatusTableIndex = 254,
    WdfRequestMarkCancelableTableIndex = 255,
    WdfRequestUnmarkCancelableTableIndex = 256,
    WdfRequestIsCanceledTableIndex = 257,
    WdfRequestCancelSentRequestTableIndex = 258,
    WdfRequestIsFrom32BitProcessTableIndex = 259,
    WdfRequestSetCompletionRoutineTableIndex = 260,
    WdfRequestGetCompletionParamsTableIndex = 261,
    WdfRequestAllocateTimerTableIndex = 262,
    WdfRequestCompleteTableIndex = 263,
    WdfRequestCompleteWithPriorityBoostTableIndex = 264,
    WdfRequestCompleteWithInformationTableIndex = 265,
    WdfRequestGetParametersTableIndex = 266,
    WdfRequestRetrieveInputMemoryTableIndex = 267,
    WdfRequestRetrieveOutputMemoryTableIndex = 268,
    WdfRequestRetrieveInputBufferTableIndex = 269,
    WdfRequestRetrieveOutputBufferTableIndex = 270,
    WdfRequestRetrieveInputWdmMdlTableIndex = 271,
    WdfRequestRetrieveOutputWdmMdlTableIndex = 272,
    WdfRequestRetrieveUnsafeUserInputBufferTableIndex = 273,
    WdfRequestRetrieveUnsafeUserOutputBufferTableIndex = 274,
    WdfRequestSetInformationTableIndex = 275,
    WdfRequestGetInformationTableIndex = 276,
    WdfRequestGetFileObjectTableIndex = 277,
    WdfRequestProbeAndLockUserBufferForReadTableIndex = 278,
    WdfRequestProbeAndLockUserBufferForWriteTableIndex = 279,
    WdfRequestGetRequestorModeTableIndex = 280,
    WdfRequestForwardToIoQueueTableIndex = 281,
    WdfRequestGetIoQueueTableIndex = 282,
    WdfRequestRequeueTableIndex = 283,
    WdfRequestStopAcknowledgeTableIndex = 284,
    WdfRequestWdmGetIrpTableIndex = 285,
    WdfIoResourceRequirementsListSetSlotNumberTableIndex = 286,
    WdfIoResourceRequirementsListSetInterfaceTypeTableIndex = 287,
    WdfIoResourceRequirementsListAppendIoResListTableIndex = 288,
    WdfIoResourceRequirementsListInsertIoResListTableIndex = 289,
    WdfIoResourceRequirementsListGetCountTableIndex = 290,
    WdfIoResourceRequirementsListGetIoResListTableIndex = 291,
    WdfIoResourceRequirementsListRemoveTableIndex = 292,
    WdfIoResourceRequirementsListRemoveByIoResListTableIndex = 293,
    WdfIoResourceListCreateTableIndex = 294,
    WdfIoResourceListAppendDescriptorTableIndex = 295,
    WdfIoResourceListInsertDescriptorTableIndex = 296,
    WdfIoResourceListUpdateDescriptorTableIndex = 297,
    WdfIoResourceListGetCountTableIndex = 298,
    WdfIoResourceListGetDescriptorTableIndex = 299,
    WdfIoResourceListRemoveTableIndex = 300,
    WdfIoResourceListRemoveByDescriptorTableIndex = 301,
    WdfCmResourceListAppendDescriptorTableIndex = 302,
    WdfCmResourceListInsertDescriptorTableIndex = 303,
    WdfCmResourceListGetCountTableIndex = 304,
    WdfCmResourceListGetDescriptorTableIndex = 305,
    WdfCmResourceListRemoveTableIndex = 306,
    WdfCmResourceListRemoveByDescriptorTableIndex = 307,
    WdfStringCreateTableIndex = 308,
    WdfStringGetUnicodeStringTableIndex = 309,
    WdfObjectAcquireLockTableIndex = 310,
    WdfObjectReleaseLockTableIndex = 311,
    WdfWaitLockCreateTableIndex = 312,
    WdfWaitLockAcquireTableIndex = 313,
    WdfWaitLockReleaseTableIndex = 314,
    WdfSpinLockCreateTableIndex = 315,
    WdfSpinLockAcquireTableIndex = 316,
    WdfSpinLockReleaseTableIndex = 317,
    WdfTimerCreateTableIndex = 318,
    WdfTimerStartTableIndex = 319,
    WdfTimerStopTableIndex = 320,
    WdfTimerGetParentObjectTableIndex = 321,
    WdfUsbTargetDeviceCreateTableIndex = 322,
    WdfUsbTargetDeviceRetrieveInformationTableIndex = 323,
    WdfUsbTargetDeviceGetDeviceDescriptorTableIndex = 324,
    WdfUsbTargetDeviceRetrieveConfigDescriptorTableIndex = 325,
    WdfUsbTargetDeviceQueryStringTableIndex = 326,
    WdfUsbTargetDeviceAllocAndQueryStringTableIndex = 327,
    WdfUsbTargetDeviceFormatRequestForStringTableIndex = 328,
    WdfUsbTargetDeviceGetNumInterfacesTableIndex = 329,
    WdfUsbTargetDeviceSelectConfigTableIndex = 330,
    WdfUsbTargetDeviceWdmGetConfigurationHandleTableIndex = 331,
    WdfUsbTargetDeviceRetrieveCurrentFrameNumberTableIndex = 332,
    WdfUsbTargetDeviceSendControlTransferSynchronouslyTableIndex = 333,
    WdfUsbTargetDeviceFormatRequestForControlTransferTableIndex = 334,
    WdfUsbTargetDeviceIsConnectedSynchronousTableIndex = 335,
    WdfUsbTargetDeviceResetPortSynchronouslyTableIndex = 336,
    WdfUsbTargetDeviceCyclePortSynchronouslyTableIndex = 337,
    WdfUsbTargetDeviceFormatRequestForCyclePortTableIndex = 338,
    WdfUsbTargetDeviceSendUrbSynchronouslyTableIndex = 339,
    WdfUsbTargetDeviceFormatRequestForUrbTableIndex = 340,
    WdfUsbTargetPipeGetInformationTableIndex = 341,
    WdfUsbTargetPipeIsInEndpointTableIndex = 342,
    WdfUsbTargetPipeIsOutEndpointTableIndex = 343,
    WdfUsbTargetPipeGetTypeTableIndex = 344,
    WdfUsbTargetPipeSetNoMaximumPacketSizeCheckTableIndex = 345,
    WdfUsbTargetPipeWriteSynchronouslyTableIndex = 346,
    WdfUsbTargetPipeFormatRequestForWriteTableIndex = 347,
    WdfUsbTargetPipeReadSynchronouslyTableIndex = 348,
    WdfUsbTargetPipeFormatRequestForReadTableIndex = 349,
    WdfUsbTargetPipeConfigContinuousReaderTableIndex = 350,
    WdfUsbTargetPipeAbortSynchronouslyTableIndex = 351,
    WdfUsbTargetPipeFormatRequestForAbortTableIndex = 352,
    WdfUsbTargetPipeResetSynchronouslyTableIndex = 353,
    WdfUsbTargetPipeFormatRequestForResetTableIndex = 354,
    WdfUsbTargetPipeSendUrbSynchronouslyTableIndex = 355,
    WdfUsbTargetPipeFormatRequestForUrbTableIndex = 356,
    WdfUsbInterfaceGetInterfaceNumberTableIndex = 357,
    WdfUsbInterfaceGetNumEndpointsTableIndex = 358,
    WdfUsbInterfaceGetDescriptorTableIndex = 359,
    WdfUsbInterfaceSelectSettingTableIndex = 360,
    WdfUsbInterfaceGetEndpointInformationTableIndex = 361,
    WdfUsbTargetDeviceGetInterfaceTableIndex = 362,
    WdfUsbInterfaceGetConfiguredSettingIndexTableIndex = 363,
    WdfUsbInterfaceGetNumConfiguredPipesTableIndex = 364,
    WdfUsbInterfaceGetConfiguredPipeTableIndex = 365,
    WdfUsbTargetPipeWdmGetPipeHandleTableIndex = 366,
    WdfVerifierDbgBreakPointTableIndex = 367,
    WdfVerifierKeBugCheckTableIndex = 368,
    WdfWmiProviderCreateTableIndex = 369,
    WdfWmiProviderGetDeviceTableIndex = 370,
    WdfWmiProviderIsEnabledTableIndex = 371,
    WdfWmiProviderGetTracingHandleTableIndex = 372,
    WdfWmiInstanceCreateTableIndex = 373,
    WdfWmiInstanceRegisterTableIndex = 374,
    WdfWmiInstanceDeregisterTableIndex = 375,
    WdfWmiInstanceGetDeviceTableIndex = 376,
    WdfWmiInstanceGetProviderTableIndex = 377,
    WdfWmiInstanceFireEventTableIndex = 378,
    WdfWorkItemCreateTableIndex = 379,
    WdfWorkItemEnqueueTableIndex = 380,
    WdfWorkItemGetParentObjectTableIndex = 381,
    WdfWorkItemFlushTableIndex = 382,
    WdfCommonBufferCreateWithConfigTableIndex = 383,
    WdfDmaEnablerGetFragmentLengthTableIndex = 384,
    WdfDmaEnablerWdmGetDmaAdapterTableIndex = 385,
    WdfUsbInterfaceGetNumSettingsTableIndex = 386,
    WdfDeviceRemoveDependentUsageDeviceObjectTableIndex = 387,
    WdfDeviceGetSystemPowerActionTableIndex = 388,
    WdfInterruptSetExtendedPolicyTableIndex = 389,
    WdfIoQueueAssignForwardProgressPolicyTableIndex = 390,
    WdfPdoInitAssignContainerIDTableIndex = 391,
    WdfPdoInitAllowForwardingRequestToParentTableIndex = 392,
    WdfRequestMarkCancelableExTableIndex = 393,
    WdfRequestIsReservedTableIndex = 394,
    WdfRequestForwardToParentDeviceIoQueueTableIndex = 395,
    WdfCxDeviceInitAllocateTableIndex = 396,
    WdfCxDeviceInitAssignWdmIrpPreprocessCallbackTableIndex = 397,
    WdfCxDeviceInitSetIoInCallerContextCallbackTableIndex = 398,
    WdfCxDeviceInitSetRequestAttributesTableIndex = 399,
    WdfCxDeviceInitSetFileObjectConfigTableIndex = 400,
    WdfDeviceWdmDispatchIrpTableIndex = 401,
    WdfDeviceWdmDispatchIrpToIoQueueTableIndex = 402,
    WdfDeviceInitSetRemoveLockOptionsTableIndex = 403,
    WdfDeviceConfigureWdmIrpDispatchCallbackTableIndex = 404,
    WdfDmaEnablerConfigureSystemProfileTableIndex = 405,
    WdfDmaTransactionInitializeUsingOffsetTableIndex = 406,
    WdfDmaTransactionGetTransferInfoTableIndex = 407,
    WdfDmaTransactionSetChannelConfigurationCallbackTableIndex = 408,
    WdfDmaTransactionSetTransferCompleteCallbackTableIndex = 409,
    WdfDmaTransactionSetImmediateExecutionTableIndex = 410,
    WdfDmaTransactionAllocateResourcesTableIndex = 411,
    WdfDmaTransactionSetDeviceAddressOffsetTableIndex = 412,
    WdfDmaTransactionFreeResourcesTableIndex = 413,
    WdfDmaTransactionCancelTableIndex = 414,
    WdfDmaTransactionWdmGetTransferContextTableIndex = 415,
    WdfInterruptQueueWorkItemForIsrTableIndex = 416,
    WdfInterruptTryToAcquireLockTableIndex = 417,
    WdfIoQueueStopAndPurgeTableIndex = 418,
    WdfIoQueueStopAndPurgeSynchronouslyTableIndex = 419,
    WdfIoTargetPurgeTableIndex = 420,
    WdfUsbTargetDeviceCreateWithParametersTableIndex = 421,
    WdfUsbTargetDeviceQueryUsbCapabilityTableIndex = 422,
    WdfUsbTargetDeviceCreateUrbTableIndex = 423,
    WdfUsbTargetDeviceCreateIsochUrbTableIndex = 424,
    WdfDeviceWdmAssignPowerFrameworkSettingsTableIndex = 425,
    WdfDmaTransactionStopSystemTransferTableIndex = 426,
    WdfCxVerifierKeBugCheckTableIndex = 427,
    WdfInterruptReportActiveTableIndex = 428,
    WdfInterruptReportInactiveTableIndex = 429,
    WdfDeviceInitSetReleaseHardwareOrderOnFailureTableIndex = 430,
    WdfGetTriageInfoTableIndex = 431,
    WdfDeviceInitSetIoTypeExTableIndex = 432,
    WdfDeviceQueryPropertyExTableIndex = 433,
    WdfDeviceAllocAndQueryPropertyExTableIndex = 434,
    WdfDeviceAssignPropertyTableIndex = 435,
    WdfFdoInitQueryPropertyExTableIndex = 436,
    WdfFdoInitAllocAndQueryPropertyExTableIndex = 437,
    WdfFunctionTableNumEntries = 438,
} WDFFUNCENUM;
%ProgramFiles(x86)%\Windows Kits\10\Include\wdf\kmdf\1.13\wdffuncenum.h(23,0)
59 0.052660875 WDFFUNCENUM Enum
typedef enum _WDFFUNCENUM {

    WdfChildListCreateTableIndex = 0,
    WdfChildListGetDeviceTableIndex = 1,
    WdfChildListRetrievePdoTableIndex = 2,
    WdfChildListRetrieveAddressDescriptionTableIndex = 3,
    WdfChildListBeginScanTableIndex = 4,
    WdfChildListEndScanTableIndex = 5,
    WdfChildListBeginIterationTableIndex = 6,
    WdfChildListRetrieveNextDeviceTableIndex = 7,
    WdfChildListEndIterationTableIndex = 8,
    WdfChildListAddOrUpdateChildDescriptionAsPresentTableIndex = 9,
    WdfChildListUpdateChildDescriptionAsMissingTableIndex = 10,
    WdfChildListUpdateAllChildDescriptionsAsPresentTableIndex = 11,
    WdfChildListRequestChildEjectTableIndex = 12,
    WdfCollectionCreateTableIndex = 13,
    WdfCollectionGetCountTableIndex = 14,
    WdfCollectionAddTableIndex = 15,
    WdfCollectionRemoveTableIndex = 16,
    WdfCollectionRemoveItemTableIndex = 17,
    WdfCollectionGetItemTableIndex = 18,
    WdfCollectionGetFirstItemTableIndex = 19,
    WdfCollectionGetLastItemTableIndex = 20,
    WdfCommonBufferCreateTableIndex = 21,
    WdfCommonBufferGetAlignedVirtualAddressTableIndex = 22,
    WdfCommonBufferGetAlignedLogicalAddressTableIndex = 23,
    WdfCommonBufferGetLengthTableIndex = 24,
    WdfControlDeviceInitAllocateTableIndex = 25,
    WdfControlDeviceInitSetShutdownNotificationTableIndex = 26,
    WdfControlFinishInitializingTableIndex = 27,
    WdfDeviceGetDeviceStateTableIndex = 28,
    WdfDeviceSetDeviceStateTableIndex = 29,
    WdfWdmDeviceGetWdfDeviceHandleTableIndex = 30,
    WdfDeviceWdmGetDeviceObjectTableIndex = 31,
    WdfDeviceWdmGetAttachedDeviceTableIndex = 32,
    WdfDeviceWdmGetPhysicalDeviceTableIndex = 33,
    WdfDeviceWdmDispatchPreprocessedIrpTableIndex = 34,
    WdfDeviceAddDependentUsageDeviceObjectTableIndex = 35,
    WdfDeviceAddRemovalRelationsPhysicalDeviceTableIndex = 36,
    WdfDeviceRemoveRemovalRelationsPhysicalDeviceTableIndex = 37,
    WdfDeviceClearRemovalRelationsDevicesTableIndex = 38,
    WdfDeviceGetDriverTableIndex = 39,
    WdfDeviceRetrieveDeviceNameTableIndex = 40,
    WdfDeviceAssignMofResourceNameTableIndex = 41,
    WdfDeviceGetIoTargetTableIndex = 42,
    WdfDeviceGetDevicePnpStateTableIndex = 43,
    WdfDeviceGetDevicePowerStateTableIndex = 44,
    WdfDeviceGetDevicePowerPolicyStateTableIndex = 45,
    WdfDeviceAssignS0IdleSettingsTableIndex = 46,
    WdfDeviceAssignSxWakeSettingsTableIndex = 47,
    WdfDeviceOpenRegistryKeyTableIndex = 48,
    WdfDeviceSetSpecialFileSupportTableIndex = 49,
    WdfDeviceSetCharacteristicsTableIndex = 50,
    WdfDeviceGetCharacteristicsTableIndex = 51,
    WdfDeviceGetAlignmentRequirementTableIndex = 52,
    WdfDeviceSetAlignmentRequirementTableIndex = 53,
    WdfDeviceInitFreeTableIndex = 54,
    WdfDeviceInitSetPnpPowerEventCallbacksTableIndex = 55,
    WdfDeviceInitSetPowerPolicyEventCallbacksTableIndex = 56,
    WdfDeviceInitSetPowerPolicyOwnershipTableIndex = 57,
    WdfDeviceInitRegisterPnpStateChangeCallbackTableIndex = 58,
    WdfDeviceInitRegisterPowerStateChangeCallbackTableIndex = 59,
    WdfDeviceInitRegisterPowerPolicyStateChangeCallbackTableIndex = 60,
    WdfDeviceInitSetIoTypeTableIndex = 61,
    WdfDeviceInitSetExclusiveTableIndex = 62,
    WdfDeviceInitSetPowerNotPageableTableIndex = 63,
    WdfDeviceInitSetPowerPageableTableIndex = 64,
    WdfDeviceInitSetPowerInrushTableIndex = 65,
    WdfDeviceInitSetDeviceTypeTableIndex = 66,
    WdfDeviceInitAssignNameTableIndex = 67,
    WdfDeviceInitAssignSDDLStringTableIndex = 68,
    WdfDeviceInitSetDeviceClassTableIndex = 69,
    WdfDeviceInitSetCharacteristicsTableIndex = 70,
    WdfDeviceInitSetFileObjectConfigTableIndex = 71,
    WdfDeviceInitSetRequestAttributesTableIndex = 72,
    WdfDeviceInitAssignWdmIrpPreprocessCallbackTableIndex = 73,
    WdfDeviceInitSetIoInCallerContextCallbackTableIndex = 74,
    WdfDeviceCreateTableIndex = 75,
    WdfDeviceSetStaticStopRemoveTableIndex = 76,
    WdfDeviceCreateDeviceInterfaceTableIndex = 77,
    WdfDeviceSetDeviceInterfaceStateTableIndex = 78,
    WdfDeviceRetrieveDeviceInterfaceStringTableIndex = 79,
    WdfDeviceCreateSymbolicLinkTableIndex = 80,
    WdfDeviceQueryPropertyTableIndex = 81,
    WdfDeviceAllocAndQueryPropertyTableIndex = 82,
    WdfDeviceSetPnpCapabilitiesTableIndex = 83,
    WdfDeviceSetPowerCapabilitiesTableIndex = 84,
    WdfDeviceSetBusInformationForChildrenTableIndex = 85,
    WdfDeviceIndicateWakeStatusTableIndex = 86,
    WdfDeviceSetFailedTableIndex = 87,
    WdfDeviceStopIdleNoTrackTableIndex = 88,
    WdfDeviceResumeIdleNoTrackTableIndex = 89,
    WdfDeviceGetFileObjectTableIndex = 90,
    WdfDeviceEnqueueRequestTableIndex = 91,
    WdfDeviceGetDefaultQueueTableIndex = 92,
    WdfDeviceConfigureRequestDispatchingTableIndex = 93,
    WdfDmaEnablerCreateTableIndex = 94,
    WdfDmaEnablerGetMaximumLengthTableIndex = 95,
    WdfDmaEnablerGetMaximumScatterGatherElementsTableIndex = 96,
    WdfDmaEnablerSetMaximumScatterGatherElementsTableIndex = 97,
    WdfDmaTransactionCreateTableIndex = 98,
    WdfDmaTransactionInitializeTableIndex = 99,
    WdfDmaTransactionInitializeUsingRequestTableIndex = 100,
    WdfDmaTransactionExecuteTableIndex = 101,
    WdfDmaTransactionReleaseTableIndex = 102,
    WdfDmaTransactionDmaCompletedTableIndex = 103,
    WdfDmaTransactionDmaCompletedWithLengthTableIndex = 104,
    WdfDmaTransactionDmaCompletedFinalTableIndex = 105,
    WdfDmaTransactionGetBytesTransferredTableIndex = 106,
    WdfDmaTransactionSetMaximumLengthTableIndex = 107,
    WdfDmaTransactionGetRequestTableIndex = 108,
    WdfDmaTransactionGetCurrentDmaTransferLengthTableIndex = 109,
    WdfDmaTransactionGetDeviceTableIndex = 110,
    WdfDpcCreateTableIndex = 111,
    WdfDpcEnqueueTableIndex = 112,
    WdfDpcCancelTableIndex = 113,
    WdfDpcGetParentObjectTableIndex = 114,
    WdfDpcWdmGetDpcTableIndex = 115,
    WdfDriverCreateTableIndex = 116,
    WdfDriverGetRegistryPathTableIndex = 117,
    WdfDriverWdmGetDriverObjectTableIndex = 118,
    WdfDriverOpenParametersRegistryKeyTableIndex = 119,
    WdfWdmDriverGetWdfDriverHandleTableIndex = 120,
    WdfDriverRegisterTraceInfoTableIndex = 121,
    WdfDriverRetrieveVersionStringTableIndex = 122,
    WdfDriverIsVersionAvailableTableIndex = 123,
    WdfFdoInitWdmGetPhysicalDeviceTableIndex = 124,
    WdfFdoInitOpenRegistryKeyTableIndex = 125,
    WdfFdoInitQueryPropertyTableIndex = 126,
    WdfFdoInitAllocAndQueryPropertyTableIndex = 127,
    WdfFdoInitSetEventCallbacksTableIndex = 128,
    WdfFdoInitSetFilterTableIndex = 129,
    WdfFdoInitSetDefaultChildListConfigTableIndex = 130,
    WdfFdoQueryForInterfaceTableIndex = 131,
    WdfFdoGetDefaultChildListTableIndex = 132,
    WdfFdoAddStaticChildTableIndex = 133,
    WdfFdoLockStaticChildListForIterationTableIndex = 134,
    WdfFdoRetrieveNextStaticChildTableIndex = 135,
    WdfFdoUnlockStaticChildListFromIterationTableIndex = 136,
    WdfFileObjectGetFileNameTableIndex = 137,
    WdfFileObjectGetFlagsTableIndex = 138,
    WdfFileObjectGetDeviceTableIndex = 139,
    WdfFileObjectWdmGetFileObjectTableIndex = 140,
    WdfInterruptCreateTableIndex = 141,
    WdfInterruptQueueDpcForIsrTableIndex = 142,
    WdfInterruptSynchronizeTableIndex = 143,
    WdfInterruptAcquireLockTableIndex = 144,
    WdfInterruptReleaseLockTableIndex = 145,
    WdfInterruptEnableTableIndex = 146,
    WdfInterruptDisableTableIndex = 147,
    WdfInterruptWdmGetInterruptTableIndex = 148,
    WdfInterruptGetInfoTableIndex = 149,
    WdfInterruptSetPolicyTableIndex = 150,
    WdfInterruptGetDeviceTableIndex = 151,
    WdfIoQueueCreateTableIndex = 152,
    WdfIoQueueGetStateTableIndex = 153,
    WdfIoQueueStartTableIndex = 154,
    WdfIoQueueStopTableIndex = 155,
    WdfIoQueueStopSynchronouslyTableIndex = 156,
    WdfIoQueueGetDeviceTableIndex = 157,
    WdfIoQueueRetrieveNextRequestTableIndex = 158,
    WdfIoQueueRetrieveRequestByFileObjectTableIndex = 159,
    WdfIoQueueFindRequestTableIndex = 160,
    WdfIoQueueRetrieveFoundRequestTableIndex = 161,
    WdfIoQueueDrainSynchronouslyTableIndex = 162,
    WdfIoQueueDrainTableIndex = 163,
    WdfIoQueuePurgeSynchronouslyTableIndex = 164,
    WdfIoQueuePurgeTableIndex = 165,
    WdfIoQueueReadyNotifyTableIndex = 166,
    WdfIoTargetCreateTableIndex = 167,
    WdfIoTargetOpenTableIndex = 168,
    WdfIoTargetCloseForQueryRemoveTableIndex = 169,
    WdfIoTargetCloseTableIndex = 170,
    WdfIoTargetStartTableIndex = 171,
    WdfIoTargetStopTableIndex = 172,
    WdfIoTargetGetStateTableIndex = 173,
    WdfIoTargetGetDeviceTableIndex = 174,
    WdfIoTargetQueryTargetPropertyTableIndex = 175,
    WdfIoTargetAllocAndQueryTargetPropertyTableIndex = 176,
    WdfIoTargetQueryForInterfaceTableIndex = 177,
    WdfIoTargetWdmGetTargetDeviceObjectTableIndex = 178,
    WdfIoTargetWdmGetTargetPhysicalDeviceTableIndex = 179,
    WdfIoTargetWdmGetTargetFileObjectTableIndex = 180,
    WdfIoTargetWdmGetTargetFileHandleTableIndex = 181,
    WdfIoTargetSendReadSynchronouslyTableIndex = 182,
    WdfIoTargetFormatRequestForReadTableIndex = 183,
    WdfIoTargetSendWriteSynchronouslyTableIndex = 184,
    WdfIoTargetFormatRequestForWriteTableIndex = 185,
    WdfIoTargetSendIoctlSynchronouslyTableIndex = 186,
    WdfIoTargetFormatRequestForIoctlTableIndex = 187,
    WdfIoTargetSendInternalIoctlSynchronouslyTableIndex = 188,
    WdfIoTargetFormatRequestForInternalIoctlTableIndex = 189,
    WdfIoTargetSendInternalIoctlOthersSynchronouslyTableIndex = 190,
    WdfIoTargetFormatRequestForInternalIoctlOthersTableIndex = 191,
    WdfMemoryCreateTableIndex = 192,
    WdfMemoryCreatePreallocatedTableIndex = 193,
    WdfMemoryGetBufferTableIndex = 194,
    WdfMemoryAssignBufferTableIndex = 195,
    WdfMemoryCopyToBufferTableIndex = 196,
    WdfMemoryCopyFromBufferTableIndex = 197,
    WdfLookasideListCreateTableIndex = 198,
    WdfMemoryCreateFromLookasideTableIndex = 199,
    WdfDeviceMiniportCreateTableIndex = 200,
    WdfDriverMiniportUnloadTableIndex = 201,
    WdfObjectGetTypedContextWorkerTableIndex = 202,
    WdfObjectAllocateContextTableIndex = 203,
    WdfObjectContextGetObjectTableIndex = 204,
    WdfObjectReferenceActualTableIndex = 205,
    WdfObjectDereferenceActualTableIndex = 206,
    WdfObjectCreateTableIndex = 207,
    WdfObjectDeleteTableIndex = 208,
    WdfObjectQueryTableIndex = 209,
    WdfPdoInitAllocateTableIndex = 210,
    WdfPdoInitSetEventCallbacksTableIndex = 211,
    WdfPdoInitAssignDeviceIDTableIndex = 212,
    WdfPdoInitAssignInstanceIDTableIndex = 213,
    WdfPdoInitAddHardwareIDTableIndex = 214,
    WdfPdoInitAddCompatibleIDTableIndex = 215,
    WdfPdoInitAddDeviceTextTableIndex = 216,
    WdfPdoInitSetDefaultLocaleTableIndex = 217,
    WdfPdoInitAssignRawDeviceTableIndex = 218,
    WdfPdoMarkMissingTableIndex = 219,
    WdfPdoRequestEjectTableIndex = 220,
    WdfPdoGetParentTableIndex = 221,
    WdfPdoRetrieveIdentificationDescriptionTableIndex = 222,
    WdfPdoRetrieveAddressDescriptionTableIndex = 223,
    WdfPdoUpdateAddressDescriptionTableIndex = 224,
    WdfPdoAddEjectionRelationsPhysicalDeviceTableIndex = 225,
    WdfPdoRemoveEjectionRelationsPhysicalDeviceTableIndex = 226,
    WdfPdoClearEjectionRelationsDevicesTableIndex = 227,
    WdfDeviceAddQueryInterfaceTableIndex = 228,
    WdfRegistryOpenKeyTableIndex = 229,
    WdfRegistryCreateKeyTableIndex = 230,
    WdfRegistryCloseTableIndex = 231,
    WdfRegistryWdmGetHandleTableIndex = 232,
    WdfRegistryRemoveKeyTableIndex = 233,
    WdfRegistryRemoveValueTableIndex = 234,
    WdfRegistryQueryValueTableIndex = 235,
    WdfRegistryQueryMemoryTableIndex = 236,
    WdfRegistryQueryMultiStringTableIndex = 237,
    WdfRegistryQueryUnicodeStringTableIndex = 238,
    WdfRegistryQueryStringTableIndex = 239,
    WdfRegistryQueryULongTableIndex = 240,
    WdfRegistryAssignValueTableIndex = 241,
    WdfRegistryAssignMemoryTableIndex = 242,
    WdfRegistryAssignMultiStringTableIndex = 243,
    WdfRegistryAssignUnicodeStringTableIndex = 244,
    WdfRegistryAssignStringTableIndex = 245,
    WdfRegistryAssignULongTableIndex = 246,
    WdfRequestCreateTableIndex = 247,
    WdfRequestCreateFromIrpTableIndex = 248,
    WdfRequestReuseTableIndex = 249,
    WdfRequestChangeTargetTableIndex = 250,
    WdfRequestFormatRequestUsingCurrentTypeTableIndex = 251,
    WdfRequestWdmFormatUsingStackLocationTableIndex = 252,
    WdfRequestSendTableIndex = 253,
    WdfRequestGetStatusTableIndex = 254,
    WdfRequestMarkCancelableTableIndex = 255,
    WdfRequestUnmarkCancelableTableIndex = 256,
    WdfRequestIsCanceledTableIndex = 257,
    WdfRequestCancelSentRequestTableIndex = 258,
    WdfRequestIsFrom32BitProcessTableIndex = 259,
    WdfRequestSetCompletionRoutineTableIndex = 260,
    WdfRequestGetCompletionParamsTableIndex = 261,
    WdfRequestAllocateTimerTableIndex = 262,
    WdfRequestCompleteTableIndex = 263,
    WdfRequestCompleteWithPriorityBoostTableIndex = 264,
    WdfRequestCompleteWithInformationTableIndex = 265,
    WdfRequestGetParametersTableIndex = 266,
    WdfRequestRetrieveInputMemoryTableIndex = 267,
    WdfRequestRetrieveOutputMemoryTableIndex = 268,
    WdfRequestRetrieveInputBufferTableIndex = 269,
    WdfRequestRetrieveOutputBufferTableIndex = 270,
    WdfRequestRetrieveInputWdmMdlTableIndex = 271,
    WdfRequestRetrieveOutputWdmMdlTableIndex = 272,
    WdfRequestRetrieveUnsafeUserInputBufferTableIndex = 273,
    WdfRequestRetrieveUnsafeUserOutputBufferTableIndex = 274,
    WdfRequestSetInformationTableIndex = 275,
    WdfRequestGetInformationTableIndex = 276,
    WdfRequestGetFileObjectTableIndex = 277,
    WdfRequestProbeAndLockUserBufferForReadTableIndex = 278,
    WdfRequestProbeAndLockUserBufferForWriteTableIndex = 279,
    WdfRequestGetRequestorModeTableIndex = 280,
    WdfRequestForwardToIoQueueTableIndex = 281,
    WdfRequestGetIoQueueTableIndex = 282,
    WdfRequestRequeueTableIndex = 283,
    WdfRequestStopAcknowledgeTableIndex = 284,
    WdfRequestWdmGetIrpTableIndex = 285,
    WdfIoResourceRequirementsListSetSlotNumberTableIndex = 286,
    WdfIoResourceRequirementsListSetInterfaceTypeTableIndex = 287,
    WdfIoResourceRequirementsListAppendIoResListTableIndex = 288,
    WdfIoResourceRequirementsListInsertIoResListTableIndex = 289,
    WdfIoResourceRequirementsListGetCountTableIndex = 290,
    WdfIoResourceRequirementsListGetIoResListTableIndex = 291,
    WdfIoResourceRequirementsListRemoveTableIndex = 292,
    WdfIoResourceRequirementsListRemoveByIoResListTableIndex = 293,
    WdfIoResourceListCreateTableIndex = 294,
    WdfIoResourceListAppendDescriptorTableIndex = 295,
    WdfIoResourceListInsertDescriptorTableIndex = 296,
    WdfIoResourceListUpdateDescriptorTableIndex = 297,
    WdfIoResourceListGetCountTableIndex = 298,
    WdfIoResourceListGetDescriptorTableIndex = 299,
    WdfIoResourceListRemoveTableIndex = 300,
    WdfIoResourceListRemoveByDescriptorTableIndex = 301,
    WdfCmResourceListAppendDescriptorTableIndex = 302,
    WdfCmResourceListInsertDescriptorTableIndex = 303,
    WdfCmResourceListGetCountTableIndex = 304,
    WdfCmResourceListGetDescriptorTableIndex = 305,
    WdfCmResourceListRemoveTableIndex = 306,
    WdfCmResourceListRemoveByDescriptorTableIndex = 307,
    WdfStringCreateTableIndex = 308,
    WdfStringGetUnicodeStringTableIndex = 309,
    WdfObjectAcquireLockTableIndex = 310,
    WdfObjectReleaseLockTableIndex = 311,
    WdfWaitLockCreateTableIndex = 312,
    WdfWaitLockAcquireTableIndex = 313,
    WdfWaitLockReleaseTableIndex = 314,
    WdfSpinLockCreateTableIndex = 315,
    WdfSpinLockAcquireTableIndex = 316,
    WdfSpinLockReleaseTableIndex = 317,
    WdfTimerCreateTableIndex = 318,
    WdfTimerStartTableIndex = 319,
    WdfTimerStopTableIndex = 320,
    WdfTimerGetParentObjectTableIndex = 321,
    WdfUsbTargetDeviceCreateTableIndex = 322,
    WdfUsbTargetDeviceRetrieveInformationTableIndex = 323,
    WdfUsbTargetDeviceGetDeviceDescriptorTableIndex = 324,
    WdfUsbTargetDeviceRetrieveConfigDescriptorTableIndex = 325,
    WdfUsbTargetDeviceQueryStringTableIndex = 326,
    WdfUsbTargetDeviceAllocAndQueryStringTableIndex = 327,
    WdfUsbTargetDeviceFormatRequestForStringTableIndex = 328,
    WdfUsbTargetDeviceGetNumInterfacesTableIndex = 329,
    WdfUsbTargetDeviceSelectConfigTableIndex = 330,
    WdfUsbTargetDeviceWdmGetConfigurationHandleTableIndex = 331,
    WdfUsbTargetDeviceRetrieveCurrentFrameNumberTableIndex = 332,
    WdfUsbTargetDeviceSendControlTransferSynchronouslyTableIndex = 333,
    WdfUsbTargetDeviceFormatRequestForControlTransferTableIndex = 334,
    WdfUsbTargetDeviceIsConnectedSynchronousTableIndex = 335,
    WdfUsbTargetDeviceResetPortSynchronouslyTableIndex = 336,
    WdfUsbTargetDeviceCyclePortSynchronouslyTableIndex = 337,
    WdfUsbTargetDeviceFormatRequestForCyclePortTableIndex = 338,
    WdfUsbTargetDeviceSendUrbSynchronouslyTableIndex = 339,
    WdfUsbTargetDeviceFormatRequestForUrbTableIndex = 340,
    WdfUsbTargetPipeGetInformationTableIndex = 341,
    WdfUsbTargetPipeIsInEndpointTableIndex = 342,
    WdfUsbTargetPipeIsOutEndpointTableIndex = 343,
    WdfUsbTargetPipeGetTypeTableIndex = 344,
    WdfUsbTargetPipeSetNoMaximumPacketSizeCheckTableIndex = 345,
    WdfUsbTargetPipeWriteSynchronouslyTableIndex = 346,
    WdfUsbTargetPipeFormatRequestForWriteTableIndex = 347,
    WdfUsbTargetPipeReadSynchronouslyTableIndex = 348,
    WdfUsbTargetPipeFormatRequestForReadTableIndex = 349,
    WdfUsbTargetPipeConfigContinuousReaderTableIndex = 350,
    WdfUsbTargetPipeAbortSynchronouslyTableIndex = 351,
    WdfUsbTargetPipeFormatRequestForAbortTableIndex = 352,
    WdfUsbTargetPipeResetSynchronouslyTableIndex = 353,
    WdfUsbTargetPipeFormatRequestForResetTableIndex = 354,
    WdfUsbTargetPipeSendUrbSynchronouslyTableIndex = 355,
    WdfUsbTargetPipeFormatRequestForUrbTableIndex = 356,
    WdfUsbInterfaceGetInterfaceNumberTableIndex = 357,
    WdfUsbInterfaceGetNumEndpointsTableIndex = 358,
    WdfUsbInterfaceGetDescriptorTableIndex = 359,
    WdfUsbInterfaceSelectSettingTableIndex = 360,
    WdfUsbInterfaceGetEndpointInformationTableIndex = 361,
    WdfUsbTargetDeviceGetInterfaceTableIndex = 362,
    WdfUsbInterfaceGetConfiguredSettingIndexTableIndex = 363,
    WdfUsbInterfaceGetNumConfiguredPipesTableIndex = 364,
    WdfUsbInterfaceGetConfiguredPipeTableIndex = 365,
    WdfUsbTargetPipeWdmGetPipeHandleTableIndex = 366,
    WdfVerifierDbgBreakPointTableIndex = 367,
    WdfVerifierKeBugCheckTableIndex = 368,
    WdfWmiProviderCreateTableIndex = 369,
    WdfWmiProviderGetDeviceTableIndex = 370,
    WdfWmiProviderIsEnabledTableIndex = 371,
    WdfWmiProviderGetTracingHandleTableIndex = 372,
    WdfWmiInstanceCreateTableIndex = 373,
    WdfWmiInstanceRegisterTableIndex = 374,
    WdfWmiInstanceDeregisterTableIndex = 375,
    WdfWmiInstanceGetDeviceTableIndex = 376,
    WdfWmiInstanceGetProviderTableIndex = 377,
    WdfWmiInstanceFireEventTableIndex = 378,
    WdfWorkItemCreateTableIndex = 379,
    WdfWorkItemEnqueueTableIndex = 380,
    WdfWorkItemGetParentObjectTableIndex = 381,
    WdfWorkItemFlushTableIndex = 382,
    WdfCommonBufferCreateWithConfigTableIndex = 383,
    WdfDmaEnablerGetFragmentLengthTableIndex = 384,
    WdfDmaEnablerWdmGetDmaAdapterTableIndex = 385,
    WdfUsbInterfaceGetNumSettingsTableIndex = 386,
    WdfDeviceRemoveDependentUsageDeviceObjectTableIndex = 387,
    WdfDeviceGetSystemPowerActionTableIndex = 388,
    WdfInterruptSetExtendedPolicyTableIndex = 389,
    WdfIoQueueAssignForwardProgressPolicyTableIndex = 390,
    WdfPdoInitAssignContainerIDTableIndex = 391,
    WdfPdoInitAllowForwardingRequestToParentTableIndex = 392,
    WdfRequestMarkCancelableExTableIndex = 393,
    WdfRequestIsReservedTableIndex = 394,
    WdfRequestForwardToParentDeviceIoQueueTableIndex = 395,
    WdfCxDeviceInitAllocateTableIndex = 396,
    WdfCxDeviceInitAssignWdmIrpPreprocessCallbackTableIndex = 397,
    WdfCxDeviceInitSetIoInCallerContextCallbackTableIndex = 398,
    WdfCxDeviceInitSetRequestAttributesTableIndex = 399,
    WdfCxDeviceInitSetFileObjectConfigTableIndex = 400,
    WdfDeviceWdmDispatchIrpTableIndex = 401,
    WdfDeviceWdmDispatchIrpToIoQueueTableIndex = 402,
    WdfDeviceInitSetRemoveLockOptionsTableIndex = 403,
    WdfDeviceConfigureWdmIrpDispatchCallbackTableIndex = 404,
    WdfDmaEnablerConfigureSystemProfileTableIndex = 405,
    WdfDmaTransactionInitializeUsingOffsetTableIndex = 406,
    WdfDmaTransactionGetTransferInfoTableIndex = 407,
    WdfDmaTransactionSetChannelConfigurationCallbackTableIndex = 408,
    WdfDmaTransactionSetTransferCompleteCallbackTableIndex = 409,
    WdfDmaTransactionSetImmediateExecutionTableIndex = 410,
    WdfDmaTransactionAllocateResourcesTableIndex = 411,
    WdfDmaTransactionSetDeviceAddressOffsetTableIndex = 412,
    WdfDmaTransactionFreeResourcesTableIndex = 413,
    WdfDmaTransactionCancelTableIndex = 414,
    WdfDmaTransactionWdmGetTransferContextTableIndex = 415,
    WdfInterruptQueueWorkItemForIsrTableIndex = 416,
    WdfInterruptTryToAcquireLockTableIndex = 417,
    WdfIoQueueStopAndPurgeTableIndex = 418,
    WdfIoQueueStopAndPurgeSynchronouslyTableIndex = 419,
    WdfIoTargetPurgeTableIndex = 420,
    WdfUsbTargetDeviceCreateWithParametersTableIndex = 421,
    WdfUsbTargetDeviceQueryUsbCapabilityTableIndex = 422,
    WdfUsbTargetDeviceCreateUrbTableIndex = 423,
    WdfUsbTargetDeviceCreateIsochUrbTableIndex = 424,
    WdfDeviceWdmAssignPowerFrameworkSettingsTableIndex = 425,
    WdfDmaTransactionStopSystemTransferTableIndex = 426,
    WdfCxVerifierKeBugCheckTableIndex = 427,
    WdfInterruptReportActiveTableIndex = 428,
    WdfInterruptReportInactiveTableIndex = 429,
    WdfDeviceInitSetReleaseHardwareOrderOnFailureTableIndex = 430,
    WdfGetTriageInfoTableIndex = 431,
    WdfDeviceInitSetIoTypeExTableIndex = 432,
    WdfDeviceQueryPropertyExTableIndex = 433,
    WdfDeviceAllocAndQueryPropertyExTableIndex = 434,
    WdfDeviceAssignPropertyTableIndex = 435,
    WdfFdoInitQueryPropertyExTableIndex = 436,
    WdfFdoInitAllocAndQueryPropertyExTableIndex = 437,
    WdfDeviceStopIdleActualTableIndex = 438,
    WdfDeviceResumeIdleActualTableIndex = 439,
    WdfDeviceGetSelfIoTargetTableIndex = 440,
    WdfDeviceInitAllowSelfIoTargetTableIndex = 441,
    WdfIoTargetSelfAssignDefaultIoQueueTableIndex = 442,
    WdfDeviceOpenDevicemapKeyTableIndex = 443,
    WdfFunctionTableNumEntries = 444,
} WDFFUNCENUM;
%ProgramFiles(x86)%\Windows Kits\10\Include\wdf\kmdf\1.15\wdffuncenum.h(23,0)
60 0.052660875 WDFFUNCENUM Enum
typedef enum _WDFFUNCENUM {

    WdfChildListCreateTableIndex = 0,
    WdfChildListGetDeviceTableIndex = 1,
    WdfChildListRetrievePdoTableIndex = 2,
    WdfChildListRetrieveAddressDescriptionTableIndex = 3,
    WdfChildListBeginScanTableIndex = 4,
    WdfChildListEndScanTableIndex = 5,
    WdfChildListBeginIterationTableIndex = 6,
    WdfChildListRetrieveNextDeviceTableIndex = 7,
    WdfChildListEndIterationTableIndex = 8,
    WdfChildListAddOrUpdateChildDescriptionAsPresentTableIndex = 9,
    WdfChildListUpdateChildDescriptionAsMissingTableIndex = 10,
    WdfChildListUpdateAllChildDescriptionsAsPresentTableIndex = 11,
    WdfChildListRequestChildEjectTableIndex = 12,
    WdfCollectionCreateTableIndex = 13,
    WdfCollectionGetCountTableIndex = 14,
    WdfCollectionAddTableIndex = 15,
    WdfCollectionRemoveTableIndex = 16,
    WdfCollectionRemoveItemTableIndex = 17,
    WdfCollectionGetItemTableIndex = 18,
    WdfCollectionGetFirstItemTableIndex = 19,
    WdfCollectionGetLastItemTableIndex = 20,
    WdfCommonBufferCreateTableIndex = 21,
    WdfCommonBufferGetAlignedVirtualAddressTableIndex = 22,
    WdfCommonBufferGetAlignedLogicalAddressTableIndex = 23,
    WdfCommonBufferGetLengthTableIndex = 24,
    WdfControlDeviceInitAllocateTableIndex = 25,
    WdfControlDeviceInitSetShutdownNotificationTableIndex = 26,
    WdfControlFinishInitializingTableIndex = 27,
    WdfDeviceGetDeviceStateTableIndex = 28,
    WdfDeviceSetDeviceStateTableIndex = 29,
    WdfWdmDeviceGetWdfDeviceHandleTableIndex = 30,
    WdfDeviceWdmGetDeviceObjectTableIndex = 31,
    WdfDeviceWdmGetAttachedDeviceTableIndex = 32,
    WdfDeviceWdmGetPhysicalDeviceTableIndex = 33,
    WdfDeviceWdmDispatchPreprocessedIrpTableIndex = 34,
    WdfDeviceAddDependentUsageDeviceObjectTableIndex = 35,
    WdfDeviceAddRemovalRelationsPhysicalDeviceTableIndex = 36,
    WdfDeviceRemoveRemovalRelationsPhysicalDeviceTableIndex = 37,
    WdfDeviceClearRemovalRelationsDevicesTableIndex = 38,
    WdfDeviceGetDriverTableIndex = 39,
    WdfDeviceRetrieveDeviceNameTableIndex = 40,
    WdfDeviceAssignMofResourceNameTableIndex = 41,
    WdfDeviceGetIoTargetTableIndex = 42,
    WdfDeviceGetDevicePnpStateTableIndex = 43,
    WdfDeviceGetDevicePowerStateTableIndex = 44,
    WdfDeviceGetDevicePowerPolicyStateTableIndex = 45,
    WdfDeviceAssignS0IdleSettingsTableIndex = 46,
    WdfDeviceAssignSxWakeSettingsTableIndex = 47,
    WdfDeviceOpenRegistryKeyTableIndex = 48,
    WdfDeviceSetSpecialFileSupportTableIndex = 49,
    WdfDeviceSetCharacteristicsTableIndex = 50,
    WdfDeviceGetCharacteristicsTableIndex = 51,
    WdfDeviceGetAlignmentRequirementTableIndex = 52,
    WdfDeviceSetAlignmentRequirementTableIndex = 53,
    WdfDeviceInitFreeTableIndex = 54,
    WdfDeviceInitSetPnpPowerEventCallbacksTableIndex = 55,
    WdfDeviceInitSetPowerPolicyEventCallbacksTableIndex = 56,
    WdfDeviceInitSetPowerPolicyOwnershipTableIndex = 57,
    WdfDeviceInitRegisterPnpStateChangeCallbackTableIndex = 58,
    WdfDeviceInitRegisterPowerStateChangeCallbackTableIndex = 59,
    WdfDeviceInitRegisterPowerPolicyStateChangeCallbackTableIndex = 60,
    WdfDeviceInitSetIoTypeTableIndex = 61,
    WdfDeviceInitSetExclusiveTableIndex = 62,
    WdfDeviceInitSetPowerNotPageableTableIndex = 63,
    WdfDeviceInitSetPowerPageableTableIndex = 64,
    WdfDeviceInitSetPowerInrushTableIndex = 65,
    WdfDeviceInitSetDeviceTypeTableIndex = 66,
    WdfDeviceInitAssignNameTableIndex = 67,
    WdfDeviceInitAssignSDDLStringTableIndex = 68,
    WdfDeviceInitSetDeviceClassTableIndex = 69,
    WdfDeviceInitSetCharacteristicsTableIndex = 70,
    WdfDeviceInitSetFileObjectConfigTableIndex = 71,
    WdfDeviceInitSetRequestAttributesTableIndex = 72,
    WdfDeviceInitAssignWdmIrpPreprocessCallbackTableIndex = 73,
    WdfDeviceInitSetIoInCallerContextCallbackTableIndex = 74,
    WdfDeviceCreateTableIndex = 75,
    WdfDeviceSetStaticStopRemoveTableIndex = 76,
    WdfDeviceCreateDeviceInterfaceTableIndex = 77,
    WdfDeviceSetDeviceInterfaceStateTableIndex = 78,
    WdfDeviceRetrieveDeviceInterfaceStringTableIndex = 79,
    WdfDeviceCreateSymbolicLinkTableIndex = 80,
    WdfDeviceQueryPropertyTableIndex = 81,
    WdfDeviceAllocAndQueryPropertyTableIndex = 82,
    WdfDeviceSetPnpCapabilitiesTableIndex = 83,
    WdfDeviceSetPowerCapabilitiesTableIndex = 84,
    WdfDeviceSetBusInformationForChildrenTableIndex = 85,
    WdfDeviceIndicateWakeStatusTableIndex = 86,
    WdfDeviceSetFailedTableIndex = 87,
    WdfDeviceStopIdleNoTrackTableIndex = 88,
    WdfDeviceResumeIdleNoTrackTableIndex = 89,
    WdfDeviceGetFileObjectTableIndex = 90,
    WdfDeviceEnqueueRequestTableIndex = 91,
    WdfDeviceGetDefaultQueueTableIndex = 92,
    WdfDeviceConfigureRequestDispatchingTableIndex = 93,
    WdfDmaEnablerCreateTableIndex = 94,
    WdfDmaEnablerGetMaximumLengthTableIndex = 95,
    WdfDmaEnablerGetMaximumScatterGatherElementsTableIndex = 96,
    WdfDmaEnablerSetMaximumScatterGatherElementsTableIndex = 97,
    WdfDmaTransactionCreateTableIndex = 98,
    WdfDmaTransactionInitializeTableIndex = 99,
    WdfDmaTransactionInitializeUsingRequestTableIndex = 100,
    WdfDmaTransactionExecuteTableIndex = 101,
    WdfDmaTransactionReleaseTableIndex = 102,
    WdfDmaTransactionDmaCompletedTableIndex = 103,
    WdfDmaTransactionDmaCompletedWithLengthTableIndex = 104,
    WdfDmaTransactionDmaCompletedFinalTableIndex = 105,
    WdfDmaTransactionGetBytesTransferredTableIndex = 106,
    WdfDmaTransactionSetMaximumLengthTableIndex = 107,
    WdfDmaTransactionGetRequestTableIndex = 108,
    WdfDmaTransactionGetCurrentDmaTransferLengthTableIndex = 109,
    WdfDmaTransactionGetDeviceTableIndex = 110,
    WdfDpcCreateTableIndex = 111,
    WdfDpcEnqueueTableIndex = 112,
    WdfDpcCancelTableIndex = 113,
    WdfDpcGetParentObjectTableIndex = 114,
    WdfDpcWdmGetDpcTableIndex = 115,
    WdfDriverCreateTableIndex = 116,
    WdfDriverGetRegistryPathTableIndex = 117,
    WdfDriverWdmGetDriverObjectTableIndex = 118,
    WdfDriverOpenParametersRegistryKeyTableIndex = 119,
    WdfWdmDriverGetWdfDriverHandleTableIndex = 120,
    WdfDriverRegisterTraceInfoTableIndex = 121,
    WdfDriverRetrieveVersionStringTableIndex = 122,
    WdfDriverIsVersionAvailableTableIndex = 123,
    WdfFdoInitWdmGetPhysicalDeviceTableIndex = 124,
    WdfFdoInitOpenRegistryKeyTableIndex = 125,
    WdfFdoInitQueryPropertyTableIndex = 126,
    WdfFdoInitAllocAndQueryPropertyTableIndex = 127,
    WdfFdoInitSetEventCallbacksTableIndex = 128,
    WdfFdoInitSetFilterTableIndex = 129,
    WdfFdoInitSetDefaultChildListConfigTableIndex = 130,
    WdfFdoQueryForInterfaceTableIndex = 131,
    WdfFdoGetDefaultChildListTableIndex = 132,
    WdfFdoAddStaticChildTableIndex = 133,
    WdfFdoLockStaticChildListForIterationTableIndex = 134,
    WdfFdoRetrieveNextStaticChildTableIndex = 135,
    WdfFdoUnlockStaticChildListFromIterationTableIndex = 136,
    WdfFileObjectGetFileNameTableIndex = 137,
    WdfFileObjectGetFlagsTableIndex = 138,
    WdfFileObjectGetDeviceTableIndex = 139,
    WdfFileObjectWdmGetFileObjectTableIndex = 140,
    WdfInterruptCreateTableIndex = 141,
    WdfInterruptQueueDpcForIsrTableIndex = 142,
    WdfInterruptSynchronizeTableIndex = 143,
    WdfInterruptAcquireLockTableIndex = 144,
    WdfInterruptReleaseLockTableIndex = 145,
    WdfInterruptEnableTableIndex = 146,
    WdfInterruptDisableTableIndex = 147,
    WdfInterruptWdmGetInterruptTableIndex = 148,
    WdfInterruptGetInfoTableIndex = 149,
    WdfInterruptSetPolicyTableIndex = 150,
    WdfInterruptGetDeviceTableIndex = 151,
    WdfIoQueueCreateTableIndex = 152,
    WdfIoQueueGetStateTableIndex = 153,
    WdfIoQueueStartTableIndex = 154,
    WdfIoQueueStopTableIndex = 155,
    WdfIoQueueStopSynchronouslyTableIndex = 156,
    WdfIoQueueGetDeviceTableIndex = 157,
    WdfIoQueueRetrieveNextRequestTableIndex = 158,
    WdfIoQueueRetrieveRequestByFileObjectTableIndex = 159,
    WdfIoQueueFindRequestTableIndex = 160,
    WdfIoQueueRetrieveFoundRequestTableIndex = 161,
    WdfIoQueueDrainSynchronouslyTableIndex = 162,
    WdfIoQueueDrainTableIndex = 163,
    WdfIoQueuePurgeSynchronouslyTableIndex = 164,
    WdfIoQueuePurgeTableIndex = 165,
    WdfIoQueueReadyNotifyTableIndex = 166,
    WdfIoTargetCreateTableIndex = 167,
    WdfIoTargetOpenTableIndex = 168,
    WdfIoTargetCloseForQueryRemoveTableIndex = 169,
    WdfIoTargetCloseTableIndex = 170,
    WdfIoTargetStartTableIndex = 171,
    WdfIoTargetStopTableIndex = 172,
    WdfIoTargetGetStateTableIndex = 173,
    WdfIoTargetGetDeviceTableIndex = 174,
    WdfIoTargetQueryTargetPropertyTableIndex = 175,
    WdfIoTargetAllocAndQueryTargetPropertyTableIndex = 176,
    WdfIoTargetQueryForInterfaceTableIndex = 177,
    WdfIoTargetWdmGetTargetDeviceObjectTableIndex = 178,
    WdfIoTargetWdmGetTargetPhysicalDeviceTableIndex = 179,
    WdfIoTargetWdmGetTargetFileObjectTableIndex = 180,
    WdfIoTargetWdmGetTargetFileHandleTableIndex = 181,
    WdfIoTargetSendReadSynchronouslyTableIndex = 182,
    WdfIoTargetFormatRequestForReadTableIndex = 183,
    WdfIoTargetSendWriteSynchronouslyTableIndex = 184,
    WdfIoTargetFormatRequestForWriteTableIndex = 185,
    WdfIoTargetSendIoctlSynchronouslyTableIndex = 186,
    WdfIoTargetFormatRequestForIoctlTableIndex = 187,
    WdfIoTargetSendInternalIoctlSynchronouslyTableIndex = 188,
    WdfIoTargetFormatRequestForInternalIoctlTableIndex = 189,
    WdfIoTargetSendInternalIoctlOthersSynchronouslyTableIndex = 190,
    WdfIoTargetFormatRequestForInternalIoctlOthersTableIndex = 191,
    WdfMemoryCreateTableIndex = 192,
    WdfMemoryCreatePreallocatedTableIndex = 193,
    WdfMemoryGetBufferTableIndex = 194,
    WdfMemoryAssignBufferTableIndex = 195,
    WdfMemoryCopyToBufferTableIndex = 196,
    WdfMemoryCopyFromBufferTableIndex = 197,
    WdfLookasideListCreateTableIndex = 198,
    WdfMemoryCreateFromLookasideTableIndex = 199,
    WdfDeviceMiniportCreateTableIndex = 200,
    WdfDriverMiniportUnloadTableIndex = 201,
    WdfObjectGetTypedContextWorkerTableIndex = 202,
    WdfObjectAllocateContextTableIndex = 203,
    WdfObjectContextGetObjectTableIndex = 204,
    WdfObjectReferenceActualTableIndex = 205,
    WdfObjectDereferenceActualTableIndex = 206,
    WdfObjectCreateTableIndex = 207,
    WdfObjectDeleteTableIndex = 208,
    WdfObjectQueryTableIndex = 209,
    WdfPdoInitAllocateTableIndex = 210,
    WdfPdoInitSetEventCallbacksTableIndex = 211,
    WdfPdoInitAssignDeviceIDTableIndex = 212,
    WdfPdoInitAssignInstanceIDTableIndex = 213,
    WdfPdoInitAddHardwareIDTableIndex = 214,
    WdfPdoInitAddCompatibleIDTableIndex = 215,
    WdfPdoInitAddDeviceTextTableIndex = 216,
    WdfPdoInitSetDefaultLocaleTableIndex = 217,
    WdfPdoInitAssignRawDeviceTableIndex = 218,
    WdfPdoMarkMissingTableIndex = 219,
    WdfPdoRequestEjectTableIndex = 220,
    WdfPdoGetParentTableIndex = 221,
    WdfPdoRetrieveIdentificationDescriptionTableIndex = 222,
    WdfPdoRetrieveAddressDescriptionTableIndex = 223,
    WdfPdoUpdateAddressDescriptionTableIndex = 224,
    WdfPdoAddEjectionRelationsPhysicalDeviceTableIndex = 225,
    WdfPdoRemoveEjectionRelationsPhysicalDeviceTableIndex = 226,
    WdfPdoClearEjectionRelationsDevicesTableIndex = 227,
    WdfDeviceAddQueryInterfaceTableIndex = 228,
    WdfRegistryOpenKeyTableIndex = 229,
    WdfRegistryCreateKeyTableIndex = 230,
    WdfRegistryCloseTableIndex = 231,
    WdfRegistryWdmGetHandleTableIndex = 232,
    WdfRegistryRemoveKeyTableIndex = 233,
    WdfRegistryRemoveValueTableIndex = 234,
    WdfRegistryQueryValueTableIndex = 235,
    WdfRegistryQueryMemoryTableIndex = 236,
    WdfRegistryQueryMultiStringTableIndex = 237,
    WdfRegistryQueryUnicodeStringTableIndex = 238,
    WdfRegistryQueryStringTableIndex = 239,
    WdfRegistryQueryULongTableIndex = 240,
    WdfRegistryAssignValueTableIndex = 241,
    WdfRegistryAssignMemoryTableIndex = 242,
    WdfRegistryAssignMultiStringTableIndex = 243,
    WdfRegistryAssignUnicodeStringTableIndex = 244,
    WdfRegistryAssignStringTableIndex = 245,
    WdfRegistryAssignULongTableIndex = 246,
    WdfRequestCreateTableIndex = 247,
    WdfRequestCreateFromIrpTableIndex = 248,
    WdfRequestReuseTableIndex = 249,
    WdfRequestChangeTargetTableIndex = 250,
    WdfRequestFormatRequestUsingCurrentTypeTableIndex = 251,
    WdfRequestWdmFormatUsingStackLocationTableIndex = 252,
    WdfRequestSendTableIndex = 253,
    WdfRequestGetStatusTableIndex = 254,
    WdfRequestMarkCancelableTableIndex = 255,
    WdfRequestUnmarkCancelableTableIndex = 256,
    WdfRequestIsCanceledTableIndex = 257,
    WdfRequestCancelSentRequestTableIndex = 258,
    WdfRequestIsFrom32BitProcessTableIndex = 259,
    WdfRequestSetCompletionRoutineTableIndex = 260,
    WdfRequestGetCompletionParamsTableIndex = 261,
    WdfRequestAllocateTimerTableIndex = 262,
    WdfRequestCompleteTableIndex = 263,
    WdfRequestCompleteWithPriorityBoostTableIndex = 264,
    WdfRequestCompleteWithInformationTableIndex = 265,
    WdfRequestGetParametersTableIndex = 266,
    WdfRequestRetrieveInputMemoryTableIndex = 267,
    WdfRequestRetrieveOutputMemoryTableIndex = 268,
    WdfRequestRetrieveInputBufferTableIndex = 269,
    WdfRequestRetrieveOutputBufferTableIndex = 270,
    WdfRequestRetrieveInputWdmMdlTableIndex = 271,
    WdfRequestRetrieveOutputWdmMdlTableIndex = 272,
    WdfRequestRetrieveUnsafeUserInputBufferTableIndex = 273,
    WdfRequestRetrieveUnsafeUserOutputBufferTableIndex = 274,
    WdfRequestSetInformationTableIndex = 275,
    WdfRequestGetInformationTableIndex = 276,
    WdfRequestGetFileObjectTableIndex = 277,
    WdfRequestProbeAndLockUserBufferForReadTableIndex = 278,
    WdfRequestProbeAndLockUserBufferForWriteTableIndex = 279,
    WdfRequestGetRequestorModeTableIndex = 280,
    WdfRequestForwardToIoQueueTableIndex = 281,
    WdfRequestGetIoQueueTableIndex = 282,
    WdfRequestRequeueTableIndex = 283,
    WdfRequestStopAcknowledgeTableIndex = 284,
    WdfRequestWdmGetIrpTableIndex = 285,
    WdfIoResourceRequirementsListSetSlotNumberTableIndex = 286,
    WdfIoResourceRequirementsListSetInterfaceTypeTableIndex = 287,
    WdfIoResourceRequirementsListAppendIoResListTableIndex = 288,
    WdfIoResourceRequirementsListInsertIoResListTableIndex = 289,
    WdfIoResourceRequirementsListGetCountTableIndex = 290,
    WdfIoResourceRequirementsListGetIoResListTableIndex = 291,
    WdfIoResourceRequirementsListRemoveTableIndex = 292,
    WdfIoResourceRequirementsListRemoveByIoResListTableIndex = 293,
    WdfIoResourceListCreateTableIndex = 294,
    WdfIoResourceListAppendDescriptorTableIndex = 295,
    WdfIoResourceListInsertDescriptorTableIndex = 296,
    WdfIoResourceListUpdateDescriptorTableIndex = 297,
    WdfIoResourceListGetCountTableIndex = 298,
    WdfIoResourceListGetDescriptorTableIndex = 299,
    WdfIoResourceListRemoveTableIndex = 300,
    WdfIoResourceListRemoveByDescriptorTableIndex = 301,
    WdfCmResourceListAppendDescriptorTableIndex = 302,
    WdfCmResourceListInsertDescriptorTableIndex = 303,
    WdfCmResourceListGetCountTableIndex = 304,
    WdfCmResourceListGetDescriptorTableIndex = 305,
    WdfCmResourceListRemoveTableIndex = 306,
    WdfCmResourceListRemoveByDescriptorTableIndex = 307,
    WdfStringCreateTableIndex = 308,
    WdfStringGetUnicodeStringTableIndex = 309,
    WdfObjectAcquireLockTableIndex = 310,
    WdfObjectReleaseLockTableIndex = 311,
    WdfWaitLockCreateTableIndex = 312,
    WdfWaitLockAcquireTableIndex = 313,
    WdfWaitLockReleaseTableIndex = 314,
    WdfSpinLockCreateTableIndex = 315,
    WdfSpinLockAcquireTableIndex = 316,
    WdfSpinLockReleaseTableIndex = 317,
    WdfTimerCreateTableIndex = 318,
    WdfTimerStartTableIndex = 319,
    WdfTimerStopTableIndex = 320,
    WdfTimerGetParentObjectTableIndex = 321,
    WdfUsbTargetDeviceCreateTableIndex = 322,
    WdfUsbTargetDeviceRetrieveInformationTableIndex = 323,
    WdfUsbTargetDeviceGetDeviceDescriptorTableIndex = 324,
    WdfUsbTargetDeviceRetrieveConfigDescriptorTableIndex = 325,
    WdfUsbTargetDeviceQueryStringTableIndex = 326,
    WdfUsbTargetDeviceAllocAndQueryStringTableIndex = 327,
    WdfUsbTargetDeviceFormatRequestForStringTableIndex = 328,
    WdfUsbTargetDeviceGetNumInterfacesTableIndex = 329,
    WdfUsbTargetDeviceSelectConfigTableIndex = 330,
    WdfUsbTargetDeviceWdmGetConfigurationHandleTableIndex = 331,
    WdfUsbTargetDeviceRetrieveCurrentFrameNumberTableIndex = 332,
    WdfUsbTargetDeviceSendControlTransferSynchronouslyTableIndex = 333,
    WdfUsbTargetDeviceFormatRequestForControlTransferTableIndex = 334,
    WdfUsbTargetDeviceIsConnectedSynchronousTableIndex = 335,
    WdfUsbTargetDeviceResetPortSynchronouslyTableIndex = 336,
    WdfUsbTargetDeviceCyclePortSynchronouslyTableIndex = 337,
    WdfUsbTargetDeviceFormatRequestForCyclePortTableIndex = 338,
    WdfUsbTargetDeviceSendUrbSynchronouslyTableIndex = 339,
    WdfUsbTargetDeviceFormatRequestForUrbTableIndex = 340,
    WdfUsbTargetPipeGetInformationTableIndex = 341,
    WdfUsbTargetPipeIsInEndpointTableIndex = 342,
    WdfUsbTargetPipeIsOutEndpointTableIndex = 343,
    WdfUsbTargetPipeGetTypeTableIndex = 344,
    WdfUsbTargetPipeSetNoMaximumPacketSizeCheckTableIndex = 345,
    WdfUsbTargetPipeWriteSynchronouslyTableIndex = 346,
    WdfUsbTargetPipeFormatRequestForWriteTableIndex = 347,
    WdfUsbTargetPipeReadSynchronouslyTableIndex = 348,
    WdfUsbTargetPipeFormatRequestForReadTableIndex = 349,
    WdfUsbTargetPipeConfigContinuousReaderTableIndex = 350,
    WdfUsbTargetPipeAbortSynchronouslyTableIndex = 351,
    WdfUsbTargetPipeFormatRequestForAbortTableIndex = 352,
    WdfUsbTargetPipeResetSynchronouslyTableIndex = 353,
    WdfUsbTargetPipeFormatRequestForResetTableIndex = 354,
    WdfUsbTargetPipeSendUrbSynchronouslyTableIndex = 355,
    WdfUsbTargetPipeFormatRequestForUrbTableIndex = 356,
    WdfUsbInterfaceGetInterfaceNumberTableIndex = 357,
    WdfUsbInterfaceGetNumEndpointsTableIndex = 358,
    WdfUsbInterfaceGetDescriptorTableIndex = 359,
    WdfUsbInterfaceSelectSettingTableIndex = 360,
    WdfUsbInterfaceGetEndpointInformationTableIndex = 361,
    WdfUsbTargetDeviceGetInterfaceTableIndex = 362,
    WdfUsbInterfaceGetConfiguredSettingIndexTableIndex = 363,
    WdfUsbInterfaceGetNumConfiguredPipesTableIndex = 364,
    WdfUsbInterfaceGetConfiguredPipeTableIndex = 365,
    WdfUsbTargetPipeWdmGetPipeHandleTableIndex = 366,
    WdfVerifierDbgBreakPointTableIndex = 367,
    WdfVerifierKeBugCheckTableIndex = 368,
    WdfWmiProviderCreateTableIndex = 369,
    WdfWmiProviderGetDeviceTableIndex = 370,
    WdfWmiProviderIsEnabledTableIndex = 371,
    WdfWmiProviderGetTracingHandleTableIndex = 372,
    WdfWmiInstanceCreateTableIndex = 373,
    WdfWmiInstanceRegisterTableIndex = 374,
    WdfWmiInstanceDeregisterTableIndex = 375,
    WdfWmiInstanceGetDeviceTableIndex = 376,
    WdfWmiInstanceGetProviderTableIndex = 377,
    WdfWmiInstanceFireEventTableIndex = 378,
    WdfWorkItemCreateTableIndex = 379,
    WdfWorkItemEnqueueTableIndex = 380,
    WdfWorkItemGetParentObjectTableIndex = 381,
    WdfWorkItemFlushTableIndex = 382,
    WdfCommonBufferCreateWithConfigTableIndex = 383,
    WdfDmaEnablerGetFragmentLengthTableIndex = 384,
    WdfDmaEnablerWdmGetDmaAdapterTableIndex = 385,
    WdfUsbInterfaceGetNumSettingsTableIndex = 386,
    WdfDeviceRemoveDependentUsageDeviceObjectTableIndex = 387,
    WdfDeviceGetSystemPowerActionTableIndex = 388,
    WdfInterruptSetExtendedPolicyTableIndex = 389,
    WdfIoQueueAssignForwardProgressPolicyTableIndex = 390,
    WdfPdoInitAssignContainerIDTableIndex = 391,
    WdfPdoInitAllowForwardingRequestToParentTableIndex = 392,
    WdfRequestMarkCancelableExTableIndex = 393,
    WdfRequestIsReservedTableIndex = 394,
    WdfRequestForwardToParentDeviceIoQueueTableIndex = 395,
    WdfCxDeviceInitAllocateTableIndex = 396,
    WdfCxDeviceInitAssignWdmIrpPreprocessCallbackTableIndex = 397,
    WdfCxDeviceInitSetIoInCallerContextCallbackTableIndex = 398,
    WdfCxDeviceInitSetRequestAttributesTableIndex = 399,
    WdfCxDeviceInitSetFileObjectConfigTableIndex = 400,
    WdfDeviceWdmDispatchIrpTableIndex = 401,
    WdfDeviceWdmDispatchIrpToIoQueueTableIndex = 402,
    WdfDeviceInitSetRemoveLockOptionsTableIndex = 403,
    WdfDeviceConfigureWdmIrpDispatchCallbackTableIndex = 404,
    WdfDmaEnablerConfigureSystemProfileTableIndex = 405,
    WdfDmaTransactionInitializeUsingOffsetTableIndex = 406,
    WdfDmaTransactionGetTransferInfoTableIndex = 407,
    WdfDmaTransactionSetChannelConfigurationCallbackTableIndex = 408,
    WdfDmaTransactionSetTransferCompleteCallbackTableIndex = 409,
    WdfDmaTransactionSetImmediateExecutionTableIndex = 410,
    WdfDmaTransactionAllocateResourcesTableIndex = 411,
    WdfDmaTransactionSetDeviceAddressOffsetTableIndex = 412,
    WdfDmaTransactionFreeResourcesTableIndex = 413,
    WdfDmaTransactionCancelTableIndex = 414,
    WdfDmaTransactionWdmGetTransferContextTableIndex = 415,
    WdfInterruptQueueWorkItemForIsrTableIndex = 416,
    WdfInterruptTryToAcquireLockTableIndex = 417,
    WdfIoQueueStopAndPurgeTableIndex = 418,
    WdfIoQueueStopAndPurgeSynchronouslyTableIndex = 419,
    WdfIoTargetPurgeTableIndex = 420,
    WdfUsbTargetDeviceCreateWithParametersTableIndex = 421,
    WdfUsbTargetDeviceQueryUsbCapabilityTableIndex = 422,
    WdfUsbTargetDeviceCreateUrbTableIndex = 423,
    WdfUsbTargetDeviceCreateIsochUrbTableIndex = 424,
    WdfDeviceWdmAssignPowerFrameworkSettingsTableIndex = 425,
    WdfDmaTransactionStopSystemTransferTableIndex = 426,
    WdfCxVerifierKeBugCheckTableIndex = 427,
    WdfInterruptReportActiveTableIndex = 428,
    WdfInterruptReportInactiveTableIndex = 429,
    WdfDeviceInitSetReleaseHardwareOrderOnFailureTableIndex = 430,
    WdfGetTriageInfoTableIndex = 431,
    WdfDeviceInitSetIoTypeExTableIndex = 432,
    WdfDeviceQueryPropertyExTableIndex = 433,
    WdfDeviceAllocAndQueryPropertyExTableIndex = 434,
    WdfDeviceAssignPropertyTableIndex = 435,
    WdfFdoInitQueryPropertyExTableIndex = 436,
    WdfFdoInitAllocAndQueryPropertyExTableIndex = 437,
    WdfDeviceStopIdleActualTableIndex = 438,
    WdfDeviceResumeIdleActualTableIndex = 439,
    WdfDeviceGetSelfIoTargetTableIndex = 440,
    WdfDeviceInitAllowSelfIoTargetTableIndex = 441,
    WdfIoTargetSelfAssignDefaultIoQueueTableIndex = 442,
    WdfDeviceOpenDevicemapKeyTableIndex = 443,
    WdfDmaTransactionSetSingleTransferRequirementTableIndex = 444,
    WdfCxDeviceInitSetPnpPowerEventCallbacksTableIndex = 445,
    WdfFunctionTableNumEntries = 446,
} WDFFUNCENUM;
%ProgramFiles(x86)%\Windows Kits\10\Include\wdf\kmdf\1.19\wdffuncenum.h(23,0)
61 0.052660875 WDFFUNCENUM Enum
typedef enum _WDFFUNCENUM {

    WdfChildListCreateTableIndex = 0,
    WdfChildListGetDeviceTableIndex = 1,
    WdfChildListRetrievePdoTableIndex = 2,
    WdfChildListRetrieveAddressDescriptionTableIndex = 3,
    WdfChildListBeginScanTableIndex = 4,
    WdfChildListEndScanTableIndex = 5,
    WdfChildListBeginIterationTableIndex = 6,
    WdfChildListRetrieveNextDeviceTableIndex = 7,
    WdfChildListEndIterationTableIndex = 8,
    WdfChildListAddOrUpdateChildDescriptionAsPresentTableIndex = 9,
    WdfChildListUpdateChildDescriptionAsMissingTableIndex = 10,
    WdfChildListUpdateAllChildDescriptionsAsPresentTableIndex = 11,
    WdfChildListRequestChildEjectTableIndex = 12,
    WdfCollectionCreateTableIndex = 13,
    WdfCollectionGetCountTableIndex = 14,
    WdfCollectionAddTableIndex = 15,
    WdfCollectionRemoveTableIndex = 16,
    WdfCollectionRemoveItemTableIndex = 17,
    WdfCollectionGetItemTableIndex = 18,
    WdfCollectionGetFirstItemTableIndex = 19,
    WdfCollectionGetLastItemTableIndex = 20,
    WdfCommonBufferCreateTableIndex = 21,
    WdfCommonBufferGetAlignedVirtualAddressTableIndex = 22,
    WdfCommonBufferGetAlignedLogicalAddressTableIndex = 23,
    WdfCommonBufferGetLengthTableIndex = 24,
    WdfControlDeviceInitAllocateTableIndex = 25,
    WdfControlDeviceInitSetShutdownNotificationTableIndex = 26,
    WdfControlFinishInitializingTableIndex = 27,
    WdfDeviceGetDeviceStateTableIndex = 28,
    WdfDeviceSetDeviceStateTableIndex = 29,
    WdfWdmDeviceGetWdfDeviceHandleTableIndex = 30,
    WdfDeviceWdmGetDeviceObjectTableIndex = 31,
    WdfDeviceWdmGetAttachedDeviceTableIndex = 32,
    WdfDeviceWdmGetPhysicalDeviceTableIndex = 33,
    WdfDeviceWdmDispatchPreprocessedIrpTableIndex = 34,
    WdfDeviceAddDependentUsageDeviceObjectTableIndex = 35,
    WdfDeviceAddRemovalRelationsPhysicalDeviceTableIndex = 36,
    WdfDeviceRemoveRemovalRelationsPhysicalDeviceTableIndex = 37,
    WdfDeviceClearRemovalRelationsDevicesTableIndex = 38,
    WdfDeviceGetDriverTableIndex = 39,
    WdfDeviceRetrieveDeviceNameTableIndex = 40,
    WdfDeviceAssignMofResourceNameTableIndex = 41,
    WdfDeviceGetIoTargetTableIndex = 42,
    WdfDeviceGetDevicePnpStateTableIndex = 43,
    WdfDeviceGetDevicePowerStateTableIndex = 44,
    WdfDeviceGetDevicePowerPolicyStateTableIndex = 45,
    WdfDeviceAssignS0IdleSettingsTableIndex = 46,
    WdfDeviceAssignSxWakeSettingsTableIndex = 47,
    WdfDeviceOpenRegistryKeyTableIndex = 48,
    WdfDeviceSetSpecialFileSupportTableIndex = 49,
    WdfDeviceSetCharacteristicsTableIndex = 50,
    WdfDeviceGetCharacteristicsTableIndex = 51,
    WdfDeviceGetAlignmentRequirementTableIndex = 52,
    WdfDeviceSetAlignmentRequirementTableIndex = 53,
    WdfDeviceInitFreeTableIndex = 54,
    WdfDeviceInitSetPnpPowerEventCallbacksTableIndex = 55,
    WdfDeviceInitSetPowerPolicyEventCallbacksTableIndex = 56,
    WdfDeviceInitSetPowerPolicyOwnershipTableIndex = 57,
    WdfDeviceInitRegisterPnpStateChangeCallbackTableIndex = 58,
    WdfDeviceInitRegisterPowerStateChangeCallbackTableIndex = 59,
    WdfDeviceInitRegisterPowerPolicyStateChangeCallbackTableIndex = 60,
    WdfDeviceInitSetIoTypeTableIndex = 61,
    WdfDeviceInitSetExclusiveTableIndex = 62,
    WdfDeviceInitSetPowerNotPageableTableIndex = 63,
    WdfDeviceInitSetPowerPageableTableIndex = 64,
    WdfDeviceInitSetPowerInrushTableIndex = 65,
    WdfDeviceInitSetDeviceTypeTableIndex = 66,
    WdfDeviceInitAssignNameTableIndex = 67,
    WdfDeviceInitAssignSDDLStringTableIndex = 68,
    WdfDeviceInitSetDeviceClassTableIndex = 69,
    WdfDeviceInitSetCharacteristicsTableIndex = 70,
    WdfDeviceInitSetFileObjectConfigTableIndex = 71,
    WdfDeviceInitSetRequestAttributesTableIndex = 72,
    WdfDeviceInitAssignWdmIrpPreprocessCallbackTableIndex = 73,
    WdfDeviceInitSetIoInCallerContextCallbackTableIndex = 74,
    WdfDeviceCreateTableIndex = 75,
    WdfDeviceSetStaticStopRemoveTableIndex = 76,
    WdfDeviceCreateDeviceInterfaceTableIndex = 77,
    WdfDeviceSetDeviceInterfaceStateTableIndex = 78,
    WdfDeviceRetrieveDeviceInterfaceStringTableIndex = 79,
    WdfDeviceCreateSymbolicLinkTableIndex = 80,
    WdfDeviceQueryPropertyTableIndex = 81,
    WdfDeviceAllocAndQueryPropertyTableIndex = 82,
    WdfDeviceSetPnpCapabilitiesTableIndex = 83,
    WdfDeviceSetPowerCapabilitiesTableIndex = 84,
    WdfDeviceSetBusInformationForChildrenTableIndex = 85,
    WdfDeviceIndicateWakeStatusTableIndex = 86,
    WdfDeviceSetFailedTableIndex = 87,
    WdfDeviceStopIdleNoTrackTableIndex = 88,
    WdfDeviceResumeIdleNoTrackTableIndex = 89,
    WdfDeviceGetFileObjectTableIndex = 90,
    WdfDeviceEnqueueRequestTableIndex = 91,
    WdfDeviceGetDefaultQueueTableIndex = 92,
    WdfDeviceConfigureRequestDispatchingTableIndex = 93,
    WdfDmaEnablerCreateTableIndex = 94,
    WdfDmaEnablerGetMaximumLengthTableIndex = 95,
    WdfDmaEnablerGetMaximumScatterGatherElementsTableIndex = 96,
    WdfDmaEnablerSetMaximumScatterGatherElementsTableIndex = 97,
    WdfDmaTransactionCreateTableIndex = 98,
    WdfDmaTransactionInitializeTableIndex = 99,
    WdfDmaTransactionInitializeUsingRequestTableIndex = 100,
    WdfDmaTransactionExecuteTableIndex = 101,
    WdfDmaTransactionReleaseTableIndex = 102,
    WdfDmaTransactionDmaCompletedTableIndex = 103,
    WdfDmaTransactionDmaCompletedWithLengthTableIndex = 104,
    WdfDmaTransactionDmaCompletedFinalTableIndex = 105,
    WdfDmaTransactionGetBytesTransferredTableIndex = 106,
    WdfDmaTransactionSetMaximumLengthTableIndex = 107,
    WdfDmaTransactionGetRequestTableIndex = 108,
    WdfDmaTransactionGetCurrentDmaTransferLengthTableIndex = 109,
    WdfDmaTransactionGetDeviceTableIndex = 110,
    WdfDpcCreateTableIndex = 111,
    WdfDpcEnqueueTableIndex = 112,
    WdfDpcCancelTableIndex = 113,
    WdfDpcGetParentObjectTableIndex = 114,
    WdfDpcWdmGetDpcTableIndex = 115,
    WdfDriverCreateTableIndex = 116,
    WdfDriverGetRegistryPathTableIndex = 117,
    WdfDriverWdmGetDriverObjectTableIndex = 118,
    WdfDriverOpenParametersRegistryKeyTableIndex = 119,
    WdfWdmDriverGetWdfDriverHandleTableIndex = 120,
    WdfDriverRegisterTraceInfoTableIndex = 121,
    WdfDriverRetrieveVersionStringTableIndex = 122,
    WdfDriverIsVersionAvailableTableIndex = 123,
    WdfFdoInitWdmGetPhysicalDeviceTableIndex = 124,
    WdfFdoInitOpenRegistryKeyTableIndex = 125,
    WdfFdoInitQueryPropertyTableIndex = 126,
    WdfFdoInitAllocAndQueryPropertyTableIndex = 127,
    WdfFdoInitSetEventCallbacksTableIndex = 128,
    WdfFdoInitSetFilterTableIndex = 129,
    WdfFdoInitSetDefaultChildListConfigTableIndex = 130,
    WdfFdoQueryForInterfaceTableIndex = 131,
    WdfFdoGetDefaultChildListTableIndex = 132,
    WdfFdoAddStaticChildTableIndex = 133,
    WdfFdoLockStaticChildListForIterationTableIndex = 134,
    WdfFdoRetrieveNextStaticChildTableIndex = 135,
    WdfFdoUnlockStaticChildListFromIterationTableIndex = 136,
    WdfFileObjectGetFileNameTableIndex = 137,
    WdfFileObjectGetFlagsTableIndex = 138,
    WdfFileObjectGetDeviceTableIndex = 139,
    WdfFileObjectWdmGetFileObjectTableIndex = 140,
    WdfInterruptCreateTableIndex = 141,
    WdfInterruptQueueDpcForIsrTableIndex = 142,
    WdfInterruptSynchronizeTableIndex = 143,
    WdfInterruptAcquireLockTableIndex = 144,
    WdfInterruptReleaseLockTableIndex = 145,
    WdfInterruptEnableTableIndex = 146,
    WdfInterruptDisableTableIndex = 147,
    WdfInterruptWdmGetInterruptTableIndex = 148,
    WdfInterruptGetInfoTableIndex = 149,
    WdfInterruptSetPolicyTableIndex = 150,
    WdfInterruptGetDeviceTableIndex = 151,
    WdfIoQueueCreateTableIndex = 152,
    WdfIoQueueGetStateTableIndex = 153,
    WdfIoQueueStartTableIndex = 154,
    WdfIoQueueStopTableIndex = 155,
    WdfIoQueueStopSynchronouslyTableIndex = 156,
    WdfIoQueueGetDeviceTableIndex = 157,
    WdfIoQueueRetrieveNextRequestTableIndex = 158,
    WdfIoQueueRetrieveRequestByFileObjectTableIndex = 159,
    WdfIoQueueFindRequestTableIndex = 160,
    WdfIoQueueRetrieveFoundRequestTableIndex = 161,
    WdfIoQueueDrainSynchronouslyTableIndex = 162,
    WdfIoQueueDrainTableIndex = 163,
    WdfIoQueuePurgeSynchronouslyTableIndex = 164,
    WdfIoQueuePurgeTableIndex = 165,
    WdfIoQueueReadyNotifyTableIndex = 166,
    WdfIoTargetCreateTableIndex = 167,
    WdfIoTargetOpenTableIndex = 168,
    WdfIoTargetCloseForQueryRemoveTableIndex = 169,
    WdfIoTargetCloseTableIndex = 170,
    WdfIoTargetStartTableIndex = 171,
    WdfIoTargetStopTableIndex = 172,
    WdfIoTargetGetStateTableIndex = 173,
    WdfIoTargetGetDeviceTableIndex = 174,
    WdfIoTargetQueryTargetPropertyTableIndex = 175,
    WdfIoTargetAllocAndQueryTargetPropertyTableIndex = 176,
    WdfIoTargetQueryForInterfaceTableIndex = 177,
    WdfIoTargetWdmGetTargetDeviceObjectTableIndex = 178,
    WdfIoTargetWdmGetTargetPhysicalDeviceTableIndex = 179,
    WdfIoTargetWdmGetTargetFileObjectTableIndex = 180,
    WdfIoTargetWdmGetTargetFileHandleTableIndex = 181,
    WdfIoTargetSendReadSynchronouslyTableIndex = 182,
    WdfIoTargetFormatRequestForReadTableIndex = 183,
    WdfIoTargetSendWriteSynchronouslyTableIndex = 184,
    WdfIoTargetFormatRequestForWriteTableIndex = 185,
    WdfIoTargetSendIoctlSynchronouslyTableIndex = 186,
    WdfIoTargetFormatRequestForIoctlTableIndex = 187,
    WdfIoTargetSendInternalIoctlSynchronouslyTableIndex = 188,
    WdfIoTargetFormatRequestForInternalIoctlTableIndex = 189,
    WdfIoTargetSendInternalIoctlOthersSynchronouslyTableIndex = 190,
    WdfIoTargetFormatRequestForInternalIoctlOthersTableIndex = 191,
    WdfMemoryCreateTableIndex = 192,
    WdfMemoryCreatePreallocatedTableIndex = 193,
    WdfMemoryGetBufferTableIndex = 194,
    WdfMemoryAssignBufferTableIndex = 195,
    WdfMemoryCopyToBufferTableIndex = 196,
    WdfMemoryCopyFromBufferTableIndex = 197,
    WdfLookasideListCreateTableIndex = 198,
    WdfMemoryCreateFromLookasideTableIndex = 199,
    WdfDeviceMiniportCreateTableIndex = 200,
    WdfDriverMiniportUnloadTableIndex = 201,
    WdfObjectGetTypedContextWorkerTableIndex = 202,
    WdfObjectAllocateContextTableIndex = 203,
    WdfObjectContextGetObjectTableIndex = 204,
    WdfObjectReferenceActualTableIndex = 205,
    WdfObjectDereferenceActualTableIndex = 206,
    WdfObjectCreateTableIndex = 207,
    WdfObjectDeleteTableIndex = 208,
    WdfObjectQueryTableIndex = 209,
    WdfPdoInitAllocateTableIndex = 210,
    WdfPdoInitSetEventCallbacksTableIndex = 211,
    WdfPdoInitAssignDeviceIDTableIndex = 212,
    WdfPdoInitAssignInstanceIDTableIndex = 213,
    WdfPdoInitAddHardwareIDTableIndex = 214,
    WdfPdoInitAddCompatibleIDTableIndex = 215,
    WdfPdoInitAddDeviceTextTableIndex = 216,
    WdfPdoInitSetDefaultLocaleTableIndex = 217,
    WdfPdoInitAssignRawDeviceTableIndex = 218,
    WdfPdoMarkMissingTableIndex = 219,
    WdfPdoRequestEjectTableIndex = 220,
    WdfPdoGetParentTableIndex = 221,
    WdfPdoRetrieveIdentificationDescriptionTableIndex = 222,
    WdfPdoRetrieveAddressDescriptionTableIndex = 223,
    WdfPdoUpdateAddressDescriptionTableIndex = 224,
    WdfPdoAddEjectionRelationsPhysicalDeviceTableIndex = 225,
    WdfPdoRemoveEjectionRelationsPhysicalDeviceTableIndex = 226,
    WdfPdoClearEjectionRelationsDevicesTableIndex = 227,
    WdfDeviceAddQueryInterfaceTableIndex = 228,
    WdfRegistryOpenKeyTableIndex = 229,
    WdfRegistryCreateKeyTableIndex = 230,
    WdfRegistryCloseTableIndex = 231,
    WdfRegistryWdmGetHandleTableIndex = 232,
    WdfRegistryRemoveKeyTableIndex = 233,
    WdfRegistryRemoveValueTableIndex = 234,
    WdfRegistryQueryValueTableIndex = 235,
    WdfRegistryQueryMemoryTableIndex = 236,
    WdfRegistryQueryMultiStringTableIndex = 237,
    WdfRegistryQueryUnicodeStringTableIndex = 238,
    WdfRegistryQueryStringTableIndex = 239,
    WdfRegistryQueryULongTableIndex = 240,
    WdfRegistryAssignValueTableIndex = 241,
    WdfRegistryAssignMemoryTableIndex = 242,
    WdfRegistryAssignMultiStringTableIndex = 243,
    WdfRegistryAssignUnicodeStringTableIndex = 244,
    WdfRegistryAssignStringTableIndex = 245,
    WdfRegistryAssignULongTableIndex = 246,
    WdfRequestCreateTableIndex = 247,
    WdfRequestCreateFromIrpTableIndex = 248,
    WdfRequestReuseTableIndex = 249,
    WdfRequestChangeTargetTableIndex = 250,
    WdfRequestFormatRequestUsingCurrentTypeTableIndex = 251,
    WdfRequestWdmFormatUsingStackLocationTableIndex = 252,
    WdfRequestSendTableIndex = 253,
    WdfRequestGetStatusTableIndex = 254,
    WdfRequestMarkCancelableTableIndex = 255,
    WdfRequestUnmarkCancelableTableIndex = 256,
    WdfRequestIsCanceledTableIndex = 257,
    WdfRequestCancelSentRequestTableIndex = 258,
    WdfRequestIsFrom32BitProcessTableIndex = 259,
    WdfRequestSetCompletionRoutineTableIndex = 260,
    WdfRequestGetCompletionParamsTableIndex = 261,
    WdfRequestAllocateTimerTableIndex = 262,
    WdfRequestCompleteTableIndex = 263,
    WdfRequestCompleteWithPriorityBoostTableIndex = 264,
    WdfRequestCompleteWithInformationTableIndex = 265,
    WdfRequestGetParametersTableIndex = 266,
    WdfRequestRetrieveInputMemoryTableIndex = 267,
    WdfRequestRetrieveOutputMemoryTableIndex = 268,
    WdfRequestRetrieveInputBufferTableIndex = 269,
    WdfRequestRetrieveOutputBufferTableIndex = 270,
    WdfRequestRetrieveInputWdmMdlTableIndex = 271,
    WdfRequestRetrieveOutputWdmMdlTableIndex = 272,
    WdfRequestRetrieveUnsafeUserInputBufferTableIndex = 273,
    WdfRequestRetrieveUnsafeUserOutputBufferTableIndex = 274,
    WdfRequestSetInformationTableIndex = 275,
    WdfRequestGetInformationTableIndex = 276,
    WdfRequestGetFileObjectTableIndex = 277,
    WdfRequestProbeAndLockUserBufferForReadTableIndex = 278,
    WdfRequestProbeAndLockUserBufferForWriteTableIndex = 279,
    WdfRequestGetRequestorModeTableIndex = 280,
    WdfRequestForwardToIoQueueTableIndex = 281,
    WdfRequestGetIoQueueTableIndex = 282,
    WdfRequestRequeueTableIndex = 283,
    WdfRequestStopAcknowledgeTableIndex = 284,
    WdfRequestWdmGetIrpTableIndex = 285,
    WdfIoResourceRequirementsListSetSlotNumberTableIndex = 286,
    WdfIoResourceRequirementsListSetInterfaceTypeTableIndex = 287,
    WdfIoResourceRequirementsListAppendIoResListTableIndex = 288,
    WdfIoResourceRequirementsListInsertIoResListTableIndex = 289,
    WdfIoResourceRequirementsListGetCountTableIndex = 290,
    WdfIoResourceRequirementsListGetIoResListTableIndex = 291,
    WdfIoResourceRequirementsListRemoveTableIndex = 292,
    WdfIoResourceRequirementsListRemoveByIoResListTableIndex = 293,
    WdfIoResourceListCreateTableIndex = 294,
    WdfIoResourceListAppendDescriptorTableIndex = 295,
    WdfIoResourceListInsertDescriptorTableIndex = 296,
    WdfIoResourceListUpdateDescriptorTableIndex = 297,
    WdfIoResourceListGetCountTableIndex = 298,
    WdfIoResourceListGetDescriptorTableIndex = 299,
    WdfIoResourceListRemoveTableIndex = 300,
    WdfIoResourceListRemoveByDescriptorTableIndex = 301,
    WdfCmResourceListAppendDescriptorTableIndex = 302,
    WdfCmResourceListInsertDescriptorTableIndex = 303,
    WdfCmResourceListGetCountTableIndex = 304,
    WdfCmResourceListGetDescriptorTableIndex = 305,
    WdfCmResourceListRemoveTableIndex = 306,
    WdfCmResourceListRemoveByDescriptorTableIndex = 307,
    WdfStringCreateTableIndex = 308,
    WdfStringGetUnicodeStringTableIndex = 309,
    WdfObjectAcquireLockTableIndex = 310,
    WdfObjectReleaseLockTableIndex = 311,
    WdfWaitLockCreateTableIndex = 312,
    WdfWaitLockAcquireTableIndex = 313,
    WdfWaitLockReleaseTableIndex = 314,
    WdfSpinLockCreateTableIndex = 315,
    WdfSpinLockAcquireTableIndex = 316,
    WdfSpinLockReleaseTableIndex = 317,
    WdfTimerCreateTableIndex = 318,
    WdfTimerStartTableIndex = 319,
    WdfTimerStopTableIndex = 320,
    WdfTimerGetParentObjectTableIndex = 321,
    WdfUsbTargetDeviceCreateTableIndex = 322,
    WdfUsbTargetDeviceRetrieveInformationTableIndex = 323,
    WdfUsbTargetDeviceGetDeviceDescriptorTableIndex = 324,
    WdfUsbTargetDeviceRetrieveConfigDescriptorTableIndex = 325,
    WdfUsbTargetDeviceQueryStringTableIndex = 326,
    WdfUsbTargetDeviceAllocAndQueryStringTableIndex = 327,
    WdfUsbTargetDeviceFormatRequestForStringTableIndex = 328,
    WdfUsbTargetDeviceGetNumInterfacesTableIndex = 329,
    WdfUsbTargetDeviceSelectConfigTableIndex = 330,
    WdfUsbTargetDeviceWdmGetConfigurationHandleTableIndex = 331,
    WdfUsbTargetDeviceRetrieveCurrentFrameNumberTableIndex = 332,
    WdfUsbTargetDeviceSendControlTransferSynchronouslyTableIndex = 333,
    WdfUsbTargetDeviceFormatRequestForControlTransferTableIndex = 334,
    WdfUsbTargetDeviceIsConnectedSynchronousTableIndex = 335,
    WdfUsbTargetDeviceResetPortSynchronouslyTableIndex = 336,
    WdfUsbTargetDeviceCyclePortSynchronouslyTableIndex = 337,
    WdfUsbTargetDeviceFormatRequestForCyclePortTableIndex = 338,
    WdfUsbTargetDeviceSendUrbSynchronouslyTableIndex = 339,
    WdfUsbTargetDeviceFormatRequestForUrbTableIndex = 340,
    WdfUsbTargetPipeGetInformationTableIndex = 341,
    WdfUsbTargetPipeIsInEndpointTableIndex = 342,
    WdfUsbTargetPipeIsOutEndpointTableIndex = 343,
    WdfUsbTargetPipeGetTypeTableIndex = 344,
    WdfUsbTargetPipeSetNoMaximumPacketSizeCheckTableIndex = 345,
    WdfUsbTargetPipeWriteSynchronouslyTableIndex = 346,
    WdfUsbTargetPipeFormatRequestForWriteTableIndex = 347,
    WdfUsbTargetPipeReadSynchronouslyTableIndex = 348,
    WdfUsbTargetPipeFormatRequestForReadTableIndex = 349,
    WdfUsbTargetPipeConfigContinuousReaderTableIndex = 350,
    WdfUsbTargetPipeAbortSynchronouslyTableIndex = 351,
    WdfUsbTargetPipeFormatRequestForAbortTableIndex = 352,
    WdfUsbTargetPipeResetSynchronouslyTableIndex = 353,
    WdfUsbTargetPipeFormatRequestForResetTableIndex = 354,
    WdfUsbTargetPipeSendUrbSynchronouslyTableIndex = 355,
    WdfUsbTargetPipeFormatRequestForUrbTableIndex = 356,
    WdfUsbInterfaceGetInterfaceNumberTableIndex = 357,
    WdfUsbInterfaceGetNumEndpointsTableIndex = 358,
    WdfUsbInterfaceGetDescriptorTableIndex = 359,
    WdfUsbInterfaceSelectSettingTableIndex = 360,
    WdfUsbInterfaceGetEndpointInformationTableIndex = 361,
    WdfUsbTargetDeviceGetInterfaceTableIndex = 362,
    WdfUsbInterfaceGetConfiguredSettingIndexTableIndex = 363,
    WdfUsbInterfaceGetNumConfiguredPipesTableIndex = 364,
    WdfUsbInterfaceGetConfiguredPipeTableIndex = 365,
    WdfUsbTargetPipeWdmGetPipeHandleTableIndex = 366,
    WdfVerifierDbgBreakPointTableIndex = 367,
    WdfVerifierKeBugCheckTableIndex = 368,
    WdfWmiProviderCreateTableIndex = 369,
    WdfWmiProviderGetDeviceTableIndex = 370,
    WdfWmiProviderIsEnabledTableIndex = 371,
    WdfWmiProviderGetTracingHandleTableIndex = 372,
    WdfWmiInstanceCreateTableIndex = 373,
    WdfWmiInstanceRegisterTableIndex = 374,
    WdfWmiInstanceDeregisterTableIndex = 375,
    WdfWmiInstanceGetDeviceTableIndex = 376,
    WdfWmiInstanceGetProviderTableIndex = 377,
    WdfWmiInstanceFireEventTableIndex = 378,
    WdfWorkItemCreateTableIndex = 379,
    WdfWorkItemEnqueueTableIndex = 380,
    WdfWorkItemGetParentObjectTableIndex = 381,
    WdfWorkItemFlushTableIndex = 382,
    WdfCommonBufferCreateWithConfigTableIndex = 383,
    WdfDmaEnablerGetFragmentLengthTableIndex = 384,
    WdfDmaEnablerWdmGetDmaAdapterTableIndex = 385,
    WdfUsbInterfaceGetNumSettingsTableIndex = 386,
    WdfDeviceRemoveDependentUsageDeviceObjectTableIndex = 387,
    WdfDeviceGetSystemPowerActionTableIndex = 388,
    WdfInterruptSetExtendedPolicyTableIndex = 389,
    WdfIoQueueAssignForwardProgressPolicyTableIndex = 390,
    WdfPdoInitAssignContainerIDTableIndex = 391,
    WdfPdoInitAllowForwardingRequestToParentTableIndex = 392,
    WdfRequestMarkCancelableExTableIndex = 393,
    WdfRequestIsReservedTableIndex = 394,
    WdfRequestForwardToParentDeviceIoQueueTableIndex = 395,
    WdfCxDeviceInitAllocateTableIndex = 396,
    WdfCxDeviceInitAssignWdmIrpPreprocessCallbackTableIndex = 397,
    WdfCxDeviceInitSetIoInCallerContextCallbackTableIndex = 398,
    WdfCxDeviceInitSetRequestAttributesTableIndex = 399,
    WdfCxDeviceInitSetFileObjectConfigTableIndex = 400,
    WdfDeviceWdmDispatchIrpTableIndex = 401,
    WdfDeviceWdmDispatchIrpToIoQueueTableIndex = 402,
    WdfDeviceInitSetRemoveLockOptionsTableIndex = 403,
    WdfDeviceConfigureWdmIrpDispatchCallbackTableIndex = 404,
    WdfDmaEnablerConfigureSystemProfileTableIndex = 405,
    WdfDmaTransactionInitializeUsingOffsetTableIndex = 406,
    WdfDmaTransactionGetTransferInfoTableIndex = 407,
    WdfDmaTransactionSetChannelConfigurationCallbackTableIndex = 408,
    WdfDmaTransactionSetTransferCompleteCallbackTableIndex = 409,
    WdfDmaTransactionSetImmediateExecutionTableIndex = 410,
    WdfDmaTransactionAllocateResourcesTableIndex = 411,
    WdfDmaTransactionSetDeviceAddressOffsetTableIndex = 412,
    WdfDmaTransactionFreeResourcesTableIndex = 413,
    WdfDmaTransactionCancelTableIndex = 414,
    WdfDmaTransactionWdmGetTransferContextTableIndex = 415,
    WdfInterruptQueueWorkItemForIsrTableIndex = 416,
    WdfInterruptTryToAcquireLockTableIndex = 417,
    WdfIoQueueStopAndPurgeTableIndex = 418,
    WdfIoQueueStopAndPurgeSynchronouslyTableIndex = 419,
    WdfIoTargetPurgeTableIndex = 420,
    WdfUsbTargetDeviceCreateWithParametersTableIndex = 421,
    WdfUsbTargetDeviceQueryUsbCapabilityTableIndex = 422,
    WdfUsbTargetDeviceCreateUrbTableIndex = 423,
    WdfUsbTargetDeviceCreateIsochUrbTableIndex = 424,
    WdfDeviceWdmAssignPowerFrameworkSettingsTableIndex = 425,
    WdfDmaTransactionStopSystemTransferTableIndex = 426,
    WdfCxVerifierKeBugCheckTableIndex = 427,
    WdfInterruptReportActiveTableIndex = 428,
    WdfInterruptReportInactiveTableIndex = 429,
    WdfDeviceInitSetReleaseHardwareOrderOnFailureTableIndex = 430,
    WdfGetTriageInfoTableIndex = 431,
    WdfDeviceInitSetIoTypeExTableIndex = 432,
    WdfDeviceQueryPropertyExTableIndex = 433,
    WdfDeviceAllocAndQueryPropertyExTableIndex = 434,
    WdfDeviceAssignPropertyTableIndex = 435,
    WdfFdoInitQueryPropertyExTableIndex = 436,
    WdfFdoInitAllocAndQueryPropertyExTableIndex = 437,
    WdfDeviceStopIdleActualTableIndex = 438,
    WdfDeviceResumeIdleActualTableIndex = 439,
    WdfDeviceGetSelfIoTargetTableIndex = 440,
    WdfDeviceInitAllowSelfIoTargetTableIndex = 441,
    WdfIoTargetSelfAssignDefaultIoQueueTableIndex = 442,
    WdfDeviceOpenDevicemapKeyTableIndex = 443,
    WdfDmaTransactionSetSingleTransferRequirementTableIndex = 444,
    WdfCxDeviceInitSetPnpPowerEventCallbacksTableIndex = 445,
    WdfFileObjectGetInitiatorProcessIdTableIndex = 446,
    WdfRequestGetRequestorProcessIdTableIndex = 447,
    WdfFunctionTableNumEntries = 448,
} WDFFUNCENUM;
%ProgramFiles(x86)%\Windows Kits\10\Include\wdf\kmdf\1.21\wdffuncenum.h(23,0)
62 0.052660875 WDFFUNCENUM Enum
typedef enum _WDFFUNCENUM {

    WdfChildListCreateTableIndex = 0,
    WdfChildListGetDeviceTableIndex = 1,
    WdfChildListRetrievePdoTableIndex = 2,
    WdfChildListRetrieveAddressDescriptionTableIndex = 3,
    WdfChildListBeginScanTableIndex = 4,
    WdfChildListEndScanTableIndex = 5,
    WdfChildListBeginIterationTableIndex = 6,
    WdfChildListRetrieveNextDeviceTableIndex = 7,
    WdfChildListEndIterationTableIndex = 8,
    WdfChildListAddOrUpdateChildDescriptionAsPresentTableIndex = 9,
    WdfChildListUpdateChildDescriptionAsMissingTableIndex = 10,
    WdfChildListUpdateAllChildDescriptionsAsPresentTableIndex = 11,
    WdfChildListRequestChildEjectTableIndex = 12,
    WdfCollectionCreateTableIndex = 13,
    WdfCollectionGetCountTableIndex = 14,
    WdfCollectionAddTableIndex = 15,
    WdfCollectionRemoveTableIndex = 16,
    WdfCollectionRemoveItemTableIndex = 17,
    WdfCollectionGetItemTableIndex = 18,
    WdfCollectionGetFirstItemTableIndex = 19,
    WdfCollectionGetLastItemTableIndex = 20,
    WdfCommonBufferCreateTableIndex = 21,
    WdfCommonBufferGetAlignedVirtualAddressTableIndex = 22,
    WdfCommonBufferGetAlignedLogicalAddressTableIndex = 23,
    WdfCommonBufferGetLengthTableIndex = 24,
    WdfControlDeviceInitAllocateTableIndex = 25,
    WdfControlDeviceInitSetShutdownNotificationTableIndex = 26,
    WdfControlFinishInitializingTableIndex = 27,
    WdfDeviceGetDeviceStateTableIndex = 28,
    WdfDeviceSetDeviceStateTableIndex = 29,
    WdfWdmDeviceGetWdfDeviceHandleTableIndex = 30,
    WdfDeviceWdmGetDeviceObjectTableIndex = 31,
    WdfDeviceWdmGetAttachedDeviceTableIndex = 32,
    WdfDeviceWdmGetPhysicalDeviceTableIndex = 33,
    WdfDeviceWdmDispatchPreprocessedIrpTableIndex = 34,
    WdfDeviceAddDependentUsageDeviceObjectTableIndex = 35,
    WdfDeviceAddRemovalRelationsPhysicalDeviceTableIndex = 36,
    WdfDeviceRemoveRemovalRelationsPhysicalDeviceTableIndex = 37,
    WdfDeviceClearRemovalRelationsDevicesTableIndex = 38,
    WdfDeviceGetDriverTableIndex = 39,
    WdfDeviceRetrieveDeviceNameTableIndex = 40,
    WdfDeviceAssignMofResourceNameTableIndex = 41,
    WdfDeviceGetIoTargetTableIndex = 42,
    WdfDeviceGetDevicePnpStateTableIndex = 43,
    WdfDeviceGetDevicePowerStateTableIndex = 44,
    WdfDeviceGetDevicePowerPolicyStateTableIndex = 45,
    WdfDeviceAssignS0IdleSettingsTableIndex = 46,
    WdfDeviceAssignSxWakeSettingsTableIndex = 47,
    WdfDeviceOpenRegistryKeyTableIndex = 48,
    WdfDeviceSetSpecialFileSupportTableIndex = 49,
    WdfDeviceSetCharacteristicsTableIndex = 50,
    WdfDeviceGetCharacteristicsTableIndex = 51,
    WdfDeviceGetAlignmentRequirementTableIndex = 52,
    WdfDeviceSetAlignmentRequirementTableIndex = 53,
    WdfDeviceInitFreeTableIndex = 54,
    WdfDeviceInitSetPnpPowerEventCallbacksTableIndex = 55,
    WdfDeviceInitSetPowerPolicyEventCallbacksTableIndex = 56,
    WdfDeviceInitSetPowerPolicyOwnershipTableIndex = 57,
    WdfDeviceInitRegisterPnpStateChangeCallbackTableIndex = 58,
    WdfDeviceInitRegisterPowerStateChangeCallbackTableIndex = 59,
    WdfDeviceInitRegisterPowerPolicyStateChangeCallbackTableIndex = 60,
    WdfDeviceInitSetIoTypeTableIndex = 61,
    WdfDeviceInitSetExclusiveTableIndex = 62,
    WdfDeviceInitSetPowerNotPageableTableIndex = 63,
    WdfDeviceInitSetPowerPageableTableIndex = 64,
    WdfDeviceInitSetPowerInrushTableIndex = 65,
    WdfDeviceInitSetDeviceTypeTableIndex = 66,
    WdfDeviceInitAssignNameTableIndex = 67,
    WdfDeviceInitAssignSDDLStringTableIndex = 68,
    WdfDeviceInitSetDeviceClassTableIndex = 69,
    WdfDeviceInitSetCharacteristicsTableIndex = 70,
    WdfDeviceInitSetFileObjectConfigTableIndex = 71,
    WdfDeviceInitSetRequestAttributesTableIndex = 72,
    WdfDeviceInitAssignWdmIrpPreprocessCallbackTableIndex = 73,
    WdfDeviceInitSetIoInCallerContextCallbackTableIndex = 74,
    WdfDeviceCreateTableIndex = 75,
    WdfDeviceSetStaticStopRemoveTableIndex = 76,
    WdfDeviceCreateDeviceInterfaceTableIndex = 77,
    WdfDeviceSetDeviceInterfaceStateTableIndex = 78,
    WdfDeviceRetrieveDeviceInterfaceStringTableIndex = 79,
    WdfDeviceCreateSymbolicLinkTableIndex = 80,
    WdfDeviceQueryPropertyTableIndex = 81,
    WdfDeviceAllocAndQueryPropertyTableIndex = 82,
    WdfDeviceSetPnpCapabilitiesTableIndex = 83,
    WdfDeviceSetPowerCapabilitiesTableIndex = 84,
    WdfDeviceSetBusInformationForChildrenTableIndex = 85,
    WdfDeviceIndicateWakeStatusTableIndex = 86,
    WdfDeviceSetFailedTableIndex = 87,
    WdfDeviceStopIdleNoTrackTableIndex = 88,
    WdfDeviceResumeIdleNoTrackTableIndex = 89,
    WdfDeviceGetFileObjectTableIndex = 90,
    WdfDeviceEnqueueRequestTableIndex = 91,
    WdfDeviceGetDefaultQueueTableIndex = 92,
    WdfDeviceConfigureRequestDispatchingTableIndex = 93,
    WdfDmaEnablerCreateTableIndex = 94,
    WdfDmaEnablerGetMaximumLengthTableIndex = 95,
    WdfDmaEnablerGetMaximumScatterGatherElementsTableIndex = 96,
    WdfDmaEnablerSetMaximumScatterGatherElementsTableIndex = 97,
    WdfDmaTransactionCreateTableIndex = 98,
    WdfDmaTransactionInitializeTableIndex = 99,
    WdfDmaTransactionInitializeUsingRequestTableIndex = 100,
    WdfDmaTransactionExecuteTableIndex = 101,
    WdfDmaTransactionReleaseTableIndex = 102,
    WdfDmaTransactionDmaCompletedTableIndex = 103,
    WdfDmaTransactionDmaCompletedWithLengthTableIndex = 104,
    WdfDmaTransactionDmaCompletedFinalTableIndex = 105,
    WdfDmaTransactionGetBytesTransferredTableIndex = 106,
    WdfDmaTransactionSetMaximumLengthTableIndex = 107,
    WdfDmaTransactionGetRequestTableIndex = 108,
    WdfDmaTransactionGetCurrentDmaTransferLengthTableIndex = 109,
    WdfDmaTransactionGetDeviceTableIndex = 110,
    WdfDpcCreateTableIndex = 111,
    WdfDpcEnqueueTableIndex = 112,
    WdfDpcCancelTableIndex = 113,
    WdfDpcGetParentObjectTableIndex = 114,
    WdfDpcWdmGetDpcTableIndex = 115,
    WdfDriverCreateTableIndex = 116,
    WdfDriverGetRegistryPathTableIndex = 117,
    WdfDriverWdmGetDriverObjectTableIndex = 118,
    WdfDriverOpenParametersRegistryKeyTableIndex = 119,
    WdfWdmDriverGetWdfDriverHandleTableIndex = 120,
    WdfDriverRegisterTraceInfoTableIndex = 121,
    WdfDriverRetrieveVersionStringTableIndex = 122,
    WdfDriverIsVersionAvailableTableIndex = 123,
    WdfFdoInitWdmGetPhysicalDeviceTableIndex = 124,
    WdfFdoInitOpenRegistryKeyTableIndex = 125,
    WdfFdoInitQueryPropertyTableIndex = 126,
    WdfFdoInitAllocAndQueryPropertyTableIndex = 127,
    WdfFdoInitSetEventCallbacksTableIndex = 128,
    WdfFdoInitSetFilterTableIndex = 129,
    WdfFdoInitSetDefaultChildListConfigTableIndex = 130,
    WdfFdoQueryForInterfaceTableIndex = 131,
    WdfFdoGetDefaultChildListTableIndex = 132,
    WdfFdoAddStaticChildTableIndex = 133,
    WdfFdoLockStaticChildListForIterationTableIndex = 134,
    WdfFdoRetrieveNextStaticChildTableIndex = 135,
    WdfFdoUnlockStaticChildListFromIterationTableIndex = 136,
    WdfFileObjectGetFileNameTableIndex = 137,
    WdfFileObjectGetFlagsTableIndex = 138,
    WdfFileObjectGetDeviceTableIndex = 139,
    WdfFileObjectWdmGetFileObjectTableIndex = 140,
    WdfInterruptCreateTableIndex = 141,
    WdfInterruptQueueDpcForIsrTableIndex = 142,
    WdfInterruptSynchronizeTableIndex = 143,
    WdfInterruptAcquireLockTableIndex = 144,
    WdfInterruptReleaseLockTableIndex = 145,
    WdfInterruptEnableTableIndex = 146,
    WdfInterruptDisableTableIndex = 147,
    WdfInterruptWdmGetInterruptTableIndex = 148,
    WdfInterruptGetInfoTableIndex = 149,
    WdfInterruptSetPolicyTableIndex = 150,
    WdfInterruptGetDeviceTableIndex = 151,
    WdfIoQueueCreateTableIndex = 152,
    WdfIoQueueGetStateTableIndex = 153,
    WdfIoQueueStartTableIndex = 154,
    WdfIoQueueStopTableIndex = 155,
    WdfIoQueueStopSynchronouslyTableIndex = 156,
    WdfIoQueueGetDeviceTableIndex = 157,
    WdfIoQueueRetrieveNextRequestTableIndex = 158,
    WdfIoQueueRetrieveRequestByFileObjectTableIndex = 159,
    WdfIoQueueFindRequestTableIndex = 160,
    WdfIoQueueRetrieveFoundRequestTableIndex = 161,
    WdfIoQueueDrainSynchronouslyTableIndex = 162,
    WdfIoQueueDrainTableIndex = 163,
    WdfIoQueuePurgeSynchronouslyTableIndex = 164,
    WdfIoQueuePurgeTableIndex = 165,
    WdfIoQueueReadyNotifyTableIndex = 166,
    WdfIoTargetCreateTableIndex = 167,
    WdfIoTargetOpenTableIndex = 168,
    WdfIoTargetCloseForQueryRemoveTableIndex = 169,
    WdfIoTargetCloseTableIndex = 170,
    WdfIoTargetStartTableIndex = 171,
    WdfIoTargetStopTableIndex = 172,
    WdfIoTargetGetStateTableIndex = 173,
    WdfIoTargetGetDeviceTableIndex = 174,
    WdfIoTargetQueryTargetPropertyTableIndex = 175,
    WdfIoTargetAllocAndQueryTargetPropertyTableIndex = 176,
    WdfIoTargetQueryForInterfaceTableIndex = 177,
    WdfIoTargetWdmGetTargetDeviceObjectTableIndex = 178,
    WdfIoTargetWdmGetTargetPhysicalDeviceTableIndex = 179,
    WdfIoTargetWdmGetTargetFileObjectTableIndex = 180,
    WdfIoTargetWdmGetTargetFileHandleTableIndex = 181,
    WdfIoTargetSendReadSynchronouslyTableIndex = 182,
    WdfIoTargetFormatRequestForReadTableIndex = 183,
    WdfIoTargetSendWriteSynchronouslyTableIndex = 184,
    WdfIoTargetFormatRequestForWriteTableIndex = 185,
    WdfIoTargetSendIoctlSynchronouslyTableIndex = 186,
    WdfIoTargetFormatRequestForIoctlTableIndex = 187,
    WdfIoTargetSendInternalIoctlSynchronouslyTableIndex = 188,
    WdfIoTargetFormatRequestForInternalIoctlTableIndex = 189,
    WdfIoTargetSendInternalIoctlOthersSynchronouslyTableIndex = 190,
    WdfIoTargetFormatRequestForInternalIoctlOthersTableIndex = 191,
    WdfMemoryCreateTableIndex = 192,
    WdfMemoryCreatePreallocatedTableIndex = 193,
    WdfMemoryGetBufferTableIndex = 194,
    WdfMemoryAssignBufferTableIndex = 195,
    WdfMemoryCopyToBufferTableIndex = 196,
    WdfMemoryCopyFromBufferTableIndex = 197,
    WdfLookasideListCreateTableIndex = 198,
    WdfMemoryCreateFromLookasideTableIndex = 199,
    WdfDeviceMiniportCreateTableIndex = 200,
    WdfDriverMiniportUnloadTableIndex = 201,
    WdfObjectGetTypedContextWorkerTableIndex = 202,
    WdfObjectAllocateContextTableIndex = 203,
    WdfObjectContextGetObjectTableIndex = 204,
    WdfObjectReferenceActualTableIndex = 205,
    WdfObjectDereferenceActualTableIndex = 206,
    WdfObjectCreateTableIndex = 207,
    WdfObjectDeleteTableIndex = 208,
    WdfObjectQueryTableIndex = 209,
    WdfPdoInitAllocateTableIndex = 210,
    WdfPdoInitSetEventCallbacksTableIndex = 211,
    WdfPdoInitAssignDeviceIDTableIndex = 212,
    WdfPdoInitAssignInstanceIDTableIndex = 213,
    WdfPdoInitAddHardwareIDTableIndex = 214,
    WdfPdoInitAddCompatibleIDTableIndex = 215,
    WdfPdoInitAddDeviceTextTableIndex = 216,
    WdfPdoInitSetDefaultLocaleTableIndex = 217,
    WdfPdoInitAssignRawDeviceTableIndex = 218,
    WdfPdoMarkMissingTableIndex = 219,
    WdfPdoRequestEjectTableIndex = 220,
    WdfPdoGetParentTableIndex = 221,
    WdfPdoRetrieveIdentificationDescriptionTableIndex = 222,
    WdfPdoRetrieveAddressDescriptionTableIndex = 223,
    WdfPdoUpdateAddressDescriptionTableIndex = 224,
    WdfPdoAddEjectionRelationsPhysicalDeviceTableIndex = 225,
    WdfPdoRemoveEjectionRelationsPhysicalDeviceTableIndex = 226,
    WdfPdoClearEjectionRelationsDevicesTableIndex = 227,
    WdfDeviceAddQueryInterfaceTableIndex = 228,
    WdfRegistryOpenKeyTableIndex = 229,
    WdfRegistryCreateKeyTableIndex = 230,
    WdfRegistryCloseTableIndex = 231,
    WdfRegistryWdmGetHandleTableIndex = 232,
    WdfRegistryRemoveKeyTableIndex = 233,
    WdfRegistryRemoveValueTableIndex = 234,
    WdfRegistryQueryValueTableIndex = 235,
    WdfRegistryQueryMemoryTableIndex = 236,
    WdfRegistryQueryMultiStringTableIndex = 237,
    WdfRegistryQueryUnicodeStringTableIndex = 238,
    WdfRegistryQueryStringTableIndex = 239,
    WdfRegistryQueryULongTableIndex = 240,
    WdfRegistryAssignValueTableIndex = 241,
    WdfRegistryAssignMemoryTableIndex = 242,
    WdfRegistryAssignMultiStringTableIndex = 243,
    WdfRegistryAssignUnicodeStringTableIndex = 244,
    WdfRegistryAssignStringTableIndex = 245,
    WdfRegistryAssignULongTableIndex = 246,
    WdfRequestCreateTableIndex = 247,
    WdfRequestCreateFromIrpTableIndex = 248,
    WdfRequestReuseTableIndex = 249,
    WdfRequestChangeTargetTableIndex = 250,
    WdfRequestFormatRequestUsingCurrentTypeTableIndex = 251,
    WdfRequestWdmFormatUsingStackLocationTableIndex = 252,
    WdfRequestSendTableIndex = 253,
    WdfRequestGetStatusTableIndex = 254,
    WdfRequestMarkCancelableTableIndex = 255,
    WdfRequestUnmarkCancelableTableIndex = 256,
    WdfRequestIsCanceledTableIndex = 257,
    WdfRequestCancelSentRequestTableIndex = 258,
    WdfRequestIsFrom32BitProcessTableIndex = 259,
    WdfRequestSetCompletionRoutineTableIndex = 260,
    WdfRequestGetCompletionParamsTableIndex = 261,
    WdfRequestAllocateTimerTableIndex = 262,
    WdfRequestCompleteTableIndex = 263,
    WdfRequestCompleteWithPriorityBoostTableIndex = 264,
    WdfRequestCompleteWithInformationTableIndex = 265,
    WdfRequestGetParametersTableIndex = 266,
    WdfRequestRetrieveInputMemoryTableIndex = 267,
    WdfRequestRetrieveOutputMemoryTableIndex = 268,
    WdfRequestRetrieveInputBufferTableIndex = 269,
    WdfRequestRetrieveOutputBufferTableIndex = 270,
    WdfRequestRetrieveInputWdmMdlTableIndex = 271,
    WdfRequestRetrieveOutputWdmMdlTableIndex = 272,
    WdfRequestRetrieveUnsafeUserInputBufferTableIndex = 273,
    WdfRequestRetrieveUnsafeUserOutputBufferTableIndex = 274,
    WdfRequestSetInformationTableIndex = 275,
    WdfRequestGetInformationTableIndex = 276,
    WdfRequestGetFileObjectTableIndex = 277,
    WdfRequestProbeAndLockUserBufferForReadTableIndex = 278,
    WdfRequestProbeAndLockUserBufferForWriteTableIndex = 279,
    WdfRequestGetRequestorModeTableIndex = 280,
    WdfRequestForwardToIoQueueTableIndex = 281,
    WdfRequestGetIoQueueTableIndex = 282,
    WdfRequestRequeueTableIndex = 283,
    WdfRequestStopAcknowledgeTableIndex = 284,
    WdfRequestWdmGetIrpTableIndex = 285,
    WdfIoResourceRequirementsListSetSlotNumberTableIndex = 286,
    WdfIoResourceRequirementsListSetInterfaceTypeTableIndex = 287,
    WdfIoResourceRequirementsListAppendIoResListTableIndex = 288,
    WdfIoResourceRequirementsListInsertIoResListTableIndex = 289,
    WdfIoResourceRequirementsListGetCountTableIndex = 290,
    WdfIoResourceRequirementsListGetIoResListTableIndex = 291,
    WdfIoResourceRequirementsListRemoveTableIndex = 292,
    WdfIoResourceRequirementsListRemoveByIoResListTableIndex = 293,
    WdfIoResourceListCreateTableIndex = 294,
    WdfIoResourceListAppendDescriptorTableIndex = 295,
    WdfIoResourceListInsertDescriptorTableIndex = 296,
    WdfIoResourceListUpdateDescriptorTableIndex = 297,
    WdfIoResourceListGetCountTableIndex = 298,
    WdfIoResourceListGetDescriptorTableIndex = 299,
    WdfIoResourceListRemoveTableIndex = 300,
    WdfIoResourceListRemoveByDescriptorTableIndex = 301,
    WdfCmResourceListAppendDescriptorTableIndex = 302,
    WdfCmResourceListInsertDescriptorTableIndex = 303,
    WdfCmResourceListGetCountTableIndex = 304,
    WdfCmResourceListGetDescriptorTableIndex = 305,
    WdfCmResourceListRemoveTableIndex = 306,
    WdfCmResourceListRemoveByDescriptorTableIndex = 307,
    WdfStringCreateTableIndex = 308,
    WdfStringGetUnicodeStringTableIndex = 309,
    WdfObjectAcquireLockTableIndex = 310,
    WdfObjectReleaseLockTableIndex = 311,
    WdfWaitLockCreateTableIndex = 312,
    WdfWaitLockAcquireTableIndex = 313,
    WdfWaitLockReleaseTableIndex = 314,
    WdfSpinLockCreateTableIndex = 315,
    WdfSpinLockAcquireTableIndex = 316,
    WdfSpinLockReleaseTableIndex = 317,
    WdfTimerCreateTableIndex = 318,
    WdfTimerStartTableIndex = 319,
    WdfTimerStopTableIndex = 320,
    WdfTimerGetParentObjectTableIndex = 321,
    WdfUsbTargetDeviceCreateTableIndex = 322,
    WdfUsbTargetDeviceRetrieveInformationTableIndex = 323,
    WdfUsbTargetDeviceGetDeviceDescriptorTableIndex = 324,
    WdfUsbTargetDeviceRetrieveConfigDescriptorTableIndex = 325,
    WdfUsbTargetDeviceQueryStringTableIndex = 326,
    WdfUsbTargetDeviceAllocAndQueryStringTableIndex = 327,
    WdfUsbTargetDeviceFormatRequestForStringTableIndex = 328,
    WdfUsbTargetDeviceGetNumInterfacesTableIndex = 329,
    WdfUsbTargetDeviceSelectConfigTableIndex = 330,
    WdfUsbTargetDeviceWdmGetConfigurationHandleTableIndex = 331,
    WdfUsbTargetDeviceRetrieveCurrentFrameNumberTableIndex = 332,
    WdfUsbTargetDeviceSendControlTransferSynchronouslyTableIndex = 333,
    WdfUsbTargetDeviceFormatRequestForControlTransferTableIndex = 334,
    WdfUsbTargetDeviceIsConnectedSynchronousTableIndex = 335,
    WdfUsbTargetDeviceResetPortSynchronouslyTableIndex = 336,
    WdfUsbTargetDeviceCyclePortSynchronouslyTableIndex = 337,
    WdfUsbTargetDeviceFormatRequestForCyclePortTableIndex = 338,
    WdfUsbTargetDeviceSendUrbSynchronouslyTableIndex = 339,
    WdfUsbTargetDeviceFormatRequestForUrbTableIndex = 340,
    WdfUsbTargetPipeGetInformationTableIndex = 341,
    WdfUsbTargetPipeIsInEndpointTableIndex = 342,
    WdfUsbTargetPipeIsOutEndpointTableIndex = 343,
    WdfUsbTargetPipeGetTypeTableIndex = 344,
    WdfUsbTargetPipeSetNoMaximumPacketSizeCheckTableIndex = 345,
    WdfUsbTargetPipeWriteSynchronouslyTableIndex = 346,
    WdfUsbTargetPipeFormatRequestForWriteTableIndex = 347,
    WdfUsbTargetPipeReadSynchronouslyTableIndex = 348,
    WdfUsbTargetPipeFormatRequestForReadTableIndex = 349,
    WdfUsbTargetPipeConfigContinuousReaderTableIndex = 350,
    WdfUsbTargetPipeAbortSynchronouslyTableIndex = 351,
    WdfUsbTargetPipeFormatRequestForAbortTableIndex = 352,
    WdfUsbTargetPipeResetSynchronouslyTableIndex = 353,
    WdfUsbTargetPipeFormatRequestForResetTableIndex = 354,
    WdfUsbTargetPipeSendUrbSynchronouslyTableIndex = 355,
    WdfUsbTargetPipeFormatRequestForUrbTableIndex = 356,
    WdfUsbInterfaceGetInterfaceNumberTableIndex = 357,
    WdfUsbInterfaceGetNumEndpointsTableIndex = 358,
    WdfUsbInterfaceGetDescriptorTableIndex = 359,
    WdfUsbInterfaceSelectSettingTableIndex = 360,
    WdfUsbInterfaceGetEndpointInformationTableIndex = 361,
    WdfUsbTargetDeviceGetInterfaceTableIndex = 362,
    WdfUsbInterfaceGetConfiguredSettingIndexTableIndex = 363,
    WdfUsbInterfaceGetNumConfiguredPipesTableIndex = 364,
    WdfUsbInterfaceGetConfiguredPipeTableIndex = 365,
    WdfUsbTargetPipeWdmGetPipeHandleTableIndex = 366,
    WdfVerifierDbgBreakPointTableIndex = 367,
    WdfVerifierKeBugCheckTableIndex = 368,
    WdfWmiProviderCreateTableIndex = 369,
    WdfWmiProviderGetDeviceTableIndex = 370,
    WdfWmiProviderIsEnabledTableIndex = 371,
    WdfWmiProviderGetTracingHandleTableIndex = 372,
    WdfWmiInstanceCreateTableIndex = 373,
    WdfWmiInstanceRegisterTableIndex = 374,
    WdfWmiInstanceDeregisterTableIndex = 375,
    WdfWmiInstanceGetDeviceTableIndex = 376,
    WdfWmiInstanceGetProviderTableIndex = 377,
    WdfWmiInstanceFireEventTableIndex = 378,
    WdfWorkItemCreateTableIndex = 379,
    WdfWorkItemEnqueueTableIndex = 380,
    WdfWorkItemGetParentObjectTableIndex = 381,
    WdfWorkItemFlushTableIndex = 382,
    WdfCommonBufferCreateWithConfigTableIndex = 383,
    WdfDmaEnablerGetFragmentLengthTableIndex = 384,
    WdfDmaEnablerWdmGetDmaAdapterTableIndex = 385,
    WdfUsbInterfaceGetNumSettingsTableIndex = 386,
    WdfDeviceRemoveDependentUsageDeviceObjectTableIndex = 387,
    WdfDeviceGetSystemPowerActionTableIndex = 388,
    WdfInterruptSetExtendedPolicyTableIndex = 389,
    WdfIoQueueAssignForwardProgressPolicyTableIndex = 390,
    WdfPdoInitAssignContainerIDTableIndex = 391,
    WdfPdoInitAllowForwardingRequestToParentTableIndex = 392,
    WdfRequestMarkCancelableExTableIndex = 393,
    WdfRequestIsReservedTableIndex = 394,
    WdfRequestForwardToParentDeviceIoQueueTableIndex = 395,
    WdfCxDeviceInitAllocateTableIndex = 396,
    WdfCxDeviceInitAssignWdmIrpPreprocessCallbackTableIndex = 397,
    WdfCxDeviceInitSetIoInCallerContextCallbackTableIndex = 398,
    WdfCxDeviceInitSetRequestAttributesTableIndex = 399,
    WdfCxDeviceInitSetFileObjectConfigTableIndex = 400,
    WdfDeviceWdmDispatchIrpTableIndex = 401,
    WdfDeviceWdmDispatchIrpToIoQueueTableIndex = 402,
    WdfDeviceInitSetRemoveLockOptionsTableIndex = 403,
    WdfDeviceConfigureWdmIrpDispatchCallbackTableIndex = 404,
    WdfDmaEnablerConfigureSystemProfileTableIndex = 405,
    WdfDmaTransactionInitializeUsingOffsetTableIndex = 406,
    WdfDmaTransactionGetTransferInfoTableIndex = 407,
    WdfDmaTransactionSetChannelConfigurationCallbackTableIndex = 408,
    WdfDmaTransactionSetTransferCompleteCallbackTableIndex = 409,
    WdfDmaTransactionSetImmediateExecutionTableIndex = 410,
    WdfDmaTransactionAllocateResourcesTableIndex = 411,
    WdfDmaTransactionSetDeviceAddressOffsetTableIndex = 412,
    WdfDmaTransactionFreeResourcesTableIndex = 413,
    WdfDmaTransactionCancelTableIndex = 414,
    WdfDmaTransactionWdmGetTransferContextTableIndex = 415,
    WdfInterruptQueueWorkItemForIsrTableIndex = 416,
    WdfInterruptTryToAcquireLockTableIndex = 417,
    WdfIoQueueStopAndPurgeTableIndex = 418,
    WdfIoQueueStopAndPurgeSynchronouslyTableIndex = 419,
    WdfIoTargetPurgeTableIndex = 420,
    WdfUsbTargetDeviceCreateWithParametersTableIndex = 421,
    WdfUsbTargetDeviceQueryUsbCapabilityTableIndex = 422,
    WdfUsbTargetDeviceCreateUrbTableIndex = 423,
    WdfUsbTargetDeviceCreateIsochUrbTableIndex = 424,
    WdfDeviceWdmAssignPowerFrameworkSettingsTableIndex = 425,
    WdfDmaTransactionStopSystemTransferTableIndex = 426,
    WdfCxVerifierKeBugCheckTableIndex = 427,
    WdfInterruptReportActiveTableIndex = 428,
    WdfInterruptReportInactiveTableIndex = 429,
    WdfDeviceInitSetReleaseHardwareOrderOnFailureTableIndex = 430,
    WdfGetTriageInfoTableIndex = 431,
    WdfDeviceInitSetIoTypeExTableIndex = 432,
    WdfDeviceQueryPropertyExTableIndex = 433,
    WdfDeviceAllocAndQueryPropertyExTableIndex = 434,
    WdfDeviceAssignPropertyTableIndex = 435,
    WdfFdoInitQueryPropertyExTableIndex = 436,
    WdfFdoInitAllocAndQueryPropertyExTableIndex = 437,
    WdfDeviceStopIdleActualTableIndex = 438,
    WdfDeviceResumeIdleActualTableIndex = 439,
    WdfDeviceGetSelfIoTargetTableIndex = 440,
    WdfDeviceInitAllowSelfIoTargetTableIndex = 441,
    WdfIoTargetSelfAssignDefaultIoQueueTableIndex = 442,
    WdfDeviceOpenDevicemapKeyTableIndex = 443,
    WdfDmaTransactionSetSingleTransferRequirementTableIndex = 444,
    WdfCxDeviceInitSetPnpPowerEventCallbacksTableIndex = 445,
    WdfFileObjectGetInitiatorProcessIdTableIndex = 446,
    WdfRequestGetRequestorProcessIdTableIndex = 447,
    WdfDeviceRetrieveCompanionTargetTableIndex = 448,
    WdfCompanionTargetSendTaskSynchronouslyTableIndex = 449,
    WdfCompanionTargetWdmGetCompanionProcessTableIndex = 450,
    WdfFunctionTableNumEntries = 451,
} WDFFUNCENUM;
%ProgramFiles(x86)%\Windows Kits\10\Include\wdf\kmdf\1.23\wdffuncenum.h(23,0)
63 0.052660875 WDFFUNCENUM Enum
typedef enum _WDFFUNCENUM {

    WdfChildListCreateTableIndex = 0,
    WdfChildListGetDeviceTableIndex = 1,
    WdfChildListRetrievePdoTableIndex = 2,
    WdfChildListRetrieveAddressDescriptionTableIndex = 3,
    WdfChildListBeginScanTableIndex = 4,
    WdfChildListEndScanTableIndex = 5,
    WdfChildListBeginIterationTableIndex = 6,
    WdfChildListRetrieveNextDeviceTableIndex = 7,
    WdfChildListEndIterationTableIndex = 8,
    WdfChildListAddOrUpdateChildDescriptionAsPresentTableIndex = 9,
    WdfChildListUpdateChildDescriptionAsMissingTableIndex = 10,
    WdfChildListUpdateAllChildDescriptionsAsPresentTableIndex = 11,
    WdfChildListRequestChildEjectTableIndex = 12,
    WdfCollectionCreateTableIndex = 13,
    WdfCollectionGetCountTableIndex = 14,
    WdfCollectionAddTableIndex = 15,
    WdfCollectionRemoveTableIndex = 16,
    WdfCollectionRemoveItemTableIndex = 17,
    WdfCollectionGetItemTableIndex = 18,
    WdfCollectionGetFirstItemTableIndex = 19,
    WdfCollectionGetLastItemTableIndex = 20,
    WdfCommonBufferCreateTableIndex = 21,
    WdfCommonBufferGetAlignedVirtualAddressTableIndex = 22,
    WdfCommonBufferGetAlignedLogicalAddressTableIndex = 23,
    WdfCommonBufferGetLengthTableIndex = 24,
    WdfControlDeviceInitAllocateTableIndex = 25,
    WdfControlDeviceInitSetShutdownNotificationTableIndex = 26,
    WdfControlFinishInitializingTableIndex = 27,
    WdfDeviceGetDeviceStateTableIndex = 28,
    WdfDeviceSetDeviceStateTableIndex = 29,
    WdfWdmDeviceGetWdfDeviceHandleTableIndex = 30,
    WdfDeviceWdmGetDeviceObjectTableIndex = 31,
    WdfDeviceWdmGetAttachedDeviceTableIndex = 32,
    WdfDeviceWdmGetPhysicalDeviceTableIndex = 33,
    WdfDeviceWdmDispatchPreprocessedIrpTableIndex = 34,
    WdfDeviceAddDependentUsageDeviceObjectTableIndex = 35,
    WdfDeviceAddRemovalRelationsPhysicalDeviceTableIndex = 36,
    WdfDeviceRemoveRemovalRelationsPhysicalDeviceTableIndex = 37,
    WdfDeviceClearRemovalRelationsDevicesTableIndex = 38,
    WdfDeviceGetDriverTableIndex = 39,
    WdfDeviceRetrieveDeviceNameTableIndex = 40,
    WdfDeviceAssignMofResourceNameTableIndex = 41,
    WdfDeviceGetIoTargetTableIndex = 42,
    WdfDeviceGetDevicePnpStateTableIndex = 43,
    WdfDeviceGetDevicePowerStateTableIndex = 44,
    WdfDeviceGetDevicePowerPolicyStateTableIndex = 45,
    WdfDeviceAssignS0IdleSettingsTableIndex = 46,
    WdfDeviceAssignSxWakeSettingsTableIndex = 47,
    WdfDeviceOpenRegistryKeyTableIndex = 48,
    WdfDeviceSetSpecialFileSupportTableIndex = 49,
    WdfDeviceSetCharacteristicsTableIndex = 50,
    WdfDeviceGetCharacteristicsTableIndex = 51,
    WdfDeviceGetAlignmentRequirementTableIndex = 52,
    WdfDeviceSetAlignmentRequirementTableIndex = 53,
    WdfDeviceInitFreeTableIndex = 54,
    WdfDeviceInitSetPnpPowerEventCallbacksTableIndex = 55,
    WdfDeviceInitSetPowerPolicyEventCallbacksTableIndex = 56,
    WdfDeviceInitSetPowerPolicyOwnershipTableIndex = 57,
    WdfDeviceInitRegisterPnpStateChangeCallbackTableIndex = 58,
    WdfDeviceInitRegisterPowerStateChangeCallbackTableIndex = 59,
    WdfDeviceInitRegisterPowerPolicyStateChangeCallbackTableIndex = 60,
    WdfDeviceInitSetIoTypeTableIndex = 61,
    WdfDeviceInitSetExclusiveTableIndex = 62,
    WdfDeviceInitSetPowerNotPageableTableIndex = 63,
    WdfDeviceInitSetPowerPageableTableIndex = 64,
    WdfDeviceInitSetPowerInrushTableIndex = 65,
    WdfDeviceInitSetDeviceTypeTableIndex = 66,
    WdfDeviceInitAssignNameTableIndex = 67,
    WdfDeviceInitAssignSDDLStringTableIndex = 68,
    WdfDeviceInitSetDeviceClassTableIndex = 69,
    WdfDeviceInitSetCharacteristicsTableIndex = 70,
    WdfDeviceInitSetFileObjectConfigTableIndex = 71,
    WdfDeviceInitSetRequestAttributesTableIndex = 72,
    WdfDeviceInitAssignWdmIrpPreprocessCallbackTableIndex = 73,
    WdfDeviceInitSetIoInCallerContextCallbackTableIndex = 74,
    WdfDeviceCreateTableIndex = 75,
    WdfDeviceSetStaticStopRemoveTableIndex = 76,
    WdfDeviceCreateDeviceInterfaceTableIndex = 77,
    WdfDeviceSetDeviceInterfaceStateTableIndex = 78,
    WdfDeviceRetrieveDeviceInterfaceStringTableIndex = 79,
    WdfDeviceCreateSymbolicLinkTableIndex = 80,
    WdfDeviceQueryPropertyTableIndex = 81,
    WdfDeviceAllocAndQueryPropertyTableIndex = 82,
    WdfDeviceSetPnpCapabilitiesTableIndex = 83,
    WdfDeviceSetPowerCapabilitiesTableIndex = 84,
    WdfDeviceSetBusInformationForChildrenTableIndex = 85,
    WdfDeviceIndicateWakeStatusTableIndex = 86,
    WdfDeviceSetFailedTableIndex = 87,
    WdfDeviceStopIdleNoTrackTableIndex = 88,
    WdfDeviceResumeIdleNoTrackTableIndex = 89,
    WdfDeviceGetFileObjectTableIndex = 90,
    WdfDeviceEnqueueRequestTableIndex = 91,
    WdfDeviceGetDefaultQueueTableIndex = 92,
    WdfDeviceConfigureRequestDispatchingTableIndex = 93,
    WdfDmaEnablerCreateTableIndex = 94,
    WdfDmaEnablerGetMaximumLengthTableIndex = 95,
    WdfDmaEnablerGetMaximumScatterGatherElementsTableIndex = 96,
    WdfDmaEnablerSetMaximumScatterGatherElementsTableIndex = 97,
    WdfDmaTransactionCreateTableIndex = 98,
    WdfDmaTransactionInitializeTableIndex = 99,
    WdfDmaTransactionInitializeUsingRequestTableIndex = 100,
    WdfDmaTransactionExecuteTableIndex = 101,
    WdfDmaTransactionReleaseTableIndex = 102,
    WdfDmaTransactionDmaCompletedTableIndex = 103,
    WdfDmaTransactionDmaCompletedWithLengthTableIndex = 104,
    WdfDmaTransactionDmaCompletedFinalTableIndex = 105,
    WdfDmaTransactionGetBytesTransferredTableIndex = 106,
    WdfDmaTransactionSetMaximumLengthTableIndex = 107,
    WdfDmaTransactionGetRequestTableIndex = 108,
    WdfDmaTransactionGetCurrentDmaTransferLengthTableIndex = 109,
    WdfDmaTransactionGetDeviceTableIndex = 110,
    WdfDpcCreateTableIndex = 111,
    WdfDpcEnqueueTableIndex = 112,
    WdfDpcCancelTableIndex = 113,
    WdfDpcGetParentObjectTableIndex = 114,
    WdfDpcWdmGetDpcTableIndex = 115,
    WdfDriverCreateTableIndex = 116,
    WdfDriverGetRegistryPathTableIndex = 117,
    WdfDriverWdmGetDriverObjectTableIndex = 118,
    WdfDriverOpenParametersRegistryKeyTableIndex = 119,
    WdfWdmDriverGetWdfDriverHandleTableIndex = 120,
    WdfDriverRegisterTraceInfoTableIndex = 121,
    WdfDriverRetrieveVersionStringTableIndex = 122,
    WdfDriverIsVersionAvailableTableIndex = 123,
    WdfFdoInitWdmGetPhysicalDeviceTableIndex = 124,
    WdfFdoInitOpenRegistryKeyTableIndex = 125,
    WdfFdoInitQueryPropertyTableIndex = 126,
    WdfFdoInitAllocAndQueryPropertyTableIndex = 127,
    WdfFdoInitSetEventCallbacksTableIndex = 128,
    WdfFdoInitSetFilterTableIndex = 129,
    WdfFdoInitSetDefaultChildListConfigTableIndex = 130,
    WdfFdoQueryForInterfaceTableIndex = 131,
    WdfFdoGetDefaultChildListTableIndex = 132,
    WdfFdoAddStaticChildTableIndex = 133,
    WdfFdoLockStaticChildListForIterationTableIndex = 134,
    WdfFdoRetrieveNextStaticChildTableIndex = 135,
    WdfFdoUnlockStaticChildListFromIterationTableIndex = 136,
    WdfFileObjectGetFileNameTableIndex = 137,
    WdfFileObjectGetFlagsTableIndex = 138,
    WdfFileObjectGetDeviceTableIndex = 139,
    WdfFileObjectWdmGetFileObjectTableIndex = 140,
    WdfInterruptCreateTableIndex = 141,
    WdfInterruptQueueDpcForIsrTableIndex = 142,
    WdfInterruptSynchronizeTableIndex = 143,
    WdfInterruptAcquireLockTableIndex = 144,
    WdfInterruptReleaseLockTableIndex = 145,
    WdfInterruptEnableTableIndex = 146,
    WdfInterruptDisableTableIndex = 147,
    WdfInterruptWdmGetInterruptTableIndex = 148,
    WdfInterruptGetInfoTableIndex = 149,
    WdfInterruptSetPolicyTableIndex = 150,
    WdfInterruptGetDeviceTableIndex = 151,
    WdfIoQueueCreateTableIndex = 152,
    WdfIoQueueGetStateTableIndex = 153,
    WdfIoQueueStartTableIndex = 154,
    WdfIoQueueStopTableIndex = 155,
    WdfIoQueueStopSynchronouslyTableIndex = 156,
    WdfIoQueueGetDeviceTableIndex = 157,
    WdfIoQueueRetrieveNextRequestTableIndex = 158,
    WdfIoQueueRetrieveRequestByFileObjectTableIndex = 159,
    WdfIoQueueFindRequestTableIndex = 160,
    WdfIoQueueRetrieveFoundRequestTableIndex = 161,
    WdfIoQueueDrainSynchronouslyTableIndex = 162,
    WdfIoQueueDrainTableIndex = 163,
    WdfIoQueuePurgeSynchronouslyTableIndex = 164,
    WdfIoQueuePurgeTableIndex = 165,
    WdfIoQueueReadyNotifyTableIndex = 166,
    WdfIoTargetCreateTableIndex = 167,
    WdfIoTargetOpenTableIndex = 168,
    WdfIoTargetCloseForQueryRemoveTableIndex = 169,
    WdfIoTargetCloseTableIndex = 170,
    WdfIoTargetStartTableIndex = 171,
    WdfIoTargetStopTableIndex = 172,
    WdfIoTargetGetStateTableIndex = 173,
    WdfIoTargetGetDeviceTableIndex = 174,
    WdfIoTargetQueryTargetPropertyTableIndex = 175,
    WdfIoTargetAllocAndQueryTargetPropertyTableIndex = 176,
    WdfIoTargetQueryForInterfaceTableIndex = 177,
    WdfIoTargetWdmGetTargetDeviceObjectTableIndex = 178,
    WdfIoTargetWdmGetTargetPhysicalDeviceTableIndex = 179,
    WdfIoTargetWdmGetTargetFileObjectTableIndex = 180,
    WdfIoTargetWdmGetTargetFileHandleTableIndex = 181,
    WdfIoTargetSendReadSynchronouslyTableIndex = 182,
    WdfIoTargetFormatRequestForReadTableIndex = 183,
    WdfIoTargetSendWriteSynchronouslyTableIndex = 184,
    WdfIoTargetFormatRequestForWriteTableIndex = 185,
    WdfIoTargetSendIoctlSynchronouslyTableIndex = 186,
    WdfIoTargetFormatRequestForIoctlTableIndex = 187,
    WdfIoTargetSendInternalIoctlSynchronouslyTableIndex = 188,
    WdfIoTargetFormatRequestForInternalIoctlTableIndex = 189,
    WdfIoTargetSendInternalIoctlOthersSynchronouslyTableIndex = 190,
    WdfIoTargetFormatRequestForInternalIoctlOthersTableIndex = 191,
    WdfMemoryCreateTableIndex = 192,
    WdfMemoryCreatePreallocatedTableIndex = 193,
    WdfMemoryGetBufferTableIndex = 194,
    WdfMemoryAssignBufferTableIndex = 195,
    WdfMemoryCopyToBufferTableIndex = 196,
    WdfMemoryCopyFromBufferTableIndex = 197,
    WdfLookasideListCreateTableIndex = 198,
    WdfMemoryCreateFromLookasideTableIndex = 199,
    WdfDeviceMiniportCreateTableIndex = 200,
    WdfDriverMiniportUnloadTableIndex = 201,
    WdfObjectGetTypedContextWorkerTableIndex = 202,
    WdfObjectAllocateContextTableIndex = 203,
    WdfObjectContextGetObjectTableIndex = 204,
    WdfObjectReferenceActualTableIndex = 205,
    WdfObjectDereferenceActualTableIndex = 206,
    WdfObjectCreateTableIndex = 207,
    WdfObjectDeleteTableIndex = 208,
    WdfObjectQueryTableIndex = 209,
    WdfPdoInitAllocateTableIndex = 210,
    WdfPdoInitSetEventCallbacksTableIndex = 211,
    WdfPdoInitAssignDeviceIDTableIndex = 212,
    WdfPdoInitAssignInstanceIDTableIndex = 213,
    WdfPdoInitAddHardwareIDTableIndex = 214,
    WdfPdoInitAddCompatibleIDTableIndex = 215,
    WdfPdoInitAddDeviceTextTableIndex = 216,
    WdfPdoInitSetDefaultLocaleTableIndex = 217,
    WdfPdoInitAssignRawDeviceTableIndex = 218,
    WdfPdoMarkMissingTableIndex = 219,
    WdfPdoRequestEjectTableIndex = 220,
    WdfPdoGetParentTableIndex = 221,
    WdfPdoRetrieveIdentificationDescriptionTableIndex = 222,
    WdfPdoRetrieveAddressDescriptionTableIndex = 223,
    WdfPdoUpdateAddressDescriptionTableIndex = 224,
    WdfPdoAddEjectionRelationsPhysicalDeviceTableIndex = 225,
    WdfPdoRemoveEjectionRelationsPhysicalDeviceTableIndex = 226,
    WdfPdoClearEjectionRelationsDevicesTableIndex = 227,
    WdfDeviceAddQueryInterfaceTableIndex = 228,
    WdfRegistryOpenKeyTableIndex = 229,
    WdfRegistryCreateKeyTableIndex = 230,
    WdfRegistryCloseTableIndex = 231,
    WdfRegistryWdmGetHandleTableIndex = 232,
    WdfRegistryRemoveKeyTableIndex = 233,
    WdfRegistryRemoveValueTableIndex = 234,
    WdfRegistryQueryValueTableIndex = 235,
    WdfRegistryQueryMemoryTableIndex = 236,
    WdfRegistryQueryMultiStringTableIndex = 237,
    WdfRegistryQueryUnicodeStringTableIndex = 238,
    WdfRegistryQueryStringTableIndex = 239,
    WdfRegistryQueryULongTableIndex = 240,
    WdfRegistryAssignValueTableIndex = 241,
    WdfRegistryAssignMemoryTableIndex = 242,
    WdfRegistryAssignMultiStringTableIndex = 243,
    WdfRegistryAssignUnicodeStringTableIndex = 244,
    WdfRegistryAssignStringTableIndex = 245,
    WdfRegistryAssignULongTableIndex = 246,
    WdfRequestCreateTableIndex = 247,
    WdfRequestCreateFromIrpTableIndex = 248,
    WdfRequestReuseTableIndex = 249,
    WdfRequestChangeTargetTableIndex = 250,
    WdfRequestFormatRequestUsingCurrentTypeTableIndex = 251,
    WdfRequestWdmFormatUsingStackLocationTableIndex = 252,
    WdfRequestSendTableIndex = 253,
    WdfRequestGetStatusTableIndex = 254,
    WdfRequestMarkCancelableTableIndex = 255,
    WdfRequestUnmarkCancelableTableIndex = 256,
    WdfRequestIsCanceledTableIndex = 257,
    WdfRequestCancelSentRequestTableIndex = 258,
    WdfRequestIsFrom32BitProcessTableIndex = 259,
    WdfRequestSetCompletionRoutineTableIndex = 260,
    WdfRequestGetCompletionParamsTableIndex = 261,
    WdfRequestAllocateTimerTableIndex = 262,
    WdfRequestCompleteTableIndex = 263,
    WdfRequestCompleteWithPriorityBoostTableIndex = 264,
    WdfRequestCompleteWithInformationTableIndex = 265,
    WdfRequestGetParametersTableIndex = 266,
    WdfRequestRetrieveInputMemoryTableIndex = 267,
    WdfRequestRetrieveOutputMemoryTableIndex = 268,
    WdfRequestRetrieveInputBufferTableIndex = 269,
    WdfRequestRetrieveOutputBufferTableIndex = 270,
    WdfRequestRetrieveInputWdmMdlTableIndex = 271,
    WdfRequestRetrieveOutputWdmMdlTableIndex = 272,
    WdfRequestRetrieveUnsafeUserInputBufferTableIndex = 273,
    WdfRequestRetrieveUnsafeUserOutputBufferTableIndex = 274,
    WdfRequestSetInformationTableIndex = 275,
    WdfRequestGetInformationTableIndex = 276,
    WdfRequestGetFileObjectTableIndex = 277,
    WdfRequestProbeAndLockUserBufferForReadTableIndex = 278,
    WdfRequestProbeAndLockUserBufferForWriteTableIndex = 279,
    WdfRequestGetRequestorModeTableIndex = 280,
    WdfRequestForwardToIoQueueTableIndex = 281,
    WdfRequestGetIoQueueTableIndex = 282,
    WdfRequestRequeueTableIndex = 283,
    WdfRequestStopAcknowledgeTableIndex = 284,
    WdfRequestWdmGetIrpTableIndex = 285,
    WdfIoResourceRequirementsListSetSlotNumberTableIndex = 286,
    WdfIoResourceRequirementsListSetInterfaceTypeTableIndex = 287,
    WdfIoResourceRequirementsListAppendIoResListTableIndex = 288,
    WdfIoResourceRequirementsListInsertIoResListTableIndex = 289,
    WdfIoResourceRequirementsListGetCountTableIndex = 290,
    WdfIoResourceRequirementsListGetIoResListTableIndex = 291,
    WdfIoResourceRequirementsListRemoveTableIndex = 292,
    WdfIoResourceRequirementsListRemoveByIoResListTableIndex = 293,
    WdfIoResourceListCreateTableIndex = 294,
    WdfIoResourceListAppendDescriptorTableIndex = 295,
    WdfIoResourceListInsertDescriptorTableIndex = 296,
    WdfIoResourceListUpdateDescriptorTableIndex = 297,
    WdfIoResourceListGetCountTableIndex = 298,
    WdfIoResourceListGetDescriptorTableIndex = 299,
    WdfIoResourceListRemoveTableIndex = 300,
    WdfIoResourceListRemoveByDescriptorTableIndex = 301,
    WdfCmResourceListAppendDescriptorTableIndex = 302,
    WdfCmResourceListInsertDescriptorTableIndex = 303,
    WdfCmResourceListGetCountTableIndex = 304,
    WdfCmResourceListGetDescriptorTableIndex = 305,
    WdfCmResourceListRemoveTableIndex = 306,
    WdfCmResourceListRemoveByDescriptorTableIndex = 307,
    WdfStringCreateTableIndex = 308,
    WdfStringGetUnicodeStringTableIndex = 309,
    WdfObjectAcquireLockTableIndex = 310,
    WdfObjectReleaseLockTableIndex = 311,
    WdfWaitLockCreateTableIndex = 312,
    WdfWaitLockAcquireTableIndex = 313,
    WdfWaitLockReleaseTableIndex = 314,
    WdfSpinLockCreateTableIndex = 315,
    WdfSpinLockAcquireTableIndex = 316,
    WdfSpinLockReleaseTableIndex = 317,
    WdfTimerCreateTableIndex = 318,
    WdfTimerStartTableIndex = 319,
    WdfTimerStopTableIndex = 320,
    WdfTimerGetParentObjectTableIndex = 321,
    WdfUsbTargetDeviceCreateTableIndex = 322,
    WdfUsbTargetDeviceRetrieveInformationTableIndex = 323,
    WdfUsbTargetDeviceGetDeviceDescriptorTableIndex = 324,
    WdfUsbTargetDeviceRetrieveConfigDescriptorTableIndex = 325,
    WdfUsbTargetDeviceQueryStringTableIndex = 326,
    WdfUsbTargetDeviceAllocAndQueryStringTableIndex = 327,
    WdfUsbTargetDeviceFormatRequestForStringTableIndex = 328,
    WdfUsbTargetDeviceGetNumInterfacesTableIndex = 329,
    WdfUsbTargetDeviceSelectConfigTableIndex = 330,
    WdfUsbTargetDeviceWdmGetConfigurationHandleTableIndex = 331,
    WdfUsbTargetDeviceRetrieveCurrentFrameNumberTableIndex = 332,
    WdfUsbTargetDeviceSendControlTransferSynchronouslyTableIndex = 333,
    WdfUsbTargetDeviceFormatRequestForControlTransferTableIndex = 334,
    WdfUsbTargetDeviceIsConnectedSynchronousTableIndex = 335,
    WdfUsbTargetDeviceResetPortSynchronouslyTableIndex = 336,
    WdfUsbTargetDeviceCyclePortSynchronouslyTableIndex = 337,
    WdfUsbTargetDeviceFormatRequestForCyclePortTableIndex = 338,
    WdfUsbTargetDeviceSendUrbSynchronouslyTableIndex = 339,
    WdfUsbTargetDeviceFormatRequestForUrbTableIndex = 340,
    WdfUsbTargetPipeGetInformationTableIndex = 341,
    WdfUsbTargetPipeIsInEndpointTableIndex = 342,
    WdfUsbTargetPipeIsOutEndpointTableIndex = 343,
    WdfUsbTargetPipeGetTypeTableIndex = 344,
    WdfUsbTargetPipeSetNoMaximumPacketSizeCheckTableIndex = 345,
    WdfUsbTargetPipeWriteSynchronouslyTableIndex = 346,
    WdfUsbTargetPipeFormatRequestForWriteTableIndex = 347,
    WdfUsbTargetPipeReadSynchronouslyTableIndex = 348,
    WdfUsbTargetPipeFormatRequestForReadTableIndex = 349,
    WdfUsbTargetPipeConfigContinuousReaderTableIndex = 350,
    WdfUsbTargetPipeAbortSynchronouslyTableIndex = 351,
    WdfUsbTargetPipeFormatRequestForAbortTableIndex = 352,
    WdfUsbTargetPipeResetSynchronouslyTableIndex = 353,
    WdfUsbTargetPipeFormatRequestForResetTableIndex = 354,
    WdfUsbTargetPipeSendUrbSynchronouslyTableIndex = 355,
    WdfUsbTargetPipeFormatRequestForUrbTableIndex = 356,
    WdfUsbInterfaceGetInterfaceNumberTableIndex = 357,
    WdfUsbInterfaceGetNumEndpointsTableIndex = 358,
    WdfUsbInterfaceGetDescriptorTableIndex = 359,
    WdfUsbInterfaceSelectSettingTableIndex = 360,
    WdfUsbInterfaceGetEndpointInformationTableIndex = 361,
    WdfUsbTargetDeviceGetInterfaceTableIndex = 362,
    WdfUsbInterfaceGetConfiguredSettingIndexTableIndex = 363,
    WdfUsbInterfaceGetNumConfiguredPipesTableIndex = 364,
    WdfUsbInterfaceGetConfiguredPipeTableIndex = 365,
    WdfUsbTargetPipeWdmGetPipeHandleTableIndex = 366,
    WdfVerifierDbgBreakPointTableIndex = 367,
    WdfVerifierKeBugCheckTableIndex = 368,
    WdfWmiProviderCreateTableIndex = 369,
    WdfWmiProviderGetDeviceTableIndex = 370,
    WdfWmiProviderIsEnabledTableIndex = 371,
    WdfWmiProviderGetTracingHandleTableIndex = 372,
    WdfWmiInstanceCreateTableIndex = 373,
    WdfWmiInstanceRegisterTableIndex = 374,
    WdfWmiInstanceDeregisterTableIndex = 375,
    WdfWmiInstanceGetDeviceTableIndex = 376,
    WdfWmiInstanceGetProviderTableIndex = 377,
    WdfWmiInstanceFireEventTableIndex = 378,
    WdfWorkItemCreateTableIndex = 379,
    WdfWorkItemEnqueueTableIndex = 380,
    WdfWorkItemGetParentObjectTableIndex = 381,
    WdfWorkItemFlushTableIndex = 382,
    WdfCommonBufferCreateWithConfigTableIndex = 383,
    WdfDmaEnablerGetFragmentLengthTableIndex = 384,
    WdfDmaEnablerWdmGetDmaAdapterTableIndex = 385,
    WdfUsbInterfaceGetNumSettingsTableIndex = 386,
    WdfDeviceRemoveDependentUsageDeviceObjectTableIndex = 387,
    WdfDeviceGetSystemPowerActionTableIndex = 388,
    WdfInterruptSetExtendedPolicyTableIndex = 389,
    WdfIoQueueAssignForwardProgressPolicyTableIndex = 390,
    WdfPdoInitAssignContainerIDTableIndex = 391,
    WdfPdoInitAllowForwardingRequestToParentTableIndex = 392,
    WdfRequestMarkCancelableExTableIndex = 393,
    WdfRequestIsReservedTableIndex = 394,
    WdfRequestForwardToParentDeviceIoQueueTableIndex = 395,
    WdfCxDeviceInitAllocateTableIndex = 396,
    WdfCxDeviceInitAssignWdmIrpPreprocessCallbackTableIndex = 397,
    WdfCxDeviceInitSetIoInCallerContextCallbackTableIndex = 398,
    WdfCxDeviceInitSetRequestAttributesTableIndex = 399,
    WdfCxDeviceInitSetFileObjectConfigTableIndex = 400,
    WdfDeviceWdmDispatchIrpTableIndex = 401,
    WdfDeviceWdmDispatchIrpToIoQueueTableIndex = 402,
    WdfDeviceInitSetRemoveLockOptionsTableIndex = 403,
    WdfDeviceConfigureWdmIrpDispatchCallbackTableIndex = 404,
    WdfDmaEnablerConfigureSystemProfileTableIndex = 405,
    WdfDmaTransactionInitializeUsingOffsetTableIndex = 406,
    WdfDmaTransactionGetTransferInfoTableIndex = 407,
    WdfDmaTransactionSetChannelConfigurationCallbackTableIndex = 408,
    WdfDmaTransactionSetTransferCompleteCallbackTableIndex = 409,
    WdfDmaTransactionSetImmediateExecutionTableIndex = 410,
    WdfDmaTransactionAllocateResourcesTableIndex = 411,
    WdfDmaTransactionSetDeviceAddressOffsetTableIndex = 412,
    WdfDmaTransactionFreeResourcesTableIndex = 413,
    WdfDmaTransactionCancelTableIndex = 414,
    WdfDmaTransactionWdmGetTransferContextTableIndex = 415,
    WdfInterruptQueueWorkItemForIsrTableIndex = 416,
    WdfInterruptTryToAcquireLockTableIndex = 417,
    WdfIoQueueStopAndPurgeTableIndex = 418,
    WdfIoQueueStopAndPurgeSynchronouslyTableIndex = 419,
    WdfIoTargetPurgeTableIndex = 420,
    WdfUsbTargetDeviceCreateWithParametersTableIndex = 421,
    WdfUsbTargetDeviceQueryUsbCapabilityTableIndex = 422,
    WdfUsbTargetDeviceCreateUrbTableIndex = 423,
    WdfUsbTargetDeviceCreateIsochUrbTableIndex = 424,
    WdfDeviceWdmAssignPowerFrameworkSettingsTableIndex = 425,
    WdfDmaTransactionStopSystemTransferTableIndex = 426,
    WdfCxVerifierKeBugCheckTableIndex = 427,
    WdfInterruptReportActiveTableIndex = 428,
    WdfInterruptReportInactiveTableIndex = 429,
    WdfDeviceInitSetReleaseHardwareOrderOnFailureTableIndex = 430,
    WdfGetTriageInfoTableIndex = 431,
    WdfDeviceInitSetIoTypeExTableIndex = 432,
    WdfDeviceQueryPropertyExTableIndex = 433,
    WdfDeviceAllocAndQueryPropertyExTableIndex = 434,
    WdfDeviceAssignPropertyTableIndex = 435,
    WdfFdoInitQueryPropertyExTableIndex = 436,
    WdfFdoInitAllocAndQueryPropertyExTableIndex = 437,
    WdfDeviceStopIdleActualTableIndex = 438,
    WdfDeviceResumeIdleActualTableIndex = 439,
    WdfDeviceGetSelfIoTargetTableIndex = 440,
    WdfDeviceInitAllowSelfIoTargetTableIndex = 441,
    WdfIoTargetSelfAssignDefaultIoQueueTableIndex = 442,
    WdfDeviceOpenDevicemapKeyTableIndex = 443,
    WdfDmaTransactionSetSingleTransferRequirementTableIndex = 444,
    WdfCxDeviceInitSetPnpPowerEventCallbacksTableIndex = 445,
    WdfFileObjectGetInitiatorProcessIdTableIndex = 446,
    WdfRequestGetRequestorProcessIdTableIndex = 447,
    WdfDeviceRetrieveCompanionTargetTableIndex = 448,
    WdfCompanionTargetSendTaskSynchronouslyTableIndex = 449,
    WdfCompanionTargetWdmGetCompanionProcessTableIndex = 450,
    WdfDriverOpenPersistentStateRegistryKeyTableIndex = 451,
    WdfDriverErrorReportApiMissingTableIndex = 452,
    WdfFunctionTableNumEntries = 453,
} WDFFUNCENUM;
%ProgramFiles(x86)%\Windows Kits\10\Include\wdf\kmdf\1.25\wdffuncenum.h(195,0)
64 0.052660875 WDFFUNCENUM Enum
typedef enum _WDFFUNCENUM {

    WdfChildListCreateTableIndex = 0,
    WdfChildListGetDeviceTableIndex = 1,
    WdfChildListRetrievePdoTableIndex = 2,
    WdfChildListRetrieveAddressDescriptionTableIndex = 3,
    WdfChildListBeginScanTableIndex = 4,
    WdfChildListEndScanTableIndex = 5,
    WdfChildListBeginIterationTableIndex = 6,
    WdfChildListRetrieveNextDeviceTableIndex = 7,
    WdfChildListEndIterationTableIndex = 8,
    WdfChildListAddOrUpdateChildDescriptionAsPresentTableIndex = 9,
    WdfChildListUpdateChildDescriptionAsMissingTableIndex = 10,
    WdfChildListUpdateAllChildDescriptionsAsPresentTableIndex = 11,
    WdfChildListRequestChildEjectTableIndex = 12,
    WdfCollectionCreateTableIndex = 13,
    WdfCollectionGetCountTableIndex = 14,
    WdfCollectionAddTableIndex = 15,
    WdfCollectionRemoveTableIndex = 16,
    WdfCollectionRemoveItemTableIndex = 17,
    WdfCollectionGetItemTableIndex = 18,
    WdfCollectionGetFirstItemTableIndex = 19,
    WdfCollectionGetLastItemTableIndex = 20,
    WdfCommonBufferCreateTableIndex = 21,
    WdfCommonBufferGetAlignedVirtualAddressTableIndex = 22,
    WdfCommonBufferGetAlignedLogicalAddressTableIndex = 23,
    WdfCommonBufferGetLengthTableIndex = 24,
    WdfControlDeviceInitAllocateTableIndex = 25,
    WdfControlDeviceInitSetShutdownNotificationTableIndex = 26,
    WdfControlFinishInitializingTableIndex = 27,
    WdfDeviceGetDeviceStateTableIndex = 28,
    WdfDeviceSetDeviceStateTableIndex = 29,
    WdfWdmDeviceGetWdfDeviceHandleTableIndex = 30,
    WdfDeviceWdmGetDeviceObjectTableIndex = 31,
    WdfDeviceWdmGetAttachedDeviceTableIndex = 32,
    WdfDeviceWdmGetPhysicalDeviceTableIndex = 33,
    WdfDeviceWdmDispatchPreprocessedIrpTableIndex = 34,
    WdfDeviceAddDependentUsageDeviceObjectTableIndex = 35,
    WdfDeviceAddRemovalRelationsPhysicalDeviceTableIndex = 36,
    WdfDeviceRemoveRemovalRelationsPhysicalDeviceTableIndex = 37,
    WdfDeviceClearRemovalRelationsDevicesTableIndex = 38,
    WdfDeviceGetDriverTableIndex = 39,
    WdfDeviceRetrieveDeviceNameTableIndex = 40,
    WdfDeviceAssignMofResourceNameTableIndex = 41,
    WdfDeviceGetIoTargetTableIndex = 42,
    WdfDeviceGetDevicePnpStateTableIndex = 43,
    WdfDeviceGetDevicePowerStateTableIndex = 44,
    WdfDeviceGetDevicePowerPolicyStateTableIndex = 45,
    WdfDeviceAssignS0IdleSettingsTableIndex = 46,
    WdfDeviceAssignSxWakeSettingsTableIndex = 47,
    WdfDeviceOpenRegistryKeyTableIndex = 48,
    WdfDeviceSetSpecialFileSupportTableIndex = 49,
    WdfDeviceSetCharacteristicsTableIndex = 50,
    WdfDeviceGetCharacteristicsTableIndex = 51,
    WdfDeviceGetAlignmentRequirementTableIndex = 52,
    WdfDeviceSetAlignmentRequirementTableIndex = 53,
    WdfDeviceInitFreeTableIndex = 54,
    WdfDeviceInitSetPnpPowerEventCallbacksTableIndex = 55,
    WdfDeviceInitSetPowerPolicyEventCallbacksTableIndex = 56,
    WdfDeviceInitSetPowerPolicyOwnershipTableIndex = 57,
    WdfDeviceInitRegisterPnpStateChangeCallbackTableIndex = 58,
    WdfDeviceInitRegisterPowerStateChangeCallbackTableIndex = 59,
    WdfDeviceInitRegisterPowerPolicyStateChangeCallbackTableIndex = 60,
    WdfDeviceInitSetIoTypeTableIndex = 61,
    WdfDeviceInitSetExclusiveTableIndex = 62,
    WdfDeviceInitSetPowerNotPageableTableIndex = 63,
    WdfDeviceInitSetPowerPageableTableIndex = 64,
    WdfDeviceInitSetPowerInrushTableIndex = 65,
    WdfDeviceInitSetDeviceTypeTableIndex = 66,
    WdfDeviceInitAssignNameTableIndex = 67,
    WdfDeviceInitAssignSDDLStringTableIndex = 68,
    WdfDeviceInitSetDeviceClassTableIndex = 69,
    WdfDeviceInitSetCharacteristicsTableIndex = 70,
    WdfDeviceInitSetFileObjectConfigTableIndex = 71,
    WdfDeviceInitSetRequestAttributesTableIndex = 72,
    WdfDeviceInitAssignWdmIrpPreprocessCallbackTableIndex = 73,
    WdfDeviceInitSetIoInCallerContextCallbackTableIndex = 74,
    WdfDeviceCreateTableIndex = 75,
    WdfDeviceSetStaticStopRemoveTableIndex = 76,
    WdfDeviceCreateDeviceInterfaceTableIndex = 77,
    WdfDeviceSetDeviceInterfaceStateTableIndex = 78,
    WdfDeviceRetrieveDeviceInterfaceStringTableIndex = 79,
    WdfDeviceCreateSymbolicLinkTableIndex = 80,
    WdfDeviceQueryPropertyTableIndex = 81,
    WdfDeviceAllocAndQueryPropertyTableIndex = 82,
    WdfDeviceSetPnpCapabilitiesTableIndex = 83,
    WdfDeviceSetPowerCapabilitiesTableIndex = 84,
    WdfDeviceSetBusInformationForChildrenTableIndex = 85,
    WdfDeviceIndicateWakeStatusTableIndex = 86,
    WdfDeviceSetFailedTableIndex = 87,
    WdfDeviceStopIdleNoTrackTableIndex = 88,
    WdfDeviceResumeIdleNoTrackTableIndex = 89,
    WdfDeviceGetFileObjectTableIndex = 90,
    WdfDeviceEnqueueRequestTableIndex = 91,
    WdfDeviceGetDefaultQueueTableIndex = 92,
    WdfDeviceConfigureRequestDispatchingTableIndex = 93,
    WdfDmaEnablerCreateTableIndex = 94,
    WdfDmaEnablerGetMaximumLengthTableIndex = 95,
    WdfDmaEnablerGetMaximumScatterGatherElementsTableIndex = 96,
    WdfDmaEnablerSetMaximumScatterGatherElementsTableIndex = 97,
    WdfDmaTransactionCreateTableIndex = 98,
    WdfDmaTransactionInitializeTableIndex = 99,
    WdfDmaTransactionInitializeUsingRequestTableIndex = 100,
    WdfDmaTransactionExecuteTableIndex = 101,
    WdfDmaTransactionReleaseTableIndex = 102,
    WdfDmaTransactionDmaCompletedTableIndex = 103,
    WdfDmaTransactionDmaCompletedWithLengthTableIndex = 104,
    WdfDmaTransactionDmaCompletedFinalTableIndex = 105,
    WdfDmaTransactionGetBytesTransferredTableIndex = 106,
    WdfDmaTransactionSetMaximumLengthTableIndex = 107,
    WdfDmaTransactionGetRequestTableIndex = 108,
    WdfDmaTransactionGetCurrentDmaTransferLengthTableIndex = 109,
    WdfDmaTransactionGetDeviceTableIndex = 110,
    WdfDpcCreateTableIndex = 111,
    WdfDpcEnqueueTableIndex = 112,
    WdfDpcCancelTableIndex = 113,
    WdfDpcGetParentObjectTableIndex = 114,
    WdfDpcWdmGetDpcTableIndex = 115,
    WdfDriverCreateTableIndex = 116,
    WdfDriverGetRegistryPathTableIndex = 117,
    WdfDriverWdmGetDriverObjectTableIndex = 118,
    WdfDriverOpenParametersRegistryKeyTableIndex = 119,
    WdfWdmDriverGetWdfDriverHandleTableIndex = 120,
    WdfDriverRegisterTraceInfoTableIndex = 121,
    WdfDriverRetrieveVersionStringTableIndex = 122,
    WdfDriverIsVersionAvailableTableIndex = 123,
    WdfFdoInitWdmGetPhysicalDeviceTableIndex = 124,
    WdfFdoInitOpenRegistryKeyTableIndex = 125,
    WdfFdoInitQueryPropertyTableIndex = 126,
    WdfFdoInitAllocAndQueryPropertyTableIndex = 127,
    WdfFdoInitSetEventCallbacksTableIndex = 128,
    WdfFdoInitSetFilterTableIndex = 129,
    WdfFdoInitSetDefaultChildListConfigTableIndex = 130,
    WdfFdoQueryForInterfaceTableIndex = 131,
    WdfFdoGetDefaultChildListTableIndex = 132,
    WdfFdoAddStaticChildTableIndex = 133,
    WdfFdoLockStaticChildListForIterationTableIndex = 134,
    WdfFdoRetrieveNextStaticChildTableIndex = 135,
    WdfFdoUnlockStaticChildListFromIterationTableIndex = 136,
    WdfFileObjectGetFileNameTableIndex = 137,
    WdfFileObjectGetFlagsTableIndex = 138,
    WdfFileObjectGetDeviceTableIndex = 139,
    WdfFileObjectWdmGetFileObjectTableIndex = 140,
    WdfInterruptCreateTableIndex = 141,
    WdfInterruptQueueDpcForIsrTableIndex = 142,
    WdfInterruptSynchronizeTableIndex = 143,
    WdfInterruptAcquireLockTableIndex = 144,
    WdfInterruptReleaseLockTableIndex = 145,
    WdfInterruptEnableTableIndex = 146,
    WdfInterruptDisableTableIndex = 147,
    WdfInterruptWdmGetInterruptTableIndex = 148,
    WdfInterruptGetInfoTableIndex = 149,
    WdfInterruptSetPolicyTableIndex = 150,
    WdfInterruptGetDeviceTableIndex = 151,
    WdfIoQueueCreateTableIndex = 152,
    WdfIoQueueGetStateTableIndex = 153,
    WdfIoQueueStartTableIndex = 154,
    WdfIoQueueStopTableIndex = 155,
    WdfIoQueueStopSynchronouslyTableIndex = 156,
    WdfIoQueueGetDeviceTableIndex = 157,
    WdfIoQueueRetrieveNextRequestTableIndex = 158,
    WdfIoQueueRetrieveRequestByFileObjectTableIndex = 159,
    WdfIoQueueFindRequestTableIndex = 160,
    WdfIoQueueRetrieveFoundRequestTableIndex = 161,
    WdfIoQueueDrainSynchronouslyTableIndex = 162,
    WdfIoQueueDrainTableIndex = 163,
    WdfIoQueuePurgeSynchronouslyTableIndex = 164,
    WdfIoQueuePurgeTableIndex = 165,
    WdfIoQueueReadyNotifyTableIndex = 166,
    WdfIoTargetCreateTableIndex = 167,
    WdfIoTargetOpenTableIndex = 168,
    WdfIoTargetCloseForQueryRemoveTableIndex = 169,
    WdfIoTargetCloseTableIndex = 170,
    WdfIoTargetStartTableIndex = 171,
    WdfIoTargetStopTableIndex = 172,
    WdfIoTargetGetStateTableIndex = 173,
    WdfIoTargetGetDeviceTableIndex = 174,
    WdfIoTargetQueryTargetPropertyTableIndex = 175,
    WdfIoTargetAllocAndQueryTargetPropertyTableIndex = 176,
    WdfIoTargetQueryForInterfaceTableIndex = 177,
    WdfIoTargetWdmGetTargetDeviceObjectTableIndex = 178,
    WdfIoTargetWdmGetTargetPhysicalDeviceTableIndex = 179,
    WdfIoTargetWdmGetTargetFileObjectTableIndex = 180,
    WdfIoTargetWdmGetTargetFileHandleTableIndex = 181,
    WdfIoTargetSendReadSynchronouslyTableIndex = 182,
    WdfIoTargetFormatRequestForReadTableIndex = 183,
    WdfIoTargetSendWriteSynchronouslyTableIndex = 184,
    WdfIoTargetFormatRequestForWriteTableIndex = 185,
    WdfIoTargetSendIoctlSynchronouslyTableIndex = 186,
    WdfIoTargetFormatRequestForIoctlTableIndex = 187,
    WdfIoTargetSendInternalIoctlSynchronouslyTableIndex = 188,
    WdfIoTargetFormatRequestForInternalIoctlTableIndex = 189,
    WdfIoTargetSendInternalIoctlOthersSynchronouslyTableIndex = 190,
    WdfIoTargetFormatRequestForInternalIoctlOthersTableIndex = 191,
    WdfMemoryCreateTableIndex = 192,
    WdfMemoryCreatePreallocatedTableIndex = 193,
    WdfMemoryGetBufferTableIndex = 194,
    WdfMemoryAssignBufferTableIndex = 195,
    WdfMemoryCopyToBufferTableIndex = 196,
    WdfMemoryCopyFromBufferTableIndex = 197,
    WdfLookasideListCreateTableIndex = 198,
    WdfMemoryCreateFromLookasideTableIndex = 199,
    WdfDeviceMiniportCreateTableIndex = 200,
    WdfDriverMiniportUnloadTableIndex = 201,
    WdfObjectGetTypedContextWorkerTableIndex = 202,
    WdfObjectAllocateContextTableIndex = 203,
    WdfObjectContextGetObjectTableIndex = 204,
    WdfObjectReferenceActualTableIndex = 205,
    WdfObjectDereferenceActualTableIndex = 206,
    WdfObjectCreateTableIndex = 207,
    WdfObjectDeleteTableIndex = 208,
    WdfObjectQueryTableIndex = 209,
    WdfPdoInitAllocateTableIndex = 210,
    WdfPdoInitSetEventCallbacksTableIndex = 211,
    WdfPdoInitAssignDeviceIDTableIndex = 212,
    WdfPdoInitAssignInstanceIDTableIndex = 213,
    WdfPdoInitAddHardwareIDTableIndex = 214,
    WdfPdoInitAddCompatibleIDTableIndex = 215,
    WdfPdoInitAddDeviceTextTableIndex = 216,
    WdfPdoInitSetDefaultLocaleTableIndex = 217,
    WdfPdoInitAssignRawDeviceTableIndex = 218,
    WdfPdoMarkMissingTableIndex = 219,
    WdfPdoRequestEjectTableIndex = 220,
    WdfPdoGetParentTableIndex = 221,
    WdfPdoRetrieveIdentificationDescriptionTableIndex = 222,
    WdfPdoRetrieveAddressDescriptionTableIndex = 223,
    WdfPdoUpdateAddressDescriptionTableIndex = 224,
    WdfPdoAddEjectionRelationsPhysicalDeviceTableIndex = 225,
    WdfPdoRemoveEjectionRelationsPhysicalDeviceTableIndex = 226,
    WdfPdoClearEjectionRelationsDevicesTableIndex = 227,
    WdfDeviceAddQueryInterfaceTableIndex = 228,
    WdfRegistryOpenKeyTableIndex = 229,
    WdfRegistryCreateKeyTableIndex = 230,
    WdfRegistryCloseTableIndex = 231,
    WdfRegistryWdmGetHandleTableIndex = 232,
    WdfRegistryRemoveKeyTableIndex = 233,
    WdfRegistryRemoveValueTableIndex = 234,
    WdfRegistryQueryValueTableIndex = 235,
    WdfRegistryQueryMemoryTableIndex = 236,
    WdfRegistryQueryMultiStringTableIndex = 237,
    WdfRegistryQueryUnicodeStringTableIndex = 238,
    WdfRegistryQueryStringTableIndex = 239,
    WdfRegistryQueryULongTableIndex = 240,
    WdfRegistryAssignValueTableIndex = 241,
    WdfRegistryAssignMemoryTableIndex = 242,
    WdfRegistryAssignMultiStringTableIndex = 243,
    WdfRegistryAssignUnicodeStringTableIndex = 244,
    WdfRegistryAssignStringTableIndex = 245,
    WdfRegistryAssignULongTableIndex = 246,
    WdfRequestCreateTableIndex = 247,
    WdfRequestCreateFromIrpTableIndex = 248,
    WdfRequestReuseTableIndex = 249,
    WdfRequestChangeTargetTableIndex = 250,
    WdfRequestFormatRequestUsingCurrentTypeTableIndex = 251,
    WdfRequestWdmFormatUsingStackLocationTableIndex = 252,
    WdfRequestSendTableIndex = 253,
    WdfRequestGetStatusTableIndex = 254,
    WdfRequestMarkCancelableTableIndex = 255,
    WdfRequestUnmarkCancelableTableIndex = 256,
    WdfRequestIsCanceledTableIndex = 257,
    WdfRequestCancelSentRequestTableIndex = 258,
    WdfRequestIsFrom32BitProcessTableIndex = 259,
    WdfRequestSetCompletionRoutineTableIndex = 260,
    WdfRequestGetCompletionParamsTableIndex = 261,
    WdfRequestAllocateTimerTableIndex = 262,
    WdfRequestCompleteTableIndex = 263,
    WdfRequestCompleteWithPriorityBoostTableIndex = 264,
    WdfRequestCompleteWithInformationTableIndex = 265,
    WdfRequestGetParametersTableIndex = 266,
    WdfRequestRetrieveInputMemoryTableIndex = 267,
    WdfRequestRetrieveOutputMemoryTableIndex = 268,
    WdfRequestRetrieveInputBufferTableIndex = 269,
    WdfRequestRetrieveOutputBufferTableIndex = 270,
    WdfRequestRetrieveInputWdmMdlTableIndex = 271,
    WdfRequestRetrieveOutputWdmMdlTableIndex = 272,
    WdfRequestRetrieveUnsafeUserInputBufferTableIndex = 273,
    WdfRequestRetrieveUnsafeUserOutputBufferTableIndex = 274,
    WdfRequestSetInformationTableIndex = 275,
    WdfRequestGetInformationTableIndex = 276,
    WdfRequestGetFileObjectTableIndex = 277,
    WdfRequestProbeAndLockUserBufferForReadTableIndex = 278,
    WdfRequestProbeAndLockUserBufferForWriteTableIndex = 279,
    WdfRequestGetRequestorModeTableIndex = 280,
    WdfRequestForwardToIoQueueTableIndex = 281,
    WdfRequestGetIoQueueTableIndex = 282,
    WdfRequestRequeueTableIndex = 283,
    WdfRequestStopAcknowledgeTableIndex = 284,
    WdfRequestWdmGetIrpTableIndex = 285,
    WdfIoResourceRequirementsListSetSlotNumberTableIndex = 286,
    WdfIoResourceRequirementsListSetInterfaceTypeTableIndex = 287,
    WdfIoResourceRequirementsListAppendIoResListTableIndex = 288,
    WdfIoResourceRequirementsListInsertIoResListTableIndex = 289,
    WdfIoResourceRequirementsListGetCountTableIndex = 290,
    WdfIoResourceRequirementsListGetIoResListTableIndex = 291,
    WdfIoResourceRequirementsListRemoveTableIndex = 292,
    WdfIoResourceRequirementsListRemoveByIoResListTableIndex = 293,
    WdfIoResourceListCreateTableIndex = 294,
    WdfIoResourceListAppendDescriptorTableIndex = 295,
    WdfIoResourceListInsertDescriptorTableIndex = 296,
    WdfIoResourceListUpdateDescriptorTableIndex = 297,
    WdfIoResourceListGetCountTableIndex = 298,
    WdfIoResourceListGetDescriptorTableIndex = 299,
    WdfIoResourceListRemoveTableIndex = 300,
    WdfIoResourceListRemoveByDescriptorTableIndex = 301,
    WdfCmResourceListAppendDescriptorTableIndex = 302,
    WdfCmResourceListInsertDescriptorTableIndex = 303,
    WdfCmResourceListGetCountTableIndex = 304,
    WdfCmResourceListGetDescriptorTableIndex = 305,
    WdfCmResourceListRemoveTableIndex = 306,
    WdfCmResourceListRemoveByDescriptorTableIndex = 307,
    WdfStringCreateTableIndex = 308,
    WdfStringGetUnicodeStringTableIndex = 309,
    WdfObjectAcquireLockTableIndex = 310,
    WdfObjectReleaseLockTableIndex = 311,
    WdfWaitLockCreateTableIndex = 312,
    WdfWaitLockAcquireTableIndex = 313,
    WdfWaitLockReleaseTableIndex = 314,
    WdfSpinLockCreateTableIndex = 315,
    WdfSpinLockAcquireTableIndex = 316,
    WdfSpinLockReleaseTableIndex = 317,
    WdfTimerCreateTableIndex = 318,
    WdfTimerStartTableIndex = 319,
    WdfTimerStopTableIndex = 320,
    WdfTimerGetParentObjectTableIndex = 321,
    WdfUsbTargetDeviceCreateTableIndex = 322,
    WdfUsbTargetDeviceRetrieveInformationTableIndex = 323,
    WdfUsbTargetDeviceGetDeviceDescriptorTableIndex = 324,
    WdfUsbTargetDeviceRetrieveConfigDescriptorTableIndex = 325,
    WdfUsbTargetDeviceQueryStringTableIndex = 326,
    WdfUsbTargetDeviceAllocAndQueryStringTableIndex = 327,
    WdfUsbTargetDeviceFormatRequestForStringTableIndex = 328,
    WdfUsbTargetDeviceGetNumInterfacesTableIndex = 329,
    WdfUsbTargetDeviceSelectConfigTableIndex = 330,
    WdfUsbTargetDeviceWdmGetConfigurationHandleTableIndex = 331,
    WdfUsbTargetDeviceRetrieveCurrentFrameNumberTableIndex = 332,
    WdfUsbTargetDeviceSendControlTransferSynchronouslyTableIndex = 333,
    WdfUsbTargetDeviceFormatRequestForControlTransferTableIndex = 334,
    WdfUsbTargetDeviceIsConnectedSynchronousTableIndex = 335,
    WdfUsbTargetDeviceResetPortSynchronouslyTableIndex = 336,
    WdfUsbTargetDeviceCyclePortSynchronouslyTableIndex = 337,
    WdfUsbTargetDeviceFormatRequestForCyclePortTableIndex = 338,
    WdfUsbTargetDeviceSendUrbSynchronouslyTableIndex = 339,
    WdfUsbTargetDeviceFormatRequestForUrbTableIndex = 340,
    WdfUsbTargetPipeGetInformationTableIndex = 341,
    WdfUsbTargetPipeIsInEndpointTableIndex = 342,
    WdfUsbTargetPipeIsOutEndpointTableIndex = 343,
    WdfUsbTargetPipeGetTypeTableIndex = 344,
    WdfUsbTargetPipeSetNoMaximumPacketSizeCheckTableIndex = 345,
    WdfUsbTargetPipeWriteSynchronouslyTableIndex = 346,
    WdfUsbTargetPipeFormatRequestForWriteTableIndex = 347,
    WdfUsbTargetPipeReadSynchronouslyTableIndex = 348,
    WdfUsbTargetPipeFormatRequestForReadTableIndex = 349,
    WdfUsbTargetPipeConfigContinuousReaderTableIndex = 350,
    WdfUsbTargetPipeAbortSynchronouslyTableIndex = 351,
    WdfUsbTargetPipeFormatRequestForAbortTableIndex = 352,
    WdfUsbTargetPipeResetSynchronouslyTableIndex = 353,
    WdfUsbTargetPipeFormatRequestForResetTableIndex = 354,
    WdfUsbTargetPipeSendUrbSynchronouslyTableIndex = 355,
    WdfUsbTargetPipeFormatRequestForUrbTableIndex = 356,
    WdfUsbInterfaceGetInterfaceNumberTableIndex = 357,
    WdfUsbInterfaceGetNumEndpointsTableIndex = 358,
    WdfUsbInterfaceGetDescriptorTableIndex = 359,
    WdfUsbInterfaceSelectSettingTableIndex = 360,
    WdfUsbInterfaceGetEndpointInformationTableIndex = 361,
    WdfUsbTargetDeviceGetInterfaceTableIndex = 362,
    WdfUsbInterfaceGetConfiguredSettingIndexTableIndex = 363,
    WdfUsbInterfaceGetNumConfiguredPipesTableIndex = 364,
    WdfUsbInterfaceGetConfiguredPipeTableIndex = 365,
    WdfUsbTargetPipeWdmGetPipeHandleTableIndex = 366,
    WdfVerifierDbgBreakPointTableIndex = 367,
    WdfVerifierKeBugCheckTableIndex = 368,
    WdfWmiProviderCreateTableIndex = 369,
    WdfWmiProviderGetDeviceTableIndex = 370,
    WdfWmiProviderIsEnabledTableIndex = 371,
    WdfWmiProviderGetTracingHandleTableIndex = 372,
    WdfWmiInstanceCreateTableIndex = 373,
    WdfWmiInstanceRegisterTableIndex = 374,
    WdfWmiInstanceDeregisterTableIndex = 375,
    WdfWmiInstanceGetDeviceTableIndex = 376,
    WdfWmiInstanceGetProviderTableIndex = 377,
    WdfWmiInstanceFireEventTableIndex = 378,
    WdfWorkItemCreateTableIndex = 379,
    WdfWorkItemEnqueueTableIndex = 380,
    WdfWorkItemGetParentObjectTableIndex = 381,
    WdfWorkItemFlushTableIndex = 382,
    WdfCommonBufferCreateWithConfigTableIndex = 383,
    WdfDmaEnablerGetFragmentLengthTableIndex = 384,
    WdfDmaEnablerWdmGetDmaAdapterTableIndex = 385,
    WdfUsbInterfaceGetNumSettingsTableIndex = 386,
    WdfDeviceRemoveDependentUsageDeviceObjectTableIndex = 387,
    WdfDeviceGetSystemPowerActionTableIndex = 388,
    WdfInterruptSetExtendedPolicyTableIndex = 389,
    WdfIoQueueAssignForwardProgressPolicyTableIndex = 390,
    WdfPdoInitAssignContainerIDTableIndex = 391,
    WdfPdoInitAllowForwardingRequestToParentTableIndex = 392,
    WdfRequestMarkCancelableExTableIndex = 393,
    WdfRequestIsReservedTableIndex = 394,
    WdfRequestForwardToParentDeviceIoQueueTableIndex = 395,
    WdfCxDeviceInitAllocateTableIndex = 396,
    WdfCxDeviceInitAssignWdmIrpPreprocessCallbackTableIndex = 397,
    WdfCxDeviceInitSetIoInCallerContextCallbackTableIndex = 398,
    WdfCxDeviceInitSetRequestAttributesTableIndex = 399,
    WdfCxDeviceInitSetFileObjectConfigTableIndex = 400,
    WdfDeviceWdmDispatchIrpTableIndex = 401,
    WdfDeviceWdmDispatchIrpToIoQueueTableIndex = 402,
    WdfDeviceInitSetRemoveLockOptionsTableIndex = 403,
    WdfDeviceConfigureWdmIrpDispatchCallbackTableIndex = 404,
    WdfDmaEnablerConfigureSystemProfileTableIndex = 405,
    WdfDmaTransactionInitializeUsingOffsetTableIndex = 406,
    WdfDmaTransactionGetTransferInfoTableIndex = 407,
    WdfDmaTransactionSetChannelConfigurationCallbackTableIndex = 408,
    WdfDmaTransactionSetTransferCompleteCallbackTableIndex = 409,
    WdfDmaTransactionSetImmediateExecutionTableIndex = 410,
    WdfDmaTransactionAllocateResourcesTableIndex = 411,
    WdfDmaTransactionSetDeviceAddressOffsetTableIndex = 412,
    WdfDmaTransactionFreeResourcesTableIndex = 413,
    WdfDmaTransactionCancelTableIndex = 414,
    WdfDmaTransactionWdmGetTransferContextTableIndex = 415,
    WdfInterruptQueueWorkItemForIsrTableIndex = 416,
    WdfInterruptTryToAcquireLockTableIndex = 417,
    WdfIoQueueStopAndPurgeTableIndex = 418,
    WdfIoQueueStopAndPurgeSynchronouslyTableIndex = 419,
    WdfIoTargetPurgeTableIndex = 420,
    WdfUsbTargetDeviceCreateWithParametersTableIndex = 421,
    WdfUsbTargetDeviceQueryUsbCapabilityTableIndex = 422,
    WdfUsbTargetDeviceCreateUrbTableIndex = 423,
    WdfUsbTargetDeviceCreateIsochUrbTableIndex = 424,
    WdfDeviceWdmAssignPowerFrameworkSettingsTableIndex = 425,
    WdfDmaTransactionStopSystemTransferTableIndex = 426,
    WdfCxVerifierKeBugCheckTableIndex = 427,
    WdfInterruptReportActiveTableIndex = 428,
    WdfInterruptReportInactiveTableIndex = 429,
    WdfDeviceInitSetReleaseHardwareOrderOnFailureTableIndex = 430,
    WdfGetTriageInfoTableIndex = 431,
    WdfDeviceInitSetIoTypeExTableIndex = 432,
    WdfDeviceQueryPropertyExTableIndex = 433,
    WdfDeviceAllocAndQueryPropertyExTableIndex = 434,
    WdfDeviceAssignPropertyTableIndex = 435,
    WdfFdoInitQueryPropertyExTableIndex = 436,
    WdfFdoInitAllocAndQueryPropertyExTableIndex = 437,
    WdfDeviceStopIdleActualTableIndex = 438,
    WdfDeviceResumeIdleActualTableIndex = 439,
    WdfDeviceGetSelfIoTargetTableIndex = 440,
    WdfDeviceInitAllowSelfIoTargetTableIndex = 441,
    WdfIoTargetSelfAssignDefaultIoQueueTableIndex = 442,
    WdfDeviceOpenDevicemapKeyTableIndex = 443,
    WdfDmaTransactionSetSingleTransferRequirementTableIndex = 444,
    WdfCxDeviceInitSetPnpPowerEventCallbacksTableIndex = 445,
    WdfFileObjectGetInitiatorProcessIdTableIndex = 446,
    WdfRequestGetRequestorProcessIdTableIndex = 447,
    WdfDeviceRetrieveCompanionTargetTableIndex = 448,
    WdfCompanionTargetSendTaskSynchronouslyTableIndex = 449,
    WdfCompanionTargetWdmGetCompanionProcessTableIndex = 450,
    WdfDriverOpenPersistentStateRegistryKeyTableIndex = 451,
    WdfDriverErrorReportApiMissingTableIndex = 452,
    WdfPdoInitRemovePowerDependencyOnParentTableIndex = 453,
    WdfCxDeviceInitAllocateContextTableIndex = 454,
    WdfCxDeviceInitGetTypedContextWorkerTableIndex = 455,
    WdfCxDeviceInitSetPowerPolicyEventCallbacksTableIndex = 456,
    WdfDeviceSetDeviceInterfaceStateExTableIndex = 457,
    WdfFunctionTableNumEntries = 458,
} WDFFUNCENUM;
%ProgramFiles(x86)%\Windows Kits\10\Include\wdf\kmdf\1.31\wdffuncenum.h(195,0)
65 0.052660875 CERTENROLL_OBJECTID Enum
enum CERTENROLL_OBJECTID
    {
        XCN_OID_NONE	= 0,
        XCN_OID_RSA	= 1,
        XCN_OID_PKCS	= 2,
        XCN_OID_RSA_HASH	= 3,
        XCN_OID_RSA_ENCRYPT	= 4,
        XCN_OID_PKCS_1	= 5,
        XCN_OID_PKCS_2	= 6,
        XCN_OID_PKCS_3	= 7,
        XCN_OID_PKCS_4	= 8,
        XCN_OID_PKCS_5	= 9,
        XCN_OID_PKCS_6	= 10,
        XCN_OID_PKCS_7	= 11,
        XCN_OID_PKCS_8	= 12,
        XCN_OID_PKCS_9	= 13,
        XCN_OID_PKCS_10	= 14,
        XCN_OID_PKCS_12	= 15,
        XCN_OID_RSA_RSA	= 16,
        XCN_OID_RSA_MD2RSA	= 17,
        XCN_OID_RSA_MD4RSA	= 18,
        XCN_OID_RSA_MD5RSA	= 19,
        XCN_OID_RSA_SHA1RSA	= 20,
        XCN_OID_RSA_SETOAEP_RSA	= 21,
        XCN_OID_RSA_DH	= 22,
        XCN_OID_RSA_data	= 23,
        XCN_OID_RSA_signedData	= 24,
        XCN_OID_RSA_envelopedData	= 25,
        XCN_OID_RSA_signEnvData	= 26,
        XCN_OID_RSA_digestedData	= 27,
        XCN_OID_RSA_hashedData	= 28,
        XCN_OID_RSA_encryptedData	= 29,
        XCN_OID_RSA_emailAddr	= 30,
        XCN_OID_RSA_unstructName	= 31,
        XCN_OID_RSA_contentType	= 32,
        XCN_OID_RSA_messageDigest	= 33,
        XCN_OID_RSA_signingTime	= 34,
        XCN_OID_RSA_counterSign	= 35,
        XCN_OID_RSA_challengePwd	= 36,
        XCN_OID_RSA_unstructAddr	= 37,
        XCN_OID_RSA_extCertAttrs	= 38,
        XCN_OID_RSA_certExtensions	= 39,
        XCN_OID_RSA_SMIMECapabilities	= 40,
        XCN_OID_RSA_preferSignedData	= 41,
        XCN_OID_RSA_SMIMEalg	= 42,
        XCN_OID_RSA_SMIMEalgESDH	= 43,
        XCN_OID_RSA_SMIMEalgCMS3DESwrap	= 44,
        XCN_OID_RSA_SMIMEalgCMSRC2wrap	= 45,
        XCN_OID_RSA_MD2	= 46,
        XCN_OID_RSA_MD4	= 47,
        XCN_OID_RSA_MD5	= 48,
        XCN_OID_RSA_RC2CBC	= 49,
        XCN_OID_RSA_RC4	= 50,
        XCN_OID_RSA_DES_EDE3_CBC	= 51,
        XCN_OID_RSA_RC5_CBCPad	= 52,
        XCN_OID_ANSI_X942	= 53,
        XCN_OID_ANSI_X942_DH	= 54,
        XCN_OID_X957	= 55,
        XCN_OID_X957_DSA	= 56,
        XCN_OID_X957_SHA1DSA	= 57,
        XCN_OID_DS	= 58,
        XCN_OID_DSALG	= 59,
        XCN_OID_DSALG_CRPT	= 60,
        XCN_OID_DSALG_HASH	= 61,
        XCN_OID_DSALG_SIGN	= 62,
        XCN_OID_DSALG_RSA	= 63,
        XCN_OID_OIW	= 64,
        XCN_OID_OIWSEC	= 65,
        XCN_OID_OIWSEC_md4RSA	= 66,
        XCN_OID_OIWSEC_md5RSA	= 67,
        XCN_OID_OIWSEC_md4RSA2	= 68,
        XCN_OID_OIWSEC_desECB	= 69,
        XCN_OID_OIWSEC_desCBC	= 70,
        XCN_OID_OIWSEC_desOFB	= 71,
        XCN_OID_OIWSEC_desCFB	= 72,
        XCN_OID_OIWSEC_desMAC	= 73,
        XCN_OID_OIWSEC_rsaSign	= 74,
        XCN_OID_OIWSEC_dsa	= 75,
        XCN_OID_OIWSEC_shaDSA	= 76,
        XCN_OID_OIWSEC_mdc2RSA	= 77,
        XCN_OID_OIWSEC_shaRSA	= 78,
        XCN_OID_OIWSEC_dhCommMod	= 79,
        XCN_OID_OIWSEC_desEDE	= 80,
        XCN_OID_OIWSEC_sha	= 81,
        XCN_OID_OIWSEC_mdc2	= 82,
        XCN_OID_OIWSEC_dsaComm	= 83,
        XCN_OID_OIWSEC_dsaCommSHA	= 84,
        XCN_OID_OIWSEC_rsaXchg	= 85,
        XCN_OID_OIWSEC_keyHashSeal	= 86,
        XCN_OID_OIWSEC_md2RSASign	= 87,
        XCN_OID_OIWSEC_md5RSASign	= 88,
        XCN_OID_OIWSEC_sha1	= 89,
        XCN_OID_OIWSEC_dsaSHA1	= 90,
        XCN_OID_OIWSEC_dsaCommSHA1	= 91,
        XCN_OID_OIWSEC_sha1RSASign	= 92,
        XCN_OID_OIWDIR	= 93,
        XCN_OID_OIWDIR_CRPT	= 94,
        XCN_OID_OIWDIR_HASH	= 95,
        XCN_OID_OIWDIR_SIGN	= 96,
        XCN_OID_OIWDIR_md2	= 97,
        XCN_OID_OIWDIR_md2RSA	= 98,
        XCN_OID_INFOSEC	= 99,
        XCN_OID_INFOSEC_sdnsSignature	= 100,
        XCN_OID_INFOSEC_mosaicSignature	= 101,
        XCN_OID_INFOSEC_sdnsConfidentiality	= 102,
        XCN_OID_INFOSEC_mosaicConfidentiality	= 103,
        XCN_OID_INFOSEC_sdnsIntegrity	= 104,
        XCN_OID_INFOSEC_mosaicIntegrity	= 105,
        XCN_OID_INFOSEC_sdnsTokenProtection	= 106,
        XCN_OID_INFOSEC_mosaicTokenProtection	= 107,
        XCN_OID_INFOSEC_sdnsKeyManagement	= 108,
        XCN_OID_INFOSEC_mosaicKeyManagement	= 109,
        XCN_OID_INFOSEC_sdnsKMandSig	= 110,
        XCN_OID_INFOSEC_mosaicKMandSig	= 111,
        XCN_OID_INFOSEC_SuiteASignature	= 112,
        XCN_OID_INFOSEC_SuiteAConfidentiality	= 113,
        XCN_OID_INFOSEC_SuiteAIntegrity	= 114,
        XCN_OID_INFOSEC_SuiteATokenProtection	= 115,
        XCN_OID_INFOSEC_SuiteAKeyManagement	= 116,
        XCN_OID_INFOSEC_SuiteAKMandSig	= 117,
        XCN_OID_INFOSEC_mosaicUpdatedSig	= 118,
        XCN_OID_INFOSEC_mosaicKMandUpdSig	= 119,
        XCN_OID_INFOSEC_mosaicUpdatedInteg	= 120,
        XCN_OID_COMMON_NAME	= 121,
        XCN_OID_SUR_NAME	= 122,
        XCN_OID_DEVICE_SERIAL_NUMBER	= 123,
        XCN_OID_COUNTRY_NAME	= 124,
        XCN_OID_LOCALITY_NAME	= 125,
        XCN_OID_STATE_OR_PROVINCE_NAME	= 126,
        XCN_OID_STREET_ADDRESS	= 127,
        XCN_OID_ORGANIZATION_NAME	= 128,
        XCN_OID_ORGANIZATIONAL_UNIT_NAME	= 129,
        XCN_OID_TITLE	= 130,
        XCN_OID_DESCRIPTION	= 131,
        XCN_OID_SEARCH_GUIDE	= 132,
        XCN_OID_BUSINESS_CATEGORY	= 133,
        XCN_OID_POSTAL_ADDRESS	= 134,
        XCN_OID_POSTAL_CODE	= 135,
        XCN_OID_POST_OFFICE_BOX	= 136,
        XCN_OID_PHYSICAL_DELIVERY_OFFICE_NAME	= 137,
        XCN_OID_TELEPHONE_NUMBER	= 138,
        XCN_OID_TELEX_NUMBER	= 139,
        XCN_OID_TELETEXT_TERMINAL_IDENTIFIER	= 140,
        XCN_OID_FACSIMILE_TELEPHONE_NUMBER	= 141,
        XCN_OID_X21_ADDRESS	= 142,
        XCN_OID_INTERNATIONAL_ISDN_NUMBER	= 143,
        XCN_OID_REGISTERED_ADDRESS	= 144,
        XCN_OID_DESTINATION_INDICATOR	= 145,
        XCN_OID_PREFERRED_DELIVERY_METHOD	= 146,
        XCN_OID_PRESENTATION_ADDRESS	= 147,
        XCN_OID_SUPPORTED_APPLICATION_CONTEXT	= 148,
        XCN_OID_MEMBER	= 149,
        XCN_OID_OWNER	= 150,
        XCN_OID_ROLE_OCCUPANT	= 151,
        XCN_OID_SEE_ALSO	= 152,
        XCN_OID_USER_PASSWORD	= 153,
        XCN_OID_USER_CERTIFICATE	= 154,
        XCN_OID_CA_CERTIFICATE	= 155,
        XCN_OID_AUTHORITY_REVOCATION_LIST	= 156,
        XCN_OID_CERTIFICATE_REVOCATION_LIST	= 157,
        XCN_OID_CROSS_CERTIFICATE_PAIR	= 158,
        XCN_OID_GIVEN_NAME	= 159,
        XCN_OID_INITIALS	= 160,
        XCN_OID_DN_QUALIFIER	= 161,
        XCN_OID_DOMAIN_COMPONENT	= 162,
        XCN_OID_PKCS_12_FRIENDLY_NAME_ATTR	= 163,
        XCN_OID_PKCS_12_LOCAL_KEY_ID	= 164,
        XCN_OID_PKCS_12_KEY_PROVIDER_NAME_ATTR	= 165,
        XCN_OID_LOCAL_MACHINE_KEYSET	= 166,
        XCN_OID_PKCS_12_EXTENDED_ATTRIBUTES	= 167,
        XCN_OID_KEYID_RDN	= 168,
        XCN_OID_AUTHORITY_KEY_IDENTIFIER	= 169,
        XCN_OID_KEY_ATTRIBUTES	= 170,
        XCN_OID_CERT_POLICIES_95	= 171,
        XCN_OID_KEY_USAGE_RESTRICTION	= 172,
        XCN_OID_SUBJECT_ALT_NAME	= 173,
        XCN_OID_ISSUER_ALT_NAME	= 174,
        XCN_OID_BASIC_CONSTRAINTS	= 175,
        XCN_OID_KEY_USAGE	= 176,
        XCN_OID_PRIVATEKEY_USAGE_PERIOD	= 177,
        XCN_OID_BASIC_CONSTRAINTS2	= 178,
        XCN_OID_CERT_POLICIES	= 179,
        XCN_OID_ANY_CERT_POLICY	= 180,
        XCN_OID_AUTHORITY_KEY_IDENTIFIER2	= 181,
        XCN_OID_SUBJECT_KEY_IDENTIFIER	= 182,
        XCN_OID_SUBJECT_ALT_NAME2	= 183,
        XCN_OID_ISSUER_ALT_NAME2	= 184,
        XCN_OID_CRL_REASON_CODE	= 185,
        XCN_OID_REASON_CODE_HOLD	= 186,
        XCN_OID_CRL_DIST_POINTS	= 187,
        XCN_OID_ENHANCED_KEY_USAGE	= 188,
        XCN_OID_CRL_NUMBER	= 189,
        XCN_OID_DELTA_CRL_INDICATOR	= 190,
        XCN_OID_ISSUING_DIST_POINT	= 191,
        XCN_OID_FRESHEST_CRL	= 192,
        XCN_OID_NAME_CONSTRAINTS	= 193,
        XCN_OID_POLICY_MAPPINGS	= 194,
        XCN_OID_LEGACY_POLICY_MAPPINGS	= 195,
        XCN_OID_POLICY_CONSTRAINTS	= 196,
        XCN_OID_RENEWAL_CERTIFICATE	= 197,
        XCN_OID_ENROLLMENT_NAME_VALUE_PAIR	= 198,
        XCN_OID_ENROLLMENT_CSP_PROVIDER	= 199,
        XCN_OID_OS_VERSION	= 200,
        XCN_OID_ENROLLMENT_AGENT	= 201,
        XCN_OID_PKIX	= 202,
        XCN_OID_PKIX_PE	= 203,
        XCN_OID_AUTHORITY_INFO_ACCESS	= 204,
        XCN_OID_BIOMETRIC_EXT	= 205,
        XCN_OID_LOGOTYPE_EXT	= 206,
        XCN_OID_CERT_EXTENSIONS	= 207,
        XCN_OID_NEXT_UPDATE_LOCATION	= 208,
        XCN_OID_REMOVE_CERTIFICATE	= 209,
        XCN_OID_CROSS_CERT_DIST_POINTS	= 210,
        XCN_OID_CTL	= 211,
        XCN_OID_SORTED_CTL	= 212,
        XCN_OID_SERIALIZED	= 213,
        XCN_OID_NT_PRINCIPAL_NAME	= 214,
        XCN_OID_PRODUCT_UPDATE	= 215,
        XCN_OID_ANY_APPLICATION_POLICY	= 216,
        XCN_OID_AUTO_ENROLL_CTL_USAGE	= 217,
        XCN_OID_ENROLL_CERTTYPE_EXTENSION	= 218,
        XCN_OID_CERT_MANIFOLD	= 219,
        XCN_OID_CERTSRV_CA_VERSION	= 220,
        XCN_OID_CERTSRV_PREVIOUS_CERT_HASH	= 221,
        XCN_OID_CRL_VIRTUAL_BASE	= 222,
        XCN_OID_CRL_NEXT_PUBLISH	= 223,
        XCN_OID_KP_CA_EXCHANGE	= 224,
        XCN_OID_KP_KEY_RECOVERY_AGENT	= 225,
        XCN_OID_CERTIFICATE_TEMPLATE	= 226,
        XCN_OID_ENTERPRISE_OID_ROOT	= 227,
        XCN_OID_RDN_DUMMY_SIGNER	= 228,
        XCN_OID_APPLICATION_CERT_POLICIES	= 229,
        XCN_OID_APPLICATION_POLICY_MAPPINGS	= 230,
        XCN_OID_APPLICATION_POLICY_CONSTRAINTS	= 231,
        XCN_OID_ARCHIVED_KEY_ATTR	= 232,
        XCN_OID_CRL_SELF_CDP	= 233,
        XCN_OID_REQUIRE_CERT_CHAIN_POLICY	= 234,
        XCN_OID_ARCHIVED_KEY_CERT_HASH	= 235,
        XCN_OID_ISSUED_CERT_HASH	= 236,
        XCN_OID_DS_EMAIL_REPLICATION	= 237,
        XCN_OID_REQUEST_CLIENT_INFO	= 238,
        XCN_OID_ENCRYPTED_KEY_HASH	= 239,
        XCN_OID_CERTSRV_CROSSCA_VERSION	= 240,
        XCN_OID_NTDS_REPLICATION	= 241,
        XCN_OID_SUBJECT_DIR_ATTRS	= 242,
        XCN_OID_PKIX_KP	= 243,
        XCN_OID_PKIX_KP_SERVER_AUTH	= 244,
        XCN_OID_PKIX_KP_CLIENT_AUTH	= 245,
        XCN_OID_PKIX_KP_CODE_SIGNING	= 246,
        XCN_OID_PKIX_KP_EMAIL_PROTECTION	= 247,
        XCN_OID_PKIX_KP_IPSEC_END_SYSTEM	= 248,
        XCN_OID_PKIX_KP_IPSEC_TUNNEL	= 249,
        XCN_OID_PKIX_KP_IPSEC_USER	= 250,
        XCN_OID_PKIX_KP_TIMESTAMP_SIGNING	= 251,
        XCN_OID_PKIX_KP_OCSP_SIGNING	= 252,
        XCN_OID_PKIX_OCSP_NOCHECK	= 253,
        XCN_OID_IPSEC_KP_IKE_INTERMEDIATE	= 254,
        XCN_OID_KP_CTL_USAGE_SIGNING	= 255,
        XCN_OID_KP_TIME_STAMP_SIGNING	= 256,
        XCN_OID_SERVER_GATED_CRYPTO	= 257,
        XCN_OID_SGC_NETSCAPE	= 258,
        XCN_OID_KP_EFS	= 259,
        XCN_OID_EFS_RECOVERY	= 260,
        XCN_OID_WHQL_CRYPTO	= 261,
        XCN_OID_NT5_CRYPTO	= 262,
        XCN_OID_OEM_WHQL_CRYPTO	= 263,
        XCN_OID_EMBEDDED_NT_CRYPTO	= 264,
        XCN_OID_ROOT_LIST_SIGNER	= 265,
        XCN_OID_KP_QUALIFIED_SUBORDINATION	= 266,
        XCN_OID_KP_KEY_RECOVERY	= 267,
        XCN_OID_KP_DOCUMENT_SIGNING	= 268,
        XCN_OID_KP_LIFETIME_SIGNING	= 269,
        XCN_OID_KP_MOBILE_DEVICE_SOFTWARE	= 270,
        XCN_OID_KP_SMART_DISPLAY	= 271,
        XCN_OID_KP_CSP_SIGNATURE	= 272,
        XCN_OID_DRM	= 273,
        XCN_OID_DRM_INDIVIDUALIZATION	= 274,
        XCN_OID_LICENSES	= 275,
        XCN_OID_LICENSE_SERVER	= 276,
        XCN_OID_KP_SMARTCARD_LOGON	= 277,
        XCN_OID_YESNO_TRUST_ATTR	= 278,
        XCN_OID_PKIX_POLICY_QUALIFIER_CPS	= 279,
        XCN_OID_PKIX_POLICY_QUALIFIER_USERNOTICE	= 280,
        XCN_OID_CERT_POLICIES_95_QUALIFIER1	= 281,
        XCN_OID_PKIX_ACC_DESCR	= 282,
        XCN_OID_PKIX_OCSP	= 283,
        XCN_OID_PKIX_CA_ISSUERS	= 284,
        XCN_OID_VERISIGN_PRIVATE_6_9	= 285,
        XCN_OID_VERISIGN_ONSITE_JURISDICTION_HASH	= 286,
        XCN_OID_VERISIGN_BITSTRING_6_13	= 287,
        XCN_OID_VERISIGN_ISS_STRONG_CRYPTO	= 288,
        XCN_OID_NETSCAPE	= 289,
        XCN_OID_NETSCAPE_CERT_EXTENSION	= 290,
        XCN_OID_NETSCAPE_CERT_TYPE	= 291,
        XCN_OID_NETSCAPE_BASE_URL	= 292,
        XCN_OID_NETSCAPE_REVOCATION_URL	= 293,
        XCN_OID_NETSCAPE_CA_REVOCATION_URL	= 294,
        XCN_OID_NETSCAPE_CERT_RENEWAL_URL	= 295,
        XCN_OID_NETSCAPE_CA_POLICY_URL	= 296,
        XCN_OID_NETSCAPE_SSL_SERVER_NAME	= 297,
        XCN_OID_NETSCAPE_COMMENT	= 298,
        XCN_OID_NETSCAPE_DATA_TYPE	= 299,
        XCN_OID_NETSCAPE_CERT_SEQUENCE	= 300,
        XCN_OID_CT_PKI_DATA	= 301,
        XCN_OID_CT_PKI_RESPONSE	= 302,
        XCN_OID_PKIX_NO_SIGNATURE	= 303,
        XCN_OID_CMC	= 304,
        XCN_OID_CMC_STATUS_INFO	= 305,
        XCN_OID_CMC_IDENTIFICATION	= 306,
        XCN_OID_CMC_IDENTITY_PROOF	= 307,
        XCN_OID_CMC_DATA_RETURN	= 308,
        XCN_OID_CMC_TRANSACTION_ID	= 309,
        XCN_OID_CMC_SENDER_NONCE	= 310,
        XCN_OID_CMC_RECIPIENT_NONCE	= 311,
        XCN_OID_CMC_ADD_EXTENSIONS	= 312,
        XCN_OID_CMC_ENCRYPTED_POP	= 313,
        XCN_OID_CMC_DECRYPTED_POP	= 314,
        XCN_OID_CMC_LRA_POP_WITNESS	= 315,
        XCN_OID_CMC_GET_CERT	= 316,
        XCN_OID_CMC_GET_CRL	= 317,
        XCN_OID_CMC_REVOKE_REQUEST	= 318,
        XCN_OID_CMC_REG_INFO	= 319,
        XCN_OID_CMC_RESPONSE_INFO	= 320,
        XCN_OID_CMC_QUERY_PENDING	= 321,
        XCN_OID_CMC_ID_POP_LINK_RANDOM	= 322,
        XCN_OID_CMC_ID_POP_LINK_WITNESS	= 323,
        XCN_OID_CMC_ID_CONFIRM_CERT_ACCEPTANCE	= 324,
        XCN_OID_CMC_ADD_ATTRIBUTES	= 325,
        XCN_OID_LOYALTY_OTHER_LOGOTYPE	= 326,
        XCN_OID_BACKGROUND_OTHER_LOGOTYPE	= 327,
        XCN_OID_PKIX_OCSP_BASIC_SIGNED_RESPONSE	= 328,
        XCN_OID_PKCS_7_DATA	= 329,
        XCN_OID_PKCS_7_SIGNED	= 330,
        XCN_OID_PKCS_7_ENVELOPED	= 331,
        XCN_OID_PKCS_7_SIGNEDANDENVELOPED	= 332,
        XCN_OID_PKCS_7_DIGESTED	= 333,
        XCN_OID_PKCS_7_ENCRYPTED	= 334,
        XCN_OID_PKCS_9_CONTENT_TYPE	= 335,
        XCN_OID_PKCS_9_MESSAGE_DIGEST	= 336,
        XCN_OID_CERT_PROP_ID_PREFIX	= 337,
        XCN_OID_CERT_KEY_IDENTIFIER_PROP_ID	= 338,
        XCN_OID_CERT_ISSUER_SERIAL_NUMBER_MD5_HASH_PROP_ID	= 339,
        XCN_OID_CERT_SUBJECT_NAME_MD5_HASH_PROP_ID	= 340,
        XCN_OID_CERT_MD5_HASH_PROP_ID	= 341,
        XCN_OID_RSA_SHA256RSA	= 342,
        XCN_OID_RSA_SHA384RSA	= 343,
        XCN_OID_RSA_SHA512RSA	= 344,
        XCN_OID_NIST_sha256	= 345,
        XCN_OID_NIST_sha384	= 346,
        XCN_OID_NIST_sha512	= 347,
        XCN_OID_RSA_MGF1	= 348,
        XCN_OID_ECC_PUBLIC_KEY	= 349,
        XCN_OID_ECDSA_SHA1	= 350,
        XCN_OID_ECDSA_SPECIFIED	= 351,
        XCN_OID_ANY_ENHANCED_KEY_USAGE	= 352,
        XCN_OID_RSA_SSA_PSS	= 353,
        XCN_OID_ATTR_SUPPORTED_ALGORITHMS	= 355,
        XCN_OID_ATTR_TPM_SECURITY_ASSERTIONS	= 356,
        XCN_OID_ATTR_TPM_SPECIFICATION	= 357,
        XCN_OID_CERT_DISALLOWED_FILETIME_PROP_ID	= 358,
        XCN_OID_CERT_SIGNATURE_HASH_PROP_ID	= 359,
        XCN_OID_CERT_STRONG_KEY_OS_1	= 360,
        XCN_OID_CERT_STRONG_KEY_OS_CURRENT	= 361,
        XCN_OID_CERT_STRONG_KEY_OS_PREFIX	= 362,
        XCN_OID_CERT_STRONG_SIGN_OS_1	= 363,
        XCN_OID_CERT_STRONG_SIGN_OS_CURRENT	= 364,
        XCN_OID_CERT_STRONG_SIGN_OS_PREFIX	= 365,
        XCN_OID_DH_SINGLE_PASS_STDDH_SHA1_KDF	= 366,
        XCN_OID_DH_SINGLE_PASS_STDDH_SHA256_KDF	= 367,
        XCN_OID_DH_SINGLE_PASS_STDDH_SHA384_KDF	= 368,
        XCN_OID_DISALLOWED_HASH	= 369,
        XCN_OID_DISALLOWED_LIST	= 370,
        XCN_OID_ECC_CURVE_P256	= 371,
        XCN_OID_ECC_CURVE_P384	= 372,
        XCN_OID_ECC_CURVE_P521	= 373,
        XCN_OID_ECDSA_SHA256	= 374,
        XCN_OID_ECDSA_SHA384	= 375,
        XCN_OID_ECDSA_SHA512	= 376,
        XCN_OID_ENROLL_CAXCHGCERT_HASH	= 377,
        XCN_OID_ENROLL_EK_INFO	= 378,
        XCN_OID_ENROLL_EKPUB_CHALLENGE	= 379,
        XCN_OID_ENROLL_EKVERIFYCERT	= 380,
        XCN_OID_ENROLL_EKVERIFYCREDS	= 381,
        XCN_OID_ENROLL_EKVERIFYKEY	= 382,
        XCN_OID_EV_RDN_COUNTRY	= 383,
        XCN_OID_EV_RDN_LOCALE	= 384,
        XCN_OID_EV_RDN_STATE_OR_PROVINCE	= 385,
        XCN_OID_INHIBIT_ANY_POLICY	= 386,
        XCN_OID_INTERNATIONALIZED_EMAIL_ADDRESS	= 387,
        XCN_OID_KP_KERNEL_MODE_CODE_SIGNING	= 388,
        XCN_OID_KP_KERNEL_MODE_HAL_EXTENSION_SIGNING	= 389,
        XCN_OID_KP_KERNEL_MODE_TRUSTED_BOOT_SIGNING	= 390,
        XCN_OID_KP_TPM_AIK_CERTIFICATE	= 391,
        XCN_OID_KP_TPM_EK_CERTIFICATE	= 392,
        XCN_OID_KP_TPM_PLATFORM_CERTIFICATE	= 393,
        XCN_OID_NIST_AES128_CBC	= 394,
        XCN_OID_NIST_AES128_WRAP	= 395,
        XCN_OID_NIST_AES192_CBC	= 396,
        XCN_OID_NIST_AES192_WRAP	= 397,
        XCN_OID_NIST_AES256_CBC	= 398,
        XCN_OID_NIST_AES256_WRAP	= 399,
        XCN_OID_PKCS_12_PbeIds	= 400,
        XCN_OID_PKCS_12_pbeWithSHA1And128BitRC2	= 401,
        XCN_OID_PKCS_12_pbeWithSHA1And128BitRC4	= 402,
        XCN_OID_PKCS_12_pbeWithSHA1And2KeyTripleDES	= 403,
        XCN_OID_PKCS_12_pbeWithSHA1And3KeyTripleDES	= 404,
        XCN_OID_PKCS_12_pbeWithSHA1And40BitRC2	= 405,
        XCN_OID_PKCS_12_pbeWithSHA1And40BitRC4	= 406,
        XCN_OID_PKCS_12_PROTECTED_PASSWORD_SECRET_BAG_TYPE_ID	= 407,
        XCN_OID_PKINIT_KP_KDC	= 408,
        XCN_OID_PKIX_CA_REPOSITORY	= 409,
        XCN_OID_PKIX_OCSP_NONCE	= 410,
        XCN_OID_PKIX_TIME_STAMPING	= 411,
        XCN_OID_QC_EU_COMPLIANCE	= 412,
        XCN_OID_QC_SSCD	= 413,
        XCN_OID_QC_STATEMENTS_EXT	= 414,
        XCN_OID_RDN_TPM_MANUFACTURER	= 415,
        XCN_OID_RDN_TPM_MODEL	= 416,
        XCN_OID_RDN_TPM_VERSION	= 417,
        XCN_OID_REVOKED_LIST_SIGNER	= 418,
        XCN_OID_RFC3161_counterSign	= 419,
        XCN_OID_ROOT_PROGRAM_AUTO_UPDATE_CA_REVOCATION	= 420,
        XCN_OID_ROOT_PROGRAM_AUTO_UPDATE_END_REVOCATION	= 421,
        XCN_OID_ROOT_PROGRAM_FLAGS	= 422,
        XCN_OID_ROOT_PROGRAM_NO_OCSP_FAILOVER_TO_CRL	= 423,
        XCN_OID_RSA_PSPECIFIED	= 424,
        XCN_OID_RSAES_OAEP	= 425,
        XCN_OID_SUBJECT_INFO_ACCESS	= 426,
        XCN_OID_TIMESTAMP_TOKEN	= 427,
        XCN_OID_ENROLL_SCEP_ERROR	= 428,
        XCN_OIDVerisign_MessageType	= 429,
        XCN_OIDVerisign_PkiStatus	= 430,
        XCN_OIDVerisign_FailInfo	= 431,
        XCN_OIDVerisign_SenderNonce	= 432,
        XCN_OIDVerisign_RecipientNonce	= 433,
        XCN_OIDVerisign_TransactionID	= 434,
        XCN_OID_ENROLL_ATTESTATION_CHALLENGE	= 435,
        XCN_OID_ENROLL_ATTESTATION_STATEMENT	= 436,
        XCN_OID_ENROLL_ENCRYPTION_ALGORITHM	= 437,
        XCN_OID_ENROLL_KSP_NAME	= 438
    } 	CERTENROLL_OBJECTID;
%ProgramFiles(x86)%\Windows Kits\10\Include\10.0.26100.0\um\certenroll.h(1690,0)
  • If WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
66 0.032913044 D3D12_MESSAGE_ID Enum
enum D3D12_MESSAGE_ID
    {
        D3D12_MESSAGE_ID_UNKNOWN	= 0,
        D3D12_MESSAGE_ID_STRING_FROM_APPLICATION	= 1,
        D3D12_MESSAGE_ID_CORRUPTED_THIS	= 2,
        D3D12_MESSAGE_ID_CORRUPTED_PARAMETER1	= 3,
        D3D12_MESSAGE_ID_CORRUPTED_PARAMETER2	= 4,
        D3D12_MESSAGE_ID_CORRUPTED_PARAMETER3	= 5,
        D3D12_MESSAGE_ID_CORRUPTED_PARAMETER4	= 6,
        D3D12_MESSAGE_ID_CORRUPTED_PARAMETER5	= 7,
        D3D12_MESSAGE_ID_CORRUPTED_PARAMETER6	= 8,
        D3D12_MESSAGE_ID_CORRUPTED_PARAMETER7	= 9,
        D3D12_MESSAGE_ID_CORRUPTED_PARAMETER8	= 10,
        D3D12_MESSAGE_ID_CORRUPTED_PARAMETER9	= 11,
        D3D12_MESSAGE_ID_CORRUPTED_PARAMETER10	= 12,
        D3D12_MESSAGE_ID_CORRUPTED_PARAMETER11	= 13,
        D3D12_MESSAGE_ID_CORRUPTED_PARAMETER12	= 14,
        D3D12_MESSAGE_ID_CORRUPTED_PARAMETER13	= 15,
        D3D12_MESSAGE_ID_CORRUPTED_PARAMETER14	= 16,
        D3D12_MESSAGE_ID_CORRUPTED_PARAMETER15	= 17,
        D3D12_MESSAGE_ID_CORRUPTED_MULTITHREADING	= 18,
        D3D12_MESSAGE_ID_MESSAGE_REPORTING_OUTOFMEMORY	= 19,
        D3D12_MESSAGE_ID_GETPRIVATEDATA_MOREDATA	= 20,
        D3D12_MESSAGE_ID_SETPRIVATEDATA_INVALIDFREEDATA	= 21,
        D3D12_MESSAGE_ID_SETPRIVATEDATA_CHANGINGPARAMS	= 24,
        D3D12_MESSAGE_ID_SETPRIVATEDATA_OUTOFMEMORY	= 25,
        D3D12_MESSAGE_ID_CREATESHADERRESOURCEVIEW_UNRECOGNIZEDFORMAT	= 26,
        D3D12_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDDESC	= 27,
        D3D12_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDFORMAT	= 28,
        D3D12_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDVIDEOPLANESLICE	= 29,
        D3D12_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDPLANESLICE	= 30,
        D3D12_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDDIMENSIONS	= 31,
        D3D12_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDRESOURCE	= 32,
        D3D12_MESSAGE_ID_CREATERENDERTARGETVIEW_UNRECOGNIZEDFORMAT	= 35,
        D3D12_MESSAGE_ID_CREATERENDERTARGETVIEW_UNSUPPORTEDFORMAT	= 36,
        D3D12_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDDESC	= 37,
        D3D12_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDFORMAT	= 38,
        D3D12_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDVIDEOPLANESLICE	= 39,
        D3D12_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDPLANESLICE	= 40,
        D3D12_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDDIMENSIONS	= 41,
        D3D12_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDRESOURCE	= 42,
        D3D12_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_UNRECOGNIZEDFORMAT	= 45,
        D3D12_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDDESC	= 46,
        D3D12_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDFORMAT	= 47,
        D3D12_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDDIMENSIONS	= 48,
        D3D12_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDRESOURCE	= 49,
        D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_OUTOFMEMORY	= 52,
        D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_TOOMANYELEMENTS	= 53,
        D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDFORMAT	= 54,
        D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_INCOMPATIBLEFORMAT	= 55,
        D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDSLOT	= 56,
        D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDINPUTSLOTCLASS	= 57,
        D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_STEPRATESLOTCLASSMISMATCH	= 58,
        D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDSLOTCLASSCHANGE	= 59,
        D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDSTEPRATECHANGE	= 60,
        D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDALIGNMENT	= 61,
        D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_DUPLICATESEMANTIC	= 62,
        D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_UNPARSEABLEINPUTSIGNATURE	= 63,
        D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_NULLSEMANTIC	= 64,
        D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_MISSINGELEMENT	= 65,
        D3D12_MESSAGE_ID_CREATEVERTEXSHADER_OUTOFMEMORY	= 66,
        D3D12_MESSAGE_ID_CREATEVERTEXSHADER_INVALIDSHADERBYTECODE	= 67,
        D3D12_MESSAGE_ID_CREATEVERTEXSHADER_INVALIDSHADERTYPE	= 68,
        D3D12_MESSAGE_ID_CREATEGEOMETRYSHADER_OUTOFMEMORY	= 69,
        D3D12_MESSAGE_ID_CREATEGEOMETRYSHADER_INVALIDSHADERBYTECODE	= 70,
        D3D12_MESSAGE_ID_CREATEGEOMETRYSHADER_INVALIDSHADERTYPE	= 71,
        D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_OUTOFMEMORY	= 72,
        D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSHADERBYTECODE	= 73,
        D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSHADERTYPE	= 74,
        D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDNUMENTRIES	= 75,
        D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_OUTPUTSTREAMSTRIDEUNUSED	= 76,
        D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_OUTPUTSLOT0EXPECTED	= 79,
        D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDOUTPUTSLOT	= 80,
        D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_ONLYONEELEMENTPERSLOT	= 81,
        D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDCOMPONENTCOUNT	= 82,
        D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSTARTCOMPONENTANDCOMPONENTCOUNT	= 83,
        D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDGAPDEFINITION	= 84,
        D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_REPEATEDOUTPUT	= 85,
        D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDOUTPUTSTREAMSTRIDE	= 86,
        D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_MISSINGSEMANTIC	= 87,
        D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_MASKMISMATCH	= 88,
        D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_CANTHAVEONLYGAPS	= 89,
        D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_DECLTOOCOMPLEX	= 90,
        D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_MISSINGOUTPUTSIGNATURE	= 91,
        D3D12_MESSAGE_ID_CREATEPIXELSHADER_OUTOFMEMORY	= 92,
        D3D12_MESSAGE_ID_CREATEPIXELSHADER_INVALIDSHADERBYTECODE	= 93,
        D3D12_MESSAGE_ID_CREATEPIXELSHADER_INVALIDSHADERTYPE	= 94,
        D3D12_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDFILLMODE	= 95,
        D3D12_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDCULLMODE	= 96,
        D3D12_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDDEPTHBIASCLAMP	= 97,
        D3D12_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDSLOPESCALEDDEPTHBIAS	= 98,
        D3D12_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDDEPTHWRITEMASK	= 100,
        D3D12_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDDEPTHFUNC	= 101,
        D3D12_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILFAILOP	= 102,
        D3D12_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILZFAILOP	= 103,
        D3D12_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILPASSOP	= 104,
        D3D12_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILFUNC	= 105,
        D3D12_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILFAILOP	= 106,
        D3D12_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILZFAILOP	= 107,
        D3D12_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILPASSOP	= 108,
        D3D12_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILFUNC	= 109,
        D3D12_MESSAGE_ID_CREATEBLENDSTATE_INVALIDSRCBLEND	= 111,
        D3D12_MESSAGE_ID_CREATEBLENDSTATE_INVALIDDESTBLEND	= 112,
        D3D12_MESSAGE_ID_CREATEBLENDSTATE_INVALIDBLENDOP	= 113,
        D3D12_MESSAGE_ID_CREATEBLENDSTATE_INVALIDSRCBLENDALPHA	= 114,
        D3D12_MESSAGE_ID_CREATEBLENDSTATE_INVALIDDESTBLENDALPHA	= 115,
        D3D12_MESSAGE_ID_CREATEBLENDSTATE_INVALIDBLENDOPALPHA	= 116,
        D3D12_MESSAGE_ID_CREATEBLENDSTATE_INVALIDRENDERTARGETWRITEMASK	= 117,
        D3D12_MESSAGE_ID_GET_PROGRAM_IDENTIFIER_ERROR	= 118,
        D3D12_MESSAGE_ID_GET_WORK_GRAPH_PROPERTIES_ERROR	= 119,
        D3D12_MESSAGE_ID_SET_PROGRAM_ERROR	= 120,
        D3D12_MESSAGE_ID_CLEARDEPTHSTENCILVIEW_INVALID	= 135,
        D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_ROOT_SIGNATURE_NOT_SET	= 200,
        D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_ROOT_SIGNATURE_MISMATCH	= 201,
        D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_VERTEX_BUFFER_NOT_SET	= 202,
        D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_VERTEX_BUFFER_STRIDE_TOO_SMALL	= 209,
        D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_VERTEX_BUFFER_TOO_SMALL	= 210,
        D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_INDEX_BUFFER_NOT_SET	= 211,
        D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_INDEX_BUFFER_FORMAT_INVALID	= 212,
        D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_INDEX_BUFFER_TOO_SMALL	= 213,
        D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_INVALID_PRIMITIVETOPOLOGY	= 219,
        D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_VERTEX_STRIDE_UNALIGNED	= 221,
        D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_INDEX_OFFSET_UNALIGNED	= 222,
        D3D12_MESSAGE_ID_DEVICE_REMOVAL_PROCESS_AT_FAULT	= 232,
        D3D12_MESSAGE_ID_DEVICE_REMOVAL_PROCESS_POSSIBLY_AT_FAULT	= 233,
        D3D12_MESSAGE_ID_DEVICE_REMOVAL_PROCESS_NOT_AT_FAULT	= 234,
        D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_TRAILING_DIGIT_IN_SEMANTIC	= 239,
        D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_TRAILING_DIGIT_IN_SEMANTIC	= 240,
        D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_TYPE_MISMATCH	= 245,
        D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_EMPTY_LAYOUT	= 253,
        D3D12_MESSAGE_ID_LIVE_OBJECT_SUMMARY	= 255,
        D3D12_MESSAGE_ID_LIVE_DEVICE	= 274,
        D3D12_MESSAGE_ID_LIVE_SWAPCHAIN	= 275,
        D3D12_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDFLAGS	= 276,
        D3D12_MESSAGE_ID_CREATEVERTEXSHADER_INVALIDCLASSLINKAGE	= 277,
        D3D12_MESSAGE_ID_CREATEGEOMETRYSHADER_INVALIDCLASSLINKAGE	= 278,
        D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSTREAMTORASTERIZER	= 280,
        D3D12_MESSAGE_ID_CREATEPIXELSHADER_INVALIDCLASSLINKAGE	= 283,
        D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSTREAM	= 284,
        D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_UNEXPECTEDENTRIES	= 285,
        D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_UNEXPECTEDSTRIDES	= 286,
        D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDNUMSTRIDES	= 287,
        D3D12_MESSAGE_ID_CREATEHULLSHADER_OUTOFMEMORY	= 289,
        D3D12_MESSAGE_ID_CREATEHULLSHADER_INVALIDSHADERBYTECODE	= 290,
        D3D12_MESSAGE_ID_CREATEHULLSHADER_INVALIDSHADERTYPE	= 291,
        D3D12_MESSAGE_ID_CREATEHULLSHADER_INVALIDCLASSLINKAGE	= 292,
        D3D12_MESSAGE_ID_CREATEDOMAINSHADER_OUTOFMEMORY	= 294,
        D3D12_MESSAGE_ID_CREATEDOMAINSHADER_INVALIDSHADERBYTECODE	= 295,
        D3D12_MESSAGE_ID_CREATEDOMAINSHADER_INVALIDSHADERTYPE	= 296,
        D3D12_MESSAGE_ID_CREATEDOMAINSHADER_INVALIDCLASSLINKAGE	= 297,
        D3D12_MESSAGE_ID_RESOURCE_UNMAP_NOTMAPPED	= 310,
        D3D12_MESSAGE_ID_DEVICE_CHECKFEATURESUPPORT_MISMATCHED_DATA_SIZE	= 318,
        D3D12_MESSAGE_ID_CREATECOMPUTESHADER_OUTOFMEMORY	= 321,
        D3D12_MESSAGE_ID_CREATECOMPUTESHADER_INVALIDSHADERBYTECODE	= 322,
        D3D12_MESSAGE_ID_CREATECOMPUTESHADER_INVALIDCLASSLINKAGE	= 323,
        D3D12_MESSAGE_ID_DEVICE_CREATEVERTEXSHADER_DOUBLEFLOATOPSNOTSUPPORTED	= 331,
        D3D12_MESSAGE_ID_DEVICE_CREATEHULLSHADER_DOUBLEFLOATOPSNOTSUPPORTED	= 332,
        D3D12_MESSAGE_ID_DEVICE_CREATEDOMAINSHADER_DOUBLEFLOATOPSNOTSUPPORTED	= 333,
        D3D12_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADER_DOUBLEFLOATOPSNOTSUPPORTED	= 334,
        D3D12_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_DOUBLEFLOATOPSNOTSUPPORTED	= 335,
        D3D12_MESSAGE_ID_DEVICE_CREATEPIXELSHADER_DOUBLEFLOATOPSNOTSUPPORTED	= 336,
        D3D12_MESSAGE_ID_DEVICE_CREATECOMPUTESHADER_DOUBLEFLOATOPSNOTSUPPORTED	= 337,
        D3D12_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDRESOURCE	= 340,
        D3D12_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDDESC	= 341,
        D3D12_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDFORMAT	= 342,
        D3D12_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDVIDEOPLANESLICE	= 343,
        D3D12_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDPLANESLICE	= 344,
        D3D12_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDDIMENSIONS	= 345,
        D3D12_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_UNRECOGNIZEDFORMAT	= 346,
        D3D12_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDFLAGS	= 354,
        D3D12_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDFORCEDSAMPLECOUNT	= 401,
        D3D12_MESSAGE_ID_CREATEBLENDSTATE_INVALIDLOGICOPS	= 403,
        D3D12_MESSAGE_ID_DEVICE_CREATEVERTEXSHADER_DOUBLEEXTENSIONSNOTSUPPORTED	= 410,
        D3D12_MESSAGE_ID_DEVICE_CREATEHULLSHADER_DOUBLEEXTENSIONSNOTSUPPORTED	= 412,
        D3D12_MESSAGE_ID_DEVICE_CREATEDOMAINSHADER_DOUBLEEXTENSIONSNOTSUPPORTED	= 414,
        D3D12_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADER_DOUBLEEXTENSIONSNOTSUPPORTED	= 416,
        D3D12_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_DOUBLEEXTENSIONSNOTSUPPORTED	= 418,
        D3D12_MESSAGE_ID_DEVICE_CREATEPIXELSHADER_DOUBLEEXTENSIONSNOTSUPPORTED	= 420,
        D3D12_MESSAGE_ID_DEVICE_CREATECOMPUTESHADER_DOUBLEEXTENSIONSNOTSUPPORTED	= 422,
        D3D12_MESSAGE_ID_DEVICE_CREATEVERTEXSHADER_UAVSNOTSUPPORTED	= 425,
        D3D12_MESSAGE_ID_DEVICE_CREATEHULLSHADER_UAVSNOTSUPPORTED	= 426,
        D3D12_MESSAGE_ID_DEVICE_CREATEDOMAINSHADER_UAVSNOTSUPPORTED	= 427,
        D3D12_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADER_UAVSNOTSUPPORTED	= 428,
        D3D12_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_UAVSNOTSUPPORTED	= 429,
        D3D12_MESSAGE_ID_DEVICE_CREATEPIXELSHADER_UAVSNOTSUPPORTED	= 430,
        D3D12_MESSAGE_ID_DEVICE_CREATECOMPUTESHADER_UAVSNOTSUPPORTED	= 431,
        D3D12_MESSAGE_ID_DEVICE_CLEARVIEW_INVALIDSOURCERECT	= 447,
        D3D12_MESSAGE_ID_DEVICE_CLEARVIEW_EMPTYRECT	= 448,
        D3D12_MESSAGE_ID_UPDATETILEMAPPINGS_INVALID_PARAMETER	= 493,
        D3D12_MESSAGE_ID_COPYTILEMAPPINGS_INVALID_PARAMETER	= 494,
        D3D12_MESSAGE_ID_CREATEDEVICE_INVALIDARGS	= 506,
        D3D12_MESSAGE_ID_CREATEDEVICE_WARNING	= 507,
        D3D12_MESSAGE_ID_RESOURCE_BARRIER_INVALID_TYPE	= 519,
        D3D12_MESSAGE_ID_RESOURCE_BARRIER_NULL_POINTER	= 520,
        D3D12_MESSAGE_ID_RESOURCE_BARRIER_INVALID_SUBRESOURCE	= 521,
        D3D12_MESSAGE_ID_RESOURCE_BARRIER_RESERVED_BITS	= 522,
        D3D12_MESSAGE_ID_RESOURCE_BARRIER_MISSING_BIND_FLAGS	= 523,
        D3D12_MESSAGE_ID_RESOURCE_BARRIER_MISMATCHING_MISC_FLAGS	= 524,
        D3D12_MESSAGE_ID_RESOURCE_BARRIER_MATCHING_STATES	= 525,
        D3D12_MESSAGE_ID_RESOURCE_BARRIER_INVALID_COMBINATION	= 526,
        D3D12_MESSAGE_ID_RESOURCE_BARRIER_BEFORE_AFTER_MISMATCH	= 527,
        D3D12_MESSAGE_ID_RESOURCE_BARRIER_INVALID_RESOURCE	= 528,
        D3D12_MESSAGE_ID_RESOURCE_BARRIER_SAMPLE_COUNT	= 529,
        D3D12_MESSAGE_ID_RESOURCE_BARRIER_INVALID_FLAGS	= 530,
        D3D12_MESSAGE_ID_RESOURCE_BARRIER_INVALID_COMBINED_FLAGS	= 531,
        D3D12_MESSAGE_ID_RESOURCE_BARRIER_INVALID_FLAGS_FOR_FORMAT	= 532,
        D3D12_MESSAGE_ID_RESOURCE_BARRIER_INVALID_SPLIT_BARRIER	= 533,
        D3D12_MESSAGE_ID_RESOURCE_BARRIER_UNMATCHED_END	= 534,
        D3D12_MESSAGE_ID_RESOURCE_BARRIER_UNMATCHED_BEGIN	= 535,
        D3D12_MESSAGE_ID_RESOURCE_BARRIER_INVALID_FLAG	= 536,
        D3D12_MESSAGE_ID_RESOURCE_BARRIER_INVALID_COMMAND_LIST_TYPE	= 537,
        D3D12_MESSAGE_ID_INVALID_SUBRESOURCE_STATE	= 538,
        D3D12_MESSAGE_ID_COMMAND_ALLOCATOR_CONTENTION	= 540,
        D3D12_MESSAGE_ID_COMMAND_ALLOCATOR_RESET	= 541,
        D3D12_MESSAGE_ID_COMMAND_ALLOCATOR_RESET_BUNDLE	= 542,
        D3D12_MESSAGE_ID_COMMAND_ALLOCATOR_CANNOT_RESET	= 543,
        D3D12_MESSAGE_ID_COMMAND_LIST_OPEN	= 544,
        D3D12_MESSAGE_ID_INVALID_BUNDLE_API	= 546,
        D3D12_MESSAGE_ID_COMMAND_LIST_CLOSED	= 547,
        D3D12_MESSAGE_ID_WRONG_COMMAND_ALLOCATOR_TYPE	= 549,
        D3D12_MESSAGE_ID_COMMAND_ALLOCATOR_SYNC	= 552,
        D3D12_MESSAGE_ID_COMMAND_LIST_SYNC	= 553,
        D3D12_MESSAGE_ID_SET_DESCRIPTOR_HEAP_INVALID	= 554,
        D3D12_MESSAGE_ID_CREATE_COMMANDQUEUE	= 557,
        D3D12_MESSAGE_ID_CREATE_COMMANDALLOCATOR	= 558,
        D3D12_MESSAGE_ID_CREATE_PIPELINESTATE	= 559,
        D3D12_MESSAGE_ID_CREATE_COMMANDLIST12	= 560,
        D3D12_MESSAGE_ID_CREATE_RESOURCE	= 562,
        D3D12_MESSAGE_ID_CREATE_DESCRIPTORHEAP	= 563,
        D3D12_MESSAGE_ID_CREATE_ROOTSIGNATURE	= 564,
        D3D12_MESSAGE_ID_CREATE_LIBRARY	= 565,
        D3D12_MESSAGE_ID_CREATE_HEAP	= 566,
        D3D12_MESSAGE_ID_CREATE_MONITOREDFENCE	= 567,
        D3D12_MESSAGE_ID_CREATE_QUERYHEAP	= 568,
        D3D12_MESSAGE_ID_CREATE_COMMANDSIGNATURE	= 569,
        D3D12_MESSAGE_ID_LIVE_COMMANDQUEUE	= 570,
        D3D12_MESSAGE_ID_LIVE_COMMANDALLOCATOR	= 571,
        D3D12_MESSAGE_ID_LIVE_PIPELINESTATE	= 572,
        D3D12_MESSAGE_ID_LIVE_COMMANDLIST12	= 573,
        D3D12_MESSAGE_ID_LIVE_RESOURCE	= 575,
        D3D12_MESSAGE_ID_LIVE_DESCRIPTORHEAP	= 576,
        D3D12_MESSAGE_ID_LIVE_ROOTSIGNATURE	= 577,
        D3D12_MESSAGE_ID_LIVE_LIBRARY	= 578,
        D3D12_MESSAGE_ID_LIVE_HEAP	= 579,
        D3D12_MESSAGE_ID_LIVE_MONITOREDFENCE	= 580,
        D3D12_MESSAGE_ID_LIVE_QUERYHEAP	= 581,
        D3D12_MESSAGE_ID_LIVE_COMMANDSIGNATURE	= 582,
        D3D12_MESSAGE_ID_DESTROY_COMMANDQUEUE	= 583,
        D3D12_MESSAGE_ID_DESTROY_COMMANDALLOCATOR	= 584,
        D3D12_MESSAGE_ID_DESTROY_PIPELINESTATE	= 585,
        D3D12_MESSAGE_ID_DESTROY_COMMANDLIST12	= 586,
        D3D12_MESSAGE_ID_DESTROY_RESOURCE	= 588,
        D3D12_MESSAGE_ID_DESTROY_DESCRIPTORHEAP	= 589,
        D3D12_MESSAGE_ID_DESTROY_ROOTSIGNATURE	= 590,
        D3D12_MESSAGE_ID_DESTROY_LIBRARY	= 591,
        D3D12_MESSAGE_ID_DESTROY_HEAP	= 592,
        D3D12_MESSAGE_ID_DESTROY_MONITOREDFENCE	= 593,
        D3D12_MESSAGE_ID_DESTROY_QUERYHEAP	= 594,
        D3D12_MESSAGE_ID_DESTROY_COMMANDSIGNATURE	= 595,
        D3D12_MESSAGE_ID_CREATERESOURCE_INVALIDDIMENSIONS	= 597,
        D3D12_MESSAGE_ID_CREATERESOURCE_INVALIDMISCFLAGS	= 599,
        D3D12_MESSAGE_ID_CREATERESOURCE_INVALIDARG_RETURN	= 602,
        D3D12_MESSAGE_ID_CREATERESOURCE_OUTOFMEMORY_RETURN	= 603,
        D3D12_MESSAGE_ID_CREATERESOURCE_INVALIDDESC	= 604,
        D3D12_MESSAGE_ID_POSSIBLY_INVALID_SUBRESOURCE_STATE	= 607,
        D3D12_MESSAGE_ID_INVALID_USE_OF_NON_RESIDENT_RESOURCE	= 608,
        D3D12_MESSAGE_ID_POSSIBLE_INVALID_USE_OF_NON_RESIDENT_RESOURCE	= 609,
        D3D12_MESSAGE_ID_BUNDLE_PIPELINE_STATE_MISMATCH	= 610,
        D3D12_MESSAGE_ID_PRIMITIVE_TOPOLOGY_MISMATCH_PIPELINE_STATE	= 611,
        D3D12_MESSAGE_ID_RENDER_TARGET_FORMAT_MISMATCH_PIPELINE_STATE	= 613,
        D3D12_MESSAGE_ID_RENDER_TARGET_SAMPLE_DESC_MISMATCH_PIPELINE_STATE	= 614,
        D3D12_MESSAGE_ID_DEPTH_STENCIL_FORMAT_MISMATCH_PIPELINE_STATE	= 615,
        D3D12_MESSAGE_ID_DEPTH_STENCIL_SAMPLE_DESC_MISMATCH_PIPELINE_STATE	= 616,
        D3D12_MESSAGE_ID_CREATESHADER_INVALIDBYTECODE	= 622,
        D3D12_MESSAGE_ID_CREATEHEAP_NULLDESC	= 623,
        D3D12_MESSAGE_ID_CREATEHEAP_INVALIDSIZE	= 624,
        D3D12_MESSAGE_ID_CREATEHEAP_UNRECOGNIZEDHEAPTYPE	= 625,
        D3D12_MESSAGE_ID_CREATEHEAP_UNRECOGNIZEDCPUPAGEPROPERTIES	= 626,
        D3D12_MESSAGE_ID_CREATEHEAP_UNRECOGNIZEDMEMORYPOOL	= 627,
        D3D12_MESSAGE_ID_CREATEHEAP_INVALIDPROPERTIES	= 628,
        D3D12_MESSAGE_ID_CREATEHEAP_INVALIDALIGNMENT	= 629,
        D3D12_MESSAGE_ID_CREATEHEAP_UNRECOGNIZEDMISCFLAGS	= 630,
        D3D12_MESSAGE_ID_CREATEHEAP_INVALIDMISCFLAGS	= 631,
        D3D12_MESSAGE_ID_CREATEHEAP_INVALIDARG_RETURN	= 632,
        D3D12_MESSAGE_ID_CREATEHEAP_OUTOFMEMORY_RETURN	= 633,
        D3D12_MESSAGE_ID_CREATERESOURCEANDHEAP_NULLHEAPPROPERTIES	= 634,
        D3D12_MESSAGE_ID_CREATERESOURCEANDHEAP_UNRECOGNIZEDHEAPTYPE	= 635,
        D3D12_MESSAGE_ID_CREATERESOURCEANDHEAP_UNRECOGNIZEDCPUPAGEPROPERTIES	= 636,
        D3D12_MESSAGE_ID_CREATERESOURCEANDHEAP_UNRECOGNIZEDMEMORYPOOL	= 637,
        D3D12_MESSAGE_ID_CREATERESOURCEANDHEAP_INVALIDHEAPPROPERTIES	= 638,
        D3D12_MESSAGE_ID_CREATERESOURCEANDHEAP_UNRECOGNIZEDHEAPMISCFLAGS	= 639,
        D3D12_MESSAGE_ID_CREATERESOURCEANDHEAP_INVALIDHEAPMISCFLAGS	= 640,
        D3D12_MESSAGE_ID_CREATERESOURCEANDHEAP_INVALIDARG_RETURN	= 641,
        D3D12_MESSAGE_ID_CREATERESOURCEANDHEAP_OUTOFMEMORY_RETURN	= 642,
        D3D12_MESSAGE_ID_GETCUSTOMHEAPPROPERTIES_UNRECOGNIZEDHEAPTYPE	= 643,
        D3D12_MESSAGE_ID_GETCUSTOMHEAPPROPERTIES_INVALIDHEAPTYPE	= 644,
        D3D12_MESSAGE_ID_CREATE_DESCRIPTOR_HEAP_INVALID_DESC	= 645,
        D3D12_MESSAGE_ID_INVALID_DESCRIPTOR_HANDLE	= 646,
        D3D12_MESSAGE_ID_CREATERASTERIZERSTATE_INVALID_CONSERVATIVERASTERMODE	= 647,
        D3D12_MESSAGE_ID_CREATE_CONSTANT_BUFFER_VIEW_INVALID_RESOURCE	= 649,
        D3D12_MESSAGE_ID_CREATE_CONSTANT_BUFFER_VIEW_INVALID_DESC	= 650,
        D3D12_MESSAGE_ID_CREATE_UNORDEREDACCESS_VIEW_INVALID_COUNTER_USAGE	= 652,
        D3D12_MESSAGE_ID_COPY_DESCRIPTORS_INVALID_RANGES	= 653,
        D3D12_MESSAGE_ID_COPY_DESCRIPTORS_WRITE_ONLY_DESCRIPTOR	= 654,
        D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_RTV_FORMAT_NOT_UNKNOWN	= 655,
        D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_INVALID_RENDER_TARGET_COUNT	= 656,
        D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_VERTEX_SHADER_NOT_SET	= 657,
        D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_INPUTLAYOUT_NOT_SET	= 658,
        D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_SHADER_LINKAGE_HS_DS_SIGNATURE_MISMATCH	= 659,
        D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_SHADER_LINKAGE_REGISTERINDEX	= 660,
        D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_SHADER_LINKAGE_COMPONENTTYPE	= 661,
        D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_SHADER_LINKAGE_REGISTERMASK	= 662,
        D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_SHADER_LINKAGE_SYSTEMVALUE	= 663,
        D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_SHADER_LINKAGE_NEVERWRITTEN_ALWAYSREADS	= 664,
        D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_SHADER_LINKAGE_MINPRECISION	= 665,
        D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_SHADER_LINKAGE_SEMANTICNAME_NOT_FOUND	= 666,
        D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_HS_XOR_DS_MISMATCH	= 667,
        D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_HULL_SHADER_INPUT_TOPOLOGY_MISMATCH	= 668,
        D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_HS_DS_CONTROL_POINT_COUNT_MISMATCH	= 669,
        D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_HS_DS_TESSELLATOR_DOMAIN_MISMATCH	= 670,
        D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_INVALID_USE_OF_CENTER_MULTISAMPLE_PATTERN	= 671,
        D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_INVALID_USE_OF_FORCED_SAMPLE_COUNT	= 672,
        D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_INVALID_PRIMITIVETOPOLOGY	= 673,
        D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_INVALID_SYSTEMVALUE	= 674,
        D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_OM_DUAL_SOURCE_BLENDING_CAN_ONLY_HAVE_RENDER_TARGET_0	= 675,
        D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_OM_RENDER_TARGET_DOES_NOT_SUPPORT_BLENDING	= 676,
        D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_PS_OUTPUT_TYPE_MISMATCH	= 677,
        D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_OM_RENDER_TARGET_DOES_NOT_SUPPORT_LOGIC_OPS	= 678,
        D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_RENDERTARGETVIEW_NOT_SET	= 679,
        D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_DEPTHSTENCILVIEW_NOT_SET	= 680,
        D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_GS_INPUT_PRIMITIVE_MISMATCH	= 681,
        D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_POSITION_NOT_PRESENT	= 682,
        D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_MISSING_ROOT_SIGNATURE_FLAGS	= 683,
        D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_INVALID_INDEX_BUFFER_PROPERTIES	= 684,
        D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_INVALID_SAMPLE_DESC	= 685,
        D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_HS_ROOT_SIGNATURE_MISMATCH	= 686,
        D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_DS_ROOT_SIGNATURE_MISMATCH	= 687,
        D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_VS_ROOT_SIGNATURE_MISMATCH	= 688,
        D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_GS_ROOT_SIGNATURE_MISMATCH	= 689,
        D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_PS_ROOT_SIGNATURE_MISMATCH	= 690,
        D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_MISSING_ROOT_SIGNATURE	= 691,
        D3D12_MESSAGE_ID_EXECUTE_BUNDLE_OPEN_BUNDLE	= 692,
        D3D12_MESSAGE_ID_EXECUTE_BUNDLE_DESCRIPTOR_HEAP_MISMATCH	= 693,
        D3D12_MESSAGE_ID_EXECUTE_BUNDLE_TYPE	= 694,
        D3D12_MESSAGE_ID_DRAW_EMPTY_SCISSOR_RECTANGLE	= 695,
        D3D12_MESSAGE_ID_CREATE_ROOT_SIGNATURE_BLOB_NOT_FOUND	= 696,
        D3D12_MESSAGE_ID_CREATE_ROOT_SIGNATURE_DESERIALIZE_FAILED	= 697,
        D3D12_MESSAGE_ID_CREATE_ROOT_SIGNATURE_INVALID_CONFIGURATION	= 698,
        D3D12_MESSAGE_ID_CREATE_ROOT_SIGNATURE_NOT_SUPPORTED_ON_DEVICE	= 699,
        D3D12_MESSAGE_ID_CREATERESOURCEANDHEAP_NULLRESOURCEPROPERTIES	= 700,
        D3D12_MESSAGE_ID_CREATERESOURCEANDHEAP_NULLHEAP	= 701,
        D3D12_MESSAGE_ID_GETRESOURCEALLOCATIONINFO_INVALIDRDESCS	= 702,
        D3D12_MESSAGE_ID_MAKERESIDENT_NULLOBJECTARRAY	= 703,
        D3D12_MESSAGE_ID_EVICT_NULLOBJECTARRAY	= 705,
        D3D12_MESSAGE_ID_SET_DESCRIPTOR_TABLE_INVALID	= 708,
        D3D12_MESSAGE_ID_SET_ROOT_CONSTANT_INVALID	= 709,
        D3D12_MESSAGE_ID_SET_ROOT_CONSTANT_BUFFER_VIEW_INVALID	= 710,
        D3D12_MESSAGE_ID_SET_ROOT_SHADER_RESOURCE_VIEW_INVALID	= 711,
        D3D12_MESSAGE_ID_SET_ROOT_UNORDERED_ACCESS_VIEW_INVALID	= 712,
        D3D12_MESSAGE_ID_SET_VERTEX_BUFFERS_INVALID_DESC	= 713,
        D3D12_MESSAGE_ID_SET_INDEX_BUFFER_INVALID_DESC	= 715,
        D3D12_MESSAGE_ID_SET_STREAM_OUTPUT_BUFFERS_INVALID_DESC	= 717,
        D3D12_MESSAGE_ID_CREATERESOURCE_UNRECOGNIZEDDIMENSIONALITY	= 718,
        D3D12_MESSAGE_ID_CREATERESOURCE_UNRECOGNIZEDLAYOUT	= 719,
        D3D12_MESSAGE_ID_CREATERESOURCE_INVALIDDIMENSIONALITY	= 720,
        D3D12_MESSAGE_ID_CREATERESOURCE_INVALIDALIGNMENT	= 721,
        D3D12_MESSAGE_ID_CREATERESOURCE_INVALIDMIPLEVELS	= 722,
        D3D12_MESSAGE_ID_CREATERESOURCE_INVALIDSAMPLEDESC	= 723,
        D3D12_MESSAGE_ID_CREATERESOURCE_INVALIDLAYOUT	= 724,
        D3D12_MESSAGE_ID_SET_INDEX_BUFFER_INVALID	= 725,
        D3D12_MESSAGE_ID_SET_VERTEX_BUFFERS_INVALID	= 726,
        D3D12_MESSAGE_ID_SET_STREAM_OUTPUT_BUFFERS_INVALID	= 727,
        D3D12_MESSAGE_ID_SET_RENDER_TARGETS_INVALID	= 728,
        D3D12_MESSAGE_ID_CREATEQUERY_HEAP_INVALID_PARAMETERS	= 729,
        D3D12_MESSAGE_ID_BEGIN_END_QUERY_INVALID_PARAMETERS	= 731,
        D3D12_MESSAGE_ID_CLOSE_COMMAND_LIST_OPEN_QUERY	= 732,
        D3D12_MESSAGE_ID_RESOLVE_QUERY_DATA_INVALID_PARAMETERS	= 733,
        D3D12_MESSAGE_ID_SET_PREDICATION_INVALID_PARAMETERS	= 734,
        D3D12_MESSAGE_ID_TIMESTAMPS_NOT_SUPPORTED	= 735,
        D3D12_MESSAGE_ID_CREATERESOURCE_UNRECOGNIZEDFORMAT	= 737,
        D3D12_MESSAGE_ID_CREATERESOURCE_INVALIDFORMAT	= 738,
        D3D12_MESSAGE_ID_GETCOPYABLEFOOTPRINTS_INVALIDSUBRESOURCERANGE	= 739,
        D3D12_MESSAGE_ID_GETCOPYABLEFOOTPRINTS_INVALIDBASEOFFSET	= 740,
        D3D12_MESSAGE_ID_GETCOPYABLELAYOUT_INVALIDSUBRESOURCERANGE	= 739,
        D3D12_MESSAGE_ID_GETCOPYABLELAYOUT_INVALIDBASEOFFSET	= 740,
        D3D12_MESSAGE_ID_RESOURCE_BARRIER_INVALID_HEAP	= 741,
        D3D12_MESSAGE_ID_CREATE_SAMPLER_INVALID	= 742,
        D3D12_MESSAGE_ID_CREATECOMMANDSIGNATURE_INVALID	= 743,
        D3D12_MESSAGE_ID_EXECUTE_INDIRECT_INVALID_PARAMETERS	= 744,
        D3D12_MESSAGE_ID_GETGPUVIRTUALADDRESS_INVALID_RESOURCE_DIMENSION	= 745,
        D3D12_MESSAGE_ID_CREATERESOURCE_INVALIDCLEARVALUE	= 815,
        D3D12_MESSAGE_ID_CREATERESOURCE_UNRECOGNIZEDCLEARVALUEFORMAT	= 816,
        D3D12_MESSAGE_ID_CREATERESOURCE_INVALIDCLEARVALUEFORMAT	= 817,
        D3D12_MESSAGE_ID_CREATERESOURCE_CLEARVALUEDENORMFLUSH	= 818,
        D3D12_MESSAGE_ID_CLEARRENDERTARGETVIEW_MISMATCHINGCLEARVALUE	= 820,
        D3D12_MESSAGE_ID_CLEARDEPTHSTENCILVIEW_MISMATCHINGCLEARVALUE	= 821,
        D3D12_MESSAGE_ID_MAP_INVALIDHEAP	= 822,
        D3D12_MESSAGE_ID_UNMAP_INVALIDHEAP	= 823,
        D3D12_MESSAGE_ID_MAP_INVALIDRESOURCE	= 824,
        D3D12_MESSAGE_ID_UNMAP_INVALIDRESOURCE	= 825,
        D3D12_MESSAGE_ID_MAP_INVALIDSUBRESOURCE	= 826,
        D3D12_MESSAGE_ID_UNMAP_INVALIDSUBRESOURCE	= 827,
        D3D12_MESSAGE_ID_MAP_INVALIDRANGE	= 828,
        D3D12_MESSAGE_ID_UNMAP_INVALIDRANGE	= 829,
        D3D12_MESSAGE_ID_MAP_INVALIDDATAPOINTER	= 832,
        D3D12_MESSAGE_ID_MAP_INVALIDARG_RETURN	= 833,
        D3D12_MESSAGE_ID_MAP_OUTOFMEMORY_RETURN	= 834,
        D3D12_MESSAGE_ID_EXECUTECOMMANDLISTS_BUNDLENOTSUPPORTED	= 835,
        D3D12_MESSAGE_ID_EXECUTECOMMANDLISTS_COMMANDLISTMISMATCH	= 836,
        D3D12_MESSAGE_ID_EXECUTECOMMANDLISTS_OPENCOMMANDLIST	= 837,
        D3D12_MESSAGE_ID_EXECUTECOMMANDLISTS_FAILEDCOMMANDLIST	= 838,
        D3D12_MESSAGE_ID_COPYBUFFERREGION_NULLDST	= 839,
        D3D12_MESSAGE_ID_COPYBUFFERREGION_INVALIDDSTRESOURCEDIMENSION	= 840,
        D3D12_MESSAGE_ID_COPYBUFFERREGION_DSTRANGEOUTOFBOUNDS	= 841,
        D3D12_MESSAGE_ID_COPYBUFFERREGION_NULLSRC	= 842,
        D3D12_MESSAGE_ID_COPYBUFFERREGION_INVALIDSRCRESOURCEDIMENSION	= 843,
        D3D12_MESSAGE_ID_COPYBUFFERREGION_SRCRANGEOUTOFBOUNDS	= 844,
        D3D12_MESSAGE_ID_COPYBUFFERREGION_INVALIDCOPYFLAGS	= 845,
        D3D12_MESSAGE_ID_COPYTEXTUREREGION_NULLDST	= 846,
        D3D12_MESSAGE_ID_COPYTEXTUREREGION_UNRECOGNIZEDDSTTYPE	= 847,
        D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDDSTRESOURCEDIMENSION	= 848,
        D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDDSTRESOURCE	= 849,
        D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDDSTSUBRESOURCE	= 850,
        D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDDSTOFFSET	= 851,
        D3D12_MESSAGE_ID_COPYTEXTUREREGION_UNRECOGNIZEDDSTFORMAT	= 852,
        D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDDSTFORMAT	= 853,
        D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDDSTDIMENSIONS	= 854,
        D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDDSTROWPITCH	= 855,
        D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDDSTPLACEMENT	= 856,
        D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDDSTDSPLACEDFOOTPRINTFORMAT	= 857,
        D3D12_MESSAGE_ID_COPYTEXTUREREGION_DSTREGIONOUTOFBOUNDS	= 858,
        D3D12_MESSAGE_ID_COPYTEXTUREREGION_NULLSRC	= 859,
        D3D12_MESSAGE_ID_COPYTEXTUREREGION_UNRECOGNIZEDSRCTYPE	= 860,
        D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDSRCRESOURCEDIMENSION	= 861,
        D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDSRCRESOURCE	= 862,
        D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDSRCSUBRESOURCE	= 863,
        D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDSRCOFFSET	= 864,
        D3D12_MESSAGE_ID_COPYTEXTUREREGION_UNRECOGNIZEDSRCFORMAT	= 865,
        D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDSRCFORMAT	= 866,
        D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDSRCDIMENSIONS	= 867,
        D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDSRCROWPITCH	= 868,
        D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDSRCPLACEMENT	= 869,
        D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDSRCDSPLACEDFOOTPRINTFORMAT	= 870,
        D3D12_MESSAGE_ID_COPYTEXTUREREGION_SRCREGIONOUTOFBOUNDS	= 871,
        D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDDSTCOORDINATES	= 872,
        D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDSRCBOX	= 873,
        D3D12_MESSAGE_ID_COPYTEXTUREREGION_FORMATMISMATCH	= 874,
        D3D12_MESSAGE_ID_COPYTEXTUREREGION_EMPTYBOX	= 875,
        D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDCOPYFLAGS	= 876,
        D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_INVALID_SUBRESOURCE_INDEX	= 877,
        D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_INVALID_FORMAT	= 878,
        D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_RESOURCE_MISMATCH	= 879,
        D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_INVALID_SAMPLE_COUNT	= 880,
        D3D12_MESSAGE_ID_CREATECOMPUTEPIPELINESTATE_INVALID_SHADER	= 881,
        D3D12_MESSAGE_ID_CREATECOMPUTEPIPELINESTATE_CS_ROOT_SIGNATURE_MISMATCH	= 882,
        D3D12_MESSAGE_ID_CREATECOMPUTEPIPELINESTATE_MISSING_ROOT_SIGNATURE	= 883,
        D3D12_MESSAGE_ID_CREATEPIPELINESTATE_INVALIDCACHEDBLOB	= 884,
        D3D12_MESSAGE_ID_CREATEPIPELINESTATE_CACHEDBLOBADAPTERMISMATCH	= 885,
        D3D12_MESSAGE_ID_CREATEPIPELINESTATE_CACHEDBLOBDRIVERVERSIONMISMATCH	= 886,
        D3D12_MESSAGE_ID_CREATEPIPELINESTATE_CACHEDBLOBDESCMISMATCH	= 887,
        D3D12_MESSAGE_ID_CREATEPIPELINESTATE_CACHEDBLOBIGNORED	= 888,
        D3D12_MESSAGE_ID_WRITETOSUBRESOURCE_INVALIDHEAP	= 889,
        D3D12_MESSAGE_ID_WRITETOSUBRESOURCE_INVALIDRESOURCE	= 890,
        D3D12_MESSAGE_ID_WRITETOSUBRESOURCE_INVALIDBOX	= 891,
        D3D12_MESSAGE_ID_WRITETOSUBRESOURCE_INVALIDSUBRESOURCE	= 892,
        D3D12_MESSAGE_ID_WRITETOSUBRESOURCE_EMPTYBOX	= 893,
        D3D12_MESSAGE_ID_READFROMSUBRESOURCE_INVALIDHEAP	= 894,
        D3D12_MESSAGE_ID_READFROMSUBRESOURCE_INVALIDRESOURCE	= 895,
        D3D12_MESSAGE_ID_READFROMSUBRESOURCE_INVALIDBOX	= 896,
        D3D12_MESSAGE_ID_READFROMSUBRESOURCE_INVALIDSUBRESOURCE	= 897,
        D3D12_MESSAGE_ID_READFROMSUBRESOURCE_EMPTYBOX	= 898,
        D3D12_MESSAGE_ID_TOO_MANY_NODES_SPECIFIED	= 899,
        D3D12_MESSAGE_ID_INVALID_NODE_INDEX	= 900,
        D3D12_MESSAGE_ID_GETHEAPPROPERTIES_INVALIDRESOURCE	= 901,
        D3D12_MESSAGE_ID_NODE_MASK_MISMATCH	= 902,
        D3D12_MESSAGE_ID_COMMAND_LIST_OUTOFMEMORY	= 903,
        D3D12_MESSAGE_ID_COMMAND_LIST_MULTIPLE_SWAPCHAIN_BUFFER_REFERENCES	= 904,
        D3D12_MESSAGE_ID_COMMAND_LIST_TOO_MANY_SWAPCHAIN_REFERENCES	= 905,
        D3D12_MESSAGE_ID_COMMAND_QUEUE_TOO_MANY_SWAPCHAIN_REFERENCES	= 906,
        D3D12_MESSAGE_ID_EXECUTECOMMANDLISTS_WRONGSWAPCHAINBUFFERREFERENCE	= 907,
        D3D12_MESSAGE_ID_COMMAND_LIST_SETRENDERTARGETS_INVALIDNUMRENDERTARGETS	= 908,
        D3D12_MESSAGE_ID_CREATE_QUEUE_INVALID_TYPE	= 909,
        D3D12_MESSAGE_ID_CREATE_QUEUE_INVALID_FLAGS	= 910,
        D3D12_MESSAGE_ID_CREATESHAREDRESOURCE_INVALIDFLAGS	= 911,
        D3D12_MESSAGE_ID_CREATESHAREDRESOURCE_INVALIDFORMAT	= 912,
        D3D12_MESSAGE_ID_CREATESHAREDHEAP_INVALIDFLAGS	= 913,
        D3D12_MESSAGE_ID_REFLECTSHAREDPROPERTIES_UNRECOGNIZEDPROPERTIES	= 914,
        D3D12_MESSAGE_ID_REFLECTSHAREDPROPERTIES_INVALIDSIZE	= 915,
        D3D12_MESSAGE_ID_REFLECTSHAREDPROPERTIES_INVALIDOBJECT	= 916,
        D3D12_MESSAGE_ID_KEYEDMUTEX_INVALIDOBJECT	= 917,
        D3D12_MESSAGE_ID_KEYEDMUTEX_INVALIDKEY	= 918,
        D3D12_MESSAGE_ID_KEYEDMUTEX_WRONGSTATE	= 919,
        D3D12_MESSAGE_ID_CREATE_QUEUE_INVALID_PRIORITY	= 920,
        D3D12_MESSAGE_ID_OBJECT_DELETED_WHILE_STILL_IN_USE	= 921,
        D3D12_MESSAGE_ID_CREATEPIPELINESTATE_INVALID_FLAGS	= 922,
        D3D12_MESSAGE_ID_HEAP_ADDRESS_RANGE_HAS_NO_RESOURCE	= 923,
        D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_RENDER_TARGET_DELETED	= 924,
        D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_ALL_RENDER_TARGETS_HAVE_UNKNOWN_FORMAT	= 925,
        D3D12_MESSAGE_ID_HEAP_ADDRESS_RANGE_INTERSECTS_MULTIPLE_BUFFERS	= 926,
        D3D12_MESSAGE_ID_EXECUTECOMMANDLISTS_GPU_WRITTEN_READBACK_RESOURCE_MAPPED	= 927,
        D3D12_MESSAGE_ID_UNMAP_RANGE_NOT_EMPTY	= 929,
        D3D12_MESSAGE_ID_MAP_INVALID_NULLRANGE	= 930,
        D3D12_MESSAGE_ID_UNMAP_INVALID_NULLRANGE	= 931,
        D3D12_MESSAGE_ID_NO_GRAPHICS_API_SUPPORT	= 932,
        D3D12_MESSAGE_ID_NO_COMPUTE_API_SUPPORT	= 933,
        D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_RESOURCE_FLAGS_NOT_SUPPORTED	= 934,
        D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_ROOT_ARGUMENT_UNINITIALIZED	= 935,
        D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_DESCRIPTOR_HEAP_INDEX_OUT_OF_BOUNDS	= 936,
        D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_DESCRIPTOR_TABLE_REGISTER_INDEX_OUT_OF_BOUNDS	= 937,
        D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_DESCRIPTOR_UNINITIALIZED	= 938,
        D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_DESCRIPTOR_TYPE_MISMATCH	= 939,
        D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_SRV_RESOURCE_DIMENSION_MISMATCH	= 940,
        D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_UAV_RESOURCE_DIMENSION_MISMATCH	= 941,
        D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_INCOMPATIBLE_RESOURCE_STATE	= 942,
        D3D12_MESSAGE_ID_COPYRESOURCE_NULLDST	= 943,
        D3D12_MESSAGE_ID_COPYRESOURCE_INVALIDDSTRESOURCE	= 944,
        D3D12_MESSAGE_ID_COPYRESOURCE_NULLSRC	= 945,
        D3D12_MESSAGE_ID_COPYRESOURCE_INVALIDSRCRESOURCE	= 946,
        D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_NULLDST	= 947,
        D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_INVALIDDSTRESOURCE	= 948,
        D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_NULLSRC	= 949,
        D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_INVALIDSRCRESOURCE	= 950,
        D3D12_MESSAGE_ID_PIPELINE_STATE_TYPE_MISMATCH	= 951,
        D3D12_MESSAGE_ID_COMMAND_LIST_DISPATCH_ROOT_SIGNATURE_NOT_SET	= 952,
        D3D12_MESSAGE_ID_COMMAND_LIST_DISPATCH_ROOT_SIGNATURE_MISMATCH	= 953,
        D3D12_MESSAGE_ID_RESOURCE_BARRIER_ZERO_BARRIERS	= 954,
        D3D12_MESSAGE_ID_BEGIN_END_EVENT_MISMATCH	= 955,
        D3D12_MESSAGE_ID_RESOURCE_BARRIER_POSSIBLE_BEFORE_AFTER_MISMATCH	= 956,
        D3D12_MESSAGE_ID_RESOURCE_BARRIER_MISMATCHING_BEGIN_END	= 957,
        D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_INVALID_RESOURCE	= 958,
        D3D12_MESSAGE_ID_USE_OF_ZERO_REFCOUNT_OBJECT	= 959,
        D3D12_MESSAGE_ID_OBJECT_EVICTED_WHILE_STILL_IN_USE	= 960,
        D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_ROOT_DESCRIPTOR_ACCESS_OUT_OF_BOUNDS	= 961,
        D3D12_MESSAGE_ID_CREATEPIPELINELIBRARY_INVALIDLIBRARYBLOB	= 962,
        D3D12_MESSAGE_ID_CREATEPIPELINELIBRARY_DRIVERVERSIONMISMATCH	= 963,
        D3D12_MESSAGE_ID_CREATEPIPELINELIBRARY_ADAPTERVERSIONMISMATCH	= 964,
        D3D12_MESSAGE_ID_CREATEPIPELINELIBRARY_UNSUPPORTED	= 965,
        D3D12_MESSAGE_ID_CREATE_PIPELINELIBRARY	= 966,
        D3D12_MESSAGE_ID_LIVE_PIPELINELIBRARY	= 967,
        D3D12_MESSAGE_ID_DESTROY_PIPELINELIBRARY	= 968,
        D3D12_MESSAGE_ID_STOREPIPELINE_NONAME	= 969,
        D3D12_MESSAGE_ID_STOREPIPELINE_DUPLICATENAME	= 970,
        D3D12_MESSAGE_ID_LOADPIPELINE_NAMENOTFOUND	= 971,
        D3D12_MESSAGE_ID_LOADPIPELINE_INVALIDDESC	= 972,
        D3D12_MESSAGE_ID_PIPELINELIBRARY_SERIALIZE_NOTENOUGHMEMORY	= 973,
        D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_PS_OUTPUT_RT_OUTPUT_MISMATCH	= 974,
        D3D12_MESSAGE_ID_SETEVENTONMULTIPLEFENCECOMPLETION_INVALIDFLAGS	= 975,
        D3D12_MESSAGE_ID_CREATE_QUEUE_VIDEO_NOT_SUPPORTED	= 976,
        D3D12_MESSAGE_ID_CREATE_COMMAND_ALLOCATOR_VIDEO_NOT_SUPPORTED	= 977,
        D3D12_MESSAGE_ID_CREATEQUERY_HEAP_VIDEO_DECODE_STATISTICS_NOT_SUPPORTED	= 978,
        D3D12_MESSAGE_ID_CREATE_VIDEODECODECOMMANDLIST	= 979,
        D3D12_MESSAGE_ID_CREATE_VIDEODECODER	= 980,
        D3D12_MESSAGE_ID_CREATE_VIDEODECODESTREAM	= 981,
        D3D12_MESSAGE_ID_LIVE_VIDEODECODECOMMANDLIST	= 982,
        D3D12_MESSAGE_ID_LIVE_VIDEODECODER	= 983,
        D3D12_MESSAGE_ID_LIVE_VIDEODECODESTREAM	= 984,
        D3D12_MESSAGE_ID_DESTROY_VIDEODECODECOMMANDLIST	= 985,
        D3D12_MESSAGE_ID_DESTROY_VIDEODECODER	= 986,
        D3D12_MESSAGE_ID_DESTROY_VIDEODECODESTREAM	= 987,
        D3D12_MESSAGE_ID_DECODE_FRAME_INVALID_PARAMETERS	= 988,
        D3D12_MESSAGE_ID_DEPRECATED_API	= 989,
        D3D12_MESSAGE_ID_RESOURCE_BARRIER_MISMATCHING_COMMAND_LIST_TYPE	= 990,
        D3D12_MESSAGE_ID_COMMAND_LIST_DESCRIPTOR_TABLE_NOT_SET	= 991,
        D3D12_MESSAGE_ID_COMMAND_LIST_ROOT_CONSTANT_BUFFER_VIEW_NOT_SET	= 992,
        D3D12_MESSAGE_ID_COMMAND_LIST_ROOT_SHADER_RESOURCE_VIEW_NOT_SET	= 993,
        D3D12_MESSAGE_ID_COMMAND_LIST_ROOT_UNORDERED_ACCESS_VIEW_NOT_SET	= 994,
        D3D12_MESSAGE_ID_DISCARD_INVALID_SUBRESOURCE_RANGE	= 995,
        D3D12_MESSAGE_ID_DISCARD_ONE_SUBRESOURCE_FOR_MIPS_WITH_RECTS	= 996,
        D3D12_MESSAGE_ID_DISCARD_NO_RECTS_FOR_NON_TEXTURE2D	= 997,
        D3D12_MESSAGE_ID_COPY_ON_SAME_SUBRESOURCE	= 998,
        D3D12_MESSAGE_ID_SETRESIDENCYPRIORITY_INVALID_PAGEABLE	= 999,
        D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_UNSUPPORTED	= 1000,
        D3D12_MESSAGE_ID_STATIC_DESCRIPTOR_INVALID_DESCRIPTOR_CHANGE	= 1001,
        D3D12_MESSAGE_ID_DATA_STATIC_DESCRIPTOR_INVALID_DATA_CHANGE	= 1002,
        D3D12_MESSAGE_ID_DATA_STATIC_WHILE_SET_AT_EXECUTE_DESCRIPTOR_INVALID_DATA_CHANGE	= 1003,
        D3D12_MESSAGE_ID_EXECUTE_BUNDLE_STATIC_DESCRIPTOR_DATA_STATIC_NOT_SET	= 1004,
        D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_RESOURCE_ACCESS_OUT_OF_BOUNDS	= 1005,
        D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_SAMPLER_MODE_MISMATCH	= 1006,
        D3D12_MESSAGE_ID_CREATE_FENCE_INVALID_FLAGS	= 1007,
        D3D12_MESSAGE_ID_RESOURCE_BARRIER_DUPLICATE_SUBRESOURCE_TRANSITIONS	= 1008,
        D3D12_MESSAGE_ID_SETRESIDENCYPRIORITY_INVALID_PRIORITY	= 1009,
        D3D12_MESSAGE_ID_CREATE_DESCRIPTOR_HEAP_LARGE_NUM_DESCRIPTORS	= 1013,
        D3D12_MESSAGE_ID_BEGIN_EVENT	= 1014,
        D3D12_MESSAGE_ID_END_EVENT	= 1015,
        D3D12_MESSAGE_ID_CREATEDEVICE_DEBUG_LAYER_STARTUP_OPTIONS	= 1016,
        D3D12_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_DEPTHBOUNDSTEST_UNSUPPORTED	= 1017,
        D3D12_MESSAGE_ID_CREATEPIPELINESTATE_DUPLICATE_SUBOBJECT	= 1018,
        D3D12_MESSAGE_ID_CREATEPIPELINESTATE_UNKNOWN_SUBOBJECT	= 1019,
        D3D12_MESSAGE_ID_CREATEPIPELINESTATE_ZERO_SIZE_STREAM	= 1020,
        D3D12_MESSAGE_ID_CREATEPIPELINESTATE_INVALID_STREAM	= 1021,
        D3D12_MESSAGE_ID_CREATEPIPELINESTATE_CANNOT_DEDUCE_TYPE	= 1022,
        D3D12_MESSAGE_ID_COMMAND_LIST_STATIC_DESCRIPTOR_RESOURCE_DIMENSION_MISMATCH	= 1023,
        D3D12_MESSAGE_ID_CREATE_COMMAND_QUEUE_INSUFFICIENT_PRIVILEGE_FOR_GLOBAL_REALTIME	= 1024,
        D3D12_MESSAGE_ID_CREATE_COMMAND_QUEUE_INSUFFICIENT_HARDWARE_SUPPORT_FOR_GLOBAL_REALTIME	= 1025,
        D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_INVALID_ARCHITECTURE	= 1026,
        D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_NULL_DST	= 1027,
        D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_INVALID_DST_RESOURCE_DIMENSION	= 1028,
        D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_DST_RANGE_OUT_OF_BOUNDS	= 1029,
        D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_NULL_SRC	= 1030,
        D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_INVALID_SRC_RESOURCE_DIMENSION	= 1031,
        D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_SRC_RANGE_OUT_OF_BOUNDS	= 1032,
        D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_INVALID_OFFSET_ALIGNMENT	= 1033,
        D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_NULL_DEPENDENT_RESOURCES	= 1034,
        D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_NULL_DEPENDENT_SUBRESOURCE_RANGES	= 1035,
        D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_INVALID_DEPENDENT_RESOURCE	= 1036,
        D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_INVALID_DEPENDENT_SUBRESOURCE_RANGE	= 1037,
        D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_DEPENDENT_SUBRESOURCE_OUT_OF_BOUNDS	= 1038,
        D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_DEPENDENT_RANGE_OUT_OF_BOUNDS	= 1039,
        D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_ZERO_DEPENDENCIES	= 1040,
        D3D12_MESSAGE_ID_DEVICE_CREATE_SHARED_HANDLE_INVALIDARG	= 1041,
        D3D12_MESSAGE_ID_DESCRIPTOR_HANDLE_WITH_INVALID_RESOURCE	= 1042,
        D3D12_MESSAGE_ID_SETDEPTHBOUNDS_INVALIDARGS	= 1043,
        D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_RESOURCE_STATE_IMPRECISE	= 1044,
        D3D12_MESSAGE_ID_COMMAND_LIST_PIPELINE_STATE_NOT_SET	= 1045,
        D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_SHADER_MODEL_MISMATCH	= 1046,
        D3D12_MESSAGE_ID_OBJECT_ACCESSED_WHILE_STILL_IN_USE	= 1047,
        D3D12_MESSAGE_ID_PROGRAMMABLE_MSAA_UNSUPPORTED	= 1048,
        D3D12_MESSAGE_ID_SETSAMPLEPOSITIONS_INVALIDARGS	= 1049,
        D3D12_MESSAGE_ID_RESOLVESUBRESOURCEREGION_INVALID_RECT	= 1050,
        D3D12_MESSAGE_ID_CREATE_VIDEODECODECOMMANDQUEUE	= 1051,
        D3D12_MESSAGE_ID_CREATE_VIDEOPROCESSCOMMANDLIST	= 1052,
        D3D12_MESSAGE_ID_CREATE_VIDEOPROCESSCOMMANDQUEUE	= 1053,
        D3D12_MESSAGE_ID_LIVE_VIDEODECODECOMMANDQUEUE	= 1054,
        D3D12_MESSAGE_ID_LIVE_VIDEOPROCESSCOMMANDLIST	= 1055,
        D3D12_MESSAGE_ID_LIVE_VIDEOPROCESSCOMMANDQUEUE	= 1056,
        D3D12_MESSAGE_ID_DESTROY_VIDEODECODECOMMANDQUEUE	= 1057,
        D3D12_MESSAGE_ID_DESTROY_VIDEOPROCESSCOMMANDLIST	= 1058,
        D3D12_MESSAGE_ID_DESTROY_VIDEOPROCESSCOMMANDQUEUE	= 1059,
        D3D12_MESSAGE_ID_CREATE_VIDEOPROCESSOR	= 1060,
        D3D12_MESSAGE_ID_CREATE_VIDEOPROCESSSTREAM	= 1061,
        D3D12_MESSAGE_ID_LIVE_VIDEOPROCESSOR	= 1062,
        D3D12_MESSAGE_ID_LIVE_VIDEOPROCESSSTREAM	= 1063,
        D3D12_MESSAGE_ID_DESTROY_VIDEOPROCESSOR	= 1064,
        D3D12_MESSAGE_ID_DESTROY_VIDEOPROCESSSTREAM	= 1065,
        D3D12_MESSAGE_ID_PROCESS_FRAME_INVALID_PARAMETERS	= 1066,
        D3D12_MESSAGE_ID_COPY_INVALIDLAYOUT	= 1067,
        D3D12_MESSAGE_ID_CREATE_CRYPTO_SESSION	= 1068,
        D3D12_MESSAGE_ID_CREATE_CRYPTO_SESSION_POLICY	= 1069,
        D3D12_MESSAGE_ID_CREATE_PROTECTED_RESOURCE_SESSION	= 1070,
        D3D12_MESSAGE_ID_LIVE_CRYPTO_SESSION	= 1071,
        D3D12_MESSAGE_ID_LIVE_CRYPTO_SESSION_POLICY	= 1072,
        D3D12_MESSAGE_ID_LIVE_PROTECTED_RESOURCE_SESSION	= 1073,
        D3D12_MESSAGE_ID_DESTROY_CRYPTO_SESSION	= 1074,
        D3D12_MESSAGE_ID_DESTROY_CRYPTO_SESSION_POLICY	= 1075,
        D3D12_MESSAGE_ID_DESTROY_PROTECTED_RESOURCE_SESSION	= 1076,
        D3D12_MESSAGE_ID_PROTECTED_RESOURCE_SESSION_UNSUPPORTED	= 1077,
        D3D12_MESSAGE_ID_FENCE_INVALIDOPERATION	= 1078,
        D3D12_MESSAGE_ID_CREATEQUERY_HEAP_COPY_QUEUE_TIMESTAMPS_NOT_SUPPORTED	= 1079,
        D3D12_MESSAGE_ID_SAMPLEPOSITIONS_MISMATCH_DEFERRED	= 1080,
        D3D12_MESSAGE_ID_SAMPLEPOSITIONS_MISMATCH_RECORDTIME_ASSUMEDFROMFIRSTUSE	= 1081,
        D3D12_MESSAGE_ID_SAMPLEPOSITIONS_MISMATCH_RECORDTIME_ASSUMEDFROMCLEAR	= 1082,
        D3D12_MESSAGE_ID_CREATE_VIDEODECODERHEAP	= 1083,
        D3D12_MESSAGE_ID_LIVE_VIDEODECODERHEAP	= 1084,
        D3D12_MESSAGE_ID_DESTROY_VIDEODECODERHEAP	= 1085,
        D3D12_MESSAGE_ID_OPENEXISTINGHEAP_INVALIDARG_RETURN	= 1086,
        D3D12_MESSAGE_ID_OPENEXISTINGHEAP_OUTOFMEMORY_RETURN	= 1087,
        D3D12_MESSAGE_ID_OPENEXISTINGHEAP_INVALIDADDRESS	= 1088,
        D3D12_MESSAGE_ID_OPENEXISTINGHEAP_INVALIDHANDLE	= 1089,
        D3D12_MESSAGE_ID_WRITEBUFFERIMMEDIATE_INVALID_DEST	= 1090,
        D3D12_MESSAGE_ID_WRITEBUFFERIMMEDIATE_INVALID_MODE	= 1091,
        D3D12_MESSAGE_ID_WRITEBUFFERIMMEDIATE_INVALID_ALIGNMENT	= 1092,
        D3D12_MESSAGE_ID_WRITEBUFFERIMMEDIATE_NOT_SUPPORTED	= 1093,
        D3D12_MESSAGE_ID_SETVIEWINSTANCEMASK_INVALIDARGS	= 1094,
        D3D12_MESSAGE_ID_VIEW_INSTANCING_UNSUPPORTED	= 1095,
        D3D12_MESSAGE_ID_VIEW_INSTANCING_INVALIDARGS	= 1096,
        D3D12_MESSAGE_ID_COPYTEXTUREREGION_MISMATCH_DECODE_REFERENCE_ONLY_FLAG	= 1097,
        D3D12_MESSAGE_ID_COPYRESOURCE_MISMATCH_DECODE_REFERENCE_ONLY_FLAG	= 1098,
        D3D12_MESSAGE_ID_CREATE_VIDEO_DECODE_HEAP_CAPS_FAILURE	= 1099,
        D3D12_MESSAGE_ID_CREATE_VIDEO_DECODE_HEAP_CAPS_UNSUPPORTED	= 1100,
        D3D12_MESSAGE_ID_VIDEO_DECODE_SUPPORT_INVALID_INPUT	= 1101,
        D3D12_MESSAGE_ID_CREATE_VIDEO_DECODER_UNSUPPORTED	= 1102,
        D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_METADATA_ERROR	= 1103,
        D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_VIEW_INSTANCING_VERTEX_SIZE_EXCEEDED	= 1104,
        D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_RUNTIME_INTERNAL_ERROR	= 1105,
        D3D12_MESSAGE_ID_NO_VIDEO_API_SUPPORT	= 1106,
        D3D12_MESSAGE_ID_VIDEO_PROCESS_SUPPORT_INVALID_INPUT	= 1107,
        D3D12_MESSAGE_ID_CREATE_VIDEO_PROCESSOR_CAPS_FAILURE	= 1108,
        D3D12_MESSAGE_ID_VIDEO_PROCESS_SUPPORT_UNSUPPORTED_FORMAT	= 1109,
        D3D12_MESSAGE_ID_VIDEO_DECODE_FRAME_INVALID_ARGUMENT	= 1110,
        D3D12_MESSAGE_ID_ENQUEUE_MAKE_RESIDENT_INVALID_FLAGS	= 1111,
        D3D12_MESSAGE_ID_OPENEXISTINGHEAP_UNSUPPORTED	= 1112,
        D3D12_MESSAGE_ID_VIDEO_PROCESS_FRAMES_INVALID_ARGUMENT	= 1113,
        D3D12_MESSAGE_ID_VIDEO_DECODE_SUPPORT_UNSUPPORTED	= 1114,
        D3D12_MESSAGE_ID_CREATE_COMMANDRECORDER	= 1115,
        D3D12_MESSAGE_ID_LIVE_COMMANDRECORDER	= 1116,
        D3D12_MESSAGE_ID_DESTROY_COMMANDRECORDER	= 1117,
        D3D12_MESSAGE_ID_CREATE_COMMAND_RECORDER_VIDEO_NOT_SUPPORTED	= 1118,
        D3D12_MESSAGE_ID_CREATE_COMMAND_RECORDER_INVALID_SUPPORT_FLAGS	= 1119,
        D3D12_MESSAGE_ID_CREATE_COMMAND_RECORDER_INVALID_FLAGS	= 1120,
        D3D12_MESSAGE_ID_CREATE_COMMAND_RECORDER_MORE_RECORDERS_THAN_LOGICAL_PROCESSORS	= 1121,
        D3D12_MESSAGE_ID_CREATE_COMMANDPOOL	= 1122,
        D3D12_MESSAGE_ID_LIVE_COMMANDPOOL	= 1123,
        D3D12_MESSAGE_ID_DESTROY_COMMANDPOOL	= 1124,
        D3D12_MESSAGE_ID_CREATE_COMMAND_POOL_INVALID_FLAGS	= 1125,
        D3D12_MESSAGE_ID_CREATE_COMMAND_LIST_VIDEO_NOT_SUPPORTED	= 1126,
        D3D12_MESSAGE_ID_COMMAND_RECORDER_SUPPORT_FLAGS_MISMATCH	= 1127,
        D3D12_MESSAGE_ID_COMMAND_RECORDER_CONTENTION	= 1128,
        D3D12_MESSAGE_ID_COMMAND_RECORDER_USAGE_WITH_CREATECOMMANDLIST_COMMAND_LIST	= 1129,
        D3D12_MESSAGE_ID_COMMAND_ALLOCATOR_USAGE_WITH_CREATECOMMANDLIST1_COMMAND_LIST	= 1130,
        D3D12_MESSAGE_ID_CANNOT_EXECUTE_EMPTY_COMMAND_LIST	= 1131,
        D3D12_MESSAGE_ID_CANNOT_RESET_COMMAND_POOL_WITH_OPEN_COMMAND_LISTS	= 1132,
        D3D12_MESSAGE_ID_CANNOT_USE_COMMAND_RECORDER_WITHOUT_CURRENT_TARGET	= 1133,
        D3D12_MESSAGE_ID_CANNOT_CHANGE_COMMAND_RECORDER_TARGET_WHILE_RECORDING	= 1134,
        D3D12_MESSAGE_ID_COMMAND_POOL_SYNC	= 1135,
        D3D12_MESSAGE_ID_EVICT_UNDERFLOW	= 1136,
        D3D12_MESSAGE_ID_CREATE_META_COMMAND	= 1137,
        D3D12_MESSAGE_ID_LIVE_META_COMMAND	= 1138,
        D3D12_MESSAGE_ID_DESTROY_META_COMMAND	= 1139,
        D3D12_MESSAGE_ID_COPYBUFFERREGION_INVALID_DST_RESOURCE	= 1140,
        D3D12_MESSAGE_ID_COPYBUFFERREGION_INVALID_SRC_RESOURCE	= 1141,
        D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_INVALID_DST_RESOURCE	= 1142,
        D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_INVALID_SRC_RESOURCE	= 1143,
        D3D12_MESSAGE_ID_CREATEPLACEDRESOURCEONBUFFER_NULL_BUFFER	= 1144,
        D3D12_MESSAGE_ID_CREATEPLACEDRESOURCEONBUFFER_NULL_RESOURCE_DESC	= 1145,
        D3D12_MESSAGE_ID_CREATEPLACEDRESOURCEONBUFFER_UNSUPPORTED	= 1146,
        D3D12_MESSAGE_ID_CREATEPLACEDRESOURCEONBUFFER_INVALID_BUFFER_DIMENSION	= 1147,
        D3D12_MESSAGE_ID_CREATEPLACEDRESOURCEONBUFFER_INVALID_BUFFER_FLAGS	= 1148,
        D3D12_MESSAGE_ID_CREATEPLACEDRESOURCEONBUFFER_INVALID_BUFFER_OFFSET	= 1149,
        D3D12_MESSAGE_ID_CREATEPLACEDRESOURCEONBUFFER_INVALID_RESOURCE_DIMENSION	= 1150,
        D3D12_MESSAGE_ID_CREATEPLACEDRESOURCEONBUFFER_INVALID_RESOURCE_FLAGS	= 1151,
        D3D12_MESSAGE_ID_CREATEPLACEDRESOURCEONBUFFER_OUTOFMEMORY_RETURN	= 1152,
        D3D12_MESSAGE_ID_CANNOT_CREATE_GRAPHICS_AND_VIDEO_COMMAND_RECORDER	= 1153,
        D3D12_MESSAGE_ID_UPDATETILEMAPPINGS_POSSIBLY_MISMATCHING_PROPERTIES	= 1154,
        D3D12_MESSAGE_ID_CREATE_COMMAND_LIST_INVALID_COMMAND_LIST_TYPE	= 1155,
        D3D12_MESSAGE_ID_CLEARUNORDEREDACCESSVIEW_INCOMPATIBLE_WITH_STRUCTURED_BUFFERS	= 1156,
        D3D12_MESSAGE_ID_COMPUTE_ONLY_DEVICE_OPERATION_UNSUPPORTED	= 1157,
        D3D12_MESSAGE_ID_BUILD_RAYTRACING_ACCELERATION_STRUCTURE_INVALID	= 1158,
        D3D12_MESSAGE_ID_EMIT_RAYTRACING_ACCELERATION_STRUCTURE_POSTBUILD_INFO_INVALID	= 1159,
        D3D12_MESSAGE_ID_COPY_RAYTRACING_ACCELERATION_STRUCTURE_INVALID	= 1160,
        D3D12_MESSAGE_ID_DISPATCH_RAYS_INVALID	= 1161,
        D3D12_MESSAGE_ID_GET_RAYTRACING_ACCELERATION_STRUCTURE_PREBUILD_INFO_INVALID	= 1162,
        D3D12_MESSAGE_ID_CREATE_LIFETIMETRACKER	= 1163,
        D3D12_MESSAGE_ID_LIVE_LIFETIMETRACKER	= 1164,
        D3D12_MESSAGE_ID_DESTROY_LIFETIMETRACKER	= 1165,
        D3D12_MESSAGE_ID_DESTROYOWNEDOBJECT_OBJECTNOTOWNED	= 1166,
        D3D12_MESSAGE_ID_CREATE_TRACKEDWORKLOAD	= 1167,
        D3D12_MESSAGE_ID_LIVE_TRACKEDWORKLOAD	= 1168,
        D3D12_MESSAGE_ID_DESTROY_TRACKEDWORKLOAD	= 1169,
        D3D12_MESSAGE_ID_RENDER_PASS_ERROR	= 1170,
        D3D12_MESSAGE_ID_META_COMMAND_ID_INVALID	= 1171,
        D3D12_MESSAGE_ID_META_COMMAND_UNSUPPORTED_PARAMS	= 1172,
        D3D12_MESSAGE_ID_META_COMMAND_FAILED_ENUMERATION	= 1173,
        D3D12_MESSAGE_ID_META_COMMAND_PARAMETER_SIZE_MISMATCH	= 1174,
        D3D12_MESSAGE_ID_UNINITIALIZED_META_COMMAND	= 1175,
        D3D12_MESSAGE_ID_META_COMMAND_INVALID_GPU_VIRTUAL_ADDRESS	= 1176,
        D3D12_MESSAGE_ID_CREATE_VIDEOENCODECOMMANDLIST	= 1177,
        D3D12_MESSAGE_ID_LIVE_VIDEOENCODECOMMANDLIST	= 1178,
        D3D12_MESSAGE_ID_DESTROY_VIDEOENCODECOMMANDLIST	= 1179,
        D3D12_MESSAGE_ID_CREATE_VIDEOENCODECOMMANDQUEUE	= 1180,
        D3D12_MESSAGE_ID_LIVE_VIDEOENCODECOMMANDQUEUE	= 1181,
        D3D12_MESSAGE_ID_DESTROY_VIDEOENCODECOMMANDQUEUE	= 1182,
        D3D12_MESSAGE_ID_CREATE_VIDEOMOTIONESTIMATOR	= 1183,
        D3D12_MESSAGE_ID_LIVE_VIDEOMOTIONESTIMATOR	= 1184,
        D3D12_MESSAGE_ID_DESTROY_VIDEOMOTIONESTIMATOR	= 1185,
        D3D12_MESSAGE_ID_CREATE_VIDEOMOTIONVECTORHEAP	= 1186,
        D3D12_MESSAGE_ID_LIVE_VIDEOMOTIONVECTORHEAP	= 1187,
        D3D12_MESSAGE_ID_DESTROY_VIDEOMOTIONVECTORHEAP	= 1188,
        D3D12_MESSAGE_ID_MULTIPLE_TRACKED_WORKLOADS	= 1189,
        D3D12_MESSAGE_ID_MULTIPLE_TRACKED_WORKLOAD_PAIRS	= 1190,
        D3D12_MESSAGE_ID_OUT_OF_ORDER_TRACKED_WORKLOAD_PAIR	= 1191,
        D3D12_MESSAGE_ID_CANNOT_ADD_TRACKED_WORKLOAD	= 1192,
        D3D12_MESSAGE_ID_INCOMPLETE_TRACKED_WORKLOAD_PAIR	= 1193,
        D3D12_MESSAGE_ID_CREATE_STATE_OBJECT_ERROR	= 1194,
        D3D12_MESSAGE_ID_GET_SHADER_IDENTIFIER_ERROR	= 1195,
        D3D12_MESSAGE_ID_GET_SHADER_STACK_SIZE_ERROR	= 1196,
        D3D12_MESSAGE_ID_GET_PIPELINE_STACK_SIZE_ERROR	= 1197,
        D3D12_MESSAGE_ID_SET_PIPELINE_STACK_SIZE_ERROR	= 1198,
        D3D12_MESSAGE_ID_GET_SHADER_IDENTIFIER_SIZE_INVALID	= 1199,
        D3D12_MESSAGE_ID_CHECK_DRIVER_MATCHING_IDENTIFIER_INVALID	= 1200,
        D3D12_MESSAGE_ID_CHECK_DRIVER_MATCHING_IDENTIFIER_DRIVER_REPORTED_ISSUE	= 1201,
        D3D12_MESSAGE_ID_RENDER_PASS_INVALID_RESOURCE_BARRIER	= 1202,
        D3D12_MESSAGE_ID_RENDER_PASS_DISALLOWED_API_CALLED	= 1203,
        D3D12_MESSAGE_ID_RENDER_PASS_CANNOT_NEST_RENDER_PASSES	= 1204,
        D3D12_MESSAGE_ID_RENDER_PASS_CANNOT_END_WITHOUT_BEGIN	= 1205,
        D3D12_MESSAGE_ID_RENDER_PASS_CANNOT_CLOSE_COMMAND_LIST	= 1206,
        D3D12_MESSAGE_ID_RENDER_PASS_GPU_WORK_WHILE_SUSPENDED	= 1207,
        D3D12_MESSAGE_ID_RENDER_PASS_MISMATCHING_SUSPEND_RESUME	= 1208,
        D3D12_MESSAGE_ID_RENDER_PASS_NO_PRIOR_SUSPEND_WITHIN_EXECUTECOMMANDLISTS	= 1209,
        D3D12_MESSAGE_ID_RENDER_PASS_NO_SUBSEQUENT_RESUME_WITHIN_EXECUTECOMMANDLISTS	= 1210,
        D3D12_MESSAGE_ID_TRACKED_WORKLOAD_COMMAND_QUEUE_MISMATCH	= 1211,
        D3D12_MESSAGE_ID_TRACKED_WORKLOAD_NOT_SUPPORTED	= 1212,
        D3D12_MESSAGE_ID_RENDER_PASS_MISMATCHING_NO_ACCESS	= 1213,
        D3D12_MESSAGE_ID_RENDER_PASS_UNSUPPORTED_RESOLVE	= 1214,
        D3D12_MESSAGE_ID_CLEARUNORDEREDACCESSVIEW_INVALID_RESOURCE_PTR	= 1215,
        D3D12_MESSAGE_ID_WINDOWS7_FENCE_OUTOFORDER_SIGNAL	= 1216,
        D3D12_MESSAGE_ID_WINDOWS7_FENCE_OUTOFORDER_WAIT	= 1217,
        D3D12_MESSAGE_ID_VIDEO_CREATE_MOTION_ESTIMATOR_INVALID_ARGUMENT	= 1218,
        D3D12_MESSAGE_ID_VIDEO_CREATE_MOTION_VECTOR_HEAP_INVALID_ARGUMENT	= 1219,
        D3D12_MESSAGE_ID_ESTIMATE_MOTION_INVALID_ARGUMENT	= 1220,
        D3D12_MESSAGE_ID_RESOLVE_MOTION_VECTOR_HEAP_INVALID_ARGUMENT	= 1221,
        D3D12_MESSAGE_ID_GETGPUVIRTUALADDRESS_INVALID_HEAP_TYPE	= 1222,
        D3D12_MESSAGE_ID_SET_BACKGROUND_PROCESSING_MODE_INVALID_ARGUMENT	= 1223,
        D3D12_MESSAGE_ID_CREATE_COMMAND_LIST_INVALID_COMMAND_LIST_TYPE_FOR_FEATURE_LEVEL	= 1224,
        D3D12_MESSAGE_ID_CREATE_VIDEOEXTENSIONCOMMAND	= 1225,
        D3D12_MESSAGE_ID_LIVE_VIDEOEXTENSIONCOMMAND	= 1226,
        D3D12_MESSAGE_ID_DESTROY_VIDEOEXTENSIONCOMMAND	= 1227,
        D3D12_MESSAGE_ID_INVALID_VIDEO_EXTENSION_COMMAND_ID	= 1228,
        D3D12_MESSAGE_ID_VIDEO_EXTENSION_COMMAND_INVALID_ARGUMENT	= 1229,
        D3D12_MESSAGE_ID_CREATE_ROOT_SIGNATURE_NOT_UNIQUE_IN_DXIL_LIBRARY	= 1230,
        D3D12_MESSAGE_ID_VARIABLE_SHADING_RATE_NOT_ALLOWED_WITH_TIR	= 1231,
        D3D12_MESSAGE_ID_GEOMETRY_SHADER_OUTPUTTING_BOTH_VIEWPORT_ARRAY_INDEX_AND_SHADING_RATE_NOT_SUPPORTED_ON_DEVICE	= 1232,
        D3D12_MESSAGE_ID_RSSETSHADING_RATE_INVALID_SHADING_RATE	= 1233,
        D3D12_MESSAGE_ID_RSSETSHADING_RATE_SHADING_RATE_NOT_PERMITTED_BY_CAP	= 1234,
        D3D12_MESSAGE_ID_RSSETSHADING_RATE_INVALID_COMBINER	= 1235,
        D3D12_MESSAGE_ID_RSSETSHADINGRATEIMAGE_REQUIRES_TIER_2	= 1236,
        D3D12_MESSAGE_ID_RSSETSHADINGRATE_REQUIRES_TIER_1	= 1237,
        D3D12_MESSAGE_ID_SHADING_RATE_IMAGE_INCORRECT_FORMAT	= 1238,
        D3D12_MESSAGE_ID_SHADING_RATE_IMAGE_INCORRECT_ARRAY_SIZE	= 1239,
        D3D12_MESSAGE_ID_SHADING_RATE_IMAGE_INCORRECT_MIP_LEVEL	= 1240,
        D3D12_MESSAGE_ID_SHADING_RATE_IMAGE_INCORRECT_SAMPLE_COUNT	= 1241,
        D3D12_MESSAGE_ID_SHADING_RATE_IMAGE_INCORRECT_SAMPLE_QUALITY	= 1242,
        D3D12_MESSAGE_ID_NON_RETAIL_SHADER_MODEL_WONT_VALIDATE	= 1243,
        D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_AS_ROOT_SIGNATURE_MISMATCH	= 1244,
        D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_MS_ROOT_SIGNATURE_MISMATCH	= 1245,
        D3D12_MESSAGE_ID_ADD_TO_STATE_OBJECT_ERROR	= 1246,
        D3D12_MESSAGE_ID_CREATE_PROTECTED_RESOURCE_SESSION_INVALID_ARGUMENT	= 1247,
        D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_MS_PSO_DESC_MISMATCH	= 1248,
        D3D12_MESSAGE_ID_CREATEPIPELINESTATE_MS_INCOMPLETE_TYPE	= 1249,
        D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_AS_NOT_MS_MISMATCH	= 1250,
        D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_MS_NOT_PS_MISMATCH	= 1251,
        D3D12_MESSAGE_ID_NONZERO_SAMPLER_FEEDBACK_MIP_REGION_WITH_INCOMPATIBLE_FORMAT	= 1252,
        D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_INPUTLAYOUT_SHADER_MISMATCH	= 1253,
        D3D12_MESSAGE_ID_EMPTY_DISPATCH	= 1254,
        D3D12_MESSAGE_ID_RESOURCE_FORMAT_REQUIRES_SAMPLER_FEEDBACK_CAPABILITY	= 1255,
        D3D12_MESSAGE_ID_SAMPLER_FEEDBACK_MAP_INVALID_MIP_REGION	= 1256,
        D3D12_MESSAGE_ID_SAMPLER_FEEDBACK_MAP_INVALID_DIMENSION	= 1257,
        D3D12_MESSAGE_ID_SAMPLER_FEEDBACK_MAP_INVALID_SAMPLE_COUNT	= 1258,
        D3D12_MESSAGE_ID_SAMPLER_FEEDBACK_MAP_INVALID_SAMPLE_QUALITY	= 1259,
        D3D12_MESSAGE_ID_SAMPLER_FEEDBACK_MAP_INVALID_LAYOUT	= 1260,
        D3D12_MESSAGE_ID_SAMPLER_FEEDBACK_MAP_REQUIRES_UNORDERED_ACCESS_FLAG	= 1261,
        D3D12_MESSAGE_ID_SAMPLER_FEEDBACK_CREATE_UAV_NULL_ARGUMENTS	= 1262,
        D3D12_MESSAGE_ID_SAMPLER_FEEDBACK_UAV_REQUIRES_SAMPLER_FEEDBACK_CAPABILITY	= 1263,
        D3D12_MESSAGE_ID_SAMPLER_FEEDBACK_CREATE_UAV_REQUIRES_FEEDBACK_MAP_FORMAT	= 1264,
        D3D12_MESSAGE_ID_CREATEMESHSHADER_INVALIDSHADERBYTECODE	= 1265,
        D3D12_MESSAGE_ID_CREATEMESHSHADER_OUTOFMEMORY	= 1266,
        D3D12_MESSAGE_ID_CREATEMESHSHADERWITHSTREAMOUTPUT_INVALIDSHADERTYPE	= 1267,
        D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_SAMPLER_FEEDBACK_TRANSCODE_INVALID_FORMAT	= 1268,
        D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_SAMPLER_FEEDBACK_INVALID_MIP_LEVEL_COUNT	= 1269,
        D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_SAMPLER_FEEDBACK_TRANSCODE_ARRAY_SIZE_MISMATCH	= 1270,
        D3D12_MESSAGE_ID_SAMPLER_FEEDBACK_CREATE_UAV_MISMATCHING_TARGETED_RESOURCE	= 1271,
        D3D12_MESSAGE_ID_CREATEMESHSHADER_OUTPUTEXCEEDSMAXSIZE	= 1272,
        D3D12_MESSAGE_ID_CREATEMESHSHADER_GROUPSHAREDEXCEEDSMAXSIZE	= 1273,
        D3D12_MESSAGE_ID_VERTEX_SHADER_OUTPUTTING_BOTH_VIEWPORT_ARRAY_INDEX_AND_SHADING_RATE_NOT_SUPPORTED_ON_DEVICE	= 1274,
        D3D12_MESSAGE_ID_MESH_SHADER_OUTPUTTING_BOTH_VIEWPORT_ARRAY_INDEX_AND_SHADING_RATE_NOT_SUPPORTED_ON_DEVICE	= 1275,
        D3D12_MESSAGE_ID_CREATEMESHSHADER_MISMATCHEDASMSPAYLOADSIZE	= 1276,
        D3D12_MESSAGE_ID_CREATE_ROOT_SIGNATURE_UNBOUNDED_STATIC_DESCRIPTORS	= 1277,
        D3D12_MESSAGE_ID_CREATEAMPLIFICATIONSHADER_INVALIDSHADERBYTECODE	= 1278,
        D3D12_MESSAGE_ID_CREATEAMPLIFICATIONSHADER_OUTOFMEMORY	= 1279,
        D3D12_MESSAGE_ID_CREATE_SHADERCACHESESSION	= 1280,
        D3D12_MESSAGE_ID_LIVE_SHADERCACHESESSION	= 1281,
        D3D12_MESSAGE_ID_DESTROY_SHADERCACHESESSION	= 1282,
        D3D12_MESSAGE_ID_CREATESHADERCACHESESSION_INVALIDARGS	= 1283,
        D3D12_MESSAGE_ID_CREATESHADERCACHESESSION_DISABLED	= 1284,
        D3D12_MESSAGE_ID_CREATESHADERCACHESESSION_ALREADYOPEN	= 1285,
        D3D12_MESSAGE_ID_SHADERCACHECONTROL_DEVELOPERMODE	= 1286,
        D3D12_MESSAGE_ID_SHADERCACHECONTROL_INVALIDFLAGS	= 1287,
        D3D12_MESSAGE_ID_SHADERCACHECONTROL_STATEALREADYSET	= 1288,
        D3D12_MESSAGE_ID_SHADERCACHECONTROL_IGNOREDFLAG	= 1289,
        D3D12_MESSAGE_ID_SHADERCACHESESSION_STOREVALUE_ALREADYPRESENT	= 1290,
        D3D12_MESSAGE_ID_SHADERCACHESESSION_STOREVALUE_HASHCOLLISION	= 1291,
        D3D12_MESSAGE_ID_SHADERCACHESESSION_STOREVALUE_CACHEFULL	= 1292,
        D3D12_MESSAGE_ID_SHADERCACHESESSION_FINDVALUE_NOTFOUND	= 1293,
        D3D12_MESSAGE_ID_SHADERCACHESESSION_CORRUPT	= 1294,
        D3D12_MESSAGE_ID_SHADERCACHESESSION_DISABLED	= 1295,
        D3D12_MESSAGE_ID_OVERSIZED_DISPATCH	= 1296,
        D3D12_MESSAGE_ID_CREATE_VIDEOENCODER	= 1297,
        D3D12_MESSAGE_ID_LIVE_VIDEOENCODER	= 1298,
        D3D12_MESSAGE_ID_DESTROY_VIDEOENCODER	= 1299,
        D3D12_MESSAGE_ID_CREATE_VIDEOENCODERHEAP	= 1300,
        D3D12_MESSAGE_ID_LIVE_VIDEOENCODERHEAP	= 1301,
        D3D12_MESSAGE_ID_DESTROY_VIDEOENCODERHEAP	= 1302,
        D3D12_MESSAGE_ID_COPYTEXTUREREGION_MISMATCH_ENCODE_REFERENCE_ONLY_FLAG	= 1303,
        D3D12_MESSAGE_ID_COPYRESOURCE_MISMATCH_ENCODE_REFERENCE_ONLY_FLAG	= 1304,
        D3D12_MESSAGE_ID_ENCODE_FRAME_INVALID_PARAMETERS	= 1305,
        D3D12_MESSAGE_ID_ENCODE_FRAME_UNSUPPORTED_PARAMETERS	= 1306,
        D3D12_MESSAGE_ID_RESOLVE_ENCODER_OUTPUT_METADATA_INVALID_PARAMETERS	= 1307,
        D3D12_MESSAGE_ID_RESOLVE_ENCODER_OUTPUT_METADATA_UNSUPPORTED_PARAMETERS	= 1308,
        D3D12_MESSAGE_ID_CREATE_VIDEO_ENCODER_INVALID_PARAMETERS	= 1309,
        D3D12_MESSAGE_ID_CREATE_VIDEO_ENCODER_UNSUPPORTED_PARAMETERS	= 1310,
        D3D12_MESSAGE_ID_CREATE_VIDEO_ENCODER_HEAP_INVALID_PARAMETERS	= 1311,
        D3D12_MESSAGE_ID_CREATE_VIDEO_ENCODER_HEAP_UNSUPPORTED_PARAMETERS	= 1312,
        D3D12_MESSAGE_ID_CREATECOMMANDLIST_NULL_COMMANDALLOCATOR	= 1313,
        D3D12_MESSAGE_ID_CLEAR_UNORDERED_ACCESS_VIEW_INVALID_DESCRIPTOR_HANDLE	= 1314,
        D3D12_MESSAGE_ID_DESCRIPTOR_HEAP_NOT_SHADER_VISIBLE	= 1315,
        D3D12_MESSAGE_ID_CREATEBLENDSTATE_BLENDOP_WARNING	= 1316,
        D3D12_MESSAGE_ID_CREATEBLENDSTATE_BLENDOPALPHA_WARNING	= 1317,
        D3D12_MESSAGE_ID_WRITE_COMBINE_PERFORMANCE_WARNING	= 1318,
        D3D12_MESSAGE_ID_RESOLVE_QUERY_INVALID_QUERY_STATE	= 1319,
        D3D12_MESSAGE_ID_SETPRIVATEDATA_NO_ACCESS	= 1320,
        D3D12_MESSAGE_ID_COMMAND_LIST_STATIC_DESCRIPTOR_SAMPLER_MODE_MISMATCH	= 1321,
        D3D12_MESSAGE_ID_GETCOPYABLEFOOTPRINTS_UNSUPPORTED_BUFFER_WIDTH	= 1322,
        D3D12_MESSAGE_ID_CREATEMESHSHADER_TOPOLOGY_MISMATCH	= 1323,
        D3D12_MESSAGE_ID_VRS_SUM_COMBINER_REQUIRES_CAPABILITY	= 1324,
        D3D12_MESSAGE_ID_SETTING_SHADING_RATE_FROM_MS_REQUIRES_CAPABILITY	= 1325,
        D3D12_MESSAGE_ID_SHADERCACHESESSION_SHADERCACHEDELETE_NOTSUPPORTED	= 1326,
        D3D12_MESSAGE_ID_SHADERCACHECONTROL_SHADERCACHECLEAR_NOTSUPPORTED	= 1327,
        D3D12_MESSAGE_ID_CREATERESOURCE_STATE_IGNORED	= 1328,
        D3D12_MESSAGE_ID_UNUSED_CROSS_EXECUTE_SPLIT_BARRIER	= 1329,
        D3D12_MESSAGE_ID_DEVICE_OPEN_SHARED_HANDLE_ACCESS_DENIED	= 1330,
        D3D12_MESSAGE_ID_INCOMPATIBLE_BARRIER_VALUES	= 1331,
        D3D12_MESSAGE_ID_INCOMPATIBLE_BARRIER_ACCESS	= 1332,
        D3D12_MESSAGE_ID_INCOMPATIBLE_BARRIER_SYNC	= 1333,
        D3D12_MESSAGE_ID_INCOMPATIBLE_BARRIER_LAYOUT	= 1334,
        D3D12_MESSAGE_ID_INCOMPATIBLE_BARRIER_TYPE	= 1335,
        D3D12_MESSAGE_ID_OUT_OF_BOUNDS_BARRIER_SUBRESOURCE_RANGE	= 1336,
        D3D12_MESSAGE_ID_INCOMPATIBLE_BARRIER_RESOURCE_DIMENSION	= 1337,
        D3D12_MESSAGE_ID_SET_SCISSOR_RECTS_INVALID_RECT	= 1338,
        D3D12_MESSAGE_ID_SHADING_RATE_SOURCE_REQUIRES_DIMENSION_TEXTURE2D	= 1339,
        D3D12_MESSAGE_ID_BUFFER_BARRIER_SUBREGION_OUT_OF_BOUNDS	= 1340,
        D3D12_MESSAGE_ID_UNSUPPORTED_BARRIER_LAYOUT	= 1341,
        D3D12_MESSAGE_ID_CREATERESOURCEANDHEAP_INVALID_PARAMETERS	= 1342,
        D3D12_MESSAGE_ID_ENHANCED_BARRIERS_NOT_SUPPORTED	= 1343,
        D3D12_MESSAGE_ID_LEGACY_BARRIER_VALIDATION_FORCED_ON	= 1346,
        D3D12_MESSAGE_ID_EMPTY_ROOT_DESCRIPTOR_TABLE	= 1347,
        D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_ELEMENT_OFFSET_UNALIGNED	= 1348,
        D3D12_MESSAGE_ID_ALPHA_BLEND_FACTOR_NOT_SUPPORTED	= 1349,
        D3D12_MESSAGE_ID_BARRIER_INTEROP_INVALID_LAYOUT	= 1350,
        D3D12_MESSAGE_ID_BARRIER_INTEROP_INVALID_STATE	= 1351,
        D3D12_MESSAGE_ID_GRAPHICS_PIPELINE_STATE_DESC_ZERO_SAMPLE_MASK	= 1352,
        D3D12_MESSAGE_ID_INDEPENDENT_STENCIL_REF_NOT_SUPPORTED	= 1353,
        D3D12_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INDEPENDENT_MASKS_UNSUPPORTED	= 1354,
        D3D12_MESSAGE_ID_TEXTURE_BARRIER_SUBRESOURCES_OUT_OF_BOUNDS	= 1355,
        D3D12_MESSAGE_ID_NON_OPTIMAL_BARRIER_ONLY_EXECUTE_COMMAND_LISTS	= 1356,
        D3D12_MESSAGE_ID_EXECUTE_INDIRECT_ZERO_COMMAND_COUNT	= 1357,
        D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_INCOMPATIBLE_TEXTURE_LAYOUT	= 1358,
        D3D12_MESSAGE_ID_DYNAMIC_INDEX_BUFFER_STRIP_CUT_NOT_SUPPORTED	= 1359,
        D3D12_MESSAGE_ID_PRIMITIVE_TOPOLOGY_TRIANGLE_FANS_NOT_SUPPORTED	= 1360,
        D3D12_MESSAGE_ID_CREATE_SAMPLER_COMPARISON_FUNC_IGNORED	= 1361,
        D3D12_MESSAGE_ID_CREATEHEAP_INVALIDHEAPTYPE	= 1362,
        D3D12_MESSAGE_ID_CREATERESOURCEANDHEAP_INVALIDHEAPTYPE	= 1363,
        D3D12_MESSAGE_ID_DYNAMIC_DEPTH_BIAS_NOT_SUPPORTED	= 1364,
        D3D12_MESSAGE_ID_CREATERASTERIZERSTATE_NON_WHOLE_DYNAMIC_DEPTH_BIAS	= 1365,
        D3D12_MESSAGE_ID_DYNAMIC_DEPTH_BIAS_FLAG_MISSING	= 1366,
        D3D12_MESSAGE_ID_DYNAMIC_DEPTH_BIAS_NO_PIPELINE	= 1367,
        D3D12_MESSAGE_ID_DYNAMIC_INDEX_BUFFER_STRIP_CUT_FLAG_MISSING	= 1368,
        D3D12_MESSAGE_ID_DYNAMIC_INDEX_BUFFER_STRIP_CUT_NO_PIPELINE	= 1369,
        D3D12_MESSAGE_ID_NONNORMALIZED_COORDINATE_SAMPLING_NOT_SUPPORTED	= 1370,
        D3D12_MESSAGE_ID_INVALID_CAST_TARGET	= 1371,
        D3D12_MESSAGE_ID_RENDER_PASS_COMMANDLIST_INVALID_END_STATE	= 1372,
        D3D12_MESSAGE_ID_RENDER_PASS_COMMANDLIST_INVALID_START_STATE	= 1373,
        D3D12_MESSAGE_ID_RENDER_PASS_MISMATCHING_ACCESS	= 1374,
        D3D12_MESSAGE_ID_RENDER_PASS_MISMATCHING_LOCAL_PRESERVE_PARAMETERS	= 1375,
        D3D12_MESSAGE_ID_RENDER_PASS_LOCAL_PRESERVE_RENDER_PARAMETERS_ERROR	= 1376,
        D3D12_MESSAGE_ID_RENDER_PASS_LOCAL_DEPTH_STENCIL_ERROR	= 1377,
        D3D12_MESSAGE_ID_DRAW_POTENTIALLY_OUTSIDE_OF_VALID_RENDER_AREA	= 1378,
        D3D12_MESSAGE_ID_CREATERASTERIZERSTATE_INVALID_LINERASTERIZATIONMODE	= 1379,
        D3D12_MESSAGE_ID_CREATERESOURCE_INVALIDALIGNMENT_SMALLRESOURCE	= 1380,
        D3D12_MESSAGE_ID_GENERIC_DEVICE_OPERATION_UNSUPPORTED	= 1381,
        D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_RENDER_TARGET_WRONG_WRITE_MASK	= 1382,
        D3D12_MESSAGE_ID_PROBABLE_PIX_EVENT_LEAK	= 1383,
        D3D12_MESSAGE_ID_PIX_EVENT_UNDERFLOW	= 1384,
        D3D12_MESSAGE_ID_RECREATEAT_INVALID_TARGET	= 1385,
        D3D12_MESSAGE_ID_RECREATEAT_INSUFFICIENT_SUPPORT	= 1386,
        D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_STRUCTURED_BUFFER_STRIDE_MISMATCH	= 1387,
        D3D12_MESSAGE_ID_D3D12_MESSAGES_END	= ( D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_STRUCTURED_BUFFER_STRIDE_MISMATCH + 1 ) 
    } 	D3D12_MESSAGE_ID;
%ProgramFiles(x86)%\Windows Kits\10\Include\10.0.26100.0\um\d3d12sdklayers.h(2362,0)
  • If WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP | WINAPI_PARTITION_GAMES)
67 0.026330438 __x_ABI_CWindows_CUI_CXaml_CCore_CDirect_CXamlPropertyIndex Enum
enum __x_ABI_CWindows_CUI_CXaml_CCore_CDirect_CXamlPropertyIndex
{
    XamlPropertyIndex_AutomationProperties_AcceleratorKey = 5,
    XamlPropertyIndex_AutomationProperties_AccessibilityView = 6,
    XamlPropertyIndex_AutomationProperties_AccessKey = 7,
    XamlPropertyIndex_AutomationProperties_AutomationId = 8,
    XamlPropertyIndex_AutomationProperties_ControlledPeers = 9,
    XamlPropertyIndex_AutomationProperties_HelpText = 10,
    XamlPropertyIndex_AutomationProperties_IsRequiredForForm = 11,
    XamlPropertyIndex_AutomationProperties_ItemStatus = 12,
    XamlPropertyIndex_AutomationProperties_ItemType = 13,
    XamlPropertyIndex_AutomationProperties_LabeledBy = 14,
    XamlPropertyIndex_AutomationProperties_LiveSetting = 15,
    XamlPropertyIndex_AutomationProperties_Name = 16,
    XamlPropertyIndex_ToolTipService_Placement = 24,
    XamlPropertyIndex_ToolTipService_PlacementTarget = 25,
    XamlPropertyIndex_ToolTipService_ToolTip = 26,
    XamlPropertyIndex_Typography_AnnotationAlternates = 28,
    XamlPropertyIndex_Typography_Capitals = 29,
    XamlPropertyIndex_Typography_CapitalSpacing = 30,
    XamlPropertyIndex_Typography_CaseSensitiveForms = 31,
    XamlPropertyIndex_Typography_ContextualAlternates = 32,
    XamlPropertyIndex_Typography_ContextualLigatures = 33,
    XamlPropertyIndex_Typography_ContextualSwashes = 34,
    XamlPropertyIndex_Typography_DiscretionaryLigatures = 35,
    XamlPropertyIndex_Typography_EastAsianExpertForms = 36,
    XamlPropertyIndex_Typography_EastAsianLanguage = 37,
    XamlPropertyIndex_Typography_EastAsianWidths = 38,
    XamlPropertyIndex_Typography_Fraction = 39,
    XamlPropertyIndex_Typography_HistoricalForms = 40,
    XamlPropertyIndex_Typography_HistoricalLigatures = 41,
    XamlPropertyIndex_Typography_Kerning = 42,
    XamlPropertyIndex_Typography_MathematicalGreek = 43,
    XamlPropertyIndex_Typography_NumeralAlignment = 44,
    XamlPropertyIndex_Typography_NumeralStyle = 45,
    XamlPropertyIndex_Typography_SlashedZero = 46,
    XamlPropertyIndex_Typography_StandardLigatures = 47,
    XamlPropertyIndex_Typography_StandardSwashes = 48,
    XamlPropertyIndex_Typography_StylisticAlternates = 49,
    XamlPropertyIndex_Typography_StylisticSet1 = 50,
    XamlPropertyIndex_Typography_StylisticSet10 = 51,
    XamlPropertyIndex_Typography_StylisticSet11 = 52,
    XamlPropertyIndex_Typography_StylisticSet12 = 53,
    XamlPropertyIndex_Typography_StylisticSet13 = 54,
    XamlPropertyIndex_Typography_StylisticSet14 = 55,
    XamlPropertyIndex_Typography_StylisticSet15 = 56,
    XamlPropertyIndex_Typography_StylisticSet16 = 57,
    XamlPropertyIndex_Typography_StylisticSet17 = 58,
    XamlPropertyIndex_Typography_StylisticSet18 = 59,
    XamlPropertyIndex_Typography_StylisticSet19 = 60,
    XamlPropertyIndex_Typography_StylisticSet2 = 61,
    XamlPropertyIndex_Typography_StylisticSet20 = 62,
    XamlPropertyIndex_Typography_StylisticSet3 = 63,
    XamlPropertyIndex_Typography_StylisticSet4 = 64,
    XamlPropertyIndex_Typography_StylisticSet5 = 65,
    XamlPropertyIndex_Typography_StylisticSet6 = 66,
    XamlPropertyIndex_Typography_StylisticSet7 = 67,
    XamlPropertyIndex_Typography_StylisticSet8 = 68,
    XamlPropertyIndex_Typography_StylisticSet9 = 69,
    XamlPropertyIndex_Typography_Variants = 70,
    XamlPropertyIndex_AutomationPeer_EventsSource = 75,
    XamlPropertyIndex_AutoSuggestBoxSuggestionChosenEventArgs_SelectedItem = 76,
    XamlPropertyIndex_AutoSuggestBoxTextChangedEventArgs_Reason = 77,
    XamlPropertyIndex_Brush_Opacity = 78,
    XamlPropertyIndex_Brush_RelativeTransform = 79,
    XamlPropertyIndex_Brush_Transform = 80,
    XamlPropertyIndex_CollectionViewSource_IsSourceGrouped = 81,
    XamlPropertyIndex_CollectionViewSource_ItemsPath = 82,
    XamlPropertyIndex_CollectionViewSource_Source = 83,
    XamlPropertyIndex_CollectionViewSource_View = 84,
    XamlPropertyIndex_ColorKeyFrame_KeyTime = 90,
    XamlPropertyIndex_ColorKeyFrame_Value = 91,
    XamlPropertyIndex_ColumnDefinition_ActualWidth = 92,
    XamlPropertyIndex_ColumnDefinition_MaxWidth = 93,
    XamlPropertyIndex_ColumnDefinition_MinWidth = 94,
    XamlPropertyIndex_ColumnDefinition_Width = 95,
    XamlPropertyIndex_ComboBoxTemplateSettings_DropDownClosedHeight = 96,
    XamlPropertyIndex_ComboBoxTemplateSettings_DropDownOffset = 97,
    XamlPropertyIndex_ComboBoxTemplateSettings_DropDownOpenedHeight = 98,
    XamlPropertyIndex_ComboBoxTemplateSettings_SelectedItemDirection = 99,
    XamlPropertyIndex_DoubleKeyFrame_KeyTime = 107,
    XamlPropertyIndex_DoubleKeyFrame_Value = 108,
    XamlPropertyIndex_EasingFunctionBase_EasingMode = 111,
    XamlPropertyIndex_FlyoutBase_AttachedFlyout = 114,
    XamlPropertyIndex_FlyoutBase_Placement = 115,
    XamlPropertyIndex_Geometry_Bounds = 118,
    XamlPropertyIndex_Geometry_Transform = 119,
    XamlPropertyIndex_GradientStop_Color = 120,
    XamlPropertyIndex_GradientStop_Offset = 121,
    XamlPropertyIndex_GroupStyle_ContainerStyle = 124,
    XamlPropertyIndex_GroupStyle_ContainerStyleSelector = 125,
    XamlPropertyIndex_GroupStyle_HeaderContainerStyle = 126,
    XamlPropertyIndex_GroupStyle_HeaderTemplate = 127,
    XamlPropertyIndex_GroupStyle_HeaderTemplateSelector = 128,
    XamlPropertyIndex_GroupStyle_HidesIfEmpty = 129,
    XamlPropertyIndex_GroupStyle_Panel = 130,
    XamlPropertyIndex_InertiaExpansionBehavior_DesiredDeceleration = 144,
    XamlPropertyIndex_InertiaExpansionBehavior_DesiredExpansion = 145,
    XamlPropertyIndex_InertiaRotationBehavior_DesiredDeceleration = 146,
    XamlPropertyIndex_InertiaRotationBehavior_DesiredRotation = 147,
    XamlPropertyIndex_InertiaTranslationBehavior_DesiredDeceleration = 148,
    XamlPropertyIndex_InertiaTranslationBehavior_DesiredDisplacement = 149,
    XamlPropertyIndex_InputScope_Names = 150,
    XamlPropertyIndex_InputScopeName_NameValue = 151,
    XamlPropertyIndex_KeySpline_ControlPoint1 = 153,
    XamlPropertyIndex_KeySpline_ControlPoint2 = 154,
    XamlPropertyIndex_ManipulationPivot_Center = 159,
    XamlPropertyIndex_ManipulationPivot_Radius = 160,
    XamlPropertyIndex_ObjectKeyFrame_KeyTime = 183,
    XamlPropertyIndex_ObjectKeyFrame_Value = 184,
    XamlPropertyIndex_PageStackEntry_SourcePageType = 185,
    XamlPropertyIndex_PathFigure_IsClosed = 192,
    XamlPropertyIndex_PathFigure_IsFilled = 193,
    XamlPropertyIndex_PathFigure_Segments = 194,
    XamlPropertyIndex_PathFigure_StartPoint = 195,
    XamlPropertyIndex_Pointer_IsInContact = 199,
    XamlPropertyIndex_Pointer_IsInRange = 200,
    XamlPropertyIndex_Pointer_PointerDeviceType = 201,
    XamlPropertyIndex_Pointer_PointerId = 202,
    XamlPropertyIndex_PointKeyFrame_KeyTime = 205,
    XamlPropertyIndex_PointKeyFrame_Value = 206,
    XamlPropertyIndex_PrintDocument_DocumentSource = 209,
    XamlPropertyIndex_ProgressBarTemplateSettings_ContainerAnimationEndPosition = 211,
    XamlPropertyIndex_ProgressBarTemplateSettings_ContainerAnimationStartPosition = 212,
    XamlPropertyIndex_ProgressBarTemplateSettings_EllipseAnimationEndPosition = 213,
    XamlPropertyIndex_ProgressBarTemplateSettings_EllipseAnimationWellPosition = 214,
    XamlPropertyIndex_ProgressBarTemplateSettings_EllipseDiameter = 215,
    XamlPropertyIndex_ProgressBarTemplateSettings_EllipseOffset = 216,
    XamlPropertyIndex_ProgressBarTemplateSettings_IndicatorLengthDelta = 217,
    XamlPropertyIndex_ProgressRingTemplateSettings_EllipseDiameter = 218,
    XamlPropertyIndex_ProgressRingTemplateSettings_EllipseOffset = 219,
    XamlPropertyIndex_ProgressRingTemplateSettings_MaxSideLength = 220,
    XamlPropertyIndex_PropertyPath_Path = 221,
    XamlPropertyIndex_RowDefinition_ActualHeight = 226,
    XamlPropertyIndex_RowDefinition_Height = 227,
    XamlPropertyIndex_RowDefinition_MaxHeight = 228,
    XamlPropertyIndex_RowDefinition_MinHeight = 229,
    XamlPropertyIndex_SetterBase_IsSealed = 233,
    XamlPropertyIndex_SettingsFlyoutTemplateSettings_BorderBrush = 234,
    XamlPropertyIndex_SettingsFlyoutTemplateSettings_BorderThickness = 235,
    XamlPropertyIndex_SettingsFlyoutTemplateSettings_ContentTransitions = 236,
    XamlPropertyIndex_SettingsFlyoutTemplateSettings_HeaderBackground = 237,
    XamlPropertyIndex_SettingsFlyoutTemplateSettings_HeaderForeground = 238,
    XamlPropertyIndex_SettingsFlyoutTemplateSettings_IconSource = 239,
    XamlPropertyIndex_Style_BasedOn = 244,
    XamlPropertyIndex_Style_IsSealed = 245,
    XamlPropertyIndex_Style_Setters = 246,
    XamlPropertyIndex_Style_TargetType = 247,
    XamlPropertyIndex_TextElement_CharacterSpacing = 249,
    XamlPropertyIndex_TextElement_FontFamily = 250,
    XamlPropertyIndex_TextElement_FontSize = 251,
    XamlPropertyIndex_TextElement_FontStretch = 252,
    XamlPropertyIndex_TextElement_FontStyle = 253,
    XamlPropertyIndex_TextElement_FontWeight = 254,
    XamlPropertyIndex_TextElement_Foreground = 255,
    XamlPropertyIndex_TextElement_IsTextScaleFactorEnabled = 256,
    XamlPropertyIndex_TextElement_Language = 257,
    XamlPropertyIndex_Timeline_AutoReverse = 263,
    XamlPropertyIndex_Timeline_BeginTime = 264,
    XamlPropertyIndex_Timeline_Duration = 265,
    XamlPropertyIndex_Timeline_FillBehavior = 266,
    XamlPropertyIndex_Timeline_RepeatBehavior = 267,
    XamlPropertyIndex_Timeline_SpeedRatio = 268,
    XamlPropertyIndex_TimelineMarker_Text = 269,
    XamlPropertyIndex_TimelineMarker_Time = 270,
    XamlPropertyIndex_TimelineMarker_Type = 271,
    XamlPropertyIndex_ToggleSwitchTemplateSettings_CurtainCurrentToOffOffset = 273,
    XamlPropertyIndex_ToggleSwitchTemplateSettings_CurtainCurrentToOnOffset = 274,
    XamlPropertyIndex_ToggleSwitchTemplateSettings_CurtainOffToOnOffset = 275,
    XamlPropertyIndex_ToggleSwitchTemplateSettings_CurtainOnToOffOffset = 276,
    XamlPropertyIndex_ToggleSwitchTemplateSettings_KnobCurrentToOffOffset = 277,
    XamlPropertyIndex_ToggleSwitchTemplateSettings_KnobCurrentToOnOffset = 278,
    XamlPropertyIndex_ToggleSwitchTemplateSettings_KnobOffToOnOffset = 279,
    XamlPropertyIndex_ToggleSwitchTemplateSettings_KnobOnToOffOffset = 280,
    XamlPropertyIndex_ToolTipTemplateSettings_FromHorizontalOffset = 281,
    XamlPropertyIndex_ToolTipTemplateSettings_FromVerticalOffset = 282,
    XamlPropertyIndex_UIElement_AllowDrop = 292,
    XamlPropertyIndex_UIElement_CacheMode = 293,
    XamlPropertyIndex_UIElement_Clip = 295,
    XamlPropertyIndex_UIElement_CompositeMode = 296,
    XamlPropertyIndex_UIElement_IsDoubleTapEnabled = 297,
    XamlPropertyIndex_UIElement_IsHitTestVisible = 298,
    XamlPropertyIndex_UIElement_IsHoldingEnabled = 299,
    XamlPropertyIndex_UIElement_IsRightTapEnabled = 300,
    XamlPropertyIndex_UIElement_IsTapEnabled = 301,
    XamlPropertyIndex_UIElement_ManipulationMode = 302,
    XamlPropertyIndex_UIElement_Opacity = 303,
    XamlPropertyIndex_UIElement_PointerCaptures = 304,
    XamlPropertyIndex_UIElement_Projection = 305,
    XamlPropertyIndex_UIElement_RenderSize = 306,
    XamlPropertyIndex_UIElement_RenderTransform = 307,
    XamlPropertyIndex_UIElement_RenderTransformOrigin = 308,
    XamlPropertyIndex_UIElement_Transitions = 309,
    XamlPropertyIndex_UIElement_UseLayoutRounding = 311,
    XamlPropertyIndex_UIElement_Visibility = 312,
    XamlPropertyIndex_VisualState_Storyboard = 322,
    XamlPropertyIndex_VisualStateGroup_States = 323,
    XamlPropertyIndex_VisualStateGroup_Transitions = 324,
    XamlPropertyIndex_VisualStateManager_CustomVisualStateManager = 325,
    XamlPropertyIndex_VisualStateManager_VisualStateGroups = 326,
    XamlPropertyIndex_VisualTransition_From = 327,
    XamlPropertyIndex_VisualTransition_GeneratedDuration = 328,
    XamlPropertyIndex_VisualTransition_GeneratedEasingFunction = 329,
    XamlPropertyIndex_VisualTransition_Storyboard = 330,
    XamlPropertyIndex_VisualTransition_To = 331,
    XamlPropertyIndex_ArcSegment_IsLargeArc = 332,
    XamlPropertyIndex_ArcSegment_Point = 333,
    XamlPropertyIndex_ArcSegment_RotationAngle = 334,
    XamlPropertyIndex_ArcSegment_Size = 335,
    XamlPropertyIndex_ArcSegment_SweepDirection = 336,
    XamlPropertyIndex_BackEase_Amplitude = 337,
    XamlPropertyIndex_BeginStoryboard_Storyboard = 338,
    XamlPropertyIndex_BezierSegment_Point1 = 339,
    XamlPropertyIndex_BezierSegment_Point2 = 340,
    XamlPropertyIndex_BezierSegment_Point3 = 341,
    XamlPropertyIndex_BitmapSource_PixelHeight = 342,
    XamlPropertyIndex_BitmapSource_PixelWidth = 343,
    XamlPropertyIndex_Block_LineHeight = 344,
    XamlPropertyIndex_Block_LineStackingStrategy = 345,
    XamlPropertyIndex_Block_Margin = 346,
    XamlPropertyIndex_Block_TextAlignment = 347,
    XamlPropertyIndex_BounceEase_Bounces = 348,
    XamlPropertyIndex_BounceEase_Bounciness = 349,
    XamlPropertyIndex_ColorAnimation_By = 350,
    XamlPropertyIndex_ColorAnimation_EasingFunction = 351,
    XamlPropertyIndex_ColorAnimation_EnableDependentAnimation = 352,
    XamlPropertyIndex_ColorAnimation_From = 353,
    XamlPropertyIndex_ColorAnimation_To = 354,
    XamlPropertyIndex_ColorAnimationUsingKeyFrames_EnableDependentAnimation = 355,
    XamlPropertyIndex_ColorAnimationUsingKeyFrames_KeyFrames = 356,
    XamlPropertyIndex_ContentThemeTransition_HorizontalOffset = 357,
    XamlPropertyIndex_ContentThemeTransition_VerticalOffset = 358,
    XamlPropertyIndex_ControlTemplate_TargetType = 359,
    XamlPropertyIndex_DispatcherTimer_Interval = 362,
    XamlPropertyIndex_DoubleAnimation_By = 363,
    XamlPropertyIndex_DoubleAnimation_EasingFunction = 364,
    XamlPropertyIndex_DoubleAnimation_EnableDependentAnimation = 365,
    XamlPropertyIndex_DoubleAnimation_From = 366,
    XamlPropertyIndex_DoubleAnimation_To = 367,
    XamlPropertyIndex_DoubleAnimationUsingKeyFrames_EnableDependentAnimation = 368,
    XamlPropertyIndex_DoubleAnimationUsingKeyFrames_KeyFrames = 369,
    XamlPropertyIndex_EasingColorKeyFrame_EasingFunction = 372,
    XamlPropertyIndex_EasingDoubleKeyFrame_EasingFunction = 373,
    XamlPropertyIndex_EasingPointKeyFrame_EasingFunction = 374,
    XamlPropertyIndex_EdgeUIThemeTransition_Edge = 375,
    XamlPropertyIndex_ElasticEase_Oscillations = 376,
    XamlPropertyIndex_ElasticEase_Springiness = 377,
    XamlPropertyIndex_EllipseGeometry_Center = 378,
    XamlPropertyIndex_EllipseGeometry_RadiusX = 379,
    XamlPropertyIndex_EllipseGeometry_RadiusY = 380,
    XamlPropertyIndex_EntranceThemeTransition_FromHorizontalOffset = 381,
    XamlPropertyIndex_EntranceThemeTransition_FromVerticalOffset = 382,
    XamlPropertyIndex_EntranceThemeTransition_IsStaggeringEnabled = 383,
    XamlPropertyIndex_EventTrigger_Actions = 384,
    XamlPropertyIndex_EventTrigger_RoutedEvent = 385,
    XamlPropertyIndex_ExponentialEase_Exponent = 386,
    XamlPropertyIndex_Flyout_Content = 387,
    XamlPropertyIndex_Flyout_FlyoutPresenterStyle = 388,
    XamlPropertyIndex_FrameworkElement_ActualHeight = 389,
    XamlPropertyIndex_FrameworkElement_ActualWidth = 390,
    XamlPropertyIndex_FrameworkElement_DataContext = 391,
    XamlPropertyIndex_FrameworkElement_FlowDirection = 392,
    XamlPropertyIndex_FrameworkElement_Height = 393,
    XamlPropertyIndex_FrameworkElement_HorizontalAlignment = 394,
    XamlPropertyIndex_FrameworkElement_Language = 396,
    XamlPropertyIndex_FrameworkElement_Margin = 397,
    XamlPropertyIndex_FrameworkElement_MaxHeight = 398,
    XamlPropertyIndex_FrameworkElement_MaxWidth = 399,
    XamlPropertyIndex_FrameworkElement_MinHeight = 400,
    XamlPropertyIndex_FrameworkElement_MinWidth = 401,
    XamlPropertyIndex_FrameworkElement_Parent = 402,
    XamlPropertyIndex_FrameworkElement_RequestedTheme = 403,
    XamlPropertyIndex_FrameworkElement_Resources = 404,
    XamlPropertyIndex_FrameworkElement_Style = 405,
    XamlPropertyIndex_FrameworkElement_Tag = 406,
    XamlPropertyIndex_FrameworkElement_Triggers = 407,
    XamlPropertyIndex_FrameworkElement_VerticalAlignment = 408,
    XamlPropertyIndex_FrameworkElement_Width = 409,
    XamlPropertyIndex_FrameworkElementAutomationPeer_Owner = 410,
    XamlPropertyIndex_GeometryGroup_Children = 411,
    XamlPropertyIndex_GeometryGroup_FillRule = 412,
    XamlPropertyIndex_GradientBrush_ColorInterpolationMode = 413,
    XamlPropertyIndex_GradientBrush_GradientStops = 414,
    XamlPropertyIndex_GradientBrush_MappingMode = 415,
    XamlPropertyIndex_GradientBrush_SpreadMethod = 416,
    XamlPropertyIndex_GridViewItemTemplateSettings_DragItemsCount = 417,
    XamlPropertyIndex_ItemAutomationPeer_Item = 419,
    XamlPropertyIndex_ItemAutomationPeer_ItemsControlAutomationPeer = 420,
    XamlPropertyIndex_LineGeometry_EndPoint = 422,
    XamlPropertyIndex_LineGeometry_StartPoint = 423,
    XamlPropertyIndex_LineSegment_Point = 424,
    XamlPropertyIndex_ListViewItemTemplateSettings_DragItemsCount = 425,
    XamlPropertyIndex_Matrix3DProjection_ProjectionMatrix = 426,
    XamlPropertyIndex_MenuFlyout_Items = 427,
    XamlPropertyIndex_MenuFlyout_MenuFlyoutPresenterStyle = 428,
    XamlPropertyIndex_ObjectAnimationUsingKeyFrames_EnableDependentAnimation = 429,
    XamlPropertyIndex_ObjectAnimationUsingKeyFrames_KeyFrames = 430,
    XamlPropertyIndex_PaneThemeTransition_Edge = 431,
    XamlPropertyIndex_PathGeometry_Figures = 432,
    XamlPropertyIndex_PathGeometry_FillRule = 433,
    XamlPropertyIndex_PlaneProjection_CenterOfRotationX = 434,
    XamlPropertyIndex_PlaneProjection_CenterOfRotationY = 435,
    XamlPropertyIndex_PlaneProjection_CenterOfRotationZ = 436,
    XamlPropertyIndex_PlaneProjection_GlobalOffsetX = 437,
    XamlPropertyIndex_PlaneProjection_GlobalOffsetY = 438,
    XamlPropertyIndex_PlaneProjection_GlobalOffsetZ = 439,
    XamlPropertyIndex_PlaneProjection_LocalOffsetX = 440,
    XamlPropertyIndex_PlaneProjection_LocalOffsetY = 441,
    XamlPropertyIndex_PlaneProjection_LocalOffsetZ = 442,
    XamlPropertyIndex_PlaneProjection_ProjectionMatrix = 443,
    XamlPropertyIndex_PlaneProjection_RotationX = 444,
    XamlPropertyIndex_PlaneProjection_RotationY = 445,
    XamlPropertyIndex_PlaneProjection_RotationZ = 446,
    XamlPropertyIndex_PointAnimation_By = 447,
    XamlPropertyIndex_PointAnimation_EasingFunction = 448,
    XamlPropertyIndex_PointAnimation_EnableDependentAnimation = 449,
    XamlPropertyIndex_PointAnimation_From = 450,
    XamlPropertyIndex_PointAnimation_To = 451,
    XamlPropertyIndex_PointAnimationUsingKeyFrames_EnableDependentAnimation = 452,
    XamlPropertyIndex_PointAnimationUsingKeyFrames_KeyFrames = 453,
    XamlPropertyIndex_PolyBezierSegment_Points = 456,
    XamlPropertyIndex_PolyLineSegment_Points = 457,
    XamlPropertyIndex_PolyQuadraticBezierSegment_Points = 458,
    XamlPropertyIndex_PopupThemeTransition_FromHorizontalOffset = 459,
    XamlPropertyIndex_PopupThemeTransition_FromVerticalOffset = 460,
    XamlPropertyIndex_PowerEase_Power = 461,
    XamlPropertyIndex_QuadraticBezierSegment_Point1 = 466,
    XamlPropertyIndex_QuadraticBezierSegment_Point2 = 467,
    XamlPropertyIndex_RectangleGeometry_Rect = 470,
    XamlPropertyIndex_RelativeSource_Mode = 471,
    XamlPropertyIndex_RenderTargetBitmap_PixelHeight = 472,
    XamlPropertyIndex_RenderTargetBitmap_PixelWidth = 473,
    XamlPropertyIndex_Setter_Property = 474,
    XamlPropertyIndex_Setter_Value = 475,
    XamlPropertyIndex_SolidColorBrush_Color = 476,
    XamlPropertyIndex_SplineColorKeyFrame_KeySpline = 477,
    XamlPropertyIndex_SplineDoubleKeyFrame_KeySpline = 478,
    XamlPropertyIndex_SplinePointKeyFrame_KeySpline = 479,
    XamlPropertyIndex_TileBrush_AlignmentX = 483,
    XamlPropertyIndex_TileBrush_AlignmentY = 484,
    XamlPropertyIndex_TileBrush_Stretch = 485,
    XamlPropertyIndex_Binding_Converter = 487,
    XamlPropertyIndex_Binding_ConverterLanguage = 488,
    XamlPropertyIndex_Binding_ConverterParameter = 489,
    XamlPropertyIndex_Binding_ElementName = 490,
    XamlPropertyIndex_Binding_FallbackValue = 491,
    XamlPropertyIndex_Binding_Mode = 492,
    XamlPropertyIndex_Binding_Path = 493,
    XamlPropertyIndex_Binding_RelativeSource = 494,
    XamlPropertyIndex_Binding_Source = 495,
    XamlPropertyIndex_Binding_TargetNullValue = 496,
    XamlPropertyIndex_Binding_UpdateSourceTrigger = 497,
    XamlPropertyIndex_BitmapImage_CreateOptions = 498,
    XamlPropertyIndex_BitmapImage_DecodePixelHeight = 499,
    XamlPropertyIndex_BitmapImage_DecodePixelType = 500,
    XamlPropertyIndex_BitmapImage_DecodePixelWidth = 501,
    XamlPropertyIndex_BitmapImage_UriSource = 502,
    XamlPropertyIndex_Border_Background = 503,
    XamlPropertyIndex_Border_BorderBrush = 504,
    XamlPropertyIndex_Border_BorderThickness = 505,
    XamlPropertyIndex_Border_Child = 506,
    XamlPropertyIndex_Border_ChildTransitions = 507,
    XamlPropertyIndex_Border_CornerRadius = 508,
    XamlPropertyIndex_Border_Padding = 509,
    XamlPropertyIndex_CaptureElement_Source = 510,
    XamlPropertyIndex_CaptureElement_Stretch = 511,
    XamlPropertyIndex_CompositeTransform_CenterX = 514,
    XamlPropertyIndex_CompositeTransform_CenterY = 515,
    XamlPropertyIndex_CompositeTransform_Rotation = 516,
    XamlPropertyIndex_CompositeTransform_ScaleX = 517,
    XamlPropertyIndex_CompositeTransform_ScaleY = 518,
    XamlPropertyIndex_CompositeTransform_SkewX = 519,
    XamlPropertyIndex_CompositeTransform_SkewY = 520,
    XamlPropertyIndex_CompositeTransform_TranslateX = 521,
    XamlPropertyIndex_CompositeTransform_TranslateY = 522,
    XamlPropertyIndex_ContentPresenter_CharacterSpacing = 523,
    XamlPropertyIndex_ContentPresenter_Content = 524,
    XamlPropertyIndex_ContentPresenter_ContentTemplate = 525,
    XamlPropertyIndex_ContentPresenter_ContentTemplateSelector = 526,
    XamlPropertyIndex_ContentPresenter_ContentTransitions = 527,
    XamlPropertyIndex_ContentPresenter_FontFamily = 528,
    XamlPropertyIndex_ContentPresenter_FontSize = 529,
    XamlPropertyIndex_ContentPresenter_FontStretch = 530,
    XamlPropertyIndex_ContentPresenter_FontStyle = 531,
    XamlPropertyIndex_ContentPresenter_FontWeight = 532,
    XamlPropertyIndex_ContentPresenter_Foreground = 533,
    XamlPropertyIndex_ContentPresenter_IsTextScaleFactorEnabled = 534,
    XamlPropertyIndex_ContentPresenter_LineStackingStrategy = 535,
    XamlPropertyIndex_ContentPresenter_MaxLines = 536,
    XamlPropertyIndex_ContentPresenter_OpticalMarginAlignment = 537,
    XamlPropertyIndex_ContentPresenter_TextLineBounds = 539,
    XamlPropertyIndex_ContentPresenter_TextWrapping = 540,
    XamlPropertyIndex_Control_Background = 541,
    XamlPropertyIndex_Control_BorderBrush = 542,
    XamlPropertyIndex_Control_BorderThickness = 543,
    XamlPropertyIndex_Control_CharacterSpacing = 544,
    XamlPropertyIndex_Control_FocusState = 546,
    XamlPropertyIndex_Control_FontFamily = 547,
    XamlPropertyIndex_Control_FontSize = 548,
    XamlPropertyIndex_Control_FontStretch = 549,
    XamlPropertyIndex_Control_FontStyle = 550,
    XamlPropertyIndex_Control_FontWeight = 551,
    XamlPropertyIndex_Control_Foreground = 552,
    XamlPropertyIndex_Control_HorizontalContentAlignment = 553,
    XamlPropertyIndex_Control_IsEnabled = 554,
    XamlPropertyIndex_Control_IsTabStop = 555,
    XamlPropertyIndex_Control_IsTextScaleFactorEnabled = 556,
    XamlPropertyIndex_Control_Padding = 557,
    XamlPropertyIndex_Control_TabIndex = 558,
    XamlPropertyIndex_Control_TabNavigation = 559,
    XamlPropertyIndex_Control_Template = 560,
    XamlPropertyIndex_Control_VerticalContentAlignment = 561,
    XamlPropertyIndex_DragItemThemeAnimation_TargetName = 565,
    XamlPropertyIndex_DragOverThemeAnimation_Direction = 566,
    XamlPropertyIndex_DragOverThemeAnimation_TargetName = 567,
    XamlPropertyIndex_DragOverThemeAnimation_ToOffset = 568,
    XamlPropertyIndex_DropTargetItemThemeAnimation_TargetName = 569,
    XamlPropertyIndex_FadeInThemeAnimation_TargetName = 570,
    XamlPropertyIndex_FadeOutThemeAnimation_TargetName = 571,
    XamlPropertyIndex_Glyphs_Fill = 574,
    XamlPropertyIndex_Glyphs_FontRenderingEmSize = 575,
    XamlPropertyIndex_Glyphs_FontUri = 576,
    XamlPropertyIndex_Glyphs_Indices = 577,
    XamlPropertyIndex_Glyphs_OriginX = 578,
    XamlPropertyIndex_Glyphs_OriginY = 579,
    XamlPropertyIndex_Glyphs_StyleSimulations = 580,
    XamlPropertyIndex_Glyphs_UnicodeString = 581,
    XamlPropertyIndex_IconElement_Foreground = 584,
    XamlPropertyIndex_Image_NineGrid = 586,
    XamlPropertyIndex_Image_PlayToSource = 587,
    XamlPropertyIndex_Image_Source = 588,
    XamlPropertyIndex_Image_Stretch = 589,
    XamlPropertyIndex_ImageBrush_ImageSource = 591,
    XamlPropertyIndex_InlineUIContainer_Child = 592,
    XamlPropertyIndex_ItemsPresenter_Footer = 594,
    XamlPropertyIndex_ItemsPresenter_FooterTemplate = 595,
    XamlPropertyIndex_ItemsPresenter_FooterTransitions = 596,
    XamlPropertyIndex_ItemsPresenter_Header = 597,
    XamlPropertyIndex_ItemsPresenter_HeaderTemplate = 598,
    XamlPropertyIndex_ItemsPresenter_HeaderTransitions = 599,
    XamlPropertyIndex_ItemsPresenter_Padding = 601,
    XamlPropertyIndex_LinearGradientBrush_EndPoint = 602,
    XamlPropertyIndex_LinearGradientBrush_StartPoint = 603,
    XamlPropertyIndex_MatrixTransform_Matrix = 604,
    XamlPropertyIndex_MediaElement_ActualStereo3DVideoPackingMode = 605,
    XamlPropertyIndex_MediaElement_AreTransportControlsEnabled = 606,
    XamlPropertyIndex_MediaElement_AspectRatioHeight = 607,
    XamlPropertyIndex_MediaElement_AspectRatioWidth = 608,
    XamlPropertyIndex_MediaElement_AudioCategory = 609,
    XamlPropertyIndex_MediaElement_AudioDeviceType = 610,
    XamlPropertyIndex_MediaElement_AudioStreamCount = 611,
    XamlPropertyIndex_MediaElement_AudioStreamIndex = 612,
    XamlPropertyIndex_MediaElement_AutoPlay = 613,
    XamlPropertyIndex_MediaElement_Balance = 614,
    XamlPropertyIndex_MediaElement_BufferingProgress = 615,
    XamlPropertyIndex_MediaElement_CanPause = 616,
    XamlPropertyIndex_MediaElement_CanSeek = 617,
    XamlPropertyIndex_MediaElement_CurrentState = 618,
    XamlPropertyIndex_MediaElement_DefaultPlaybackRate = 619,
    XamlPropertyIndex_MediaElement_DownloadProgress = 620,
    XamlPropertyIndex_MediaElement_DownloadProgressOffset = 621,
    XamlPropertyIndex_MediaElement_IsAudioOnly = 623,
    XamlPropertyIndex_MediaElement_IsFullWindow = 624,
    XamlPropertyIndex_MediaElement_IsLooping = 625,
    XamlPropertyIndex_MediaElement_IsMuted = 626,
    XamlPropertyIndex_MediaElement_IsStereo3DVideo = 627,
    XamlPropertyIndex_MediaElement_Markers = 628,
    XamlPropertyIndex_MediaElement_NaturalDuration = 629,
    XamlPropertyIndex_MediaElement_NaturalVideoHeight = 630,
    XamlPropertyIndex_MediaElement_NaturalVideoWidth = 631,
    XamlPropertyIndex_MediaElement_PlaybackRate = 632,
    XamlPropertyIndex_MediaElement_PlayToPreferredSourceUri = 633,
    XamlPropertyIndex_MediaElement_PlayToSource = 634,
    XamlPropertyIndex_MediaElement_Position = 635,
    XamlPropertyIndex_MediaElement_PosterSource = 636,
    XamlPropertyIndex_MediaElement_ProtectionManager = 637,
    XamlPropertyIndex_MediaElement_RealTimePlayback = 638,
    XamlPropertyIndex_MediaElement_Source = 639,
    XamlPropertyIndex_MediaElement_Stereo3DVideoPackingMode = 640,
    XamlPropertyIndex_MediaElement_Stereo3DVideoRenderMode = 641,
    XamlPropertyIndex_MediaElement_Stretch = 642,
    XamlPropertyIndex_MediaElement_TransportControls = 643,
    XamlPropertyIndex_MediaElement_Volume = 644,
    XamlPropertyIndex_Panel_Background = 647,
    XamlPropertyIndex_Panel_Children = 648,
    XamlPropertyIndex_Panel_ChildrenTransitions = 649,
    XamlPropertyIndex_Panel_IsItemsHost = 651,
    XamlPropertyIndex_Paragraph_Inlines = 652,
    XamlPropertyIndex_Paragraph_TextIndent = 653,
    XamlPropertyIndex_PointerDownThemeAnimation_TargetName = 660,
    XamlPropertyIndex_PointerUpThemeAnimation_TargetName = 662,
    XamlPropertyIndex_PopInThemeAnimation_FromHorizontalOffset = 664,
    XamlPropertyIndex_PopInThemeAnimation_FromVerticalOffset = 665,
    XamlPropertyIndex_PopInThemeAnimation_TargetName = 666,
    XamlPropertyIndex_PopOutThemeAnimation_TargetName = 667,
    XamlPropertyIndex_Popup_Child = 668,
    XamlPropertyIndex_Popup_ChildTransitions = 669,
    XamlPropertyIndex_Popup_HorizontalOffset = 670,
    XamlPropertyIndex_Popup_IsLightDismissEnabled = 673,
    XamlPropertyIndex_Popup_IsOpen = 674,
    XamlPropertyIndex_Popup_VerticalOffset = 676,
    XamlPropertyIndex_RepositionThemeAnimation_FromHorizontalOffset = 683,
    XamlPropertyIndex_RepositionThemeAnimation_FromVerticalOffset = 684,
    XamlPropertyIndex_RepositionThemeAnimation_TargetName = 685,
    XamlPropertyIndex_ResourceDictionary_MergedDictionaries = 687,
    XamlPropertyIndex_ResourceDictionary_Source = 688,
    XamlPropertyIndex_ResourceDictionary_ThemeDictionaries = 689,
    XamlPropertyIndex_RichTextBlock_Blocks = 691,
    XamlPropertyIndex_RichTextBlock_CharacterSpacing = 692,
    XamlPropertyIndex_RichTextBlock_FontFamily = 693,
    XamlPropertyIndex_RichTextBlock_FontSize = 694,
    XamlPropertyIndex_RichTextBlock_FontStretch = 695,
    XamlPropertyIndex_RichTextBlock_FontStyle = 696,
    XamlPropertyIndex_RichTextBlock_FontWeight = 697,
    XamlPropertyIndex_RichTextBlock_Foreground = 698,
    XamlPropertyIndex_RichTextBlock_HasOverflowContent = 699,
    XamlPropertyIndex_RichTextBlock_IsColorFontEnabled = 700,
    XamlPropertyIndex_RichTextBlock_IsTextScaleFactorEnabled = 701,
    XamlPropertyIndex_RichTextBlock_IsTextSelectionEnabled = 702,
    XamlPropertyIndex_RichTextBlock_LineHeight = 703,
    XamlPropertyIndex_RichTextBlock_LineStackingStrategy = 704,
    XamlPropertyIndex_RichTextBlock_MaxLines = 705,
    XamlPropertyIndex_RichTextBlock_OpticalMarginAlignment = 706,
    XamlPropertyIndex_RichTextBlock_OverflowContentTarget = 707,
    XamlPropertyIndex_RichTextBlock_Padding = 708,
    XamlPropertyIndex_RichTextBlock_SelectedText = 709,
    XamlPropertyIndex_RichTextBlock_SelectionHighlightColor = 710,
    XamlPropertyIndex_RichTextBlock_TextAlignment = 711,
    XamlPropertyIndex_RichTextBlock_TextIndent = 712,
    XamlPropertyIndex_RichTextBlock_TextLineBounds = 713,
    XamlPropertyIndex_RichTextBlock_TextReadingOrder = 714,
    XamlPropertyIndex_RichTextBlock_TextTrimming = 715,
    XamlPropertyIndex_RichTextBlock_TextWrapping = 716,
    XamlPropertyIndex_RichTextBlockOverflow_HasOverflowContent = 717,
    XamlPropertyIndex_RichTextBlockOverflow_MaxLines = 718,
    XamlPropertyIndex_RichTextBlockOverflow_OverflowContentTarget = 719,
    XamlPropertyIndex_RichTextBlockOverflow_Padding = 720,
    XamlPropertyIndex_RotateTransform_Angle = 721,
    XamlPropertyIndex_RotateTransform_CenterX = 722,
    XamlPropertyIndex_RotateTransform_CenterY = 723,
    XamlPropertyIndex_Run_FlowDirection = 725,
    XamlPropertyIndex_Run_Text = 726,
    XamlPropertyIndex_ScaleTransform_CenterX = 727,
    XamlPropertyIndex_ScaleTransform_CenterY = 728,
    XamlPropertyIndex_ScaleTransform_ScaleX = 729,
    XamlPropertyIndex_ScaleTransform_ScaleY = 730,
    XamlPropertyIndex_SetterBaseCollection_IsSealed = 732,
    XamlPropertyIndex_Shape_Fill = 733,
    XamlPropertyIndex_Shape_GeometryTransform = 734,
    XamlPropertyIndex_Shape_Stretch = 735,
    XamlPropertyIndex_Shape_Stroke = 736,
    XamlPropertyIndex_Shape_StrokeDashArray = 737,
    XamlPropertyIndex_Shape_StrokeDashCap = 738,
    XamlPropertyIndex_Shape_StrokeDashOffset = 739,
    XamlPropertyIndex_Shape_StrokeEndLineCap = 740,
    XamlPropertyIndex_Shape_StrokeLineJoin = 741,
    XamlPropertyIndex_Shape_StrokeMiterLimit = 742,
    XamlPropertyIndex_Shape_StrokeStartLineCap = 743,
    XamlPropertyIndex_Shape_StrokeThickness = 744,
    XamlPropertyIndex_SkewTransform_AngleX = 745,
    XamlPropertyIndex_SkewTransform_AngleY = 746,
    XamlPropertyIndex_SkewTransform_CenterX = 747,
    XamlPropertyIndex_SkewTransform_CenterY = 748,
    XamlPropertyIndex_Span_Inlines = 749,
    XamlPropertyIndex_SplitCloseThemeAnimation_ClosedLength = 750,
    XamlPropertyIndex_SplitCloseThemeAnimation_ClosedTarget = 751,
    XamlPropertyIndex_SplitCloseThemeAnimation_ClosedTargetName = 752,
    XamlPropertyIndex_SplitCloseThemeAnimation_ContentTarget = 753,
    XamlPropertyIndex_SplitCloseThemeAnimation_ContentTargetName = 754,
    XamlPropertyIndex_SplitCloseThemeAnimation_ContentTranslationDirection = 755,
    XamlPropertyIndex_SplitCloseThemeAnimation_ContentTranslationOffset = 756,
    XamlPropertyIndex_SplitCloseThemeAnimation_OffsetFromCenter = 757,
    XamlPropertyIndex_SplitCloseThemeAnimation_OpenedLength = 758,
    XamlPropertyIndex_SplitCloseThemeAnimation_OpenedTarget = 759,
    XamlPropertyIndex_SplitCloseThemeAnimation_OpenedTargetName = 760,
    XamlPropertyIndex_SplitOpenThemeAnimation_ClosedLength = 761,
    XamlPropertyIndex_SplitOpenThemeAnimation_ClosedTarget = 762,
    XamlPropertyIndex_SplitOpenThemeAnimation_ClosedTargetName = 763,
    XamlPropertyIndex_SplitOpenThemeAnimation_ContentTarget = 764,
    XamlPropertyIndex_SplitOpenThemeAnimation_ContentTargetName = 765,
    XamlPropertyIndex_SplitOpenThemeAnimation_ContentTranslationDirection = 766,
    XamlPropertyIndex_SplitOpenThemeAnimation_ContentTranslationOffset = 767,
    XamlPropertyIndex_SplitOpenThemeAnimation_OffsetFromCenter = 768,
    XamlPropertyIndex_SplitOpenThemeAnimation_OpenedLength = 769,
    XamlPropertyIndex_SplitOpenThemeAnimation_OpenedTarget = 770,
    XamlPropertyIndex_SplitOpenThemeAnimation_OpenedTargetName = 771,
    XamlPropertyIndex_Storyboard_Children = 772,
    XamlPropertyIndex_Storyboard_TargetName = 774,
    XamlPropertyIndex_Storyboard_TargetProperty = 775,
    XamlPropertyIndex_SwipeBackThemeAnimation_FromHorizontalOffset = 776,
    XamlPropertyIndex_SwipeBackThemeAnimation_FromVerticalOffset = 777,
    XamlPropertyIndex_SwipeBackThemeAnimation_TargetName = 778,
    XamlPropertyIndex_SwipeHintThemeAnimation_TargetName = 779,
    XamlPropertyIndex_SwipeHintThemeAnimation_ToHorizontalOffset = 780,
    XamlPropertyIndex_SwipeHintThemeAnimation_ToVerticalOffset = 781,
    XamlPropertyIndex_TextBlock_CharacterSpacing = 782,
    XamlPropertyIndex_TextBlock_FontFamily = 783,
    XamlPropertyIndex_TextBlock_FontSize = 784,
    XamlPropertyIndex_TextBlock_FontStretch = 785,
    XamlPropertyIndex_TextBlock_FontStyle = 786,
    XamlPropertyIndex_TextBlock_FontWeight = 787,
    XamlPropertyIndex_TextBlock_Foreground = 788,
    XamlPropertyIndex_TextBlock_Inlines = 789,
    XamlPropertyIndex_TextBlock_IsColorFontEnabled = 790,
    XamlPropertyIndex_TextBlock_IsTextScaleFactorEnabled = 791,
    XamlPropertyIndex_TextBlock_IsTextSelectionEnabled = 792,
    XamlPropertyIndex_TextBlock_LineHeight = 793,
    XamlPropertyIndex_TextBlock_LineStackingStrategy = 794,
    XamlPropertyIndex_TextBlock_MaxLines = 795,
    XamlPropertyIndex_TextBlock_OpticalMarginAlignment = 796,
    XamlPropertyIndex_TextBlock_Padding = 797,
    XamlPropertyIndex_TextBlock_SelectedText = 798,
    XamlPropertyIndex_TextBlock_SelectionHighlightColor = 799,
    XamlPropertyIndex_TextBlock_Text = 800,
    XamlPropertyIndex_TextBlock_TextAlignment = 801,
    XamlPropertyIndex_TextBlock_TextDecorations = 802,
    XamlPropertyIndex_TextBlock_TextLineBounds = 803,
    XamlPropertyIndex_TextBlock_TextReadingOrder = 804,
    XamlPropertyIndex_TextBlock_TextTrimming = 805,
    XamlPropertyIndex_TextBlock_TextWrapping = 806,
    XamlPropertyIndex_TransformGroup_Children = 811,
    XamlPropertyIndex_TransformGroup_Value = 812,
    XamlPropertyIndex_TranslateTransform_X = 814,
    XamlPropertyIndex_TranslateTransform_Y = 815,
    XamlPropertyIndex_Viewbox_Child = 819,
    XamlPropertyIndex_Viewbox_Stretch = 820,
    XamlPropertyIndex_Viewbox_StretchDirection = 821,
    XamlPropertyIndex_WebViewBrush_SourceName = 825,
    XamlPropertyIndex_AppBarSeparator_IsCompact = 826,
    XamlPropertyIndex_BitmapIcon_UriSource = 827,
    XamlPropertyIndex_Canvas_Left = 828,
    XamlPropertyIndex_Canvas_Top = 829,
    XamlPropertyIndex_Canvas_ZIndex = 830,
    XamlPropertyIndex_ContentControl_Content = 832,
    XamlPropertyIndex_ContentControl_ContentTemplate = 833,
    XamlPropertyIndex_ContentControl_ContentTemplateSelector = 834,
    XamlPropertyIndex_ContentControl_ContentTransitions = 835,
    XamlPropertyIndex_DatePicker_CalendarIdentifier = 837,
    XamlPropertyIndex_DatePicker_Date = 838,
    XamlPropertyIndex_DatePicker_DayFormat = 839,
    XamlPropertyIndex_DatePicker_DayVisible = 840,
    XamlPropertyIndex_DatePicker_Header = 841,
    XamlPropertyIndex_DatePicker_HeaderTemplate = 842,
    XamlPropertyIndex_DatePicker_MaxYear = 843,
    XamlPropertyIndex_DatePicker_MinYear = 844,
    XamlPropertyIndex_DatePicker_MonthFormat = 845,
    XamlPropertyIndex_DatePicker_MonthVisible = 846,
    XamlPropertyIndex_DatePicker_Orientation = 847,
    XamlPropertyIndex_DatePicker_YearFormat = 848,
    XamlPropertyIndex_DatePicker_YearVisible = 849,
    XamlPropertyIndex_FontIcon_FontFamily = 851,
    XamlPropertyIndex_FontIcon_FontSize = 852,
    XamlPropertyIndex_FontIcon_FontStyle = 853,
    XamlPropertyIndex_FontIcon_FontWeight = 854,
    XamlPropertyIndex_FontIcon_Glyph = 855,
    XamlPropertyIndex_FontIcon_IsTextScaleFactorEnabled = 856,
    XamlPropertyIndex_Grid_Column = 857,
    XamlPropertyIndex_Grid_ColumnDefinitions = 858,
    XamlPropertyIndex_Grid_ColumnSpan = 859,
    XamlPropertyIndex_Grid_Row = 860,
    XamlPropertyIndex_Grid_RowDefinitions = 861,
    XamlPropertyIndex_Grid_RowSpan = 862,
    XamlPropertyIndex_Hub_DefaultSectionIndex = 863,
    XamlPropertyIndex_Hub_Header = 864,
    XamlPropertyIndex_Hub_HeaderTemplate = 865,
    XamlPropertyIndex_Hub_IsActiveView = 866,
    XamlPropertyIndex_Hub_IsZoomedInView = 867,
    XamlPropertyIndex_Hub_Orientation = 868,
    XamlPropertyIndex_Hub_SectionHeaders = 869,
    XamlPropertyIndex_Hub_Sections = 870,
    XamlPropertyIndex_Hub_SectionsInView = 871,
    XamlPropertyIndex_Hub_SemanticZoomOwner = 872,
    XamlPropertyIndex_HubSection_ContentTemplate = 873,
    XamlPropertyIndex_HubSection_Header = 874,
    XamlPropertyIndex_HubSection_HeaderTemplate = 875,
    XamlPropertyIndex_HubSection_IsHeaderInteractive = 876,
    XamlPropertyIndex_Hyperlink_NavigateUri = 877,
    XamlPropertyIndex_ItemsControl_DisplayMemberPath = 879,
    XamlPropertyIndex_ItemsControl_GroupStyle = 880,
    XamlPropertyIndex_ItemsControl_GroupStyleSelector = 881,
    XamlPropertyIndex_ItemsControl_IsGrouping = 882,
    XamlPropertyIndex_ItemsControl_ItemContainerStyle = 884,
    XamlPropertyIndex_ItemsControl_ItemContainerStyleSelector = 885,
    XamlPropertyIndex_ItemsControl_ItemContainerTransitions = 886,
    XamlPropertyIndex_ItemsControl_Items = 887,
    XamlPropertyIndex_ItemsControl_ItemsPanel = 889,
    XamlPropertyIndex_ItemsControl_ItemsSource = 890,
    XamlPropertyIndex_ItemsControl_ItemTemplate = 891,
    XamlPropertyIndex_ItemsControl_ItemTemplateSelector = 892,
    XamlPropertyIndex_Line_X1 = 893,
    XamlPropertyIndex_Line_X2 = 894,
    XamlPropertyIndex_Line_Y1 = 895,
    XamlPropertyIndex_Line_Y2 = 896,
    XamlPropertyIndex_MediaTransportControls_IsFastForwardButtonVisible = 898,
    XamlPropertyIndex_MediaTransportControls_IsFastRewindButtonVisible = 900,
    XamlPropertyIndex_MediaTransportControls_IsFullWindowButtonVisible = 902,
    XamlPropertyIndex_MediaTransportControls_IsPlaybackRateButtonVisible = 904,
    XamlPropertyIndex_MediaTransportControls_IsSeekBarVisible = 905,
    XamlPropertyIndex_MediaTransportControls_IsStopButtonVisible = 908,
    XamlPropertyIndex_MediaTransportControls_IsVolumeButtonVisible = 910,
    XamlPropertyIndex_MediaTransportControls_IsZoomButtonVisible = 912,
    XamlPropertyIndex_PasswordBox_Header = 913,
    XamlPropertyIndex_PasswordBox_HeaderTemplate = 914,
    XamlPropertyIndex_PasswordBox_IsPasswordRevealButtonEnabled = 915,
    XamlPropertyIndex_PasswordBox_MaxLength = 916,
    XamlPropertyIndex_PasswordBox_Password = 917,
    XamlPropertyIndex_PasswordBox_PasswordChar = 918,
    XamlPropertyIndex_PasswordBox_PlaceholderText = 919,
    XamlPropertyIndex_PasswordBox_PreventKeyboardDisplayOnProgrammaticFocus = 920,
    XamlPropertyIndex_PasswordBox_SelectionHighlightColor = 921,
    XamlPropertyIndex_Path_Data = 922,
    XamlPropertyIndex_PathIcon_Data = 923,
    XamlPropertyIndex_Polygon_FillRule = 924,
    XamlPropertyIndex_Polygon_Points = 925,
    XamlPropertyIndex_Polyline_FillRule = 926,
    XamlPropertyIndex_Polyline_Points = 927,
    XamlPropertyIndex_ProgressRing_IsActive = 928,
    XamlPropertyIndex_ProgressRing_TemplateSettings = 929,
    XamlPropertyIndex_RangeBase_LargeChange = 930,
    XamlPropertyIndex_RangeBase_Maximum = 931,
    XamlPropertyIndex_RangeBase_Minimum = 932,
    XamlPropertyIndex_RangeBase_SmallChange = 933,
    XamlPropertyIndex_RangeBase_Value = 934,
    XamlPropertyIndex_Rectangle_RadiusX = 935,
    XamlPropertyIndex_Rectangle_RadiusY = 936,
    XamlPropertyIndex_RichEditBox_AcceptsReturn = 937,
    XamlPropertyIndex_RichEditBox_Header = 938,
    XamlPropertyIndex_RichEditBox_HeaderTemplate = 939,
    XamlPropertyIndex_RichEditBox_InputScope = 940,
    XamlPropertyIndex_RichEditBox_IsColorFontEnabled = 941,
    XamlPropertyIndex_RichEditBox_IsReadOnly = 942,
    XamlPropertyIndex_RichEditBox_IsSpellCheckEnabled = 943,
    XamlPropertyIndex_RichEditBox_IsTextPredictionEnabled = 944,
    XamlPropertyIndex_RichEditBox_PlaceholderText = 945,
    XamlPropertyIndex_RichEditBox_PreventKeyboardDisplayOnProgrammaticFocus = 946,
    XamlPropertyIndex_RichEditBox_SelectionHighlightColor = 947,
    XamlPropertyIndex_RichEditBox_TextAlignment = 948,
    XamlPropertyIndex_RichEditBox_TextWrapping = 949,
    XamlPropertyIndex_SearchBox_ChooseSuggestionOnEnter = 950,
    XamlPropertyIndex_SearchBox_FocusOnKeyboardInput = 951,
    XamlPropertyIndex_SearchBox_PlaceholderText = 952,
    XamlPropertyIndex_SearchBox_QueryText = 953,
    XamlPropertyIndex_SearchBox_SearchHistoryContext = 954,
    XamlPropertyIndex_SearchBox_SearchHistoryEnabled = 955,
    XamlPropertyIndex_SemanticZoom_CanChangeViews = 956,
    XamlPropertyIndex_SemanticZoom_IsZoomedInViewActive = 957,
    XamlPropertyIndex_SemanticZoom_IsZoomOutButtonEnabled = 958,
    XamlPropertyIndex_SemanticZoom_ZoomedInView = 959,
    XamlPropertyIndex_SemanticZoom_ZoomedOutView = 960,
    XamlPropertyIndex_StackPanel_AreScrollSnapPointsRegular = 961,
    XamlPropertyIndex_StackPanel_Orientation = 962,
    XamlPropertyIndex_SymbolIcon_Symbol = 963,
    XamlPropertyIndex_TextBox_AcceptsReturn = 964,
    XamlPropertyIndex_TextBox_Header = 965,
    XamlPropertyIndex_TextBox_HeaderTemplate = 966,
    XamlPropertyIndex_TextBox_InputScope = 967,
    XamlPropertyIndex_TextBox_IsColorFontEnabled = 968,
    XamlPropertyIndex_TextBox_IsReadOnly = 971,
    XamlPropertyIndex_TextBox_IsSpellCheckEnabled = 972,
    XamlPropertyIndex_TextBox_IsTextPredictionEnabled = 973,
    XamlPropertyIndex_TextBox_MaxLength = 974,
    XamlPropertyIndex_TextBox_PlaceholderText = 975,
    XamlPropertyIndex_TextBox_PreventKeyboardDisplayOnProgrammaticFocus = 976,
    XamlPropertyIndex_TextBox_SelectedText = 977,
    XamlPropertyIndex_TextBox_SelectionHighlightColor = 978,
    XamlPropertyIndex_TextBox_SelectionLength = 979,
    XamlPropertyIndex_TextBox_SelectionStart = 980,
    XamlPropertyIndex_TextBox_Text = 981,
    XamlPropertyIndex_TextBox_TextAlignment = 982,
    XamlPropertyIndex_TextBox_TextWrapping = 983,
    XamlPropertyIndex_Thumb_IsDragging = 984,
    XamlPropertyIndex_TickBar_Fill = 985,
    XamlPropertyIndex_TimePicker_ClockIdentifier = 986,
    XamlPropertyIndex_TimePicker_Header = 987,
    XamlPropertyIndex_TimePicker_HeaderTemplate = 988,
    XamlPropertyIndex_TimePicker_MinuteIncrement = 989,
    XamlPropertyIndex_TimePicker_Time = 990,
    XamlPropertyIndex_ToggleSwitch_Header = 991,
    XamlPropertyIndex_ToggleSwitch_HeaderTemplate = 992,
    XamlPropertyIndex_ToggleSwitch_IsOn = 993,
    XamlPropertyIndex_ToggleSwitch_OffContent = 994,
    XamlPropertyIndex_ToggleSwitch_OffContentTemplate = 995,
    XamlPropertyIndex_ToggleSwitch_OnContent = 996,
    XamlPropertyIndex_ToggleSwitch_OnContentTemplate = 997,
    XamlPropertyIndex_ToggleSwitch_TemplateSettings = 998,
    XamlPropertyIndex_UserControl_Content = 999,
    XamlPropertyIndex_VariableSizedWrapGrid_ColumnSpan = 1000,
    XamlPropertyIndex_VariableSizedWrapGrid_HorizontalChildrenAlignment = 1001,
    XamlPropertyIndex_VariableSizedWrapGrid_ItemHeight = 1002,
    XamlPropertyIndex_VariableSizedWrapGrid_ItemWidth = 1003,
    XamlPropertyIndex_VariableSizedWrapGrid_MaximumRowsOrColumns = 1004,
    XamlPropertyIndex_VariableSizedWrapGrid_Orientation = 1005,
    XamlPropertyIndex_VariableSizedWrapGrid_RowSpan = 1006,
    XamlPropertyIndex_VariableSizedWrapGrid_VerticalChildrenAlignment = 1007,
    XamlPropertyIndex_WebView_AllowedScriptNotifyUris = 1008,
    XamlPropertyIndex_WebView_CanGoBack = 1009,
    XamlPropertyIndex_WebView_CanGoForward = 1010,
    XamlPropertyIndex_WebView_ContainsFullScreenElement = 1011,
    XamlPropertyIndex_WebView_DataTransferPackage = 1012,
    XamlPropertyIndex_WebView_DefaultBackgroundColor = 1013,
    XamlPropertyIndex_WebView_DocumentTitle = 1014,
    XamlPropertyIndex_WebView_Source = 1015,
    XamlPropertyIndex_AppBar_ClosedDisplayMode = 1016,
    XamlPropertyIndex_AppBar_IsOpen = 1017,
    XamlPropertyIndex_AppBar_IsSticky = 1018,
    XamlPropertyIndex_AutoSuggestBox_AutoMaximizeSuggestionArea = 1019,
    XamlPropertyIndex_AutoSuggestBox_Header = 1020,
    XamlPropertyIndex_AutoSuggestBox_IsSuggestionListOpen = 1021,
    XamlPropertyIndex_AutoSuggestBox_MaxSuggestionListHeight = 1022,
    XamlPropertyIndex_AutoSuggestBox_PlaceholderText = 1023,
    XamlPropertyIndex_AutoSuggestBox_Text = 1024,
    XamlPropertyIndex_AutoSuggestBox_TextBoxStyle = 1025,
    XamlPropertyIndex_AutoSuggestBox_TextMemberPath = 1026,
    XamlPropertyIndex_AutoSuggestBox_UpdateTextOnSelect = 1027,
    XamlPropertyIndex_ButtonBase_ClickMode = 1029,
    XamlPropertyIndex_ButtonBase_Command = 1030,
    XamlPropertyIndex_ButtonBase_CommandParameter = 1031,
    XamlPropertyIndex_ButtonBase_IsPointerOver = 1032,
    XamlPropertyIndex_ButtonBase_IsPressed = 1033,
    XamlPropertyIndex_ContentDialog_FullSizeDesired = 1034,
    XamlPropertyIndex_ContentDialog_IsPrimaryButtonEnabled = 1035,
    XamlPropertyIndex_ContentDialog_IsSecondaryButtonEnabled = 1036,
    XamlPropertyIndex_ContentDialog_PrimaryButtonCommand = 1037,
    XamlPropertyIndex_ContentDialog_PrimaryButtonCommandParameter = 1038,
    XamlPropertyIndex_ContentDialog_PrimaryButtonText = 1039,
    XamlPropertyIndex_ContentDialog_SecondaryButtonCommand = 1040,
    XamlPropertyIndex_ContentDialog_SecondaryButtonCommandParameter = 1041,
    XamlPropertyIndex_ContentDialog_SecondaryButtonText = 1042,
    XamlPropertyIndex_ContentDialog_Title = 1043,
    XamlPropertyIndex_ContentDialog_TitleTemplate = 1044,
    XamlPropertyIndex_Frame_BackStack = 1045,
    XamlPropertyIndex_Frame_BackStackDepth = 1046,
    XamlPropertyIndex_Frame_CacheSize = 1047,
    XamlPropertyIndex_Frame_CanGoBack = 1048,
    XamlPropertyIndex_Frame_CanGoForward = 1049,
    XamlPropertyIndex_Frame_CurrentSourcePageType = 1050,
    XamlPropertyIndex_Frame_ForwardStack = 1051,
    XamlPropertyIndex_Frame_SourcePageType = 1052,
    XamlPropertyIndex_GridViewItemPresenter_CheckBrush = 1053,
    XamlPropertyIndex_GridViewItemPresenter_CheckHintBrush = 1054,
    XamlPropertyIndex_GridViewItemPresenter_CheckSelectingBrush = 1055,
    XamlPropertyIndex_GridViewItemPresenter_ContentMargin = 1056,
    XamlPropertyIndex_GridViewItemPresenter_DisabledOpacity = 1057,
    XamlPropertyIndex_GridViewItemPresenter_DragBackground = 1058,
    XamlPropertyIndex_GridViewItemPresenter_DragForeground = 1059,
    XamlPropertyIndex_GridViewItemPresenter_DragOpacity = 1060,
    XamlPropertyIndex_GridViewItemPresenter_FocusBorderBrush = 1061,
    XamlPropertyIndex_GridViewItemPresenter_GridViewItemPresenterHorizontalContentAlignment = 1062,
    XamlPropertyIndex_GridViewItemPresenter_GridViewItemPresenterPadding = 1063,
    XamlPropertyIndex_GridViewItemPresenter_PlaceholderBackground = 1064,
    XamlPropertyIndex_GridViewItemPresenter_PointerOverBackground = 1065,
    XamlPropertyIndex_GridViewItemPresenter_PointerOverBackgroundMargin = 1066,
    XamlPropertyIndex_GridViewItemPresenter_ReorderHintOffset = 1067,
    XamlPropertyIndex_GridViewItemPresenter_SelectedBackground = 1068,
    XamlPropertyIndex_GridViewItemPresenter_SelectedBorderThickness = 1069,
    XamlPropertyIndex_GridViewItemPresenter_SelectedForeground = 1070,
    XamlPropertyIndex_GridViewItemPresenter_SelectedPointerOverBackground = 1071,
    XamlPropertyIndex_GridViewItemPresenter_SelectedPointerOverBorderBrush = 1072,
    XamlPropertyIndex_GridViewItemPresenter_SelectionCheckMarkVisualEnabled = 1073,
    XamlPropertyIndex_GridViewItemPresenter_GridViewItemPresenterVerticalContentAlignment = 1074,
    XamlPropertyIndex_ItemsStackPanel_CacheLength = 1076,
    XamlPropertyIndex_ItemsStackPanel_GroupHeaderPlacement = 1077,
    XamlPropertyIndex_ItemsStackPanel_GroupPadding = 1078,
    XamlPropertyIndex_ItemsStackPanel_ItemsUpdatingScrollMode = 1079,
    XamlPropertyIndex_ItemsStackPanel_Orientation = 1080,
    XamlPropertyIndex_ItemsWrapGrid_CacheLength = 1081,
    XamlPropertyIndex_ItemsWrapGrid_GroupHeaderPlacement = 1082,
    XamlPropertyIndex_ItemsWrapGrid_GroupPadding = 1083,
    XamlPropertyIndex_ItemsWrapGrid_ItemHeight = 1084,
    XamlPropertyIndex_ItemsWrapGrid_ItemWidth = 1085,
    XamlPropertyIndex_ItemsWrapGrid_MaximumRowsOrColumns = 1086,
    XamlPropertyIndex_ItemsWrapGrid_Orientation = 1087,
    XamlPropertyIndex_ListViewItemPresenter_CheckBrush = 1088,
    XamlPropertyIndex_ListViewItemPresenter_CheckHintBrush = 1089,
    XamlPropertyIndex_ListViewItemPresenter_CheckSelectingBrush = 1090,
    XamlPropertyIndex_ListViewItemPresenter_ContentMargin = 1091,
    XamlPropertyIndex_ListViewItemPresenter_DisabledOpacity = 1092,
    XamlPropertyIndex_ListViewItemPresenter_DragBackground = 1093,
    XamlPropertyIndex_ListViewItemPresenter_DragForeground = 1094,
    XamlPropertyIndex_ListViewItemPresenter_DragOpacity = 1095,
    XamlPropertyIndex_ListViewItemPresenter_FocusBorderBrush = 1096,
    XamlPropertyIndex_ListViewItemPresenter_ListViewItemPresenterHorizontalContentAlignment = 1097,
    XamlPropertyIndex_ListViewItemPresenter_ListViewItemPresenterPadding = 1098,
    XamlPropertyIndex_ListViewItemPresenter_PlaceholderBackground = 1099,
    XamlPropertyIndex_ListViewItemPresenter_PointerOverBackground = 1100,
    XamlPropertyIndex_ListViewItemPresenter_PointerOverBackgroundMargin = 1101,
    XamlPropertyIndex_ListViewItemPresenter_ReorderHintOffset = 1102,
    XamlPropertyIndex_ListViewItemPresenter_SelectedBackground = 1103,
    XamlPropertyIndex_ListViewItemPresenter_SelectedBorderThickness = 1104,
    XamlPropertyIndex_ListViewItemPresenter_SelectedForeground = 1105,
    XamlPropertyIndex_ListViewItemPresenter_SelectedPointerOverBackground = 1106,
    XamlPropertyIndex_ListViewItemPresenter_SelectedPointerOverBorderBrush = 1107,
    XamlPropertyIndex_ListViewItemPresenter_SelectionCheckMarkVisualEnabled = 1108,
    XamlPropertyIndex_ListViewItemPresenter_ListViewItemPresenterVerticalContentAlignment = 1109,
    XamlPropertyIndex_MenuFlyoutItem_Command = 1110,
    XamlPropertyIndex_MenuFlyoutItem_CommandParameter = 1111,
    XamlPropertyIndex_MenuFlyoutItem_Text = 1112,
    XamlPropertyIndex_Page_BottomAppBar = 1114,
    XamlPropertyIndex_Page_Frame = 1115,
    XamlPropertyIndex_Page_NavigationCacheMode = 1116,
    XamlPropertyIndex_Page_TopAppBar = 1117,
    XamlPropertyIndex_ProgressBar_IsIndeterminate = 1118,
    XamlPropertyIndex_ProgressBar_ShowError = 1119,
    XamlPropertyIndex_ProgressBar_ShowPaused = 1120,
    XamlPropertyIndex_ProgressBar_TemplateSettings = 1121,
    XamlPropertyIndex_ScrollBar_IndicatorMode = 1122,
    XamlPropertyIndex_ScrollBar_Orientation = 1123,
    XamlPropertyIndex_ScrollBar_ViewportSize = 1124,
    XamlPropertyIndex_Selector_IsSynchronizedWithCurrentItem = 1126,
    XamlPropertyIndex_Selector_SelectedIndex = 1127,
    XamlPropertyIndex_Selector_SelectedItem = 1128,
    XamlPropertyIndex_Selector_SelectedValue = 1129,
    XamlPropertyIndex_Selector_SelectedValuePath = 1130,
    XamlPropertyIndex_SelectorItem_IsSelected = 1131,
    XamlPropertyIndex_SettingsFlyout_HeaderBackground = 1132,
    XamlPropertyIndex_SettingsFlyout_HeaderForeground = 1133,
    XamlPropertyIndex_SettingsFlyout_IconSource = 1134,
    XamlPropertyIndex_SettingsFlyout_TemplateSettings = 1135,
    XamlPropertyIndex_SettingsFlyout_Title = 1136,
    XamlPropertyIndex_Slider_Header = 1137,
    XamlPropertyIndex_Slider_HeaderTemplate = 1138,
    XamlPropertyIndex_Slider_IntermediateValue = 1139,
    XamlPropertyIndex_Slider_IsDirectionReversed = 1140,
    XamlPropertyIndex_Slider_IsThumbToolTipEnabled = 1141,
    XamlPropertyIndex_Slider_Orientation = 1142,
    XamlPropertyIndex_Slider_SnapsTo = 1143,
    XamlPropertyIndex_Slider_StepFrequency = 1144,
    XamlPropertyIndex_Slider_ThumbToolTipValueConverter = 1145,
    XamlPropertyIndex_Slider_TickFrequency = 1146,
    XamlPropertyIndex_Slider_TickPlacement = 1147,
    XamlPropertyIndex_SwapChainPanel_CompositionScaleX = 1148,
    XamlPropertyIndex_SwapChainPanel_CompositionScaleY = 1149,
    XamlPropertyIndex_ToolTip_HorizontalOffset = 1150,
    XamlPropertyIndex_ToolTip_IsOpen = 1151,
    XamlPropertyIndex_ToolTip_Placement = 1152,
    XamlPropertyIndex_ToolTip_PlacementTarget = 1153,
    XamlPropertyIndex_ToolTip_TemplateSettings = 1154,
    XamlPropertyIndex_ToolTip_VerticalOffset = 1155,
    XamlPropertyIndex_Button_Flyout = 1156,
    XamlPropertyIndex_ComboBox_Header = 1157,
    XamlPropertyIndex_ComboBox_HeaderTemplate = 1158,
    XamlPropertyIndex_ComboBox_IsDropDownOpen = 1159,
    XamlPropertyIndex_ComboBox_IsEditable = 1160,
    XamlPropertyIndex_ComboBox_IsSelectionBoxHighlighted = 1161,
    XamlPropertyIndex_ComboBox_MaxDropDownHeight = 1162,
    XamlPropertyIndex_ComboBox_PlaceholderText = 1163,
    XamlPropertyIndex_ComboBox_SelectionBoxItem = 1164,
    XamlPropertyIndex_ComboBox_SelectionBoxItemTemplate = 1165,
    XamlPropertyIndex_ComboBox_TemplateSettings = 1166,
    XamlPropertyIndex_CommandBar_PrimaryCommands = 1167,
    XamlPropertyIndex_CommandBar_SecondaryCommands = 1168,
    XamlPropertyIndex_FlipView_UseTouchAnimationsForAllNavigation = 1169,
    XamlPropertyIndex_HyperlinkButton_NavigateUri = 1170,
    XamlPropertyIndex_ListBox_SelectedItems = 1171,
    XamlPropertyIndex_ListBox_SelectionMode = 1172,
    XamlPropertyIndex_ListViewBase_CanDragItems = 1173,
    XamlPropertyIndex_ListViewBase_CanReorderItems = 1174,
    XamlPropertyIndex_ListViewBase_DataFetchSize = 1175,
    XamlPropertyIndex_ListViewBase_Footer = 1176,
    XamlPropertyIndex_ListViewBase_FooterTemplate = 1177,
    XamlPropertyIndex_ListViewBase_FooterTransitions = 1178,
    XamlPropertyIndex_ListViewBase_Header = 1179,
    XamlPropertyIndex_ListViewBase_HeaderTemplate = 1180,
    XamlPropertyIndex_ListViewBase_HeaderTransitions = 1181,
    XamlPropertyIndex_ListViewBase_IncrementalLoadingThreshold = 1182,
    XamlPropertyIndex_ListViewBase_IncrementalLoadingTrigger = 1183,
    XamlPropertyIndex_ListViewBase_IsActiveView = 1184,
    XamlPropertyIndex_ListViewBase_IsItemClickEnabled = 1185,
    XamlPropertyIndex_ListViewBase_IsSwipeEnabled = 1186,
    XamlPropertyIndex_ListViewBase_IsZoomedInView = 1187,
    XamlPropertyIndex_ListViewBase_ReorderMode = 1188,
    XamlPropertyIndex_ListViewBase_SelectedItems = 1189,
    XamlPropertyIndex_ListViewBase_SelectionMode = 1190,
    XamlPropertyIndex_ListViewBase_SemanticZoomOwner = 1191,
    XamlPropertyIndex_ListViewBase_ShowsScrollingPlaceholders = 1192,
    XamlPropertyIndex_RepeatButton_Delay = 1193,
    XamlPropertyIndex_RepeatButton_Interval = 1194,
    XamlPropertyIndex_ScrollViewer_BringIntoViewOnFocusChange = 1195,
    XamlPropertyIndex_ScrollViewer_ComputedHorizontalScrollBarVisibility = 1196,
    XamlPropertyIndex_ScrollViewer_ComputedVerticalScrollBarVisibility = 1197,
    XamlPropertyIndex_ScrollViewer_ExtentHeight = 1198,
    XamlPropertyIndex_ScrollViewer_ExtentWidth = 1199,
    XamlPropertyIndex_ScrollViewer_HorizontalOffset = 1200,
    XamlPropertyIndex_ScrollViewer_HorizontalScrollBarVisibility = 1201,
    XamlPropertyIndex_ScrollViewer_HorizontalScrollMode = 1202,
    XamlPropertyIndex_ScrollViewer_HorizontalSnapPointsAlignment = 1203,
    XamlPropertyIndex_ScrollViewer_HorizontalSnapPointsType = 1204,
    XamlPropertyIndex_ScrollViewer_IsDeferredScrollingEnabled = 1205,
    XamlPropertyIndex_ScrollViewer_IsHorizontalRailEnabled = 1206,
    XamlPropertyIndex_ScrollViewer_IsHorizontalScrollChainingEnabled = 1207,
    XamlPropertyIndex_ScrollViewer_IsScrollInertiaEnabled = 1208,
    XamlPropertyIndex_ScrollViewer_IsVerticalRailEnabled = 1209,
    XamlPropertyIndex_ScrollViewer_IsVerticalScrollChainingEnabled = 1210,
    XamlPropertyIndex_ScrollViewer_IsZoomChainingEnabled = 1211,
    XamlPropertyIndex_ScrollViewer_IsZoomInertiaEnabled = 1212,
    XamlPropertyIndex_ScrollViewer_LeftHeader = 1213,
    XamlPropertyIndex_ScrollViewer_MaxZoomFactor = 1214,
    XamlPropertyIndex_ScrollViewer_MinZoomFactor = 1215,
    XamlPropertyIndex_ScrollViewer_ScrollableHeight = 1216,
    XamlPropertyIndex_ScrollViewer_ScrollableWidth = 1217,
    XamlPropertyIndex_ScrollViewer_TopHeader = 1218,
    XamlPropertyIndex_ScrollViewer_TopLeftHeader = 1219,
    XamlPropertyIndex_ScrollViewer_VerticalOffset = 1220,
    XamlPropertyIndex_ScrollViewer_VerticalScrollBarVisibility = 1221,
    XamlPropertyIndex_ScrollViewer_VerticalScrollMode = 1222,
    XamlPropertyIndex_ScrollViewer_VerticalSnapPointsAlignment = 1223,
    XamlPropertyIndex_ScrollViewer_VerticalSnapPointsType = 1224,
    XamlPropertyIndex_ScrollViewer_ViewportHeight = 1225,
    XamlPropertyIndex_ScrollViewer_ViewportWidth = 1226,
    XamlPropertyIndex_ScrollViewer_ZoomFactor = 1227,
    XamlPropertyIndex_ScrollViewer_ZoomMode = 1228,
    XamlPropertyIndex_ScrollViewer_ZoomSnapPoints = 1229,
    XamlPropertyIndex_ScrollViewer_ZoomSnapPointsType = 1230,
    XamlPropertyIndex_ToggleButton_IsChecked = 1231,
    XamlPropertyIndex_ToggleButton_IsThreeState = 1232,
    XamlPropertyIndex_ToggleMenuFlyoutItem_IsChecked = 1233,
    XamlPropertyIndex_VirtualizingStackPanel_AreScrollSnapPointsRegular = 1234,
    XamlPropertyIndex_VirtualizingStackPanel_IsVirtualizing = 1236,
    XamlPropertyIndex_VirtualizingStackPanel_Orientation = 1237,
    XamlPropertyIndex_VirtualizingStackPanel_VirtualizationMode = 1238,
    XamlPropertyIndex_WrapGrid_HorizontalChildrenAlignment = 1239,
    XamlPropertyIndex_WrapGrid_ItemHeight = 1240,
    XamlPropertyIndex_WrapGrid_ItemWidth = 1241,
    XamlPropertyIndex_WrapGrid_MaximumRowsOrColumns = 1242,
    XamlPropertyIndex_WrapGrid_Orientation = 1243,
    XamlPropertyIndex_WrapGrid_VerticalChildrenAlignment = 1244,
    XamlPropertyIndex_AppBarButton_Icon = 1245,
    XamlPropertyIndex_AppBarButton_IsCompact = 1246,
    XamlPropertyIndex_AppBarButton_Label = 1247,
    XamlPropertyIndex_AppBarToggleButton_Icon = 1248,
    XamlPropertyIndex_AppBarToggleButton_IsCompact = 1249,
    XamlPropertyIndex_AppBarToggleButton_Label = 1250,
    XamlPropertyIndex_GridViewItem_TemplateSettings = 1251,
    XamlPropertyIndex_ListViewItem_TemplateSettings = 1252,
    XamlPropertyIndex_RadioButton_GroupName = 1253,
    XamlPropertyIndex_Glyphs_ColorFontPaletteIndex = 1267,
    XamlPropertyIndex_Glyphs_IsColorFontEnabled = 1268,
    XamlPropertyIndex_CalendarViewTemplateSettings_HasMoreContentAfter = 1274,
    XamlPropertyIndex_CalendarViewTemplateSettings_HasMoreContentBefore = 1275,
    XamlPropertyIndex_CalendarViewTemplateSettings_HasMoreViews = 1276,
    XamlPropertyIndex_CalendarViewTemplateSettings_HeaderText = 1277,
    XamlPropertyIndex_CalendarViewTemplateSettings_WeekDay1 = 1280,
    XamlPropertyIndex_CalendarViewTemplateSettings_WeekDay2 = 1281,
    XamlPropertyIndex_CalendarViewTemplateSettings_WeekDay3 = 1282,
    XamlPropertyIndex_CalendarViewTemplateSettings_WeekDay4 = 1283,
    XamlPropertyIndex_CalendarViewTemplateSettings_WeekDay5 = 1284,
    XamlPropertyIndex_CalendarViewTemplateSettings_WeekDay6 = 1285,
    XamlPropertyIndex_CalendarViewTemplateSettings_WeekDay7 = 1286,
    XamlPropertyIndex_CalendarView_CalendarIdentifier = 1291,
    XamlPropertyIndex_CalendarView_DayOfWeekFormat = 1299,
    XamlPropertyIndex_CalendarView_DisplayMode = 1302,
    XamlPropertyIndex_CalendarView_FirstDayOfWeek = 1303,
    XamlPropertyIndex_CalendarView_IsOutOfScopeEnabled = 1317,
    XamlPropertyIndex_CalendarView_IsTodayHighlighted = 1318,
    XamlPropertyIndex_CalendarView_MaxDate = 1320,
    XamlPropertyIndex_CalendarView_MinDate = 1321,
    XamlPropertyIndex_CalendarView_NumberOfWeeksInView = 1327,
    XamlPropertyIndex_CalendarView_SelectedDates = 1333,
    XamlPropertyIndex_CalendarView_SelectionMode = 1335,
    XamlPropertyIndex_CalendarView_TemplateSettings = 1336,
    XamlPropertyIndex_CalendarViewDayItem_Date = 1339,
    XamlPropertyIndex_CalendarViewDayItem_IsBlackout = 1340,
    XamlPropertyIndex_MediaTransportControls_IsFastForwardEnabled = 1382,
    XamlPropertyIndex_MediaTransportControls_IsFastRewindEnabled = 1383,
    XamlPropertyIndex_MediaTransportControls_IsFullWindowEnabled = 1384,
    XamlPropertyIndex_MediaTransportControls_IsPlaybackRateEnabled = 1385,
    XamlPropertyIndex_MediaTransportControls_IsSeekEnabled = 1386,
    XamlPropertyIndex_MediaTransportControls_IsStopEnabled = 1387,
    XamlPropertyIndex_MediaTransportControls_IsVolumeEnabled = 1388,
    XamlPropertyIndex_MediaTransportControls_IsZoomEnabled = 1389,
    XamlPropertyIndex_ContentPresenter_LineHeight = 1425,
    XamlPropertyIndex_CalendarViewTemplateSettings_MinViewWidth = 1435,
    XamlPropertyIndex_ListViewBase_SelectedRanges = 1459,
    XamlPropertyIndex_SplitViewTemplateSettings_CompactPaneGridLength = 1462,
    XamlPropertyIndex_SplitViewTemplateSettings_NegativeOpenPaneLength = 1463,
    XamlPropertyIndex_SplitViewTemplateSettings_NegativeOpenPaneLengthMinusCompactLength = 1464,
    XamlPropertyIndex_SplitViewTemplateSettings_OpenPaneGridLength = 1465,
    XamlPropertyIndex_SplitViewTemplateSettings_OpenPaneLengthMinusCompactLength = 1466,
    XamlPropertyIndex_SplitView_CompactPaneLength = 1467,
    XamlPropertyIndex_SplitView_Content = 1468,
    XamlPropertyIndex_SplitView_DisplayMode = 1469,
    XamlPropertyIndex_SplitView_IsPaneOpen = 1470,
    XamlPropertyIndex_SplitView_OpenPaneLength = 1471,
    XamlPropertyIndex_SplitView_Pane = 1472,
    XamlPropertyIndex_SplitView_PanePlacement = 1473,
    XamlPropertyIndex_SplitView_TemplateSettings = 1474,
    XamlPropertyIndex_UIElement_Transform3D = 1475,
    XamlPropertyIndex_CompositeTransform3D_CenterX = 1476,
    XamlPropertyIndex_CompositeTransform3D_CenterY = 1478,
    XamlPropertyIndex_CompositeTransform3D_CenterZ = 1480,
    XamlPropertyIndex_CompositeTransform3D_RotationX = 1482,
    XamlPropertyIndex_CompositeTransform3D_RotationY = 1484,
    XamlPropertyIndex_CompositeTransform3D_RotationZ = 1486,
    XamlPropertyIndex_CompositeTransform3D_ScaleX = 1488,
    XamlPropertyIndex_CompositeTransform3D_ScaleY = 1490,
    XamlPropertyIndex_CompositeTransform3D_ScaleZ = 1492,
    XamlPropertyIndex_CompositeTransform3D_TranslateX = 1494,
    XamlPropertyIndex_CompositeTransform3D_TranslateY = 1496,
    XamlPropertyIndex_CompositeTransform3D_TranslateZ = 1498,
    XamlPropertyIndex_PerspectiveTransform3D_Depth = 1500,
    XamlPropertyIndex_PerspectiveTransform3D_OffsetX = 1501,
    XamlPropertyIndex_PerspectiveTransform3D_OffsetY = 1502,
    XamlPropertyIndex_RelativePanel_Above = 1508,
    XamlPropertyIndex_RelativePanel_AlignBottomWith = 1509,
    XamlPropertyIndex_RelativePanel_AlignLeftWith = 1510,
    XamlPropertyIndex_RelativePanel_AlignRightWith = 1515,
    XamlPropertyIndex_RelativePanel_AlignTopWith = 1516,
    XamlPropertyIndex_RelativePanel_Below = 1517,
    XamlPropertyIndex_RelativePanel_LeftOf = 1520,
    XamlPropertyIndex_RelativePanel_RightOf = 1521,
    XamlPropertyIndex_SplitViewTemplateSettings_OpenPaneLength = 1524,
    XamlPropertyIndex_PasswordBox_PasswordRevealMode = 1527,
    XamlPropertyIndex_SplitView_PaneBackground = 1528,
    XamlPropertyIndex_ItemsStackPanel_AreStickyGroupHeadersEnabled = 1529,
    XamlPropertyIndex_ItemsWrapGrid_AreStickyGroupHeadersEnabled = 1530,
    XamlPropertyIndex_MenuFlyoutSubItem_Items = 1531,
    XamlPropertyIndex_MenuFlyoutSubItem_Text = 1532,
    XamlPropertyIndex_UIElement_CanDrag = 1534,
    XamlPropertyIndex_DataTemplate_ExtensionInstance = 1535,
    XamlPropertyIndex_RelativePanel_AlignHorizontalCenterWith = 1552,
    XamlPropertyIndex_RelativePanel_AlignVerticalCenterWith = 1553,
    XamlPropertyIndex_TargetPropertyPath_Path = 1555,
    XamlPropertyIndex_TargetPropertyPath_Target = 1556,
    XamlPropertyIndex_VisualState_Setters = 1558,
    XamlPropertyIndex_VisualState_StateTriggers = 1559,
    XamlPropertyIndex_AdaptiveTrigger_MinWindowHeight = 1560,
    XamlPropertyIndex_AdaptiveTrigger_MinWindowWidth = 1561,
    XamlPropertyIndex_Setter_Target = 1562,
    XamlPropertyIndex_CalendarView_BlackoutForeground = 1565,
    XamlPropertyIndex_CalendarView_CalendarItemBackground = 1566,
    XamlPropertyIndex_CalendarView_CalendarItemBorderBrush = 1567,
    XamlPropertyIndex_CalendarView_CalendarItemBorderThickness = 1568,
    XamlPropertyIndex_CalendarView_CalendarItemForeground = 1569,
    XamlPropertyIndex_CalendarView_CalendarViewDayItemStyle = 1570,
    XamlPropertyIndex_CalendarView_DayItemFontFamily = 1571,
    XamlPropertyIndex_CalendarView_DayItemFontSize = 1572,
    XamlPropertyIndex_CalendarView_DayItemFontStyle = 1573,
    XamlPropertyIndex_CalendarView_DayItemFontWeight = 1574,
    XamlPropertyIndex_CalendarView_FirstOfMonthLabelFontFamily = 1575,
    XamlPropertyIndex_CalendarView_FirstOfMonthLabelFontSize = 1576,
    XamlPropertyIndex_CalendarView_FirstOfMonthLabelFontStyle = 1577,
    XamlPropertyIndex_CalendarView_FirstOfMonthLabelFontWeight = 1578,
    XamlPropertyIndex_CalendarView_FirstOfYearDecadeLabelFontFamily = 1579,
    XamlPropertyIndex_CalendarView_FirstOfYearDecadeLabelFontSize = 1580,
    XamlPropertyIndex_CalendarView_FirstOfYearDecadeLabelFontStyle = 1581,
    XamlPropertyIndex_CalendarView_FirstOfYearDecadeLabelFontWeight = 1582,
    XamlPropertyIndex_CalendarView_FocusBorderBrush = 1583,
    XamlPropertyIndex_CalendarView_HorizontalDayItemAlignment = 1584,
    XamlPropertyIndex_CalendarView_HorizontalFirstOfMonthLabelAlignment = 1585,
    XamlPropertyIndex_CalendarView_HoverBorderBrush = 1586,
    XamlPropertyIndex_CalendarView_MonthYearItemFontFamily = 1588,
    XamlPropertyIndex_CalendarView_MonthYearItemFontSize = 1589,
    XamlPropertyIndex_CalendarView_MonthYearItemFontStyle = 1590,
    XamlPropertyIndex_CalendarView_MonthYearItemFontWeight = 1591,
    XamlPropertyIndex_CalendarView_OutOfScopeBackground = 1592,
    XamlPropertyIndex_CalendarView_OutOfScopeForeground = 1593,
    XamlPropertyIndex_CalendarView_PressedBorderBrush = 1594,
    XamlPropertyIndex_CalendarView_PressedForeground = 1595,
    XamlPropertyIndex_CalendarView_SelectedBorderBrush = 1596,
    XamlPropertyIndex_CalendarView_SelectedForeground = 1597,
    XamlPropertyIndex_CalendarView_SelectedHoverBorderBrush = 1598,
    XamlPropertyIndex_CalendarView_SelectedPressedBorderBrush = 1599,
    XamlPropertyIndex_CalendarView_TodayFontWeight = 1600,
    XamlPropertyIndex_CalendarView_TodayForeground = 1601,
    XamlPropertyIndex_CalendarView_VerticalDayItemAlignment = 1602,
    XamlPropertyIndex_CalendarView_VerticalFirstOfMonthLabelAlignment = 1603,
    XamlPropertyIndex_MediaTransportControls_IsCompact = 1605,
    XamlPropertyIndex_RelativePanel_AlignBottomWithPanel = 1606,
    XamlPropertyIndex_RelativePanel_AlignHorizontalCenterWithPanel = 1607,
    XamlPropertyIndex_RelativePanel_AlignLeftWithPanel = 1608,
    XamlPropertyIndex_RelativePanel_AlignRightWithPanel = 1609,
    XamlPropertyIndex_RelativePanel_AlignTopWithPanel = 1610,
    XamlPropertyIndex_RelativePanel_AlignVerticalCenterWithPanel = 1611,
    XamlPropertyIndex_ListViewBase_IsMultiSelectCheckBoxEnabled = 1612,
    XamlPropertyIndex_AutomationProperties_Level = 1614,
    XamlPropertyIndex_AutomationProperties_PositionInSet = 1615,
    XamlPropertyIndex_AutomationProperties_SizeOfSet = 1616,
    XamlPropertyIndex_ListViewItemPresenter_CheckBoxBrush = 1617,
    XamlPropertyIndex_ListViewItemPresenter_CheckMode = 1618,
    XamlPropertyIndex_ListViewItemPresenter_PressedBackground = 1620,
    XamlPropertyIndex_ListViewItemPresenter_SelectedPressedBackground = 1621,
    XamlPropertyIndex_Control_IsTemplateFocusTarget = 1623,
    XamlPropertyIndex_Control_UseSystemFocusVisuals = 1624,
    XamlPropertyIndex_ListViewItemPresenter_FocusSecondaryBorderBrush = 1628,
    XamlPropertyIndex_ListViewItemPresenter_PointerOverForeground = 1630,
    XamlPropertyIndex_FontIcon_MirroredWhenRightToLeft = 1631,
    XamlPropertyIndex_CalendarViewTemplateSettings_CenterX = 1632,
    XamlPropertyIndex_CalendarViewTemplateSettings_CenterY = 1633,
    XamlPropertyIndex_CalendarViewTemplateSettings_ClipRect = 1634,
    XamlPropertyIndex_PasswordBox_TextReadingOrder = 1650,
    XamlPropertyIndex_RichEditBox_TextReadingOrder = 1651,
    XamlPropertyIndex_TextBox_TextReadingOrder = 1652,
    XamlPropertyIndex_WebView_ExecutionMode = 1653,
    XamlPropertyIndex_WebView_DeferredPermissionRequests = 1655,
    XamlPropertyIndex_WebView_Settings = 1656,
    XamlPropertyIndex_RichEditBox_DesiredCandidateWindowAlignment = 1660,
    XamlPropertyIndex_TextBox_DesiredCandidateWindowAlignment = 1662,
    XamlPropertyIndex_CalendarDatePicker_CalendarIdentifier = 1663,
    XamlPropertyIndex_CalendarDatePicker_CalendarViewStyle = 1664,
    XamlPropertyIndex_CalendarDatePicker_Date = 1665,
    XamlPropertyIndex_CalendarDatePicker_DateFormat = 1666,
    XamlPropertyIndex_CalendarDatePicker_DayOfWeekFormat = 1667,
    XamlPropertyIndex_CalendarDatePicker_DisplayMode = 1668,
    XamlPropertyIndex_CalendarDatePicker_FirstDayOfWeek = 1669,
    XamlPropertyIndex_CalendarDatePicker_Header = 1670,
    XamlPropertyIndex_CalendarDatePicker_HeaderTemplate = 1671,
    XamlPropertyIndex_CalendarDatePicker_IsCalendarOpen = 1672,
    XamlPropertyIndex_CalendarDatePicker_IsGroupLabelVisible = 1673,
    XamlPropertyIndex_CalendarDatePicker_IsOutOfScopeEnabled = 1674,
    XamlPropertyIndex_CalendarDatePicker_IsTodayHighlighted = 1675,
    XamlPropertyIndex_CalendarDatePicker_MaxDate = 1676,
    XamlPropertyIndex_CalendarDatePicker_MinDate = 1677,
    XamlPropertyIndex_CalendarDatePicker_PlaceholderText = 1678,
    XamlPropertyIndex_CalendarView_IsGroupLabelVisible = 1679,
    XamlPropertyIndex_ContentPresenter_Background = 1680,
    XamlPropertyIndex_ContentPresenter_BorderBrush = 1681,
    XamlPropertyIndex_ContentPresenter_BorderThickness = 1682,
    XamlPropertyIndex_ContentPresenter_CornerRadius = 1683,
    XamlPropertyIndex_ContentPresenter_Padding = 1684,
    XamlPropertyIndex_Grid_BorderBrush = 1685,
    XamlPropertyIndex_Grid_BorderThickness = 1686,
    XamlPropertyIndex_Grid_CornerRadius = 1687,
    XamlPropertyIndex_Grid_Padding = 1688,
    XamlPropertyIndex_RelativePanel_BorderBrush = 1689,
    XamlPropertyIndex_RelativePanel_BorderThickness = 1690,
    XamlPropertyIndex_RelativePanel_CornerRadius = 1691,
    XamlPropertyIndex_RelativePanel_Padding = 1692,
    XamlPropertyIndex_StackPanel_BorderBrush = 1693,
    XamlPropertyIndex_StackPanel_BorderThickness = 1694,
    XamlPropertyIndex_StackPanel_CornerRadius = 1695,
    XamlPropertyIndex_StackPanel_Padding = 1696,
    XamlPropertyIndex_PasswordBox_InputScope = 1697,
    XamlPropertyIndex_MediaTransportControlsHelper_DropoutOrder = 1698,
    XamlPropertyIndex_AutoSuggestBoxQuerySubmittedEventArgs_ChosenSuggestion = 1699,
    XamlPropertyIndex_AutoSuggestBoxQuerySubmittedEventArgs_QueryText = 1700,
    XamlPropertyIndex_AutoSuggestBox_QueryIcon = 1701,
    XamlPropertyIndex_StateTrigger_IsActive = 1702,
    XamlPropertyIndex_ContentPresenter_HorizontalContentAlignment = 1703,
    XamlPropertyIndex_ContentPresenter_VerticalContentAlignment = 1704,
    XamlPropertyIndex_AppBarTemplateSettings_ClipRect = 1705,
    XamlPropertyIndex_AppBarTemplateSettings_CompactRootMargin = 1706,
    XamlPropertyIndex_AppBarTemplateSettings_CompactVerticalDelta = 1707,
    XamlPropertyIndex_AppBarTemplateSettings_HiddenRootMargin = 1708,
    XamlPropertyIndex_AppBarTemplateSettings_HiddenVerticalDelta = 1709,
    XamlPropertyIndex_AppBarTemplateSettings_MinimalRootMargin = 1710,
    XamlPropertyIndex_AppBarTemplateSettings_MinimalVerticalDelta = 1711,
    XamlPropertyIndex_CommandBarTemplateSettings_ContentHeight = 1712,
    XamlPropertyIndex_CommandBarTemplateSettings_NegativeOverflowContentHeight = 1713,
    XamlPropertyIndex_CommandBarTemplateSettings_OverflowContentClipRect = 1714,
    XamlPropertyIndex_CommandBarTemplateSettings_OverflowContentHeight = 1715,
    XamlPropertyIndex_CommandBarTemplateSettings_OverflowContentHorizontalOffset = 1716,
    XamlPropertyIndex_CommandBarTemplateSettings_OverflowContentMaxHeight = 1717,
    XamlPropertyIndex_CommandBarTemplateSettings_OverflowContentMinWidth = 1718,
    XamlPropertyIndex_AppBar_TemplateSettings = 1719,
    XamlPropertyIndex_CommandBar_CommandBarOverflowPresenterStyle = 1720,
    XamlPropertyIndex_CommandBar_CommandBarTemplateSettings = 1721,
    XamlPropertyIndex_DrillInThemeAnimation_EntranceTarget = 1722,
    XamlPropertyIndex_DrillInThemeAnimation_EntranceTargetName = 1723,
    XamlPropertyIndex_DrillInThemeAnimation_ExitTarget = 1724,
    XamlPropertyIndex_DrillInThemeAnimation_ExitTargetName = 1725,
    XamlPropertyIndex_DrillOutThemeAnimation_EntranceTarget = 1726,
    XamlPropertyIndex_DrillOutThemeAnimation_EntranceTargetName = 1727,
    XamlPropertyIndex_DrillOutThemeAnimation_ExitTarget = 1728,
    XamlPropertyIndex_DrillOutThemeAnimation_ExitTargetName = 1729,
    XamlPropertyIndex_XamlBindingHelper_DataTemplateComponent = 1730,
    XamlPropertyIndex_AutomationProperties_Annotations = 1732,
    XamlPropertyIndex_AutomationAnnotation_Element = 1733,
    XamlPropertyIndex_AutomationAnnotation_Type = 1734,
    XamlPropertyIndex_AutomationPeerAnnotation_Peer = 1735,
    XamlPropertyIndex_AutomationPeerAnnotation_Type = 1736,
    XamlPropertyIndex_Hyperlink_UnderlineStyle = 1741,
    XamlPropertyIndex_CalendarView_DisabledForeground = 1742,
    XamlPropertyIndex_CalendarView_TodayBackground = 1743,
    XamlPropertyIndex_CalendarView_TodayBlackoutBackground = 1744,
    XamlPropertyIndex_CalendarView_TodaySelectedInnerBorderBrush = 1747,
    XamlPropertyIndex_Control_IsFocusEngaged = 1749,
    XamlPropertyIndex_Control_IsFocusEngagementEnabled = 1752,
    XamlPropertyIndex_RichEditBox_ClipboardCopyFormat = 1754,
    XamlPropertyIndex_CommandBarTemplateSettings_OverflowContentMaxWidth = 1757,
    XamlPropertyIndex_ComboBoxTemplateSettings_DropDownContentMinWidth = 1758,
    XamlPropertyIndex_MenuFlyoutPresenterTemplateSettings_FlyoutContentMinWidth = 1762,
    XamlPropertyIndex_MenuFlyoutPresenter_TemplateSettings = 1763,
    XamlPropertyIndex_AutomationProperties_LandmarkType = 1766,
    XamlPropertyIndex_AutomationProperties_LocalizedLandmarkType = 1767,
    XamlPropertyIndex_RepositionThemeTransition_IsStaggeringEnabled = 1769,
    XamlPropertyIndex_ListBox_SingleSelectionFollowsFocus = 1770,
    XamlPropertyIndex_ListViewBase_SingleSelectionFollowsFocus = 1771,
    XamlPropertyIndex_BitmapImage_AutoPlay = 1773,
    XamlPropertyIndex_BitmapImage_IsAnimatedBitmap = 1774,
    XamlPropertyIndex_BitmapImage_IsPlaying = 1775,
    XamlPropertyIndex_AutomationProperties_FullDescription = 1776,
    XamlPropertyIndex_AutomationProperties_IsDataValidForForm = 1777,
    XamlPropertyIndex_AutomationProperties_IsPeripheral = 1778,
    XamlPropertyIndex_AutomationProperties_LocalizedControlType = 1779,
    XamlPropertyIndex_FlyoutBase_AllowFocusOnInteraction = 1780,
    XamlPropertyIndex_TextElement_AllowFocusOnInteraction = 1781,
    XamlPropertyIndex_FrameworkElement_AllowFocusOnInteraction = 1782,
    XamlPropertyIndex_Control_RequiresPointer = 1783,
    XamlPropertyIndex_UIElement_ContextFlyout = 1785,
    XamlPropertyIndex_TextElement_AccessKey = 1786,
    XamlPropertyIndex_UIElement_AccessKeyScopeOwner = 1787,
    XamlPropertyIndex_UIElement_IsAccessKeyScope = 1788,
    XamlPropertyIndex_AutomationProperties_DescribedBy = 1790,
    XamlPropertyIndex_UIElement_AccessKey = 1803,
    XamlPropertyIndex_Control_XYFocusDown = 1804,
    XamlPropertyIndex_Control_XYFocusLeft = 1805,
    XamlPropertyIndex_Control_XYFocusRight = 1806,
    XamlPropertyIndex_Control_XYFocusUp = 1807,
    XamlPropertyIndex_Hyperlink_XYFocusDown = 1808,
    XamlPropertyIndex_Hyperlink_XYFocusLeft = 1809,
    XamlPropertyIndex_Hyperlink_XYFocusRight = 1810,
    XamlPropertyIndex_Hyperlink_XYFocusUp = 1811,
    XamlPropertyIndex_WebView_XYFocusDown = 1812,
    XamlPropertyIndex_WebView_XYFocusLeft = 1813,
    XamlPropertyIndex_WebView_XYFocusRight = 1814,
    XamlPropertyIndex_WebView_XYFocusUp = 1815,
    XamlPropertyIndex_CommandBarTemplateSettings_EffectiveOverflowButtonVisibility = 1816,
    XamlPropertyIndex_AppBarSeparator_IsInOverflow = 1817,
    XamlPropertyIndex_CommandBar_DefaultLabelPosition = 1818,
    XamlPropertyIndex_CommandBar_IsDynamicOverflowEnabled = 1819,
    XamlPropertyIndex_CommandBar_OverflowButtonVisibility = 1820,
    XamlPropertyIndex_AppBarButton_IsInOverflow = 1821,
    XamlPropertyIndex_AppBarButton_LabelPosition = 1822,
    XamlPropertyIndex_AppBarToggleButton_IsInOverflow = 1823,
    XamlPropertyIndex_AppBarToggleButton_LabelPosition = 1824,
    XamlPropertyIndex_FlyoutBase_LightDismissOverlayMode = 1825,
    XamlPropertyIndex_Popup_LightDismissOverlayMode = 1827,
    XamlPropertyIndex_CalendarDatePicker_LightDismissOverlayMode = 1829,
    XamlPropertyIndex_DatePicker_LightDismissOverlayMode = 1830,
    XamlPropertyIndex_SplitView_LightDismissOverlayMode = 1831,
    XamlPropertyIndex_TimePicker_LightDismissOverlayMode = 1832,
    XamlPropertyIndex_AppBar_LightDismissOverlayMode = 1833,
    XamlPropertyIndex_AutoSuggestBox_LightDismissOverlayMode = 1834,
    XamlPropertyIndex_ComboBox_LightDismissOverlayMode = 1835,
    XamlPropertyIndex_AppBarSeparator_DynamicOverflowOrder = 1836,
    XamlPropertyIndex_AppBarButton_DynamicOverflowOrder = 1837,
    XamlPropertyIndex_AppBarToggleButton_DynamicOverflowOrder = 1838,
    XamlPropertyIndex_FrameworkElement_FocusVisualMargin = 1839,
    XamlPropertyIndex_FrameworkElement_FocusVisualPrimaryBrush = 1840,
    XamlPropertyIndex_FrameworkElement_FocusVisualPrimaryThickness = 1841,
    XamlPropertyIndex_FrameworkElement_FocusVisualSecondaryBrush = 1842,
    XamlPropertyIndex_FrameworkElement_FocusVisualSecondaryThickness = 1843,
    XamlPropertyIndex_FlyoutBase_AllowFocusWhenDisabled = 1846,
    XamlPropertyIndex_FrameworkElement_AllowFocusWhenDisabled = 1847,
    XamlPropertyIndex_ComboBox_IsTextSearchEnabled = 1848,
    XamlPropertyIndex_TextElement_ExitDisplayModeOnAccessKeyInvoked = 1849,
    XamlPropertyIndex_UIElement_ExitDisplayModeOnAccessKeyInvoked = 1850,
    XamlPropertyIndex_MediaPlayerPresenter_IsFullWindow = 1851,
    XamlPropertyIndex_MediaPlayerPresenter_MediaPlayer = 1852,
    XamlPropertyIndex_MediaPlayerPresenter_Stretch = 1853,
    XamlPropertyIndex_MediaPlayerElement_AreTransportControlsEnabled = 1854,
    XamlPropertyIndex_MediaPlayerElement_AutoPlay = 1855,
    XamlPropertyIndex_MediaPlayerElement_IsFullWindow = 1856,
    XamlPropertyIndex_MediaPlayerElement_MediaPlayer = 1857,
    XamlPropertyIndex_MediaPlayerElement_PosterSource = 1858,
    XamlPropertyIndex_MediaPlayerElement_Source = 1859,
    XamlPropertyIndex_MediaPlayerElement_Stretch = 1860,
    XamlPropertyIndex_MediaPlayerElement_TransportControls = 1861,
    XamlPropertyIndex_MediaTransportControls_FastPlayFallbackBehaviour = 1862,
    XamlPropertyIndex_MediaTransportControls_IsNextTrackButtonVisible = 1863,
    XamlPropertyIndex_MediaTransportControls_IsPreviousTrackButtonVisible = 1864,
    XamlPropertyIndex_MediaTransportControls_IsSkipBackwardButtonVisible = 1865,
    XamlPropertyIndex_MediaTransportControls_IsSkipBackwardEnabled = 1866,
    XamlPropertyIndex_MediaTransportControls_IsSkipForwardButtonVisible = 1867,
    XamlPropertyIndex_MediaTransportControls_IsSkipForwardEnabled = 1868,
    XamlPropertyIndex_FlyoutBase_ElementSoundMode = 1869,
    XamlPropertyIndex_Control_ElementSoundMode = 1870,
    XamlPropertyIndex_Hyperlink_ElementSoundMode = 1871,
    XamlPropertyIndex_AutomationProperties_FlowsFrom = 1876,
    XamlPropertyIndex_AutomationProperties_FlowsTo = 1877,
    XamlPropertyIndex_TextElement_TextDecorations = 1879,
    XamlPropertyIndex_RichTextBlock_TextDecorations = 1881,
    XamlPropertyIndex_Control_DefaultStyleResourceUri = 1882,
    XamlPropertyIndex_ContentDialog_PrimaryButtonStyle = 1884,
    XamlPropertyIndex_ContentDialog_SecondaryButtonStyle = 1885,
    XamlPropertyIndex_TextElement_KeyTipHorizontalOffset = 1890,
    XamlPropertyIndex_TextElement_KeyTipPlacementMode = 1891,
    XamlPropertyIndex_TextElement_KeyTipVerticalOffset = 1892,
    XamlPropertyIndex_UIElement_KeyTipHorizontalOffset = 1893,
    XamlPropertyIndex_UIElement_KeyTipPlacementMode = 1894,
    XamlPropertyIndex_UIElement_KeyTipVerticalOffset = 1895,
    XamlPropertyIndex_FlyoutBase_OverlayInputPassThroughElement = 1896,
    XamlPropertyIndex_UIElement_XYFocusKeyboardNavigation = 1897,
    XamlPropertyIndex_AutomationProperties_Culture = 1898,
    XamlPropertyIndex_UIElement_XYFocusDownNavigationStrategy = 1918,
    XamlPropertyIndex_UIElement_XYFocusLeftNavigationStrategy = 1919,
    XamlPropertyIndex_UIElement_XYFocusRightNavigationStrategy = 1920,
    XamlPropertyIndex_UIElement_XYFocusUpNavigationStrategy = 1921,
    XamlPropertyIndex_Hyperlink_XYFocusDownNavigationStrategy = 1922,
    XamlPropertyIndex_Hyperlink_XYFocusLeftNavigationStrategy = 1923,
    XamlPropertyIndex_Hyperlink_XYFocusRightNavigationStrategy = 1924,
    XamlPropertyIndex_Hyperlink_XYFocusUpNavigationStrategy = 1925,
    XamlPropertyIndex_TextElement_AccessKeyScopeOwner = 1926,
    XamlPropertyIndex_TextElement_IsAccessKeyScope = 1927,
    XamlPropertyIndex_Hyperlink_FocusState = 1934,
    XamlPropertyIndex_ContentDialog_CloseButtonCommand = 1936,
    XamlPropertyIndex_ContentDialog_CloseButtonCommandParameter = 1937,
    XamlPropertyIndex_ContentDialog_CloseButtonStyle = 1938,
    XamlPropertyIndex_ContentDialog_CloseButtonText = 1939,
    XamlPropertyIndex_ContentDialog_DefaultButton = 1940,
    XamlPropertyIndex_RichEditBox_SelectionHighlightColorWhenNotFocused = 1941,
    XamlPropertyIndex_TextBox_SelectionHighlightColorWhenNotFocused = 1942,
    XamlPropertyIndex_SvgImageSource_RasterizePixelHeight = 1948,
    XamlPropertyIndex_SvgImageSource_RasterizePixelWidth = 1949,
    XamlPropertyIndex_SvgImageSource_UriSource = 1950,
    XamlPropertyIndex_LoadedImageSurface_DecodedPhysicalSize = 1955,
    XamlPropertyIndex_LoadedImageSurface_DecodedSize = 1956,
    XamlPropertyIndex_LoadedImageSurface_NaturalSize = 1957,
    XamlPropertyIndex_ComboBox_SelectionChangedTrigger = 1958,
    XamlPropertyIndex_XamlCompositionBrushBase_FallbackColor = 1960,
    XamlPropertyIndex_UIElement_Lights = 1962,
    XamlPropertyIndex_MenuFlyoutItem_Icon = 1963,
    XamlPropertyIndex_MenuFlyoutSubItem_Icon = 1964,
    XamlPropertyIndex_BitmapIcon_ShowAsMonochrome = 1965,
    XamlPropertyIndex_UIElement_HighContrastAdjustment = 1967,
    XamlPropertyIndex_RichEditBox_MaxLength = 1968,
    XamlPropertyIndex_UIElement_TabFocusNavigation = 1969,
    XamlPropertyIndex_Control_IsTemplateKeyTipTarget = 1970,
    XamlPropertyIndex_Hyperlink_IsTabStop = 1972,
    XamlPropertyIndex_Hyperlink_TabIndex = 1973,
    XamlPropertyIndex_MediaTransportControls_IsRepeatButtonVisible = 1974,
    XamlPropertyIndex_MediaTransportControls_IsRepeatEnabled = 1975,
    XamlPropertyIndex_MediaTransportControls_ShowAndHideAutomatically = 1976,
    XamlPropertyIndex_RichEditBox_DisabledFormattingAccelerators = 1977,
    XamlPropertyIndex_RichEditBox_CharacterCasing = 1978,
    XamlPropertyIndex_TextBox_CharacterCasing = 1979,
    XamlPropertyIndex_RichTextBlock_IsTextTrimmed = 1980,
    XamlPropertyIndex_RichTextBlockOverflow_IsTextTrimmed = 1981,
    XamlPropertyIndex_TextBlock_IsTextTrimmed = 1982,
    XamlPropertyIndex_TextHighlighter_Background = 1985,
    XamlPropertyIndex_TextHighlighter_Foreground = 1986,
    XamlPropertyIndex_TextHighlighter_Ranges = 1987,
    XamlPropertyIndex_RichTextBlock_TextHighlighters = 1988,
    XamlPropertyIndex_TextBlock_TextHighlighters = 1989,
    XamlPropertyIndex_FrameworkElement_ActualTheme = 1992,
    XamlPropertyIndex_Grid_ColumnSpacing = 1993,
    XamlPropertyIndex_Grid_RowSpacing = 1994,
    XamlPropertyIndex_StackPanel_Spacing = 1995,
    XamlPropertyIndex_Block_HorizontalTextAlignment = 1996,
    XamlPropertyIndex_RichTextBlock_HorizontalTextAlignment = 1997,
    XamlPropertyIndex_TextBlock_HorizontalTextAlignment = 1998,
    XamlPropertyIndex_RichEditBox_HorizontalTextAlignment = 1999,
    XamlPropertyIndex_TextBox_HorizontalTextAlignment = 2000,
    XamlPropertyIndex_TextBox_PlaceholderForeground = 2001,
    XamlPropertyIndex_ComboBox_PlaceholderForeground = 2002,
    XamlPropertyIndex_KeyboardAccelerator_IsEnabled = 2003,
    XamlPropertyIndex_KeyboardAccelerator_Key = 2004,
    XamlPropertyIndex_KeyboardAccelerator_Modifiers = 2005,
    XamlPropertyIndex_KeyboardAccelerator_ScopeOwner = 2006,
    XamlPropertyIndex_UIElement_KeyboardAccelerators = 2007,
    XamlPropertyIndex_ListViewItemPresenter_RevealBackground = 2009,
    XamlPropertyIndex_ListViewItemPresenter_RevealBackgroundShowsAboveContent = 2010,
    XamlPropertyIndex_ListViewItemPresenter_RevealBorderBrush = 2011,
    XamlPropertyIndex_ListViewItemPresenter_RevealBorderThickness = 2012,
    XamlPropertyIndex_UIElement_KeyTipTarget = 2014,
    XamlPropertyIndex_AppBarButtonTemplateSettings_KeyboardAcceleratorTextMinWidth = 2015,
    XamlPropertyIndex_AppBarToggleButtonTemplateSettings_KeyboardAcceleratorTextMinWidth = 2016,
    XamlPropertyIndex_MenuFlyoutItemTemplateSettings_KeyboardAcceleratorTextMinWidth = 2017,
    XamlPropertyIndex_MenuFlyoutItem_TemplateSettings = 2019,
    XamlPropertyIndex_AppBarButton_TemplateSettings = 2021,
    XamlPropertyIndex_AppBarToggleButton_TemplateSettings = 2023,
    XamlPropertyIndex_UIElement_KeyboardAcceleratorPlacementMode = 2028,
    XamlPropertyIndex_MediaTransportControls_IsCompactOverlayButtonVisible = 2032,
    XamlPropertyIndex_MediaTransportControls_IsCompactOverlayEnabled = 2033,
    XamlPropertyIndex_UIElement_KeyboardAcceleratorPlacementTarget = 2061,
    XamlPropertyIndex_UIElement_CenterPoint = 2062,
    XamlPropertyIndex_UIElement_Rotation = 2063,
    XamlPropertyIndex_UIElement_RotationAxis = 2064,
    XamlPropertyIndex_UIElement_Scale = 2065,
    XamlPropertyIndex_UIElement_TransformMatrix = 2066,
    XamlPropertyIndex_UIElement_Translation = 2067,
    XamlPropertyIndex_TextBox_HandwritingView = 2068,
    XamlPropertyIndex_AutomationProperties_HeadingLevel = 2069,
    XamlPropertyIndex_TextBox_IsHandwritingViewEnabled = 2076,
    XamlPropertyIndex_RichEditBox_ContentLinkProviders = 2078,
    XamlPropertyIndex_RichEditBox_ContentLinkBackgroundColor = 2079,
    XamlPropertyIndex_RichEditBox_ContentLinkForegroundColor = 2080,
    XamlPropertyIndex_HandwritingView_AreCandidatesEnabled = 2081,
    XamlPropertyIndex_HandwritingView_IsOpen = 2082,
    XamlPropertyIndex_HandwritingView_PlacementTarget = 2084,
    XamlPropertyIndex_HandwritingView_PlacementAlignment = 2085,
    XamlPropertyIndex_RichEditBox_HandwritingView = 2086,
    XamlPropertyIndex_RichEditBox_IsHandwritingViewEnabled = 2087,
    XamlPropertyIndex_MenuFlyoutItem_KeyboardAcceleratorTextOverride = 2090,
    XamlPropertyIndex_AppBarButton_KeyboardAcceleratorTextOverride = 2091,
    XamlPropertyIndex_AppBarToggleButton_KeyboardAcceleratorTextOverride = 2092,
    XamlPropertyIndex_ContentLink_Background = 2093,
    XamlPropertyIndex_ContentLink_Cursor = 2094,
    XamlPropertyIndex_ContentLink_ElementSoundMode = 2095,
    XamlPropertyIndex_ContentLink_FocusState = 2096,
    XamlPropertyIndex_ContentLink_IsTabStop = 2097,
    XamlPropertyIndex_ContentLink_TabIndex = 2098,
    XamlPropertyIndex_ContentLink_XYFocusDown = 2099,
    XamlPropertyIndex_ContentLink_XYFocusDownNavigationStrategy = 2100,
    XamlPropertyIndex_ContentLink_XYFocusLeft = 2101,
    XamlPropertyIndex_ContentLink_XYFocusLeftNavigationStrategy = 2102,
    XamlPropertyIndex_ContentLink_XYFocusRight = 2103,
    XamlPropertyIndex_ContentLink_XYFocusRightNavigationStrategy = 2104,
    XamlPropertyIndex_ContentLink_XYFocusUp = 2105,
    XamlPropertyIndex_ContentLink_XYFocusUpNavigationStrategy = 2106,
    XamlPropertyIndex_IconSource_Foreground = 2112,
    XamlPropertyIndex_BitmapIconSource_ShowAsMonochrome = 2113,
    XamlPropertyIndex_BitmapIconSource_UriSource = 2114,
    XamlPropertyIndex_FontIconSource_FontFamily = 2115,
    XamlPropertyIndex_FontIconSource_FontSize = 2116,
    XamlPropertyIndex_FontIconSource_FontStyle = 2117,
    XamlPropertyIndex_FontIconSource_FontWeight = 2118,
    XamlPropertyIndex_FontIconSource_Glyph = 2119,
    XamlPropertyIndex_FontIconSource_IsTextScaleFactorEnabled = 2120,
    XamlPropertyIndex_FontIconSource_MirroredWhenRightToLeft = 2121,
    XamlPropertyIndex_PathIconSource_Data = 2122,
    XamlPropertyIndex_SymbolIconSource_Symbol = 2123,
    XamlPropertyIndex_UIElement_Shadow = 2130,
    XamlPropertyIndex_IconSourceElement_IconSource = 2131,
    XamlPropertyIndex_PasswordBox_CanPasteClipboardContent = 2137,
    XamlPropertyIndex_TextBox_CanPasteClipboardContent = 2138,
    XamlPropertyIndex_TextBox_CanRedo = 2139,
    XamlPropertyIndex_TextBox_CanUndo = 2140,
    XamlPropertyIndex_FlyoutBase_ShowMode = 2141,
    XamlPropertyIndex_FlyoutBase_Target = 2142,
    XamlPropertyIndex_Control_CornerRadius = 2143,
    XamlPropertyIndex_AutomationProperties_IsDialog = 2149,
    XamlPropertyIndex_AppBarElementContainer_DynamicOverflowOrder = 2150,
    XamlPropertyIndex_AppBarElementContainer_IsCompact = 2151,
    XamlPropertyIndex_AppBarElementContainer_IsInOverflow = 2152,
    XamlPropertyIndex_ScrollContentPresenter_CanContentRenderOutsideBounds = 2157,
    XamlPropertyIndex_ScrollViewer_CanContentRenderOutsideBounds = 2158,
    XamlPropertyIndex_RichEditBox_SelectionFlyout = 2159,
    XamlPropertyIndex_TextBox_SelectionFlyout = 2160,
    XamlPropertyIndex_Border_BackgroundSizing = 2161,
    XamlPropertyIndex_ContentPresenter_BackgroundSizing = 2162,
    XamlPropertyIndex_Control_BackgroundSizing = 2163,
    XamlPropertyIndex_Grid_BackgroundSizing = 2164,
    XamlPropertyIndex_RelativePanel_BackgroundSizing = 2165,
    XamlPropertyIndex_StackPanel_BackgroundSizing = 2166,
    XamlPropertyIndex_ScrollViewer_HorizontalAnchorRatio = 2170,
    XamlPropertyIndex_ScrollViewer_VerticalAnchorRatio = 2171,
    XamlPropertyIndex_ComboBox_Text = 2208,
    XamlPropertyIndex_TextBox_Description = 2217,
    XamlPropertyIndex_ToolTip_PlacementRect = 2218,
    XamlPropertyIndex_RichTextBlock_SelectionFlyout = 2219,
    XamlPropertyIndex_TextBlock_SelectionFlyout = 2220,
    XamlPropertyIndex_PasswordBox_SelectionFlyout = 2221,
    XamlPropertyIndex_Border_BackgroundTransition = 2222,
    XamlPropertyIndex_ContentPresenter_BackgroundTransition = 2223,
    XamlPropertyIndex_Panel_BackgroundTransition = 2224,
    XamlPropertyIndex_ColorPaletteResources_Accent = 2227,
    XamlPropertyIndex_ColorPaletteResources_AltHigh = 2228,
    XamlPropertyIndex_ColorPaletteResources_AltLow = 2229,
    XamlPropertyIndex_ColorPaletteResources_AltMedium = 2230,
    XamlPropertyIndex_ColorPaletteResources_AltMediumHigh = 2231,
    XamlPropertyIndex_ColorPaletteResources_AltMediumLow = 2232,
    XamlPropertyIndex_ColorPaletteResources_BaseHigh = 2233,
    XamlPropertyIndex_ColorPaletteResources_BaseLow = 2234,
    XamlPropertyIndex_ColorPaletteResources_BaseMedium = 2235,
    XamlPropertyIndex_ColorPaletteResources_BaseMediumHigh = 2236,
    XamlPropertyIndex_ColorPaletteResources_BaseMediumLow = 2237,
    XamlPropertyIndex_ColorPaletteResources_ChromeAltLow = 2238,
    XamlPropertyIndex_ColorPaletteResources_ChromeBlackHigh = 2239,
    XamlPropertyIndex_ColorPaletteResources_ChromeBlackLow = 2240,
    XamlPropertyIndex_ColorPaletteResources_ChromeBlackMedium = 2241,
    XamlPropertyIndex_ColorPaletteResources_ChromeBlackMediumLow = 2242,
    XamlPropertyIndex_ColorPaletteResources_ChromeDisabledHigh = 2243,
    XamlPropertyIndex_ColorPaletteResources_ChromeDisabledLow = 2244,
    XamlPropertyIndex_ColorPaletteResources_ChromeGray = 2245,
    XamlPropertyIndex_ColorPaletteResources_ChromeHigh = 2246,
    XamlPropertyIndex_ColorPaletteResources_ChromeLow = 2247,
    XamlPropertyIndex_ColorPaletteResources_ChromeMedium = 2248,
    XamlPropertyIndex_ColorPaletteResources_ChromeMediumLow = 2249,
    XamlPropertyIndex_ColorPaletteResources_ChromeWhite = 2250,
    XamlPropertyIndex_ColorPaletteResources_ErrorText = 2252,
    XamlPropertyIndex_ColorPaletteResources_ListLow = 2253,
    XamlPropertyIndex_ColorPaletteResources_ListMedium = 2254,
    XamlPropertyIndex_UIElement_TranslationTransition = 2255,
    XamlPropertyIndex_UIElement_OpacityTransition = 2256,
    XamlPropertyIndex_UIElement_RotationTransition = 2257,
    XamlPropertyIndex_UIElement_ScaleTransition = 2258,
    XamlPropertyIndex_BrushTransition_Duration = 2261,
    XamlPropertyIndex_ScalarTransition_Duration = 2262,
    XamlPropertyIndex_Vector3Transition_Duration = 2263,
    XamlPropertyIndex_Vector3Transition_Components = 2266,
    XamlPropertyIndex_FlyoutBase_IsOpen = 2267,
    XamlPropertyIndex_StandardUICommand_Kind = 2275,
    XamlPropertyIndex_UIElement_CanBeScrollAnchor = 2276,
    XamlPropertyIndex_ThemeShadow_Receivers = 2279,
    XamlPropertyIndex_ScrollContentPresenter_SizesContentToTemplatedParent = 2280,
    XamlPropertyIndex_ComboBox_TextBoxStyle = 2281,
    XamlPropertyIndex_Frame_IsNavigationStackEnabled = 2282,
    XamlPropertyIndex_RichEditBox_ProofingMenuFlyout = 2283,
    XamlPropertyIndex_TextBox_ProofingMenuFlyout = 2284,
    XamlPropertyIndex_ScrollViewer_ReduceViewportForCoreInputViewOcclusions = 2295,
    XamlPropertyIndex_FlyoutBase_AreOpenCloseAnimationsEnabled = 2296,
    XamlPropertyIndex_FlyoutBase_InputDevicePrefersPrimaryCommands = 2297,
    XamlPropertyIndex_CalendarDatePicker_Description = 2300,
    XamlPropertyIndex_PasswordBox_Description = 2308,
    XamlPropertyIndex_RichEditBox_Description = 2316,
    XamlPropertyIndex_AutoSuggestBox_Description = 2331,
    XamlPropertyIndex_ComboBox_Description = 2339,
    XamlPropertyIndex_XamlUICommand_AccessKey = 2347,
    XamlPropertyIndex_XamlUICommand_Command = 2348,
    XamlPropertyIndex_XamlUICommand_Description = 2349,
    XamlPropertyIndex_XamlUICommand_IconSource = 2350,
    XamlPropertyIndex_XamlUICommand_KeyboardAccelerators = 2351,
    XamlPropertyIndex_XamlUICommand_Label = 2352,
    XamlPropertyIndex_DatePicker_SelectedDate = 2355,
    XamlPropertyIndex_TimePicker_SelectedTime = 2356,
    XamlPropertyIndex_AppBarTemplateSettings_NegativeCompactVerticalDelta = 2367,
    XamlPropertyIndex_AppBarTemplateSettings_NegativeHiddenVerticalDelta = 2368,
    XamlPropertyIndex_AppBarTemplateSettings_NegativeMinimalVerticalDelta = 2369,
    XamlPropertyIndex_FlyoutBase_ShouldConstrainToRootBounds = 2378,
    XamlPropertyIndex_Popup_ShouldConstrainToRootBounds = 2379,
    XamlPropertyIndex_FlyoutPresenter_IsDefaultShadowEnabled = 2380,
    XamlPropertyIndex_MenuFlyoutPresenter_IsDefaultShadowEnabled = 2381,
    XamlPropertyIndex_UIElement_ActualOffset = 2382,
    XamlPropertyIndex_UIElement_ActualSize = 2383,
    XamlPropertyIndex_CommandBarTemplateSettings_OverflowContentCompactYTranslation = 2384,
    XamlPropertyIndex_CommandBarTemplateSettings_OverflowContentHiddenYTranslation = 2385,
    XamlPropertyIndex_CommandBarTemplateSettings_OverflowContentMinimalYTranslation = 2386,
    XamlPropertyIndex_HandwritingView_IsCommandBarOpen = 2395,
    XamlPropertyIndex_HandwritingView_IsSwitchToKeyboardEnabled = 2396,
    XamlPropertyIndex_ListViewItemPresenter_SelectionIndicatorVisualEnabled = 2399,
    XamlPropertyIndex_ListViewItemPresenter_SelectionIndicatorBrush = 2400,
    XamlPropertyIndex_ListViewItemPresenter_SelectionIndicatorMode = 2401,
    XamlPropertyIndex_ListViewItemPresenter_SelectionIndicatorPointerOverBrush = 2402,
    XamlPropertyIndex_ListViewItemPresenter_SelectionIndicatorPressedBrush = 2403,
    XamlPropertyIndex_ListViewItemPresenter_SelectedBorderBrush = 2410,
    XamlPropertyIndex_ListViewItemPresenter_SelectedInnerBorderBrush = 2411,
    XamlPropertyIndex_ListViewItemPresenter_CheckBoxCornerRadius = 2412,
    XamlPropertyIndex_ListViewItemPresenter_SelectionIndicatorCornerRadius = 2413,
    XamlPropertyIndex_ListViewItemPresenter_SelectedDisabledBorderBrush = 2414,
    XamlPropertyIndex_ListViewItemPresenter_SelectedPressedBorderBrush = 2415,
    XamlPropertyIndex_ListViewItemPresenter_SelectedDisabledBackground = 2416,
    XamlPropertyIndex_ListViewItemPresenter_PointerOverBorderBrush = 2417,
    XamlPropertyIndex_ListViewItemPresenter_CheckBoxPointerOverBrush = 2418,
    XamlPropertyIndex_ListViewItemPresenter_CheckBoxPressedBrush = 2419,
    XamlPropertyIndex_ListViewItemPresenter_CheckDisabledBrush = 2420,
    XamlPropertyIndex_ListViewItemPresenter_CheckPressedBrush = 2421,
    XamlPropertyIndex_ListViewItemPresenter_CheckBoxBorderBrush = 2422,
    XamlPropertyIndex_ListViewItemPresenter_CheckBoxDisabledBorderBrush = 2423,
    XamlPropertyIndex_ListViewItemPresenter_CheckBoxPressedBorderBrush = 2424,
    XamlPropertyIndex_ListViewItemPresenter_CheckBoxDisabledBrush = 2425,
    XamlPropertyIndex_ListViewItemPresenter_CheckBoxSelectedBrush = 2426,
    XamlPropertyIndex_ListViewItemPresenter_CheckBoxSelectedDisabledBrush = 2427,
    XamlPropertyIndex_ListViewItemPresenter_CheckBoxSelectedPointerOverBrush = 2428,
    XamlPropertyIndex_ListViewItemPresenter_CheckBoxSelectedPressedBrush = 2429,
    XamlPropertyIndex_ListViewItemPresenter_CheckBoxPointerOverBorderBrush = 2430,
    XamlPropertyIndex_ListViewItemPresenter_SelectionIndicatorDisabledBrush = 2431,
    XamlPropertyIndex_CalendarView_BlackoutBackground = 2432,
    XamlPropertyIndex_CalendarView_BlackoutStrikethroughBrush = 2433,
    XamlPropertyIndex_CalendarView_CalendarItemCornerRadius = 2434,
    XamlPropertyIndex_CalendarView_CalendarItemDisabledBackground = 2435,
    XamlPropertyIndex_CalendarView_CalendarItemHoverBackground = 2436,
    XamlPropertyIndex_CalendarView_CalendarItemPressedBackground = 2437,
    XamlPropertyIndex_CalendarView_DayItemMargin = 2438,
    XamlPropertyIndex_CalendarView_FirstOfMonthLabelMargin = 2439,
    XamlPropertyIndex_CalendarView_FirstOfYearDecadeLabelMargin = 2440,
    XamlPropertyIndex_CalendarView_MonthYearItemMargin = 2441,
    XamlPropertyIndex_CalendarView_OutOfScopeHoverForeground = 2442,
    XamlPropertyIndex_CalendarView_OutOfScopePressedForeground = 2443,
    XamlPropertyIndex_CalendarView_SelectedDisabledBorderBrush = 2444,
    XamlPropertyIndex_CalendarView_SelectedDisabledForeground = 2445,
    XamlPropertyIndex_CalendarView_SelectedHoverForeground = 2446,
    XamlPropertyIndex_CalendarView_SelectedPressedForeground = 2447,
    XamlPropertyIndex_CalendarView_TodayBlackoutForeground = 2448,
    XamlPropertyIndex_CalendarView_TodayDisabledBackground = 2449,
    XamlPropertyIndex_CalendarView_TodayHoverBackground = 2450,
    XamlPropertyIndex_CalendarView_TodayPressedBackground = 2451,
    XamlPropertyIndex_Popup_ActualPlacement = 2452,
    XamlPropertyIndex_Popup_DesiredPlacement = 2453,
    XamlPropertyIndex_Popup_PlacementTarget = 2454,
    XamlPropertyIndex_AutomationProperties_AutomationControlType = 2455,
};
%ProgramFiles(x86)%\Windows Kits\10\Include\10.0.26100.0\winrt\windows.ui.xaml.core.direct.h(3225,0)
  • REVERSE(If defined(__cplusplus) && !defined(CINTERFACE))
  • If WINDOWS_UI_XAML_CORE_DIRECT_XAMLDIRECTCONTRACT_VERSION >= 0x10000
  • If WINDOWS_UI_XAML_CORE_DIRECT_XAMLDIRECTCONTRACT_VERSION >= 0x50000
  • If WINDOWS_UI_XAML_CORE_DIRECT_XAMLDIRECTCONTRACT_VERSION >= 0x20000
  • If WINDOWS_UI_XAML_CORE_DIRECT_XAMLDIRECTCONTRACT_VERSION >= 0x30000
  • If WINDOWS_UI_XAML_CORE_DIRECT_XAMLDIRECTCONTRACT_VERSION >= 0x40000
68 0.026330438 XamlPropertyIndex Enum
enum XamlPropertyIndex
                    {
                        AutomationProperties_AcceleratorKey                                   = 5,
                        AutomationProperties_AccessibilityView                                = 6,
                        AutomationProperties_AccessKey                                        = 7,
                        AutomationProperties_AutomationId                                     = 8,
                        AutomationProperties_ControlledPeers                                  = 9,
                        AutomationProperties_HelpText                                         = 10,
                        AutomationProperties_IsRequiredForForm                                = 11,
                        AutomationProperties_ItemStatus                                       = 12,
                        AutomationProperties_ItemType                                         = 13,
                        AutomationProperties_LabeledBy                                        = 14,
                        AutomationProperties_LiveSetting                                      = 15,
                        AutomationProperties_Name                                             = 16,
                        ToolTipService_Placement                                              = 24,
                        ToolTipService_PlacementTarget                                        = 25,
                        ToolTipService_ToolTip                                                = 26,
                        Typography_AnnotationAlternates                                       = 28,
                        Typography_Capitals                                                   = 29,
                        Typography_CapitalSpacing                                             = 30,
                        Typography_CaseSensitiveForms                                         = 31,
                        Typography_ContextualAlternates                                       = 32,
                        Typography_ContextualLigatures                                        = 33,
                        Typography_ContextualSwashes                                          = 34,
                        Typography_DiscretionaryLigatures                                     = 35,
                        Typography_EastAsianExpertForms                                       = 36,
                        Typography_EastAsianLanguage                                          = 37,
                        Typography_EastAsianWidths                                            = 38,
                        Typography_Fraction                                                   = 39,
                        Typography_HistoricalForms                                            = 40,
                        Typography_HistoricalLigatures                                        = 41,
                        Typography_Kerning                                                    = 42,
                        Typography_MathematicalGreek                                          = 43,
                        Typography_NumeralAlignment                                           = 44,
                        Typography_NumeralStyle                                               = 45,
                        Typography_SlashedZero                                                = 46,
                        Typography_StandardLigatures                                          = 47,
                        Typography_StandardSwashes                                            = 48,
                        Typography_StylisticAlternates                                        = 49,
                        Typography_StylisticSet1                                              = 50,
                        Typography_StylisticSet10                                             = 51,
                        Typography_StylisticSet11                                             = 52,
                        Typography_StylisticSet12                                             = 53,
                        Typography_StylisticSet13                                             = 54,
                        Typography_StylisticSet14                                             = 55,
                        Typography_StylisticSet15                                             = 56,
                        Typography_StylisticSet16                                             = 57,
                        Typography_StylisticSet17                                             = 58,
                        Typography_StylisticSet18                                             = 59,
                        Typography_StylisticSet19                                             = 60,
                        Typography_StylisticSet2                                              = 61,
                        Typography_StylisticSet20                                             = 62,
                        Typography_StylisticSet3                                              = 63,
                        Typography_StylisticSet4                                              = 64,
                        Typography_StylisticSet5                                              = 65,
                        Typography_StylisticSet6                                              = 66,
                        Typography_StylisticSet7                                              = 67,
                        Typography_StylisticSet8                                              = 68,
                        Typography_StylisticSet9                                              = 69,
                        Typography_Variants                                                   = 70,
                        AutomationPeer_EventsSource                                           = 75,
                        AutoSuggestBoxSuggestionChosenEventArgs_SelectedItem                  = 76,
                        AutoSuggestBoxTextChangedEventArgs_Reason                             = 77,
                        Brush_Opacity                                                         = 78,
                        Brush_RelativeTransform                                               = 79,
                        Brush_Transform                                                       = 80,
                        CollectionViewSource_IsSourceGrouped                                  = 81,
                        CollectionViewSource_ItemsPath                                        = 82,
                        CollectionViewSource_Source                                           = 83,
                        CollectionViewSource_View                                             = 84,
                        ColorKeyFrame_KeyTime                                                 = 90,
                        ColorKeyFrame_Value                                                   = 91,
                        ColumnDefinition_ActualWidth                                          = 92,
                        ColumnDefinition_MaxWidth                                             = 93,
                        ColumnDefinition_MinWidth                                             = 94,
                        ColumnDefinition_Width                                                = 95,
                        ComboBoxTemplateSettings_DropDownClosedHeight                         = 96,
                        ComboBoxTemplateSettings_DropDownOffset                               = 97,
                        ComboBoxTemplateSettings_DropDownOpenedHeight                         = 98,
                        ComboBoxTemplateSettings_SelectedItemDirection                        = 99,
                        DoubleKeyFrame_KeyTime                                                = 107,
                        DoubleKeyFrame_Value                                                  = 108,
                        EasingFunctionBase_EasingMode                                         = 111,
                        FlyoutBase_AttachedFlyout                                             = 114,
                        FlyoutBase_Placement                                                  = 115,
                        Geometry_Bounds                                                       = 118,
                        Geometry_Transform                                                    = 119,
                        GradientStop_Color                                                    = 120,
                        GradientStop_Offset                                                   = 121,
                        GroupStyle_ContainerStyle                                             = 124,
                        GroupStyle_ContainerStyleSelector                                     = 125,
                        GroupStyle_HeaderContainerStyle                                       = 126,
                        GroupStyle_HeaderTemplate                                             = 127,
                        GroupStyle_HeaderTemplateSelector                                     = 128,
                        GroupStyle_HidesIfEmpty                                               = 129,
                        GroupStyle_Panel                                                      = 130,
                        InertiaExpansionBehavior_DesiredDeceleration                          = 144,
                        InertiaExpansionBehavior_DesiredExpansion                             = 145,
                        InertiaRotationBehavior_DesiredDeceleration                           = 146,
                        InertiaRotationBehavior_DesiredRotation                               = 147,
                        InertiaTranslationBehavior_DesiredDeceleration                        = 148,
                        InertiaTranslationBehavior_DesiredDisplacement                        = 149,
                        InputScope_Names                                                      = 150,
                        InputScopeName_NameValue                                              = 151,
                        KeySpline_ControlPoint1                                               = 153,
                        KeySpline_ControlPoint2                                               = 154,
                        ManipulationPivot_Center                                              = 159,
                        ManipulationPivot_Radius                                              = 160,
                        ObjectKeyFrame_KeyTime                                                = 183,
                        ObjectKeyFrame_Value                                                  = 184,
                        PageStackEntry_SourcePageType                                         = 185,
                        PathFigure_IsClosed                                                   = 192,
                        PathFigure_IsFilled                                                   = 193,
                        PathFigure_Segments                                                   = 194,
                        PathFigure_StartPoint                                                 = 195,
                        Pointer_IsInContact                                                   = 199,
                        Pointer_IsInRange                                                     = 200,
                        Pointer_PointerDeviceType                                             = 201,
                        Pointer_PointerId                                                     = 202,
                        PointKeyFrame_KeyTime                                                 = 205,
                        PointKeyFrame_Value                                                   = 206,
                        PrintDocument_DocumentSource                                          = 209,
                        ProgressBarTemplateSettings_ContainerAnimationEndPosition             = 211,
                        ProgressBarTemplateSettings_ContainerAnimationStartPosition           = 212,
                        ProgressBarTemplateSettings_EllipseAnimationEndPosition               = 213,
                        ProgressBarTemplateSettings_EllipseAnimationWellPosition              = 214,
                        ProgressBarTemplateSettings_EllipseDiameter                           = 215,
                        ProgressBarTemplateSettings_EllipseOffset                             = 216,
                        ProgressBarTemplateSettings_IndicatorLengthDelta                      = 217,
                        ProgressRingTemplateSettings_EllipseDiameter                          = 218,
                        ProgressRingTemplateSettings_EllipseOffset                            = 219,
                        ProgressRingTemplateSettings_MaxSideLength                            = 220,
                        PropertyPath_Path                                                     = 221,
                        RowDefinition_ActualHeight                                            = 226,
                        RowDefinition_Height                                                  = 227,
                        RowDefinition_MaxHeight                                               = 228,
                        RowDefinition_MinHeight                                               = 229,
                        SetterBase_IsSealed                                                   = 233,
                        SettingsFlyoutTemplateSettings_BorderBrush                            = 234,
                        SettingsFlyoutTemplateSettings_BorderThickness                        = 235,
                        SettingsFlyoutTemplateSettings_ContentTransitions                     = 236,
                        SettingsFlyoutTemplateSettings_HeaderBackground                       = 237,
                        SettingsFlyoutTemplateSettings_HeaderForeground                       = 238,
                        SettingsFlyoutTemplateSettings_IconSource                             = 239,
                        Style_BasedOn                                                         = 244,
                        Style_IsSealed                                                        = 245,
                        Style_Setters                                                         = 246,
                        Style_TargetType                                                      = 247,
                        TextElement_CharacterSpacing                                          = 249,
                        TextElement_FontFamily                                                = 250,
                        TextElement_FontSize                                                  = 251,
                        TextElement_FontStretch                                               = 252,
                        TextElement_FontStyle                                                 = 253,
                        TextElement_FontWeight                                                = 254,
                        TextElement_Foreground                                                = 255,
                        TextElement_IsTextScaleFactorEnabled                                  = 256,
                        TextElement_Language                                                  = 257,
                        Timeline_AutoReverse                                                  = 263,
                        Timeline_BeginTime                                                    = 264,
                        Timeline_Duration                                                     = 265,
                        Timeline_FillBehavior                                                 = 266,
                        Timeline_RepeatBehavior                                               = 267,
                        Timeline_SpeedRatio                                                   = 268,
                        TimelineMarker_Text                                                   = 269,
                        TimelineMarker_Time                                                   = 270,
                        TimelineMarker_Type                                                   = 271,
                        ToggleSwitchTemplateSettings_CurtainCurrentToOffOffset                = 273,
                        ToggleSwitchTemplateSettings_CurtainCurrentToOnOffset                 = 274,
                        ToggleSwitchTemplateSettings_CurtainOffToOnOffset                     = 275,
                        ToggleSwitchTemplateSettings_CurtainOnToOffOffset                     = 276,
                        ToggleSwitchTemplateSettings_KnobCurrentToOffOffset                   = 277,
                        ToggleSwitchTemplateSettings_KnobCurrentToOnOffset                    = 278,
                        ToggleSwitchTemplateSettings_KnobOffToOnOffset                        = 279,
                        ToggleSwitchTemplateSettings_KnobOnToOffOffset                        = 280,
                        ToolTipTemplateSettings_FromHorizontalOffset                          = 281,
                        ToolTipTemplateSettings_FromVerticalOffset                            = 282,
                        UIElement_AllowDrop                                                   = 292,
                        UIElement_CacheMode                                                   = 293,
                        UIElement_Clip                                                        = 295,
                        UIElement_CompositeMode                                               = 296,
                        UIElement_IsDoubleTapEnabled                                          = 297,
                        UIElement_IsHitTestVisible                                            = 298,
                        UIElement_IsHoldingEnabled                                            = 299,
                        UIElement_IsRightTapEnabled                                           = 300,
                        UIElement_IsTapEnabled                                                = 301,
                        UIElement_ManipulationMode                                            = 302,
                        UIElement_Opacity                                                     = 303,
                        UIElement_PointerCaptures                                             = 304,
                        UIElement_Projection                                                  = 305,
                        UIElement_RenderSize                                                  = 306,
                        UIElement_RenderTransform                                             = 307,
                        UIElement_RenderTransformOrigin                                       = 308,
                        UIElement_Transitions                                                 = 309,
                        UIElement_UseLayoutRounding                                           = 311,
                        UIElement_Visibility                                                  = 312,
                        VisualState_Storyboard                                                = 322,
                        VisualStateGroup_States                                               = 323,
                        VisualStateGroup_Transitions                                          = 324,
                        VisualStateManager_CustomVisualStateManager                           = 325,
                        VisualStateManager_VisualStateGroups                                  = 326,
                        VisualTransition_From                                                 = 327,
                        VisualTransition_GeneratedDuration                                    = 328,
                        VisualTransition_GeneratedEasingFunction                              = 329,
                        VisualTransition_Storyboard                                           = 330,
                        VisualTransition_To                                                   = 331,
                        ArcSegment_IsLargeArc                                                 = 332,
                        ArcSegment_Point                                                      = 333,
                        ArcSegment_RotationAngle                                              = 334,
                        ArcSegment_Size                                                       = 335,
                        ArcSegment_SweepDirection                                             = 336,
                        BackEase_Amplitude                                                    = 337,
                        BeginStoryboard_Storyboard                                            = 338,
                        BezierSegment_Point1                                                  = 339,
                        BezierSegment_Point2                                                  = 340,
                        BezierSegment_Point3                                                  = 341,
                        BitmapSource_PixelHeight                                              = 342,
                        BitmapSource_PixelWidth                                               = 343,
                        Block_LineHeight                                                      = 344,
                        Block_LineStackingStrategy                                            = 345,
                        Block_Margin                                                          = 346,
                        Block_TextAlignment                                                   = 347,
                        BounceEase_Bounces                                                    = 348,
                        BounceEase_Bounciness                                                 = 349,
                        ColorAnimation_By                                                     = 350,
                        ColorAnimation_EasingFunction                                         = 351,
                        ColorAnimation_EnableDependentAnimation                               = 352,
                        ColorAnimation_From                                                   = 353,
                        ColorAnimation_To                                                     = 354,
                        ColorAnimationUsingKeyFrames_EnableDependentAnimation                 = 355,
                        ColorAnimationUsingKeyFrames_KeyFrames                                = 356,
                        ContentThemeTransition_HorizontalOffset                               = 357,
                        ContentThemeTransition_VerticalOffset                                 = 358,
                        ControlTemplate_TargetType                                            = 359,
                        DispatcherTimer_Interval                                              = 362,
                        DoubleAnimation_By                                                    = 363,
                        DoubleAnimation_EasingFunction                                        = 364,
                        DoubleAnimation_EnableDependentAnimation                              = 365,
                        DoubleAnimation_From                                                  = 366,
                        DoubleAnimation_To                                                    = 367,
                        DoubleAnimationUsingKeyFrames_EnableDependentAnimation                = 368,
                        DoubleAnimationUsingKeyFrames_KeyFrames                               = 369,
                        EasingColorKeyFrame_EasingFunction                                    = 372,
                        EasingDoubleKeyFrame_EasingFunction                                   = 373,
                        EasingPointKeyFrame_EasingFunction                                    = 374,
                        EdgeUIThemeTransition_Edge                                            = 375,
                        ElasticEase_Oscillations                                              = 376,
                        ElasticEase_Springiness                                               = 377,
                        EllipseGeometry_Center                                                = 378,
                        EllipseGeometry_RadiusX                                               = 379,
                        EllipseGeometry_RadiusY                                               = 380,
                        EntranceThemeTransition_FromHorizontalOffset                          = 381,
                        EntranceThemeTransition_FromVerticalOffset                            = 382,
                        EntranceThemeTransition_IsStaggeringEnabled                           = 383,
                        EventTrigger_Actions                                                  = 384,
                        EventTrigger_RoutedEvent                                              = 385,
                        ExponentialEase_Exponent                                              = 386,
                        Flyout_Content                                                        = 387,
                        Flyout_FlyoutPresenterStyle                                           = 388,
                        FrameworkElement_ActualHeight                                         = 389,
                        FrameworkElement_ActualWidth                                          = 390,
                        FrameworkElement_DataContext                                          = 391,
                        FrameworkElement_FlowDirection                                        = 392,
                        FrameworkElement_Height                                               = 393,
                        FrameworkElement_HorizontalAlignment                                  = 394,
                        FrameworkElement_Language                                             = 396,
                        FrameworkElement_Margin                                               = 397,
                        FrameworkElement_MaxHeight                                            = 398,
                        FrameworkElement_MaxWidth                                             = 399,
                        FrameworkElement_MinHeight                                            = 400,
                        FrameworkElement_MinWidth                                             = 401,
                        FrameworkElement_Parent                                               = 402,
                        FrameworkElement_RequestedTheme                                       = 403,
                        FrameworkElement_Resources                                            = 404,
                        FrameworkElement_Style                                                = 405,
                        FrameworkElement_Tag                                                  = 406,
                        FrameworkElement_Triggers                                             = 407,
                        FrameworkElement_VerticalAlignment                                    = 408,
                        FrameworkElement_Width                                                = 409,
                        FrameworkElementAutomationPeer_Owner                                  = 410,
                        GeometryGroup_Children                                                = 411,
                        GeometryGroup_FillRule                                                = 412,
                        GradientBrush_ColorInterpolationMode                                  = 413,
                        GradientBrush_GradientStops                                           = 414,
                        GradientBrush_MappingMode                                             = 415,
                        GradientBrush_SpreadMethod                                            = 416,
                        GridViewItemTemplateSettings_DragItemsCount                           = 417,
                        ItemAutomationPeer_Item                                               = 419,
                        ItemAutomationPeer_ItemsControlAutomationPeer                         = 420,
                        LineGeometry_EndPoint                                                 = 422,
                        LineGeometry_StartPoint                                               = 423,
                        LineSegment_Point                                                     = 424,
                        ListViewItemTemplateSettings_DragItemsCount                           = 425,
                        Matrix3DProjection_ProjectionMatrix                                   = 426,
                        MenuFlyout_Items                                                      = 427,
                        MenuFlyout_MenuFlyoutPresenterStyle                                   = 428,
                        ObjectAnimationUsingKeyFrames_EnableDependentAnimation                = 429,
                        ObjectAnimationUsingKeyFrames_KeyFrames                               = 430,
                        PaneThemeTransition_Edge                                              = 431,
                        PathGeometry_Figures                                                  = 432,
                        PathGeometry_FillRule                                                 = 433,
                        PlaneProjection_CenterOfRotationX                                     = 434,
                        PlaneProjection_CenterOfRotationY                                     = 435,
                        PlaneProjection_CenterOfRotationZ                                     = 436,
                        PlaneProjection_GlobalOffsetX                                         = 437,
                        PlaneProjection_GlobalOffsetY                                         = 438,
                        PlaneProjection_GlobalOffsetZ                                         = 439,
                        PlaneProjection_LocalOffsetX                                          = 440,
                        PlaneProjection_LocalOffsetY                                          = 441,
                        PlaneProjection_LocalOffsetZ                                          = 442,
                        PlaneProjection_ProjectionMatrix                                      = 443,
                        PlaneProjection_RotationX                                             = 444,
                        PlaneProjection_RotationY                                             = 445,
                        PlaneProjection_RotationZ                                             = 446,
                        PointAnimation_By                                                     = 447,
                        PointAnimation_EasingFunction                                         = 448,
                        PointAnimation_EnableDependentAnimation                               = 449,
                        PointAnimation_From                                                   = 450,
                        PointAnimation_To                                                     = 451,
                        PointAnimationUsingKeyFrames_EnableDependentAnimation                 = 452,
                        PointAnimationUsingKeyFrames_KeyFrames                                = 453,
                        PolyBezierSegment_Points                                              = 456,
                        PolyLineSegment_Points                                                = 457,
                        PolyQuadraticBezierSegment_Points                                     = 458,
                        PopupThemeTransition_FromHorizontalOffset                             = 459,
                        PopupThemeTransition_FromVerticalOffset                               = 460,
                        PowerEase_Power                                                       = 461,
                        QuadraticBezierSegment_Point1                                         = 466,
                        QuadraticBezierSegment_Point2                                         = 467,
                        RectangleGeometry_Rect                                                = 470,
                        RelativeSource_Mode                                                   = 471,
                        RenderTargetBitmap_PixelHeight                                        = 472,
                        RenderTargetBitmap_PixelWidth                                         = 473,
                        Setter_Property                                                       = 474,
                        Setter_Value                                                          = 475,
                        SolidColorBrush_Color                                                 = 476,
                        SplineColorKeyFrame_KeySpline                                         = 477,
                        SplineDoubleKeyFrame_KeySpline                                        = 478,
                        SplinePointKeyFrame_KeySpline                                         = 479,
                        TileBrush_AlignmentX                                                  = 483,
                        TileBrush_AlignmentY                                                  = 484,
                        TileBrush_Stretch                                                     = 485,
                        Binding_Converter                                                     = 487,
                        Binding_ConverterLanguage                                             = 488,
                        Binding_ConverterParameter                                            = 489,
                        Binding_ElementName                                                   = 490,
                        Binding_FallbackValue                                                 = 491,
                        Binding_Mode                                                          = 492,
                        Binding_Path                                                          = 493,
                        Binding_RelativeSource                                                = 494,
                        Binding_Source                                                        = 495,
                        Binding_TargetNullValue                                               = 496,
                        Binding_UpdateSourceTrigger                                           = 497,
                        BitmapImage_CreateOptions                                             = 498,
                        BitmapImage_DecodePixelHeight                                         = 499,
                        BitmapImage_DecodePixelType                                           = 500,
                        BitmapImage_DecodePixelWidth                                          = 501,
                        BitmapImage_UriSource                                                 = 502,
                        Border_Background                                                     = 503,
                        Border_BorderBrush                                                    = 504,
                        Border_BorderThickness                                                = 505,
                        Border_Child                                                          = 506,
                        Border_ChildTransitions                                               = 507,
                        Border_CornerRadius                                                   = 508,
                        Border_Padding                                                        = 509,
                        CaptureElement_Source                                                 = 510,
                        CaptureElement_Stretch                                                = 511,
                        CompositeTransform_CenterX                                            = 514,
                        CompositeTransform_CenterY                                            = 515,
                        CompositeTransform_Rotation                                           = 516,
                        CompositeTransform_ScaleX                                             = 517,
                        CompositeTransform_ScaleY                                             = 518,
                        CompositeTransform_SkewX                                              = 519,
                        CompositeTransform_SkewY                                              = 520,
                        CompositeTransform_TranslateX                                         = 521,
                        CompositeTransform_TranslateY                                         = 522,
                        ContentPresenter_CharacterSpacing                                     = 523,
                        ContentPresenter_Content                                              = 524,
                        ContentPresenter_ContentTemplate                                      = 525,
                        ContentPresenter_ContentTemplateSelector                              = 526,
                        ContentPresenter_ContentTransitions                                   = 527,
                        ContentPresenter_FontFamily                                           = 528,
                        ContentPresenter_FontSize                                             = 529,
                        ContentPresenter_FontStretch                                          = 530,
                        ContentPresenter_FontStyle                                            = 531,
                        ContentPresenter_FontWeight                                           = 532,
                        ContentPresenter_Foreground                                           = 533,
                        ContentPresenter_IsTextScaleFactorEnabled                             = 534,
                        ContentPresenter_LineStackingStrategy                                 = 535,
                        ContentPresenter_MaxLines                                             = 536,
                        ContentPresenter_OpticalMarginAlignment                               = 537,
                        ContentPresenter_TextLineBounds                                       = 539,
                        ContentPresenter_TextWrapping                                         = 540,
                        Control_Background                                                    = 541,
                        Control_BorderBrush                                                   = 542,
                        Control_BorderThickness                                               = 543,
                        Control_CharacterSpacing                                              = 544,
                        Control_FocusState                                                    = 546,
                        Control_FontFamily                                                    = 547,
                        Control_FontSize                                                      = 548,
                        Control_FontStretch                                                   = 549,
                        Control_FontStyle                                                     = 550,
                        Control_FontWeight                                                    = 551,
                        Control_Foreground                                                    = 552,
                        Control_HorizontalContentAlignment                                    = 553,
                        Control_IsEnabled                                                     = 554,
                        Control_IsTabStop                                                     = 555,
                        Control_IsTextScaleFactorEnabled                                      = 556,
                        Control_Padding                                                       = 557,
                        Control_TabIndex                                                      = 558,
                        Control_TabNavigation                                                 = 559,
                        Control_Template                                                      = 560,
                        Control_VerticalContentAlignment                                      = 561,
                        DragItemThemeAnimation_TargetName                                     = 565,
                        DragOverThemeAnimation_Direction                                      = 566,
                        DragOverThemeAnimation_TargetName                                     = 567,
                        DragOverThemeAnimation_ToOffset                                       = 568,
                        DropTargetItemThemeAnimation_TargetName                               = 569,
                        FadeInThemeAnimation_TargetName                                       = 570,
                        FadeOutThemeAnimation_TargetName                                      = 571,
                        Glyphs_Fill                                                           = 574,
                        Glyphs_FontRenderingEmSize                                            = 575,
                        Glyphs_FontUri                                                        = 576,
                        Glyphs_Indices                                                        = 577,
                        Glyphs_OriginX                                                        = 578,
                        Glyphs_OriginY                                                        = 579,
                        Glyphs_StyleSimulations                                               = 580,
                        Glyphs_UnicodeString                                                  = 581,
                        IconElement_Foreground                                                = 584,
                        Image_NineGrid                                                        = 586,
                        Image_PlayToSource                                                    = 587,
                        Image_Source                                                          = 588,
                        Image_Stretch                                                         = 589,
                        ImageBrush_ImageSource                                                = 591,
                        InlineUIContainer_Child                                               = 592,
                        ItemsPresenter_Footer                                                 = 594,
                        ItemsPresenter_FooterTemplate                                         = 595,
                        ItemsPresenter_FooterTransitions                                      = 596,
                        ItemsPresenter_Header                                                 = 597,
                        ItemsPresenter_HeaderTemplate                                         = 598,
                        ItemsPresenter_HeaderTransitions                                      = 599,
                        ItemsPresenter_Padding                                                = 601,
                        LinearGradientBrush_EndPoint                                          = 602,
                        LinearGradientBrush_StartPoint                                        = 603,
                        MatrixTransform_Matrix                                                = 604,
                        MediaElement_ActualStereo3DVideoPackingMode                           = 605,
                        MediaElement_AreTransportControlsEnabled                              = 606,
                        MediaElement_AspectRatioHeight                                        = 607,
                        MediaElement_AspectRatioWidth                                         = 608,
                        MediaElement_AudioCategory                                            = 609,
                        MediaElement_AudioDeviceType                                          = 610,
                        MediaElement_AudioStreamCount                                         = 611,
                        MediaElement_AudioStreamIndex                                         = 612,
                        MediaElement_AutoPlay                                                 = 613,
                        MediaElement_Balance                                                  = 614,
                        MediaElement_BufferingProgress                                        = 615,
                        MediaElement_CanPause                                                 = 616,
                        MediaElement_CanSeek                                                  = 617,
                        MediaElement_CurrentState                                             = 618,
                        MediaElement_DefaultPlaybackRate                                      = 619,
                        MediaElement_DownloadProgress                                         = 620,
                        MediaElement_DownloadProgressOffset                                   = 621,
                        MediaElement_IsAudioOnly                                              = 623,
                        MediaElement_IsFullWindow                                             = 624,
                        MediaElement_IsLooping                                                = 625,
                        MediaElement_IsMuted                                                  = 626,
                        MediaElement_IsStereo3DVideo                                          = 627,
                        MediaElement_Markers                                                  = 628,
                        MediaElement_NaturalDuration                                          = 629,
                        MediaElement_NaturalVideoHeight                                       = 630,
                        MediaElement_NaturalVideoWidth                                        = 631,
                        MediaElement_PlaybackRate                                             = 632,
                        MediaElement_PlayToPreferredSourceUri                                 = 633,
                        MediaElement_PlayToSource                                             = 634,
                        MediaElement_Position                                                 = 635,
                        MediaElement_PosterSource                                             = 636,
                        MediaElement_ProtectionManager                                        = 637,
                        MediaElement_RealTimePlayback                                         = 638,
                        MediaElement_Source                                                   = 639,
                        MediaElement_Stereo3DVideoPackingMode                                 = 640,
                        MediaElement_Stereo3DVideoRenderMode                                  = 641,
                        MediaElement_Stretch                                                  = 642,
                        MediaElement_TransportControls                                        = 643,
                        MediaElement_Volume                                                   = 644,
                        Panel_Background                                                      = 647,
                        Panel_Children                                                        = 648,
                        Panel_ChildrenTransitions                                             = 649,
                        Panel_IsItemsHost                                                     = 651,
                        Paragraph_Inlines                                                     = 652,
                        Paragraph_TextIndent                                                  = 653,
                        PointerDownThemeAnimation_TargetName                                  = 660,
                        PointerUpThemeAnimation_TargetName                                    = 662,
                        PopInThemeAnimation_FromHorizontalOffset                              = 664,
                        PopInThemeAnimation_FromVerticalOffset                                = 665,
                        PopInThemeAnimation_TargetName                                        = 666,
                        PopOutThemeAnimation_TargetName                                       = 667,
                        Popup_Child                                                           = 668,
                        Popup_ChildTransitions                                                = 669,
                        Popup_HorizontalOffset                                                = 670,
                        Popup_IsLightDismissEnabled                                           = 673,
                        Popup_IsOpen                                                          = 674,
                        Popup_VerticalOffset                                                  = 676,
                        RepositionThemeAnimation_FromHorizontalOffset                         = 683,
                        RepositionThemeAnimation_FromVerticalOffset                           = 684,
                        RepositionThemeAnimation_TargetName                                   = 685,
                        ResourceDictionary_MergedDictionaries                                 = 687,
                        ResourceDictionary_Source                                             = 688,
                        ResourceDictionary_ThemeDictionaries                                  = 689,
                        RichTextBlock_Blocks                                                  = 691,
                        RichTextBlock_CharacterSpacing                                        = 692,
                        RichTextBlock_FontFamily                                              = 693,
                        RichTextBlock_FontSize                                                = 694,
                        RichTextBlock_FontStretch                                             = 695,
                        RichTextBlock_FontStyle                                               = 696,
                        RichTextBlock_FontWeight                                              = 697,
                        RichTextBlock_Foreground                                              = 698,
                        RichTextBlock_HasOverflowContent                                      = 699,
                        RichTextBlock_IsColorFontEnabled                                      = 700,
                        RichTextBlock_IsTextScaleFactorEnabled                                = 701,
                        RichTextBlock_IsTextSelectionEnabled                                  = 702,
                        RichTextBlock_LineHeight                                              = 703,
                        RichTextBlock_LineStackingStrategy                                    = 704,
                        RichTextBlock_MaxLines                                                = 705,
                        RichTextBlock_OpticalMarginAlignment                                  = 706,
                        RichTextBlock_OverflowContentTarget                                   = 707,
                        RichTextBlock_Padding                                                 = 708,
                        RichTextBlock_SelectedText                                            = 709,
                        RichTextBlock_SelectionHighlightColor                                 = 710,
                        RichTextBlock_TextAlignment                                           = 711,
                        RichTextBlock_TextIndent                                              = 712,
                        RichTextBlock_TextLineBounds                                          = 713,
                        RichTextBlock_TextReadingOrder                                        = 714,
                        RichTextBlock_TextTrimming                                            = 715,
                        RichTextBlock_TextWrapping                                            = 716,
                        RichTextBlockOverflow_HasOverflowContent                              = 717,
                        RichTextBlockOverflow_MaxLines                                        = 718,
                        RichTextBlockOverflow_OverflowContentTarget                           = 719,
                        RichTextBlockOverflow_Padding                                         = 720,
                        RotateTransform_Angle                                                 = 721,
                        RotateTransform_CenterX                                               = 722,
                        RotateTransform_CenterY                                               = 723,
                        Run_FlowDirection                                                     = 725,
                        Run_Text                                                              = 726,
                        ScaleTransform_CenterX                                                = 727,
                        ScaleTransform_CenterY                                                = 728,
                        ScaleTransform_ScaleX                                                 = 729,
                        ScaleTransform_ScaleY                                                 = 730,
                        SetterBaseCollection_IsSealed                                         = 732,
                        Shape_Fill                                                            = 733,
                        Shape_GeometryTransform                                               = 734,
                        Shape_Stretch                                                         = 735,
                        Shape_Stroke                                                          = 736,
                        Shape_StrokeDashArray                                                 = 737,
                        Shape_StrokeDashCap                                                   = 738,
                        Shape_StrokeDashOffset                                                = 739,
                        Shape_StrokeEndLineCap                                                = 740,
                        Shape_StrokeLineJoin                                                  = 741,
                        Shape_StrokeMiterLimit                                                = 742,
                        Shape_StrokeStartLineCap                                              = 743,
                        Shape_StrokeThickness                                                 = 744,
                        SkewTransform_AngleX                                                  = 745,
                        SkewTransform_AngleY                                                  = 746,
                        SkewTransform_CenterX                                                 = 747,
                        SkewTransform_CenterY                                                 = 748,
                        Span_Inlines                                                          = 749,
                        SplitCloseThemeAnimation_ClosedLength                                 = 750,
                        SplitCloseThemeAnimation_ClosedTarget                                 = 751,
                        SplitCloseThemeAnimation_ClosedTargetName                             = 752,
                        SplitCloseThemeAnimation_ContentTarget                                = 753,
                        SplitCloseThemeAnimation_ContentTargetName                            = 754,
                        SplitCloseThemeAnimation_ContentTranslationDirection                  = 755,
                        SplitCloseThemeAnimation_ContentTranslationOffset                     = 756,
                        SplitCloseThemeAnimation_OffsetFromCenter                             = 757,
                        SplitCloseThemeAnimation_OpenedLength                                 = 758,
                        SplitCloseThemeAnimation_OpenedTarget                                 = 759,
                        SplitCloseThemeAnimation_OpenedTargetName                             = 760,
                        SplitOpenThemeAnimation_ClosedLength                                  = 761,
                        SplitOpenThemeAnimation_ClosedTarget                                  = 762,
                        SplitOpenThemeAnimation_ClosedTargetName                              = 763,
                        SplitOpenThemeAnimation_ContentTarget                                 = 764,
                        SplitOpenThemeAnimation_ContentTargetName                             = 765,
                        SplitOpenThemeAnimation_ContentTranslationDirection                   = 766,
                        SplitOpenThemeAnimation_ContentTranslationOffset                      = 767,
                        SplitOpenThemeAnimation_OffsetFromCenter                              = 768,
                        SplitOpenThemeAnimation_OpenedLength                                  = 769,
                        SplitOpenThemeAnimation_OpenedTarget                                  = 770,
                        SplitOpenThemeAnimation_OpenedTargetName                              = 771,
                        Storyboard_Children                                                   = 772,
                        Storyboard_TargetName                                                 = 774,
                        Storyboard_TargetProperty                                             = 775,
                        SwipeBackThemeAnimation_FromHorizontalOffset                          = 776,
                        SwipeBackThemeAnimation_FromVerticalOffset                            = 777,
                        SwipeBackThemeAnimation_TargetName                                    = 778,
                        SwipeHintThemeAnimation_TargetName                                    = 779,
                        SwipeHintThemeAnimation_ToHorizontalOffset                            = 780,
                        SwipeHintThemeAnimation_ToVerticalOffset                              = 781,
                        TextBlock_CharacterSpacing                                            = 782,
                        TextBlock_FontFamily                                                  = 783,
                        TextBlock_FontSize                                                    = 784,
                        TextBlock_FontStretch                                                 = 785,
                        TextBlock_FontStyle                                                   = 786,
                        TextBlock_FontWeight                                                  = 787,
                        TextBlock_Foreground                                                  = 788,
                        TextBlock_Inlines                                                     = 789,
                        TextBlock_IsColorFontEnabled                                          = 790,
                        TextBlock_IsTextScaleFactorEnabled                                    = 791,
                        TextBlock_IsTextSelectionEnabled                                      = 792,
                        TextBlock_LineHeight                                                  = 793,
                        TextBlock_LineStackingStrategy                                        = 794,
                        TextBlock_MaxLines                                                    = 795,
                        TextBlock_OpticalMarginAlignment                                      = 796,
                        TextBlock_Padding                                                     = 797,
                        TextBlock_SelectedText                                                = 798,
                        TextBlock_SelectionHighlightColor                                     = 799,
                        TextBlock_Text                                                        = 800,
                        TextBlock_TextAlignment                                               = 801,
                        TextBlock_TextDecorations                                             = 802,
                        TextBlock_TextLineBounds                                              = 803,
                        TextBlock_TextReadingOrder                                            = 804,
                        TextBlock_TextTrimming                                                = 805,
                        TextBlock_TextWrapping                                                = 806,
                        TransformGroup_Children                                               = 811,
                        TransformGroup_Value                                                  = 812,
                        TranslateTransform_X                                                  = 814,
                        TranslateTransform_Y                                                  = 815,
                        Viewbox_Child                                                         = 819,
                        Viewbox_Stretch                                                       = 820,
                        Viewbox_StretchDirection                                              = 821,
                        WebViewBrush_SourceName                                               = 825,
                        AppBarSeparator_IsCompact                                             = 826,
                        BitmapIcon_UriSource                                                  = 827,
                        Canvas_Left                                                           = 828,
                        Canvas_Top                                                            = 829,
                        Canvas_ZIndex                                                         = 830,
                        ContentControl_Content                                                = 832,
                        ContentControl_ContentTemplate                                        = 833,
                        ContentControl_ContentTemplateSelector                                = 834,
                        ContentControl_ContentTransitions                                     = 835,
                        DatePicker_CalendarIdentifier                                         = 837,
                        DatePicker_Date                                                       = 838,
                        DatePicker_DayFormat                                                  = 839,
                        DatePicker_DayVisible                                                 = 840,
                        DatePicker_Header                                                     = 841,
                        DatePicker_HeaderTemplate                                             = 842,
                        DatePicker_MaxYear                                                    = 843,
                        DatePicker_MinYear                                                    = 844,
                        DatePicker_MonthFormat                                                = 845,
                        DatePicker_MonthVisible                                               = 846,
                        DatePicker_Orientation                                                = 847,
                        DatePicker_YearFormat                                                 = 848,
                        DatePicker_YearVisible                                                = 849,
                        FontIcon_FontFamily                                                   = 851,
                        FontIcon_FontSize                                                     = 852,
                        FontIcon_FontStyle                                                    = 853,
                        FontIcon_FontWeight                                                   = 854,
                        FontIcon_Glyph                                                        = 855,
                        FontIcon_IsTextScaleFactorEnabled                                     = 856,
                        Grid_Column                                                           = 857,
                        Grid_ColumnDefinitions                                                = 858,
                        Grid_ColumnSpan                                                       = 859,
                        Grid_Row                                                              = 860,
                        Grid_RowDefinitions                                                   = 861,
                        Grid_RowSpan                                                          = 862,
                        Hub_DefaultSectionIndex                                               = 863,
                        Hub_Header                                                            = 864,
                        Hub_HeaderTemplate                                                    = 865,
                        Hub_IsActiveView                                                      = 866,
                        Hub_IsZoomedInView                                                    = 867,
                        Hub_Orientation                                                       = 868,
                        Hub_SectionHeaders                                                    = 869,
                        Hub_Sections                                                          = 870,
                        Hub_SectionsInView                                                    = 871,
                        Hub_SemanticZoomOwner                                                 = 872,
                        HubSection_ContentTemplate                                            = 873,
                        HubSection_Header                                                     = 874,
                        HubSection_HeaderTemplate                                             = 875,
                        HubSection_IsHeaderInteractive                                        = 876,
                        Hyperlink_NavigateUri                                                 = 877,
                        ItemsControl_DisplayMemberPath                                        = 879,
                        ItemsControl_GroupStyle                                               = 880,
                        ItemsControl_GroupStyleSelector                                       = 881,
                        ItemsControl_IsGrouping                                               = 882,
                        ItemsControl_ItemContainerStyle                                       = 884,
                        ItemsControl_ItemContainerStyleSelector                               = 885,
                        ItemsControl_ItemContainerTransitions                                 = 886,
                        ItemsControl_Items                                                    = 887,
                        ItemsControl_ItemsPanel                                               = 889,
                        ItemsControl_ItemsSource                                              = 890,
                        ItemsControl_ItemTemplate                                             = 891,
                        ItemsControl_ItemTemplateSelector                                     = 892,
                        Line_X1                                                               = 893,
                        Line_X2                                                               = 894,
                        Line_Y1                                                               = 895,
                        Line_Y2                                                               = 896,
                        MediaTransportControls_IsFastForwardButtonVisible                     = 898,
                        MediaTransportControls_IsFastRewindButtonVisible                      = 900,
                        MediaTransportControls_IsFullWindowButtonVisible                      = 902,
                        MediaTransportControls_IsPlaybackRateButtonVisible                    = 904,
                        MediaTransportControls_IsSeekBarVisible                               = 905,
                        MediaTransportControls_IsStopButtonVisible                            = 908,
                        MediaTransportControls_IsVolumeButtonVisible                          = 910,
                        MediaTransportControls_IsZoomButtonVisible                            = 912,
                        PasswordBox_Header                                                    = 913,
                        PasswordBox_HeaderTemplate                                            = 914,
                        PasswordBox_IsPasswordRevealButtonEnabled                             = 915,
                        PasswordBox_MaxLength                                                 = 916,
                        PasswordBox_Password                                                  = 917,
                        PasswordBox_PasswordChar                                              = 918,
                        PasswordBox_PlaceholderText                                           = 919,
                        PasswordBox_PreventKeyboardDisplayOnProgrammaticFocus                 = 920,
                        PasswordBox_SelectionHighlightColor                                   = 921,
                        Path_Data                                                             = 922,
                        PathIcon_Data                                                         = 923,
                        Polygon_FillRule                                                      = 924,
                        Polygon_Points                                                        = 925,
                        Polyline_FillRule                                                     = 926,
                        Polyline_Points                                                       = 927,
                        ProgressRing_IsActive                                                 = 928,
                        ProgressRing_TemplateSettings                                         = 929,
                        RangeBase_LargeChange                                                 = 930,
                        RangeBase_Maximum                                                     = 931,
                        RangeBase_Minimum                                                     = 932,
                        RangeBase_SmallChange                                                 = 933,
                        RangeBase_Value                                                       = 934,
                        Rectangle_RadiusX                                                     = 935,
                        Rectangle_RadiusY                                                     = 936,
                        RichEditBox_AcceptsReturn                                             = 937,
                        RichEditBox_Header                                                    = 938,
                        RichEditBox_HeaderTemplate                                            = 939,
                        RichEditBox_InputScope                                                = 940,
                        RichEditBox_IsColorFontEnabled                                        = 941,
                        RichEditBox_IsReadOnly                                                = 942,
                        RichEditBox_IsSpellCheckEnabled                                       = 943,
                        RichEditBox_IsTextPredictionEnabled                                   = 944,
                        RichEditBox_PlaceholderText                                           = 945,
                        RichEditBox_PreventKeyboardDisplayOnProgrammaticFocus                 = 946,
                        RichEditBox_SelectionHighlightColor                                   = 947,
                        RichEditBox_TextAlignment                                             = 948,
                        RichEditBox_TextWrapping                                              = 949,
                        SearchBox_ChooseSuggestionOnEnter                                     = 950,
                        SearchBox_FocusOnKeyboardInput                                        = 951,
                        SearchBox_PlaceholderText                                             = 952,
                        SearchBox_QueryText                                                   = 953,
                        SearchBox_SearchHistoryContext                                        = 954,
                        SearchBox_SearchHistoryEnabled                                        = 955,
                        SemanticZoom_CanChangeViews                                           = 956,
                        SemanticZoom_IsZoomedInViewActive                                     = 957,
                        SemanticZoom_IsZoomOutButtonEnabled                                   = 958,
                        SemanticZoom_ZoomedInView                                             = 959,
                        SemanticZoom_ZoomedOutView                                            = 960,
                        StackPanel_AreScrollSnapPointsRegular                                 = 961,
                        StackPanel_Orientation                                                = 962,
                        SymbolIcon_Symbol                                                     = 963,
                        TextBox_AcceptsReturn                                                 = 964,
                        TextBox_Header                                                        = 965,
                        TextBox_HeaderTemplate                                                = 966,
                        TextBox_InputScope                                                    = 967,
                        TextBox_IsColorFontEnabled                                            = 968,
                        TextBox_IsReadOnly                                                    = 971,
                        TextBox_IsSpellCheckEnabled                                           = 972,
                        TextBox_IsTextPredictionEnabled                                       = 973,
                        TextBox_MaxLength                                                     = 974,
                        TextBox_PlaceholderText                                               = 975,
                        TextBox_PreventKeyboardDisplayOnProgrammaticFocus                     = 976,
                        TextBox_SelectedText                                                  = 977,
                        TextBox_SelectionHighlightColor                                       = 978,
                        TextBox_SelectionLength                                               = 979,
                        TextBox_SelectionStart                                                = 980,
                        TextBox_Text                                                          = 981,
                        TextBox_TextAlignment                                                 = 982,
                        TextBox_TextWrapping                                                  = 983,
                        Thumb_IsDragging                                                      = 984,
                        TickBar_Fill                                                          = 985,
                        TimePicker_ClockIdentifier                                            = 986,
                        TimePicker_Header                                                     = 987,
                        TimePicker_HeaderTemplate                                             = 988,
                        TimePicker_MinuteIncrement                                            = 989,
                        TimePicker_Time                                                       = 990,
                        ToggleSwitch_Header                                                   = 991,
                        ToggleSwitch_HeaderTemplate                                           = 992,
                        ToggleSwitch_IsOn                                                     = 993,
                        ToggleSwitch_OffContent                                               = 994,
                        ToggleSwitch_OffContentTemplate                                       = 995,
                        ToggleSwitch_OnContent                                                = 996,
                        ToggleSwitch_OnContentTemplate                                        = 997,
                        ToggleSwitch_TemplateSettings                                         = 998,
                        UserControl_Content                                                   = 999,
                        VariableSizedWrapGrid_ColumnSpan                                      = 1000,
                        VariableSizedWrapGrid_HorizontalChildrenAlignment                     = 1001,
                        VariableSizedWrapGrid_ItemHeight                                      = 1002,
                        VariableSizedWrapGrid_ItemWidth                                       = 1003,
                        VariableSizedWrapGrid_MaximumRowsOrColumns                            = 1004,
                        VariableSizedWrapGrid_Orientation                                     = 1005,
                        VariableSizedWrapGrid_RowSpan                                         = 1006,
                        VariableSizedWrapGrid_VerticalChildrenAlignment                       = 1007,
                        WebView_AllowedScriptNotifyUris                                       = 1008,
                        WebView_CanGoBack                                                     = 1009,
                        WebView_CanGoForward                                                  = 1010,
                        WebView_ContainsFullScreenElement                                     = 1011,
                        WebView_DataTransferPackage                                           = 1012,
                        WebView_DefaultBackgroundColor                                        = 1013,
                        WebView_DocumentTitle                                                 = 1014,
                        WebView_Source                                                        = 1015,
                        AppBar_ClosedDisplayMode                                              = 1016,
                        AppBar_IsOpen                                                         = 1017,
                        AppBar_IsSticky                                                       = 1018,
                        AutoSuggestBox_AutoMaximizeSuggestionArea                             = 1019,
                        AutoSuggestBox_Header                                                 = 1020,
                        AutoSuggestBox_IsSuggestionListOpen                                   = 1021,
                        AutoSuggestBox_MaxSuggestionListHeight                                = 1022,
                        AutoSuggestBox_PlaceholderText                                        = 1023,
                        AutoSuggestBox_Text                                                   = 1024,
                        AutoSuggestBox_TextBoxStyle                                           = 1025,
                        AutoSuggestBox_TextMemberPath                                         = 1026,
                        AutoSuggestBox_UpdateTextOnSelect                                     = 1027,
                        ButtonBase_ClickMode                                                  = 1029,
                        ButtonBase_Command                                                    = 1030,
                        ButtonBase_CommandParameter                                           = 1031,
                        ButtonBase_IsPointerOver                                              = 1032,
                        ButtonBase_IsPressed                                                  = 1033,
                        ContentDialog_FullSizeDesired                                         = 1034,
                        ContentDialog_IsPrimaryButtonEnabled                                  = 1035,
                        ContentDialog_IsSecondaryButtonEnabled                                = 1036,
                        ContentDialog_PrimaryButtonCommand                                    = 1037,
                        ContentDialog_PrimaryButtonCommandParameter                           = 1038,
                        ContentDialog_PrimaryButtonText                                       = 1039,
                        ContentDialog_SecondaryButtonCommand                                  = 1040,
                        ContentDialog_SecondaryButtonCommandParameter                         = 1041,
                        ContentDialog_SecondaryButtonText                                     = 1042,
                        ContentDialog_Title                                                   = 1043,
                        ContentDialog_TitleTemplate                                           = 1044,
                        Frame_BackStack                                                       = 1045,
                        Frame_BackStackDepth                                                  = 1046,
                        Frame_CacheSize                                                       = 1047,
                        Frame_CanGoBack                                                       = 1048,
                        Frame_CanGoForward                                                    = 1049,
                        Frame_CurrentSourcePageType                                           = 1050,
                        Frame_ForwardStack                                                    = 1051,
                        Frame_SourcePageType                                                  = 1052,
                        GridViewItemPresenter_CheckBrush                                      = 1053,
                        GridViewItemPresenter_CheckHintBrush                                  = 1054,
                        GridViewItemPresenter_CheckSelectingBrush                             = 1055,
                        GridViewItemPresenter_ContentMargin                                   = 1056,
                        GridViewItemPresenter_DisabledOpacity                                 = 1057,
                        GridViewItemPresenter_DragBackground                                  = 1058,
                        GridViewItemPresenter_DragForeground                                  = 1059,
                        GridViewItemPresenter_DragOpacity                                     = 1060,
                        GridViewItemPresenter_FocusBorderBrush                                = 1061,
                        GridViewItemPresenter_GridViewItemPresenterHorizontalContentAlignment = 1062,
                        GridViewItemPresenter_GridViewItemPresenterPadding                    = 1063,
                        GridViewItemPresenter_PlaceholderBackground                           = 1064,
                        GridViewItemPresenter_PointerOverBackground                           = 1065,
                        GridViewItemPresenter_PointerOverBackgroundMargin                     = 1066,
                        GridViewItemPresenter_ReorderHintOffset                               = 1067,
                        GridViewItemPresenter_SelectedBackground                              = 1068,
                        GridViewItemPresenter_SelectedBorderThickness                         = 1069,
                        GridViewItemPresenter_SelectedForeground                              = 1070,
                        GridViewItemPresenter_SelectedPointerOverBackground                   = 1071,
                        GridViewItemPresenter_SelectedPointerOverBorderBrush                  = 1072,
                        GridViewItemPresenter_SelectionCheckMarkVisualEnabled                 = 1073,
                        GridViewItemPresenter_GridViewItemPresenterVerticalContentAlignment   = 1074,
                        ItemsStackPanel_CacheLength                                           = 1076,
                        ItemsStackPanel_GroupHeaderPlacement                                  = 1077,
                        ItemsStackPanel_GroupPadding                                          = 1078,
                        ItemsStackPanel_ItemsUpdatingScrollMode                               = 1079,
                        ItemsStackPanel_Orientation                                           = 1080,
                        ItemsWrapGrid_CacheLength                                             = 1081,
                        ItemsWrapGrid_GroupHeaderPlacement                                    = 1082,
                        ItemsWrapGrid_GroupPadding                                            = 1083,
                        ItemsWrapGrid_ItemHeight                                              = 1084,
                        ItemsWrapGrid_ItemWidth                                               = 1085,
                        ItemsWrapGrid_MaximumRowsOrColumns                                    = 1086,
                        ItemsWrapGrid_Orientation                                             = 1087,
                        ListViewItemPresenter_CheckBrush                                      = 1088,
                        ListViewItemPresenter_CheckHintBrush                                  = 1089,
                        ListViewItemPresenter_CheckSelectingBrush                             = 1090,
                        ListViewItemPresenter_ContentMargin                                   = 1091,
                        ListViewItemPresenter_DisabledOpacity                                 = 1092,
                        ListViewItemPresenter_DragBackground                                  = 1093,
                        ListViewItemPresenter_DragForeground                                  = 1094,
                        ListViewItemPresenter_DragOpacity                                     = 1095,
                        ListViewItemPresenter_FocusBorderBrush                                = 1096,
                        ListViewItemPresenter_ListViewItemPresenterHorizontalContentAlignment = 1097,
                        ListViewItemPresenter_ListViewItemPresenterPadding                    = 1098,
                        ListViewItemPresenter_PlaceholderBackground                           = 1099,
                        ListViewItemPresenter_PointerOverBackground                           = 1100,
                        ListViewItemPresenter_PointerOverBackgroundMargin                     = 1101,
                        ListViewItemPresenter_ReorderHintOffset                               = 1102,
                        ListViewItemPresenter_SelectedBackground                              = 1103,
                        ListViewItemPresenter_SelectedBorderThickness                         = 1104,
                        ListViewItemPresenter_SelectedForeground                              = 1105,
                        ListViewItemPresenter_SelectedPointerOverBackground                   = 1106,
                        ListViewItemPresenter_SelectedPointerOverBorderBrush                  = 1107,
                        ListViewItemPresenter_SelectionCheckMarkVisualEnabled                 = 1108,
                        ListViewItemPresenter_ListViewItemPresenterVerticalContentAlignment   = 1109,
                        MenuFlyoutItem_Command                                                = 1110,
                        MenuFlyoutItem_CommandParameter                                       = 1111,
                        MenuFlyoutItem_Text                                                   = 1112,
                        Page_BottomAppBar                                                     = 1114,
                        Page_Frame                                                            = 1115,
                        Page_NavigationCacheMode                                              = 1116,
                        Page_TopAppBar                                                        = 1117,
                        ProgressBar_IsIndeterminate                                           = 1118,
                        ProgressBar_ShowError                                                 = 1119,
                        ProgressBar_ShowPaused                                                = 1120,
                        ProgressBar_TemplateSettings                                          = 1121,
                        ScrollBar_IndicatorMode                                               = 1122,
                        ScrollBar_Orientation                                                 = 1123,
                        ScrollBar_ViewportSize                                                = 1124,
                        Selector_IsSynchronizedWithCurrentItem                                = 1126,
                        Selector_SelectedIndex                                                = 1127,
                        Selector_SelectedItem                                                 = 1128,
                        Selector_SelectedValue                                                = 1129,
                        Selector_SelectedValuePath                                            = 1130,
                        SelectorItem_IsSelected                                               = 1131,
                        SettingsFlyout_HeaderBackground                                       = 1132,
                        SettingsFlyout_HeaderForeground                                       = 1133,
                        SettingsFlyout_IconSource                                             = 1134,
                        SettingsFlyout_TemplateSettings                                       = 1135,
                        SettingsFlyout_Title                                                  = 1136,
                        Slider_Header                                                         = 1137,
                        Slider_HeaderTemplate                                                 = 1138,
                        Slider_IntermediateValue                                              = 1139,
                        Slider_IsDirectionReversed                                            = 1140,
                        Slider_IsThumbToolTipEnabled                                          = 1141,
                        Slider_Orientation                                                    = 1142,
                        Slider_SnapsTo                                                        = 1143,
                        Slider_StepFrequency                                                  = 1144,
                        Slider_ThumbToolTipValueConverter                                     = 1145,
                        Slider_TickFrequency                                                  = 1146,
                        Slider_TickPlacement                                                  = 1147,
                        SwapChainPanel_CompositionScaleX                                      = 1148,
                        SwapChainPanel_CompositionScaleY                                      = 1149,
                        ToolTip_HorizontalOffset                                              = 1150,
                        ToolTip_IsOpen                                                        = 1151,
                        ToolTip_Placement                                                     = 1152,
                        ToolTip_PlacementTarget                                               = 1153,
                        ToolTip_TemplateSettings                                              = 1154,
                        ToolTip_VerticalOffset                                                = 1155,
                        Button_Flyout                                                         = 1156,
                        ComboBox_Header                                                       = 1157,
                        ComboBox_HeaderTemplate                                               = 1158,
                        ComboBox_IsDropDownOpen                                               = 1159,
                        ComboBox_IsEditable                                                   = 1160,
                        ComboBox_IsSelectionBoxHighlighted                                    = 1161,
                        ComboBox_MaxDropDownHeight                                            = 1162,
                        ComboBox_PlaceholderText                                              = 1163,
                        ComboBox_SelectionBoxItem                                             = 1164,
                        ComboBox_SelectionBoxItemTemplate                                     = 1165,
                        ComboBox_TemplateSettings                                             = 1166,
                        CommandBar_PrimaryCommands                                            = 1167,
                        CommandBar_SecondaryCommands                                          = 1168,
                        FlipView_UseTouchAnimationsForAllNavigation                           = 1169,
                        HyperlinkButton_NavigateUri                                           = 1170,
                        ListBox_SelectedItems                                                 = 1171,
                        ListBox_SelectionMode                                                 = 1172,
                        ListViewBase_CanDragItems                                             = 1173,
                        ListViewBase_CanReorderItems                                          = 1174,
                        ListViewBase_DataFetchSize                                            = 1175,
                        ListViewBase_Footer                                                   = 1176,
                        ListViewBase_FooterTemplate                                           = 1177,
                        ListViewBase_FooterTransitions                                        = 1178,
                        ListViewBase_Header                                                   = 1179,
                        ListViewBase_HeaderTemplate                                           = 1180,
                        ListViewBase_HeaderTransitions                                        = 1181,
                        ListViewBase_IncrementalLoadingThreshold                              = 1182,
                        ListViewBase_IncrementalLoadingTrigger                                = 1183,
                        ListViewBase_IsActiveView                                             = 1184,
                        ListViewBase_IsItemClickEnabled                                       = 1185,
                        ListViewBase_IsSwipeEnabled                                           = 1186,
                        ListViewBase_IsZoomedInView                                           = 1187,
                        ListViewBase_ReorderMode                                              = 1188,
                        ListViewBase_SelectedItems                                            = 1189,
                        ListViewBase_SelectionMode                                            = 1190,
                        ListViewBase_SemanticZoomOwner                                        = 1191,
                        ListViewBase_ShowsScrollingPlaceholders                               = 1192,
                        RepeatButton_Delay                                                    = 1193,
                        RepeatButton_Interval                                                 = 1194,
                        ScrollViewer_BringIntoViewOnFocusChange                               = 1195,
                        ScrollViewer_ComputedHorizontalScrollBarVisibility                    = 1196,
                        ScrollViewer_ComputedVerticalScrollBarVisibility                      = 1197,
                        ScrollViewer_ExtentHeight                                             = 1198,
                        ScrollViewer_ExtentWidth                                              = 1199,
                        ScrollViewer_HorizontalOffset                                         = 1200,
                        ScrollViewer_HorizontalScrollBarVisibility                            = 1201,
                        ScrollViewer_HorizontalScrollMode                                     = 1202,
                        ScrollViewer_HorizontalSnapPointsAlignment                            = 1203,
                        ScrollViewer_HorizontalSnapPointsType                                 = 1204,
                        ScrollViewer_IsDeferredScrollingEnabled                               = 1205,
                        ScrollViewer_IsHorizontalRailEnabled                                  = 1206,
                        ScrollViewer_IsHorizontalScrollChainingEnabled                        = 1207,
                        ScrollViewer_IsScrollInertiaEnabled                                   = 1208,
                        ScrollViewer_IsVerticalRailEnabled                                    = 1209,
                        ScrollViewer_IsVerticalScrollChainingEnabled                          = 1210,
                        ScrollViewer_IsZoomChainingEnabled                                    = 1211,
                        ScrollViewer_IsZoomInertiaEnabled                                     = 1212,
                        ScrollViewer_LeftHeader                                               = 1213,
                        ScrollViewer_MaxZoomFactor                                            = 1214,
                        ScrollViewer_MinZoomFactor                                            = 1215,
                        ScrollViewer_ScrollableHeight                                         = 1216,
                        ScrollViewer_ScrollableWidth                                          = 1217,
                        ScrollViewer_TopHeader                                                = 1218,
                        ScrollViewer_TopLeftHeader                                            = 1219,
                        ScrollViewer_VerticalOffset                                           = 1220,
                        ScrollViewer_VerticalScrollBarVisibility                              = 1221,
                        ScrollViewer_VerticalScrollMode                                       = 1222,
                        ScrollViewer_VerticalSnapPointsAlignment                              = 1223,
                        ScrollViewer_VerticalSnapPointsType                                   = 1224,
                        ScrollViewer_ViewportHeight                                           = 1225,
                        ScrollViewer_ViewportWidth                                            = 1226,
                        ScrollViewer_ZoomFactor                                               = 1227,
                        ScrollViewer_ZoomMode                                                 = 1228,
                        ScrollViewer_ZoomSnapPoints                                           = 1229,
                        ScrollViewer_ZoomSnapPointsType                                       = 1230,
                        ToggleButton_IsChecked                                                = 1231,
                        ToggleButton_IsThreeState                                             = 1232,
                        ToggleMenuFlyoutItem_IsChecked                                        = 1233,
                        VirtualizingStackPanel_AreScrollSnapPointsRegular                     = 1234,
                        VirtualizingStackPanel_IsVirtualizing                                 = 1236,
                        VirtualizingStackPanel_Orientation                                    = 1237,
                        VirtualizingStackPanel_VirtualizationMode                             = 1238,
                        WrapGrid_HorizontalChildrenAlignment                                  = 1239,
                        WrapGrid_ItemHeight                                                   = 1240,
                        WrapGrid_ItemWidth                                                    = 1241,
                        WrapGrid_MaximumRowsOrColumns                                         = 1242,
                        WrapGrid_Orientation                                                  = 1243,
                        WrapGrid_VerticalChildrenAlignment                                    = 1244,
                        AppBarButton_Icon                                                     = 1245,
                        AppBarButton_IsCompact                                                = 1246,
                        AppBarButton_Label                                                    = 1247,
                        AppBarToggleButton_Icon                                               = 1248,
                        AppBarToggleButton_IsCompact                                          = 1249,
                        AppBarToggleButton_Label                                              = 1250,
                        GridViewItem_TemplateSettings                                         = 1251,
                        ListViewItem_TemplateSettings                                         = 1252,
                        RadioButton_GroupName                                                 = 1253,
                        Glyphs_ColorFontPaletteIndex                                          = 1267,
                        Glyphs_IsColorFontEnabled                                             = 1268,
                        CalendarViewTemplateSettings_HasMoreContentAfter                      = 1274,
                        CalendarViewTemplateSettings_HasMoreContentBefore                     = 1275,
                        CalendarViewTemplateSettings_HasMoreViews                             = 1276,
                        CalendarViewTemplateSettings_HeaderText                               = 1277,
                        CalendarViewTemplateSettings_WeekDay1                                 = 1280,
                        CalendarViewTemplateSettings_WeekDay2                                 = 1281,
                        CalendarViewTemplateSettings_WeekDay3                                 = 1282,
                        CalendarViewTemplateSettings_WeekDay4                                 = 1283,
                        CalendarViewTemplateSettings_WeekDay5                                 = 1284,
                        CalendarViewTemplateSettings_WeekDay6                                 = 1285,
                        CalendarViewTemplateSettings_WeekDay7                                 = 1286,
                        CalendarView_CalendarIdentifier                                       = 1291,
                        CalendarView_DayOfWeekFormat                                          = 1299,
                        CalendarView_DisplayMode                                              = 1302,
                        CalendarView_FirstDayOfWeek                                           = 1303,
                        CalendarView_IsOutOfScopeEnabled                                      = 1317,
                        CalendarView_IsTodayHighlighted                                       = 1318,
                        CalendarView_MaxDate                                                  = 1320,
                        CalendarView_MinDate                                                  = 1321,
                        CalendarView_NumberOfWeeksInView                                      = 1327,
                        CalendarView_SelectedDates                                            = 1333,
                        CalendarView_SelectionMode                                            = 1335,
                        CalendarView_TemplateSettings                                         = 1336,
                        CalendarViewDayItem_Date                                              = 1339,
                        CalendarViewDayItem_IsBlackout                                        = 1340,
                        MediaTransportControls_IsFastForwardEnabled                           = 1382,
                        MediaTransportControls_IsFastRewindEnabled                            = 1383,
                        MediaTransportControls_IsFullWindowEnabled                            = 1384,
                        MediaTransportControls_IsPlaybackRateEnabled                          = 1385,
                        MediaTransportControls_IsSeekEnabled                                  = 1386,
                        MediaTransportControls_IsStopEnabled                                  = 1387,
                        MediaTransportControls_IsVolumeEnabled                                = 1388,
                        MediaTransportControls_IsZoomEnabled                                  = 1389,
                        ContentPresenter_LineHeight                                           = 1425,
                        CalendarViewTemplateSettings_MinViewWidth                             = 1435,
                        ListViewBase_SelectedRanges                                           = 1459,
                        SplitViewTemplateSettings_CompactPaneGridLength                       = 1462,
                        SplitViewTemplateSettings_NegativeOpenPaneLength                      = 1463,
                        SplitViewTemplateSettings_NegativeOpenPaneLengthMinusCompactLength    = 1464,
                        SplitViewTemplateSettings_OpenPaneGridLength                          = 1465,
                        SplitViewTemplateSettings_OpenPaneLengthMinusCompactLength            = 1466,
                        SplitView_CompactPaneLength                                           = 1467,
                        SplitView_Content                                                     = 1468,
                        SplitView_DisplayMode                                                 = 1469,
                        SplitView_IsPaneOpen                                                  = 1470,
                        SplitView_OpenPaneLength                                              = 1471,
                        SplitView_Pane                                                        = 1472,
                        SplitView_PanePlacement                                               = 1473,
                        SplitView_TemplateSettings                                            = 1474,
                        UIElement_Transform3D                                                 = 1475,
                        CompositeTransform3D_CenterX                                          = 1476,
                        CompositeTransform3D_CenterY                                          = 1478,
                        CompositeTransform3D_CenterZ                                          = 1480,
                        CompositeTransform3D_RotationX                                        = 1482,
                        CompositeTransform3D_RotationY                                        = 1484,
                        CompositeTransform3D_RotationZ                                        = 1486,
                        CompositeTransform3D_ScaleX                                           = 1488,
                        CompositeTransform3D_ScaleY                                           = 1490,
                        CompositeTransform3D_ScaleZ                                           = 1492,
                        CompositeTransform3D_TranslateX                                       = 1494,
                        CompositeTransform3D_TranslateY                                       = 1496,
                        CompositeTransform3D_TranslateZ                                       = 1498,
                        PerspectiveTransform3D_Depth                                          = 1500,
                        PerspectiveTransform3D_OffsetX                                        = 1501,
                        PerspectiveTransform3D_OffsetY                                        = 1502,
                        RelativePanel_Above                                                   = 1508,
                        RelativePanel_AlignBottomWith                                         = 1509,
                        RelativePanel_AlignLeftWith                                           = 1510,
                        RelativePanel_AlignRightWith                                          = 1515,
                        RelativePanel_AlignTopWith                                            = 1516,
                        RelativePanel_Below                                                   = 1517,
                        RelativePanel_LeftOf                                                  = 1520,
                        RelativePanel_RightOf                                                 = 1521,
                        SplitViewTemplateSettings_OpenPaneLength                              = 1524,
                        PasswordBox_PasswordRevealMode                                        = 1527,
                        SplitView_PaneBackground                                              = 1528,
                        ItemsStackPanel_AreStickyGroupHeadersEnabled                          = 1529,
                        ItemsWrapGrid_AreStickyGroupHeadersEnabled                            = 1530,
                        MenuFlyoutSubItem_Items                                               = 1531,
                        MenuFlyoutSubItem_Text                                                = 1532,
                        UIElement_CanDrag                                                     = 1534,
                        DataTemplate_ExtensionInstance                                        = 1535,
                        RelativePanel_AlignHorizontalCenterWith                               = 1552,
                        RelativePanel_AlignVerticalCenterWith                                 = 1553,
                        TargetPropertyPath_Path                                               = 1555,
                        TargetPropertyPath_Target                                             = 1556,
                        VisualState_Setters                                                   = 1558,
                        VisualState_StateTriggers                                             = 1559,
                        AdaptiveTrigger_MinWindowHeight                                       = 1560,
                        AdaptiveTrigger_MinWindowWidth                                        = 1561,
                        Setter_Target                                                         = 1562,
                        CalendarView_BlackoutForeground                                       = 1565,
                        CalendarView_CalendarItemBackground                                   = 1566,
                        CalendarView_CalendarItemBorderBrush                                  = 1567,
                        CalendarView_CalendarItemBorderThickness                              = 1568,
                        CalendarView_CalendarItemForeground                                   = 1569,
                        CalendarView_CalendarViewDayItemStyle                                 = 1570,
                        CalendarView_DayItemFontFamily                                        = 1571,
                        CalendarView_DayItemFontSize                                          = 1572,
                        CalendarView_DayItemFontStyle                                         = 1573,
                        CalendarView_DayItemFontWeight                                        = 1574,
                        CalendarView_FirstOfMonthLabelFontFamily                              = 1575,
                        CalendarView_FirstOfMonthLabelFontSize                                = 1576,
                        CalendarView_FirstOfMonthLabelFontStyle                               = 1577,
                        CalendarView_FirstOfMonthLabelFontWeight                              = 1578,
                        CalendarView_FirstOfYearDecadeLabelFontFamily                         = 1579,
                        CalendarView_FirstOfYearDecadeLabelFontSize                           = 1580,
                        CalendarView_FirstOfYearDecadeLabelFontStyle                          = 1581,
                        CalendarView_FirstOfYearDecadeLabelFontWeight                         = 1582,
                        CalendarView_FocusBorderBrush                                         = 1583,
                        CalendarView_HorizontalDayItemAlignment                               = 1584,
                        CalendarView_HorizontalFirstOfMonthLabelAlignment                     = 1585,
                        CalendarView_HoverBorderBrush                                         = 1586,
                        CalendarView_MonthYearItemFontFamily                                  = 1588,
                        CalendarView_MonthYearItemFontSize                                    = 1589,
                        CalendarView_MonthYearItemFontStyle                                   = 1590,
                        CalendarView_MonthYearItemFontWeight                                  = 1591,
                        CalendarView_OutOfScopeBackground                                     = 1592,
                        CalendarView_OutOfScopeForeground                                     = 1593,
                        CalendarView_PressedBorderBrush                                       = 1594,
                        CalendarView_PressedForeground                                        = 1595,
                        CalendarView_SelectedBorderBrush                                      = 1596,
                        CalendarView_SelectedForeground                                       = 1597,
                        CalendarView_SelectedHoverBorderBrush                                 = 1598,
                        CalendarView_SelectedPressedBorderBrush                               = 1599,
                        CalendarView_TodayFontWeight                                          = 1600,
                        CalendarView_TodayForeground                                          = 1601,
                        CalendarView_VerticalDayItemAlignment                                 = 1602,
                        CalendarView_VerticalFirstOfMonthLabelAlignment                       = 1603,
                        MediaTransportControls_IsCompact                                      = 1605,
                        RelativePanel_AlignBottomWithPanel                                    = 1606,
                        RelativePanel_AlignHorizontalCenterWithPanel                          = 1607,
                        RelativePanel_AlignLeftWithPanel                                      = 1608,
                        RelativePanel_AlignRightWithPanel                                     = 1609,
                        RelativePanel_AlignTopWithPanel                                       = 1610,
                        RelativePanel_AlignVerticalCenterWithPanel                            = 1611,
                        ListViewBase_IsMultiSelectCheckBoxEnabled                             = 1612,
                        AutomationProperties_Level                                            = 1614,
                        AutomationProperties_PositionInSet                                    = 1615,
                        AutomationProperties_SizeOfSet                                        = 1616,
                        ListViewItemPresenter_CheckBoxBrush                                   = 1617,
                        ListViewItemPresenter_CheckMode                                       = 1618,
                        ListViewItemPresenter_PressedBackground                               = 1620,
                        ListViewItemPresenter_SelectedPressedBackground                       = 1621,
                        Control_IsTemplateFocusTarget                                         = 1623,
                        Control_UseSystemFocusVisuals                                         = 1624,
                        ListViewItemPresenter_FocusSecondaryBorderBrush                       = 1628,
                        ListViewItemPresenter_PointerOverForeground                           = 1630,
                        FontIcon_MirroredWhenRightToLeft                                      = 1631,
                        CalendarViewTemplateSettings_CenterX                                  = 1632,
                        CalendarViewTemplateSettings_CenterY                                  = 1633,
                        CalendarViewTemplateSettings_ClipRect                                 = 1634,
                        PasswordBox_TextReadingOrder                                          = 1650,
                        RichEditBox_TextReadingOrder                                          = 1651,
                        TextBox_TextReadingOrder                                              = 1652,
                        WebView_ExecutionMode                                                 = 1653,
                        WebView_DeferredPermissionRequests                                    = 1655,
                        WebView_Settings                                                      = 1656,
                        RichEditBox_DesiredCandidateWindowAlignment                           = 1660,
                        TextBox_DesiredCandidateWindowAlignment                               = 1662,
                        CalendarDatePicker_CalendarIdentifier                                 = 1663,
                        CalendarDatePicker_CalendarViewStyle                                  = 1664,
                        CalendarDatePicker_Date                                               = 1665,
                        CalendarDatePicker_DateFormat                                         = 1666,
                        CalendarDatePicker_DayOfWeekFormat                                    = 1667,
                        CalendarDatePicker_DisplayMode                                        = 1668,
                        CalendarDatePicker_FirstDayOfWeek                                     = 1669,
                        CalendarDatePicker_Header                                             = 1670,
                        CalendarDatePicker_HeaderTemplate                                     = 1671,
                        CalendarDatePicker_IsCalendarOpen                                     = 1672,
                        CalendarDatePicker_IsGroupLabelVisible                                = 1673,
                        CalendarDatePicker_IsOutOfScopeEnabled                                = 1674,
                        CalendarDatePicker_IsTodayHighlighted                                 = 1675,
                        CalendarDatePicker_MaxDate                                            = 1676,
                        CalendarDatePicker_MinDate                                            = 1677,
                        CalendarDatePicker_PlaceholderText                                    = 1678,
                        CalendarView_IsGroupLabelVisible                                      = 1679,
                        ContentPresenter_Background                                           = 1680,
                        ContentPresenter_BorderBrush                                          = 1681,
                        ContentPresenter_BorderThickness                                      = 1682,
                        ContentPresenter_CornerRadius                                         = 1683,
                        ContentPresenter_Padding                                              = 1684,
                        Grid_BorderBrush                                                      = 1685,
                        Grid_BorderThickness                                                  = 1686,
                        Grid_CornerRadius                                                     = 1687,
                        Grid_Padding                                                          = 1688,
                        RelativePanel_BorderBrush                                             = 1689,
                        RelativePanel_BorderThickness                                         = 1690,
                        RelativePanel_CornerRadius                                            = 1691,
                        RelativePanel_Padding                                                 = 1692,
                        StackPanel_BorderBrush                                                = 1693,
                        StackPanel_BorderThickness                                            = 1694,
                        StackPanel_CornerRadius                                               = 1695,
                        StackPanel_Padding                                                    = 1696,
                        PasswordBox_InputScope                                                = 1697,
                        MediaTransportControlsHelper_DropoutOrder                             = 1698,
                        AutoSuggestBoxQuerySubmittedEventArgs_ChosenSuggestion                = 1699,
                        AutoSuggestBoxQuerySubmittedEventArgs_QueryText                       = 1700,
                        AutoSuggestBox_QueryIcon                                              = 1701,
                        StateTrigger_IsActive                                                 = 1702,
                        ContentPresenter_HorizontalContentAlignment                           = 1703,
                        ContentPresenter_VerticalContentAlignment                             = 1704,
                        AppBarTemplateSettings_ClipRect                                       = 1705,
                        AppBarTemplateSettings_CompactRootMargin                              = 1706,
                        AppBarTemplateSettings_CompactVerticalDelta                           = 1707,
                        AppBarTemplateSettings_HiddenRootMargin                               = 1708,
                        AppBarTemplateSettings_HiddenVerticalDelta                            = 1709,
                        AppBarTemplateSettings_MinimalRootMargin                              = 1710,
                        AppBarTemplateSettings_MinimalVerticalDelta                           = 1711,
                        CommandBarTemplateSettings_ContentHeight                              = 1712,
                        CommandBarTemplateSettings_NegativeOverflowContentHeight              = 1713,
                        CommandBarTemplateSettings_OverflowContentClipRect                    = 1714,
                        CommandBarTemplateSettings_OverflowContentHeight                      = 1715,
                        CommandBarTemplateSettings_OverflowContentHorizontalOffset            = 1716,
                        CommandBarTemplateSettings_OverflowContentMaxHeight                   = 1717,
                        CommandBarTemplateSettings_OverflowContentMinWidth                    = 1718,
                        AppBar_TemplateSettings                                               = 1719,
                        CommandBar_CommandBarOverflowPresenterStyle                           = 1720,
                        CommandBar_CommandBarTemplateSettings                                 = 1721,
                        DrillInThemeAnimation_EntranceTarget                                  = 1722,
                        DrillInThemeAnimation_EntranceTargetName                              = 1723,
                        DrillInThemeAnimation_ExitTarget                                      = 1724,
                        DrillInThemeAnimation_ExitTargetName                                  = 1725,
                        DrillOutThemeAnimation_EntranceTarget                                 = 1726,
                        DrillOutThemeAnimation_EntranceTargetName                             = 1727,
                        DrillOutThemeAnimation_ExitTarget                                     = 1728,
                        DrillOutThemeAnimation_ExitTargetName                                 = 1729,
                        XamlBindingHelper_DataTemplateComponent                               = 1730,
                        AutomationProperties_Annotations                                      = 1732,
                        AutomationAnnotation_Element                                          = 1733,
                        AutomationAnnotation_Type                                             = 1734,
                        AutomationPeerAnnotation_Peer                                         = 1735,
                        AutomationPeerAnnotation_Type                                         = 1736,
                        Hyperlink_UnderlineStyle                                              = 1741,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 5.0)]
                        CalendarView_DisabledForeground                                       = 1742,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 5.0)]
                        CalendarView_TodayBackground                                          = 1743,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 5.0)]
                        CalendarView_TodayBlackoutBackground                                  = 1744,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 5.0)]
                        CalendarView_TodaySelectedInnerBorderBrush                            = 1747,
                        Control_IsFocusEngaged                                                = 1749,
                        Control_IsFocusEngagementEnabled                                      = 1752,
                        RichEditBox_ClipboardCopyFormat                                       = 1754,
                        CommandBarTemplateSettings_OverflowContentMaxWidth                    = 1757,
                        ComboBoxTemplateSettings_DropDownContentMinWidth                      = 1758,
                        MenuFlyoutPresenterTemplateSettings_FlyoutContentMinWidth             = 1762,
                        MenuFlyoutPresenter_TemplateSettings                                  = 1763,
                        AutomationProperties_LandmarkType                                     = 1766,
                        AutomationProperties_LocalizedLandmarkType                            = 1767,
                        RepositionThemeTransition_IsStaggeringEnabled                         = 1769,
                        ListBox_SingleSelectionFollowsFocus                                   = 1770,
                        ListViewBase_SingleSelectionFollowsFocus                              = 1771,
                        BitmapImage_AutoPlay                                                  = 1773,
                        BitmapImage_IsAnimatedBitmap                                          = 1774,
                        BitmapImage_IsPlaying                                                 = 1775,
                        AutomationProperties_FullDescription                                  = 1776,
                        AutomationProperties_IsDataValidForForm                               = 1777,
                        AutomationProperties_IsPeripheral                                     = 1778,
                        AutomationProperties_LocalizedControlType                             = 1779,
                        FlyoutBase_AllowFocusOnInteraction                                    = 1780,
                        TextElement_AllowFocusOnInteraction                                   = 1781,
                        FrameworkElement_AllowFocusOnInteraction                              = 1782,
                        Control_RequiresPointer                                               = 1783,
                        UIElement_ContextFlyout                                               = 1785,
                        TextElement_AccessKey                                                 = 1786,
                        UIElement_AccessKeyScopeOwner                                         = 1787,
                        UIElement_IsAccessKeyScope                                            = 1788,
                        AutomationProperties_DescribedBy                                      = 1790,
                        UIElement_AccessKey                                                   = 1803,
                        Control_XYFocusDown                                                   = 1804,
                        Control_XYFocusLeft                                                   = 1805,
                        Control_XYFocusRight                                                  = 1806,
                        Control_XYFocusUp                                                     = 1807,
                        Hyperlink_XYFocusDown                                                 = 1808,
                        Hyperlink_XYFocusLeft                                                 = 1809,
                        Hyperlink_XYFocusRight                                                = 1810,
                        Hyperlink_XYFocusUp                                                   = 1811,
                        WebView_XYFocusDown                                                   = 1812,
                        WebView_XYFocusLeft                                                   = 1813,
                        WebView_XYFocusRight                                                  = 1814,
                        WebView_XYFocusUp                                                     = 1815,
                        CommandBarTemplateSettings_EffectiveOverflowButtonVisibility          = 1816,
                        AppBarSeparator_IsInOverflow                                          = 1817,
                        CommandBar_DefaultLabelPosition                                       = 1818,
                        CommandBar_IsDynamicOverflowEnabled                                   = 1819,
                        CommandBar_OverflowButtonVisibility                                   = 1820,
                        AppBarButton_IsInOverflow                                             = 1821,
                        AppBarButton_LabelPosition                                            = 1822,
                        AppBarToggleButton_IsInOverflow                                       = 1823,
                        AppBarToggleButton_LabelPosition                                      = 1824,
                        FlyoutBase_LightDismissOverlayMode                                    = 1825,
                        Popup_LightDismissOverlayMode                                         = 1827,
                        CalendarDatePicker_LightDismissOverlayMode                            = 1829,
                        DatePicker_LightDismissOverlayMode                                    = 1830,
                        SplitView_LightDismissOverlayMode                                     = 1831,
                        TimePicker_LightDismissOverlayMode                                    = 1832,
                        AppBar_LightDismissOverlayMode                                        = 1833,
                        AutoSuggestBox_LightDismissOverlayMode                                = 1834,
                        ComboBox_LightDismissOverlayMode                                      = 1835,
                        AppBarSeparator_DynamicOverflowOrder                                  = 1836,
                        AppBarButton_DynamicOverflowOrder                                     = 1837,
                        AppBarToggleButton_DynamicOverflowOrder                               = 1838,
                        FrameworkElement_FocusVisualMargin                                    = 1839,
                        FrameworkElement_FocusVisualPrimaryBrush                              = 1840,
                        FrameworkElement_FocusVisualPrimaryThickness                          = 1841,
                        FrameworkElement_FocusVisualSecondaryBrush                            = 1842,
                        FrameworkElement_FocusVisualSecondaryThickness                        = 1843,
                        FlyoutBase_AllowFocusWhenDisabled                                     = 1846,
                        FrameworkElement_AllowFocusWhenDisabled                               = 1847,
                        ComboBox_IsTextSearchEnabled                                          = 1848,
                        TextElement_ExitDisplayModeOnAccessKeyInvoked                         = 1849,
                        UIElement_ExitDisplayModeOnAccessKeyInvoked                           = 1850,
                        MediaPlayerPresenter_IsFullWindow                                     = 1851,
                        MediaPlayerPresenter_MediaPlayer                                      = 1852,
                        MediaPlayerPresenter_Stretch                                          = 1853,
                        MediaPlayerElement_AreTransportControlsEnabled                        = 1854,
                        MediaPlayerElement_AutoPlay                                           = 1855,
                        MediaPlayerElement_IsFullWindow                                       = 1856,
                        MediaPlayerElement_MediaPlayer                                        = 1857,
                        MediaPlayerElement_PosterSource                                       = 1858,
                        MediaPlayerElement_Source                                             = 1859,
                        MediaPlayerElement_Stretch                                            = 1860,
                        MediaPlayerElement_TransportControls                                  = 1861,
                        MediaTransportControls_FastPlayFallbackBehaviour                      = 1862,
                        MediaTransportControls_IsNextTrackButtonVisible                       = 1863,
                        MediaTransportControls_IsPreviousTrackButtonVisible                   = 1864,
                        MediaTransportControls_IsSkipBackwardButtonVisible                    = 1865,
                        MediaTransportControls_IsSkipBackwardEnabled                          = 1866,
                        MediaTransportControls_IsSkipForwardButtonVisible                     = 1867,
                        MediaTransportControls_IsSkipForwardEnabled                           = 1868,
                        FlyoutBase_ElementSoundMode                                           = 1869,
                        Control_ElementSoundMode                                              = 1870,
                        Hyperlink_ElementSoundMode                                            = 1871,
                        AutomationProperties_FlowsFrom                                        = 1876,
                        AutomationProperties_FlowsTo                                          = 1877,
                        TextElement_TextDecorations                                           = 1879,
                        RichTextBlock_TextDecorations                                         = 1881,
                        Control_DefaultStyleResourceUri                                       = 1882,
                        ContentDialog_PrimaryButtonStyle                                      = 1884,
                        ContentDialog_SecondaryButtonStyle                                    = 1885,
                        TextElement_KeyTipHorizontalOffset                                    = 1890,
                        TextElement_KeyTipPlacementMode                                       = 1891,
                        TextElement_KeyTipVerticalOffset                                      = 1892,
                        UIElement_KeyTipHorizontalOffset                                      = 1893,
                        UIElement_KeyTipPlacementMode                                         = 1894,
                        UIElement_KeyTipVerticalOffset                                        = 1895,
                        FlyoutBase_OverlayInputPassThroughElement                             = 1896,
                        UIElement_XYFocusKeyboardNavigation                                   = 1897,
                        AutomationProperties_Culture                                          = 1898,
                        UIElement_XYFocusDownNavigationStrategy                               = 1918,
                        UIElement_XYFocusLeftNavigationStrategy                               = 1919,
                        UIElement_XYFocusRightNavigationStrategy                              = 1920,
                        UIElement_XYFocusUpNavigationStrategy                                 = 1921,
                        Hyperlink_XYFocusDownNavigationStrategy                               = 1922,
                        Hyperlink_XYFocusLeftNavigationStrategy                               = 1923,
                        Hyperlink_XYFocusRightNavigationStrategy                              = 1924,
                        Hyperlink_XYFocusUpNavigationStrategy                                 = 1925,
                        TextElement_AccessKeyScopeOwner                                       = 1926,
                        TextElement_IsAccessKeyScope                                          = 1927,
                        Hyperlink_FocusState                                                  = 1934,
                        ContentDialog_CloseButtonCommand                                      = 1936,
                        ContentDialog_CloseButtonCommandParameter                             = 1937,
                        ContentDialog_CloseButtonStyle                                        = 1938,
                        ContentDialog_CloseButtonText                                         = 1939,
                        ContentDialog_DefaultButton                                           = 1940,
                        RichEditBox_SelectionHighlightColorWhenNotFocused                     = 1941,
                        TextBox_SelectionHighlightColorWhenNotFocused                         = 1942,
                        SvgImageSource_RasterizePixelHeight                                   = 1948,
                        SvgImageSource_RasterizePixelWidth                                    = 1949,
                        SvgImageSource_UriSource                                              = 1950,
                        LoadedImageSurface_DecodedPhysicalSize                                = 1955,
                        LoadedImageSurface_DecodedSize                                        = 1956,
                        LoadedImageSurface_NaturalSize                                        = 1957,
                        ComboBox_SelectionChangedTrigger                                      = 1958,
                        XamlCompositionBrushBase_FallbackColor                                = 1960,
                        UIElement_Lights                                                      = 1962,
                        MenuFlyoutItem_Icon                                                   = 1963,
                        MenuFlyoutSubItem_Icon                                                = 1964,
                        BitmapIcon_ShowAsMonochrome                                           = 1965,
                        UIElement_HighContrastAdjustment                                      = 1967,
                        RichEditBox_MaxLength                                                 = 1968,
                        UIElement_TabFocusNavigation                                          = 1969,
                        Control_IsTemplateKeyTipTarget                                        = 1970,
                        Hyperlink_IsTabStop                                                   = 1972,
                        Hyperlink_TabIndex                                                    = 1973,
                        MediaTransportControls_IsRepeatButtonVisible                          = 1974,
                        MediaTransportControls_IsRepeatEnabled                                = 1975,
                        MediaTransportControls_ShowAndHideAutomatically                       = 1976,
                        RichEditBox_DisabledFormattingAccelerators                            = 1977,
                        RichEditBox_CharacterCasing                                           = 1978,
                        TextBox_CharacterCasing                                               = 1979,
                        RichTextBlock_IsTextTrimmed                                           = 1980,
                        RichTextBlockOverflow_IsTextTrimmed                                   = 1981,
                        TextBlock_IsTextTrimmed                                               = 1982,
                        TextHighlighter_Background                                            = 1985,
                        TextHighlighter_Foreground                                            = 1986,
                        TextHighlighter_Ranges                                                = 1987,
                        RichTextBlock_TextHighlighters                                        = 1988,
                        TextBlock_TextHighlighters                                            = 1989,
                        FrameworkElement_ActualTheme                                          = 1992,
                        Grid_ColumnSpacing                                                    = 1993,
                        Grid_RowSpacing                                                       = 1994,
                        StackPanel_Spacing                                                    = 1995,
                        Block_HorizontalTextAlignment                                         = 1996,
                        RichTextBlock_HorizontalTextAlignment                                 = 1997,
                        TextBlock_HorizontalTextAlignment                                     = 1998,
                        RichEditBox_HorizontalTextAlignment                                   = 1999,
                        TextBox_HorizontalTextAlignment                                       = 2000,
                        TextBox_PlaceholderForeground                                         = 2001,
                        ComboBox_PlaceholderForeground                                        = 2002,
                        KeyboardAccelerator_IsEnabled                                         = 2003,
                        KeyboardAccelerator_Key                                               = 2004,
                        KeyboardAccelerator_Modifiers                                         = 2005,
                        KeyboardAccelerator_ScopeOwner                                        = 2006,
                        UIElement_KeyboardAccelerators                                        = 2007,
                        ListViewItemPresenter_RevealBackground                                = 2009,
                        ListViewItemPresenter_RevealBackgroundShowsAboveContent               = 2010,
                        ListViewItemPresenter_RevealBorderBrush                               = 2011,
                        ListViewItemPresenter_RevealBorderThickness                           = 2012,
                        UIElement_KeyTipTarget                                                = 2014,
                        AppBarButtonTemplateSettings_KeyboardAcceleratorTextMinWidth          = 2015,
                        AppBarToggleButtonTemplateSettings_KeyboardAcceleratorTextMinWidth    = 2016,
                        MenuFlyoutItemTemplateSettings_KeyboardAcceleratorTextMinWidth        = 2017,
                        MenuFlyoutItem_TemplateSettings                                       = 2019,
                        AppBarButton_TemplateSettings                                         = 2021,
                        AppBarToggleButton_TemplateSettings                                   = 2023,
                        UIElement_KeyboardAcceleratorPlacementMode                            = 2028,
                        MediaTransportControls_IsCompactOverlayButtonVisible                  = 2032,
                        MediaTransportControls_IsCompactOverlayEnabled                        = 2033,
                        UIElement_KeyboardAcceleratorPlacementTarget                          = 2061,
                        UIElement_CenterPoint                                                 = 2062,
                        UIElement_Rotation                                                    = 2063,
                        UIElement_RotationAxis                                                = 2064,
                        UIElement_Scale                                                       = 2065,
                        UIElement_TransformMatrix                                             = 2066,
                        UIElement_Translation                                                 = 2067,
                        TextBox_HandwritingView                                               = 2068,
                        AutomationProperties_HeadingLevel                                     = 2069,
                        TextBox_IsHandwritingViewEnabled                                      = 2076,
                        RichEditBox_ContentLinkProviders                                      = 2078,
                        RichEditBox_ContentLinkBackgroundColor                                = 2079,
                        RichEditBox_ContentLinkForegroundColor                                = 2080,
                        HandwritingView_AreCandidatesEnabled                                  = 2081,
                        HandwritingView_IsOpen                                                = 2082,
                        HandwritingView_PlacementTarget                                       = 2084,
                        HandwritingView_PlacementAlignment                                    = 2085,
                        RichEditBox_HandwritingView                                           = 2086,
                        RichEditBox_IsHandwritingViewEnabled                                  = 2087,
                        MenuFlyoutItem_KeyboardAcceleratorTextOverride                        = 2090,
                        AppBarButton_KeyboardAcceleratorTextOverride                          = 2091,
                        AppBarToggleButton_KeyboardAcceleratorTextOverride                    = 2092,
                        ContentLink_Background                                                = 2093,
                        ContentLink_Cursor                                                    = 2094,
                        ContentLink_ElementSoundMode                                          = 2095,
                        ContentLink_FocusState                                                = 2096,
                        ContentLink_IsTabStop                                                 = 2097,
                        ContentLink_TabIndex                                                  = 2098,
                        ContentLink_XYFocusDown                                               = 2099,
                        ContentLink_XYFocusDownNavigationStrategy                             = 2100,
                        ContentLink_XYFocusLeft                                               = 2101,
                        ContentLink_XYFocusLeftNavigationStrategy                             = 2102,
                        ContentLink_XYFocusRight                                              = 2103,
                        ContentLink_XYFocusRightNavigationStrategy                            = 2104,
                        ContentLink_XYFocusUp                                                 = 2105,
                        ContentLink_XYFocusUpNavigationStrategy                               = 2106,
                        IconSource_Foreground                                                 = 2112,
                        BitmapIconSource_ShowAsMonochrome                                     = 2113,
                        BitmapIconSource_UriSource                                            = 2114,
                        FontIconSource_FontFamily                                             = 2115,
                        FontIconSource_FontSize                                               = 2116,
                        FontIconSource_FontStyle                                              = 2117,
                        FontIconSource_FontWeight                                             = 2118,
                        FontIconSource_Glyph                                                  = 2119,
                        FontIconSource_IsTextScaleFactorEnabled                               = 2120,
                        FontIconSource_MirroredWhenRightToLeft                                = 2121,
                        PathIconSource_Data                                                   = 2122,
                        SymbolIconSource_Symbol                                               = 2123,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 2.0)]
                        UIElement_Shadow                                                      = 2130,
                        IconSourceElement_IconSource                                          = 2131,
                        PasswordBox_CanPasteClipboardContent                                  = 2137,
                        TextBox_CanPasteClipboardContent                                      = 2138,
                        TextBox_CanRedo                                                       = 2139,
                        TextBox_CanUndo                                                       = 2140,
                        FlyoutBase_ShowMode                                                   = 2141,
                        FlyoutBase_Target                                                     = 2142,
                        Control_CornerRadius                                                  = 2143,
                        AutomationProperties_IsDialog                                         = 2149,
                        AppBarElementContainer_DynamicOverflowOrder                           = 2150,
                        AppBarElementContainer_IsCompact                                      = 2151,
                        AppBarElementContainer_IsInOverflow                                   = 2152,
                        ScrollContentPresenter_CanContentRenderOutsideBounds                  = 2157,
                        ScrollViewer_CanContentRenderOutsideBounds                            = 2158,
                        RichEditBox_SelectionFlyout                                           = 2159,
                        TextBox_SelectionFlyout                                               = 2160,
                        Border_BackgroundSizing                                               = 2161,
                        ContentPresenter_BackgroundSizing                                     = 2162,
                        Control_BackgroundSizing                                              = 2163,
                        Grid_BackgroundSizing                                                 = 2164,
                        RelativePanel_BackgroundSizing                                        = 2165,
                        StackPanel_BackgroundSizing                                           = 2166,
                        ScrollViewer_HorizontalAnchorRatio                                    = 2170,
                        ScrollViewer_VerticalAnchorRatio                                      = 2171,
                        ComboBox_Text                                                         = 2208,
                        TextBox_Description                                                   = 2217,
                        ToolTip_PlacementRect                                                 = 2218,
                        RichTextBlock_SelectionFlyout                                         = 2219,
                        TextBlock_SelectionFlyout                                             = 2220,
                        PasswordBox_SelectionFlyout                                           = 2221,
                        Border_BackgroundTransition                                           = 2222,
                        ContentPresenter_BackgroundTransition                                 = 2223,
                        Panel_BackgroundTransition                                            = 2224,
                        ColorPaletteResources_Accent                                          = 2227,
                        ColorPaletteResources_AltHigh                                         = 2228,
                        ColorPaletteResources_AltLow                                          = 2229,
                        ColorPaletteResources_AltMedium                                       = 2230,
                        ColorPaletteResources_AltMediumHigh                                   = 2231,
                        ColorPaletteResources_AltMediumLow                                    = 2232,
                        ColorPaletteResources_BaseHigh                                        = 2233,
                        ColorPaletteResources_BaseLow                                         = 2234,
                        ColorPaletteResources_BaseMedium                                      = 2235,
                        ColorPaletteResources_BaseMediumHigh                                  = 2236,
                        ColorPaletteResources_BaseMediumLow                                   = 2237,
                        ColorPaletteResources_ChromeAltLow                                    = 2238,
                        ColorPaletteResources_ChromeBlackHigh                                 = 2239,
                        ColorPaletteResources_ChromeBlackLow                                  = 2240,
                        ColorPaletteResources_ChromeBlackMedium                               = 2241,
                        ColorPaletteResources_ChromeBlackMediumLow                            = 2242,
                        ColorPaletteResources_ChromeDisabledHigh                              = 2243,
                        ColorPaletteResources_ChromeDisabledLow                               = 2244,
                        ColorPaletteResources_ChromeGray                                      = 2245,
                        ColorPaletteResources_ChromeHigh                                      = 2246,
                        ColorPaletteResources_ChromeLow                                       = 2247,
                        ColorPaletteResources_ChromeMedium                                    = 2248,
                        ColorPaletteResources_ChromeMediumLow                                 = 2249,
                        ColorPaletteResources_ChromeWhite                                     = 2250,
                        ColorPaletteResources_ErrorText                                       = 2252,
                        ColorPaletteResources_ListLow                                         = 2253,
                        ColorPaletteResources_ListMedium                                      = 2254,
                        UIElement_TranslationTransition                                       = 2255,
                        UIElement_OpacityTransition                                           = 2256,
                        UIElement_RotationTransition                                          = 2257,
                        UIElement_ScaleTransition                                             = 2258,
                        BrushTransition_Duration                                              = 2261,
                        ScalarTransition_Duration                                             = 2262,
                        Vector3Transition_Duration                                            = 2263,
                        Vector3Transition_Components                                          = 2266,
                        FlyoutBase_IsOpen                                                     = 2267,
                        StandardUICommand_Kind                                                = 2275,
                        UIElement_CanBeScrollAnchor                                           = 2276,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 2.0)]
                        ThemeShadow_Receivers                                                 = 2279,
                        ScrollContentPresenter_SizesContentToTemplatedParent                  = 2280,
                        ComboBox_TextBoxStyle                                                 = 2281,
                        Frame_IsNavigationStackEnabled                                        = 2282,
                        RichEditBox_ProofingMenuFlyout                                        = 2283,
                        TextBox_ProofingMenuFlyout                                            = 2284,
                        ScrollViewer_ReduceViewportForCoreInputViewOcclusions                 = 2295,
                        FlyoutBase_AreOpenCloseAnimationsEnabled                              = 2296,
                        FlyoutBase_InputDevicePrefersPrimaryCommands                          = 2297,
                        CalendarDatePicker_Description                                        = 2300,
                        PasswordBox_Description                                               = 2308,
                        RichEditBox_Description                                               = 2316,
                        AutoSuggestBox_Description                                            = 2331,
                        ComboBox_Description                                                  = 2339,
                        XamlUICommand_AccessKey                                               = 2347,
                        XamlUICommand_Command                                                 = 2348,
                        XamlUICommand_Description                                             = 2349,
                        XamlUICommand_IconSource                                              = 2350,
                        XamlUICommand_KeyboardAccelerators                                    = 2351,
                        XamlUICommand_Label                                                   = 2352,
                        DatePicker_SelectedDate                                               = 2355,
                        TimePicker_SelectedTime                                               = 2356,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 2.0)]
                        AppBarTemplateSettings_NegativeCompactVerticalDelta                   = 2367,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 2.0)]
                        AppBarTemplateSettings_NegativeHiddenVerticalDelta                    = 2368,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 2.0)]
                        AppBarTemplateSettings_NegativeMinimalVerticalDelta                   = 2369,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 2.0)]
                        FlyoutBase_ShouldConstrainToRootBounds                                = 2378,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 2.0)]
                        Popup_ShouldConstrainToRootBounds                                     = 2379,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 2.0)]
                        FlyoutPresenter_IsDefaultShadowEnabled                                = 2380,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 2.0)]
                        MenuFlyoutPresenter_IsDefaultShadowEnabled                            = 2381,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 2.0)]
                        UIElement_ActualOffset                                                = 2382,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 2.0)]
                        UIElement_ActualSize                                                  = 2383,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 2.0)]
                        CommandBarTemplateSettings_OverflowContentCompactYTranslation         = 2384,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 2.0)]
                        CommandBarTemplateSettings_OverflowContentHiddenYTranslation          = 2385,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 2.0)]
                        CommandBarTemplateSettings_OverflowContentMinimalYTranslation         = 2386,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 3.0)]
                        HandwritingView_IsCommandBarOpen                                      = 2395,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 3.0)]
                        HandwritingView_IsSwitchToKeyboardEnabled                             = 2396,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 4.0)]
                        ListViewItemPresenter_SelectionIndicatorVisualEnabled                 = 2399,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 4.0)]
                        ListViewItemPresenter_SelectionIndicatorBrush                         = 2400,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 4.0)]
                        ListViewItemPresenter_SelectionIndicatorMode                          = 2401,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 4.0)]
                        ListViewItemPresenter_SelectionIndicatorPointerOverBrush              = 2402,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 4.0)]
                        ListViewItemPresenter_SelectionIndicatorPressedBrush                  = 2403,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 4.0)]
                        ListViewItemPresenter_SelectedBorderBrush                             = 2410,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 4.0)]
                        ListViewItemPresenter_SelectedInnerBorderBrush                        = 2411,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 4.0)]
                        ListViewItemPresenter_CheckBoxCornerRadius                            = 2412,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 4.0)]
                        ListViewItemPresenter_SelectionIndicatorCornerRadius                  = 2413,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 4.0)]
                        ListViewItemPresenter_SelectedDisabledBorderBrush                     = 2414,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 4.0)]
                        ListViewItemPresenter_SelectedPressedBorderBrush                      = 2415,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 4.0)]
                        ListViewItemPresenter_SelectedDisabledBackground                      = 2416,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 4.0)]
                        ListViewItemPresenter_PointerOverBorderBrush                          = 2417,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 4.0)]
                        ListViewItemPresenter_CheckBoxPointerOverBrush                        = 2418,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 4.0)]
                        ListViewItemPresenter_CheckBoxPressedBrush                            = 2419,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 4.0)]
                        ListViewItemPresenter_CheckDisabledBrush                              = 2420,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 4.0)]
                        ListViewItemPresenter_CheckPressedBrush                               = 2421,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 4.0)]
                        ListViewItemPresenter_CheckBoxBorderBrush                             = 2422,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 4.0)]
                        ListViewItemPresenter_CheckBoxDisabledBorderBrush                     = 2423,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 4.0)]
                        ListViewItemPresenter_CheckBoxPressedBorderBrush                      = 2424,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 4.0)]
                        ListViewItemPresenter_CheckBoxDisabledBrush                           = 2425,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 4.0)]
                        ListViewItemPresenter_CheckBoxSelectedBrush                           = 2426,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 4.0)]
                        ListViewItemPresenter_CheckBoxSelectedDisabledBrush                   = 2427,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 4.0)]
                        ListViewItemPresenter_CheckBoxSelectedPointerOverBrush                = 2428,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 4.0)]
                        ListViewItemPresenter_CheckBoxSelectedPressedBrush                    = 2429,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 4.0)]
                        ListViewItemPresenter_CheckBoxPointerOverBorderBrush                  = 2430,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 4.0)]
                        ListViewItemPresenter_SelectionIndicatorDisabledBrush                 = 2431,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 5.0)]
                        CalendarView_BlackoutBackground                                       = 2432,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 5.0)]
                        CalendarView_BlackoutStrikethroughBrush                               = 2433,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 5.0)]
                        CalendarView_CalendarItemCornerRadius                                 = 2434,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 5.0)]
                        CalendarView_CalendarItemDisabledBackground                           = 2435,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 5.0)]
                        CalendarView_CalendarItemHoverBackground                              = 2436,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 5.0)]
                        CalendarView_CalendarItemPressedBackground                            = 2437,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 5.0)]
                        CalendarView_DayItemMargin                                            = 2438,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 5.0)]
                        CalendarView_FirstOfMonthLabelMargin                                  = 2439,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 5.0)]
                        CalendarView_FirstOfYearDecadeLabelMargin                             = 2440,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 5.0)]
                        CalendarView_MonthYearItemMargin                                      = 2441,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 5.0)]
                        CalendarView_OutOfScopeHoverForeground                                = 2442,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 5.0)]
                        CalendarView_OutOfScopePressedForeground                              = 2443,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 5.0)]
                        CalendarView_SelectedDisabledBorderBrush                              = 2444,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 5.0)]
                        CalendarView_SelectedDisabledForeground                               = 2445,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 5.0)]
                        CalendarView_SelectedHoverForeground                                  = 2446,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 5.0)]
                        CalendarView_SelectedPressedForeground                                = 2447,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 5.0)]
                        CalendarView_TodayBlackoutForeground                                  = 2448,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 5.0)]
                        CalendarView_TodayDisabledBackground                                  = 2449,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 5.0)]
                        CalendarView_TodayHoverBackground                                     = 2450,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 5.0)]
                        CalendarView_TodayPressedBackground                                   = 2451,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 5.0)]
                        Popup_ActualPlacement                                                 = 2452,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 5.0)]
                        Popup_DesiredPlacement                                                = 2453,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 5.0)]
                        Popup_PlacementTarget                                                 = 2454,
                        [contract(Windows.UI.Xaml.Core.Direct.XamlDirectContract, 5.0)]
                        AutomationProperties_AutomationControlType                            = 2455
                    };
%ProgramFiles(x86)%\Windows Kits\10\Include\10.0.26100.0\winrt\windows.ui.xaml.core.direct.idl(287,0)
69 0.019747827 CV_HREG_e Enum
typedef enum CV_HREG_e
{

    CV_ALLREG_ERR   =   30000,
    CV_ALLREG_TEB   =   30001,
    CV_ALLREG_TIMER =   30002,
    CV_ALLREG_EFAD1 =   30003,
    CV_ALLREG_EFAD2 =   30004,
    CV_ALLREG_EFAD3 =   30005,
    CV_ALLREG_VFRAME=   30006,
    CV_ALLREG_HANDLE=   30007,
    CV_ALLREG_PARAMS=   30008,
    CV_ALLREG_LOCALS=   30009,
    CV_ALLREG_TID   =   30010,
    CV_ALLREG_ENV   =   30011,
    CV_ALLREG_CMDLN =   30012,



    CV_REG_NONE     =   0,
    CV_REG_AL       =   1,
    CV_REG_CL       =   2,
    CV_REG_DL       =   3,
    CV_REG_BL       =   4,
    CV_REG_AH       =   5,
    CV_REG_CH       =   6,
    CV_REG_DH       =   7,
    CV_REG_BH       =   8,
    CV_REG_AX       =   9,
    CV_REG_CX       =  10,
    CV_REG_DX       =  11,
    CV_REG_BX       =  12,
    CV_REG_SP       =  13,
    CV_REG_BP       =  14,
    CV_REG_SI       =  15,
    CV_REG_DI       =  16,
    CV_REG_EAX      =  17,
    CV_REG_ECX      =  18,
    CV_REG_EDX      =  19,
    CV_REG_EBX      =  20,
    CV_REG_ESP      =  21,
    CV_REG_EBP      =  22,
    CV_REG_ESI      =  23,
    CV_REG_EDI      =  24,
    CV_REG_ES       =  25,
    CV_REG_CS       =  26,
    CV_REG_SS       =  27,
    CV_REG_DS       =  28,
    CV_REG_FS       =  29,
    CV_REG_GS       =  30,
    CV_REG_IP       =  31,
    CV_REG_FLAGS    =  32,
    CV_REG_EIP      =  33,
    CV_REG_EFLAGS   =  34,
    CV_REG_TEMP     =  40,          // PCODE Temp
    CV_REG_TEMPH    =  41,          // PCODE TempH
    CV_REG_QUOTE    =  42,          // PCODE Quote
    CV_REG_PCDR3    =  43,          // PCODE reserved
    CV_REG_PCDR4    =  44,          // PCODE reserved
    CV_REG_PCDR5    =  45,          // PCODE reserved
    CV_REG_PCDR6    =  46,          // PCODE reserved
    CV_REG_PCDR7    =  47,          // PCODE reserved
    CV_REG_CR0      =  80,          // CR0 -- control registers
    CV_REG_CR1      =  81,
    CV_REG_CR2      =  82,
    CV_REG_CR3      =  83,
    CV_REG_CR4      =  84,          // Pentium
    CV_REG_DR0      =  90,          // Debug register
    CV_REG_DR1      =  91,
    CV_REG_DR2      =  92,
    CV_REG_DR3      =  93,
    CV_REG_DR4      =  94,
    CV_REG_DR5      =  95,
    CV_REG_DR6      =  96,
    CV_REG_DR7      =  97,
    CV_REG_GDTR     =  110,
    CV_REG_GDTL     =  111,
    CV_REG_IDTR     =  112,
    CV_REG_IDTL     =  113,
    CV_REG_LDTR     =  114,
    CV_REG_TR       =  115,

    CV_REG_PSEUDO1  =  116,
    CV_REG_PSEUDO2  =  117,
    CV_REG_PSEUDO3  =  118,
    CV_REG_PSEUDO4  =  119,
    CV_REG_PSEUDO5  =  120,
    CV_REG_PSEUDO6  =  121,
    CV_REG_PSEUDO7  =  122,
    CV_REG_PSEUDO8  =  123,
    CV_REG_PSEUDO9  =  124,

    CV_REG_ST0      =  128,
    CV_REG_ST1      =  129,
    CV_REG_ST2      =  130,
    CV_REG_ST3      =  131,
    CV_REG_ST4      =  132,
    CV_REG_ST5      =  133,
    CV_REG_ST6      =  134,
    CV_REG_ST7      =  135,
    CV_REG_CTRL     =  136,
    CV_REG_STAT     =  137,
    CV_REG_TAG      =  138,
    CV_REG_FPIP     =  139,
    CV_REG_FPCS     =  140,
    CV_REG_FPDO     =  141,
    CV_REG_FPDS     =  142,
    CV_REG_ISEM     =  143,
    CV_REG_FPEIP    =  144,
    CV_REG_FPEDO    =  145,

    CV_REG_MM0      =  146,
    CV_REG_MM1      =  147,
    CV_REG_MM2      =  148,
    CV_REG_MM3      =  149,
    CV_REG_MM4      =  150,
    CV_REG_MM5      =  151,
    CV_REG_MM6      =  152,
    CV_REG_MM7      =  153,

    CV_REG_XMM0     =  154, // KATMAI registers
    CV_REG_XMM1     =  155,
    CV_REG_XMM2     =  156,
    CV_REG_XMM3     =  157,
    CV_REG_XMM4     =  158,
    CV_REG_XMM5     =  159,
    CV_REG_XMM6     =  160,
    CV_REG_XMM7     =  161,

    CV_REG_XMM00    =  162, // KATMAI sub-registers
    CV_REG_XMM01    =  163,
    CV_REG_XMM02    =  164,
    CV_REG_XMM03    =  165,
    CV_REG_XMM10    =  166,
    CV_REG_XMM11    =  167,
    CV_REG_XMM12    =  168,
    CV_REG_XMM13    =  169,
    CV_REG_XMM20    =  170,
    CV_REG_XMM21    =  171,
    CV_REG_XMM22    =  172,
    CV_REG_XMM23    =  173,
    CV_REG_XMM30    =  174,
    CV_REG_XMM31    =  175,
    CV_REG_XMM32    =  176,
    CV_REG_XMM33    =  177,
    CV_REG_XMM40    =  178,
    CV_REG_XMM41    =  179,
    CV_REG_XMM42    =  180,
    CV_REG_XMM43    =  181,
    CV_REG_XMM50    =  182,
    CV_REG_XMM51    =  183,
    CV_REG_XMM52    =  184,
    CV_REG_XMM53    =  185,
    CV_REG_XMM60    =  186,
    CV_REG_XMM61    =  187,
    CV_REG_XMM62    =  188,
    CV_REG_XMM63    =  189,
    CV_REG_XMM70    =  190,
    CV_REG_XMM71    =  191,
    CV_REG_XMM72    =  192,
    CV_REG_XMM73    =  193,

    CV_REG_XMM0L    =  194,
    CV_REG_XMM1L    =  195,
    CV_REG_XMM2L    =  196,
    CV_REG_XMM3L    =  197,
    CV_REG_XMM4L    =  198,
    CV_REG_XMM5L    =  199,
    CV_REG_XMM6L    =  200,
    CV_REG_XMM7L    =  201,

    CV_REG_XMM0H    =  202,
    CV_REG_XMM1H    =  203,
    CV_REG_XMM2H    =  204,
    CV_REG_XMM3H    =  205,
    CV_REG_XMM4H    =  206,
    CV_REG_XMM5H    =  207,
    CV_REG_XMM6H    =  208,
    CV_REG_XMM7H    =  209,

    CV_REG_MXCSR    =  211, // XMM status register

    CV_REG_EDXEAX   =  212, // EDX:EAX pair

    CV_REG_EMM0L    =  220, // XMM sub-registers (WNI integer)
    CV_REG_EMM1L    =  221,
    CV_REG_EMM2L    =  222,
    CV_REG_EMM3L    =  223,
    CV_REG_EMM4L    =  224,
    CV_REG_EMM5L    =  225,
    CV_REG_EMM6L    =  226,
    CV_REG_EMM7L    =  227,

    CV_REG_EMM0H    =  228,
    CV_REG_EMM1H    =  229,
    CV_REG_EMM2H    =  230,
    CV_REG_EMM3H    =  231,
    CV_REG_EMM4H    =  232,
    CV_REG_EMM5H    =  233,
    CV_REG_EMM6H    =  234,
    CV_REG_EMM7H    =  235,

    CV_REG_MM00     =  236,
    CV_REG_MM01     =  237,
    CV_REG_MM10     =  238,
    CV_REG_MM11     =  239,
    CV_REG_MM20     =  240,
    CV_REG_MM21     =  241,
    CV_REG_MM30     =  242,
    CV_REG_MM31     =  243,
    CV_REG_MM40     =  244,
    CV_REG_MM41     =  245,
    CV_REG_MM50     =  246,
    CV_REG_MM51     =  247,
    CV_REG_MM60     =  248,
    CV_REG_MM61     =  249,
    CV_REG_MM70     =  250,
    CV_REG_MM71     =  251,

    CV_REG_YMM0     =  252, // AVX registers
    CV_REG_YMM1     =  253,
    CV_REG_YMM2     =  254,
    CV_REG_YMM3     =  255,
    CV_REG_YMM4     =  256,
    CV_REG_YMM5     =  257,
    CV_REG_YMM6     =  258,
    CV_REG_YMM7     =  259,

    CV_REG_YMM0H    =  260,
    CV_REG_YMM1H    =  261,
    CV_REG_YMM2H    =  262,
    CV_REG_YMM3H    =  263,
    CV_REG_YMM4H    =  264,
    CV_REG_YMM5H    =  265,
    CV_REG_YMM6H    =  266,
    CV_REG_YMM7H    =  267,

    CV_REG_YMM0I0     =    268,    // AVX integer registers
    CV_REG_YMM0I1     =    269,
    CV_REG_YMM0I2     =    270,
    CV_REG_YMM0I3     =    271,
    CV_REG_YMM1I0     =    272,
    CV_REG_YMM1I1     =    273,
    CV_REG_YMM1I2     =    274,
    CV_REG_YMM1I3     =    275,
    CV_REG_YMM2I0     =    276,
    CV_REG_YMM2I1     =    277,
    CV_REG_YMM2I2     =    278,
    CV_REG_YMM2I3     =    279,
    CV_REG_YMM3I0     =    280,
    CV_REG_YMM3I1     =    281,
    CV_REG_YMM3I2     =    282,
    CV_REG_YMM3I3     =    283,
    CV_REG_YMM4I0     =    284,
    CV_REG_YMM4I1     =    285,
    CV_REG_YMM4I2     =    286,
    CV_REG_YMM4I3     =    287,
    CV_REG_YMM5I0     =    288,
    CV_REG_YMM5I1     =    289,
    CV_REG_YMM5I2     =    290,
    CV_REG_YMM5I3     =    291,
    CV_REG_YMM6I0     =    292,
    CV_REG_YMM6I1     =    293,
    CV_REG_YMM6I2     =    294,
    CV_REG_YMM6I3     =    295,
    CV_REG_YMM7I0     =    296,
    CV_REG_YMM7I1     =    297,
    CV_REG_YMM7I2     =    298,
    CV_REG_YMM7I3     =    299,
        
    CV_REG_YMM0F0    =  300,     // AVX floating-point single precise registers
    CV_REG_YMM0F1    =  301,
    CV_REG_YMM0F2    =  302,
    CV_REG_YMM0F3    =  303,
    CV_REG_YMM0F4    =  304,
    CV_REG_YMM0F5    =  305,
    CV_REG_YMM0F6    =  306,
    CV_REG_YMM0F7    =  307,
    CV_REG_YMM1F0    =  308,
    CV_REG_YMM1F1    =  309,
    CV_REG_YMM1F2    =  310,
    CV_REG_YMM1F3    =  311,
    CV_REG_YMM1F4    =  312,
    CV_REG_YMM1F5    =  313,
    CV_REG_YMM1F6    =  314,
    CV_REG_YMM1F7    =  315,
    CV_REG_YMM2F0    =  316,
    CV_REG_YMM2F1    =  317,
    CV_REG_YMM2F2    =  318,
    CV_REG_YMM2F3    =  319,
    CV_REG_YMM2F4    =  320,
    CV_REG_YMM2F5    =  321,
    CV_REG_YMM2F6    =  322,
    CV_REG_YMM2F7    =  323,
    CV_REG_YMM3F0    =  324,
    CV_REG_YMM3F1    =  325,
    CV_REG_YMM3F2    =  326,
    CV_REG_YMM3F3    =  327,
    CV_REG_YMM3F4    =  328,
    CV_REG_YMM3F5    =  329,
    CV_REG_YMM3F6    =  330,
    CV_REG_YMM3F7    =  331,
    CV_REG_YMM4F0    =  332,
    CV_REG_YMM4F1    =  333,
    CV_REG_YMM4F2    =  334,
    CV_REG_YMM4F3    =  335,
    CV_REG_YMM4F4    =  336,
    CV_REG_YMM4F5    =  337,
    CV_REG_YMM4F6    =  338,
    CV_REG_YMM4F7    =  339,
    CV_REG_YMM5F0    =  340,
    CV_REG_YMM5F1    =  341,
    CV_REG_YMM5F2    =  342,
    CV_REG_YMM5F3    =  343,
    CV_REG_YMM5F4    =  344,
    CV_REG_YMM5F5    =  345,
    CV_REG_YMM5F6    =  346,
    CV_REG_YMM5F7    =  347,
    CV_REG_YMM6F0    =  348,
    CV_REG_YMM6F1    =  349,
    CV_REG_YMM6F2    =  350,
    CV_REG_YMM6F3    =  351,
    CV_REG_YMM6F4    =  352,
    CV_REG_YMM6F5    =  353,
    CV_REG_YMM6F6    =  354,
    CV_REG_YMM6F7    =  355,
    CV_REG_YMM7F0    =  356,
    CV_REG_YMM7F1    =  357,
    CV_REG_YMM7F2    =  358,
    CV_REG_YMM7F3    =  359,
    CV_REG_YMM7F4    =  360,
    CV_REG_YMM7F5    =  361,
    CV_REG_YMM7F6    =  362,
    CV_REG_YMM7F7    =  363,
    
    CV_REG_YMM0D0     =    364,    // AVX floating-point double precise registers
    CV_REG_YMM0D1     =    365,
    CV_REG_YMM0D2     =    366,
    CV_REG_YMM0D3     =    367,
    CV_REG_YMM1D0     =    368,
    CV_REG_YMM1D1     =    369,
    CV_REG_YMM1D2     =    370,
    CV_REG_YMM1D3     =    371,
    CV_REG_YMM2D0     =    372,
    CV_REG_YMM2D1     =    373,
    CV_REG_YMM2D2     =    374,
    CV_REG_YMM2D3     =    375,
    CV_REG_YMM3D0     =    376,
    CV_REG_YMM3D1     =    377,
    CV_REG_YMM3D2     =    378,
    CV_REG_YMM3D3     =    379,
    CV_REG_YMM4D0     =    380,
    CV_REG_YMM4D1     =    381,
    CV_REG_YMM4D2     =    382,
    CV_REG_YMM4D3     =    383,
    CV_REG_YMM5D0     =    384,
    CV_REG_YMM5D1     =    385,
    CV_REG_YMM5D2     =    386,
    CV_REG_YMM5D3     =    387,
    CV_REG_YMM6D0     =    388,
    CV_REG_YMM6D1     =    389,
    CV_REG_YMM6D2     =    390,
    CV_REG_YMM6D3     =    391,
    CV_REG_YMM7D0     =    392,
    CV_REG_YMM7D1     =    393,
    CV_REG_YMM7D2     =    394,
    CV_REG_YMM7D3     =    395,

    CV_REG_BND0       =    396,    // x86 MPX bounds registers
    CV_REG_BND1       =    397,
    CV_REG_BND2       =    398,
    CV_REG_BND3       =    399,
    CV_REG_BNDCFGU    =    400,
    CV_REG_BNDSTATUS  =    401,

    CV_REG_ZMM0       =    402,     // AVX-512 registers
    CV_REG_ZMM1       =    403,
    CV_REG_ZMM2       =    404,
    CV_REG_ZMM3       =    405,
    CV_REG_ZMM4       =    406,
    CV_REG_ZMM5       =    407,
    CV_REG_ZMM6       =    408,
    CV_REG_ZMM7       =    409,

    CV_REG_ZMM0H      =    410,
    CV_REG_ZMM1H      =    411,
    CV_REG_ZMM2H      =    412,
    CV_REG_ZMM3H      =    413,
    CV_REG_ZMM4H      =    414,
    CV_REG_ZMM5H      =    415,
    CV_REG_ZMM6H      =    416,
    CV_REG_ZMM7H      =    417,

    CV_REG_K0         =    418,
    CV_REG_K1         =    419,
    CV_REG_K2         =    420,
    CV_REG_K3         =    421,
    CV_REG_K4         =    422,
    CV_REG_K5         =    423,
    CV_REG_K6         =    424,
    CV_REG_K7        =     425,

    CV_REG_SSP       =     426,      // CET- Shadow Stack Pointer


    CV_R68_D0       =    0,
    CV_R68_D1       =    1,
    CV_R68_D2       =    2,
    CV_R68_D3       =    3,
    CV_R68_D4       =    4,
    CV_R68_D5       =    5,
    CV_R68_D6       =    6,
    CV_R68_D7       =    7,
    CV_R68_A0       =    8,
    CV_R68_A1       =    9,
    CV_R68_A2       =   10,
    CV_R68_A3       =   11,
    CV_R68_A4       =   12,
    CV_R68_A5       =   13,
    CV_R68_A6       =   14,
    CV_R68_A7       =   15,
    CV_R68_CCR      =   16,
    CV_R68_SR       =   17,
    CV_R68_USP      =   18,
    CV_R68_MSP      =   19,
    CV_R68_SFC      =   20,
    CV_R68_DFC      =   21,
    CV_R68_CACR     =   22,
    CV_R68_VBR      =   23,
    CV_R68_CAAR     =   24,
    CV_R68_ISP      =   25,
    CV_R68_PC       =   26,
    CV_R68_FPCR     =   28,
    CV_R68_FPSR     =   29,
    CV_R68_FPIAR    =   30,
    CV_R68_FP0      =   32,
    CV_R68_FP1      =   33,
    CV_R68_FP2      =   34,
    CV_R68_FP3      =   35,
    CV_R68_FP4      =   36,
    CV_R68_FP5      =   37,
    CV_R68_FP6      =   38,
    CV_R68_FP7      =   39,
    CV_R68_MMUSR030 =   41,
    CV_R68_MMUSR    =   42,
    CV_R68_URP      =   43,
    CV_R68_DTT0     =   44,
    CV_R68_DTT1     =   45,
    CV_R68_ITT0     =   46,
    CV_R68_ITT1     =   47,
    CV_R68_PSR      =   51,
    CV_R68_PCSR     =   52,
    CV_R68_VAL      =   53,
    CV_R68_CRP      =   54,
    CV_R68_SRP      =   55,
    CV_R68_DRP      =   56,
    CV_R68_TC       =   57,
    CV_R68_AC       =   58,
    CV_R68_SCC      =   59,
    CV_R68_CAL      =   60,
    CV_R68_TT0      =   61,
    CV_R68_TT1      =   62,
    CV_R68_BAD0     =   64,
    CV_R68_BAD1     =   65,
    CV_R68_BAD2     =   66,
    CV_R68_BAD3     =   67,
    CV_R68_BAD4     =   68,
    CV_R68_BAD5     =   69,
    CV_R68_BAD6     =   70,
    CV_R68_BAD7     =   71,
    CV_R68_BAC0     =   72,
    CV_R68_BAC1     =   73,
    CV_R68_BAC2     =   74,
    CV_R68_BAC3     =   75,
    CV_R68_BAC4     =   76,
    CV_R68_BAC5     =   77,
    CV_R68_BAC6     =   78,
    CV_R68_BAC7     =   79,


    CV_M4_NOREG     =   CV_REG_NONE,

    CV_M4_IntZERO   =   10,      /* CPU REGISTER */
    CV_M4_IntZERO   =   10,      /* CPU REGISTER */
    CV_M4_IntAT     =   11,
    CV_M4_IntV0     =   12,
    CV_M4_IntV1     =   13,
    CV_M4_IntA0     =   14,
    CV_M4_IntA1     =   15,
    CV_M4_IntA2     =   16,
    CV_M4_IntA3     =   17,
    CV_M4_IntT0     =   18,
    CV_M4_IntT1     =   19,
    CV_M4_IntT2     =   20,
    CV_M4_IntT3     =   21,
    CV_M4_IntT4     =   22,
    CV_M4_IntT5     =   23,
    CV_M4_IntT6     =   24,
    CV_M4_IntT7     =   25,
    CV_M4_IntS0     =   26,
    CV_M4_IntS1     =   27,
    CV_M4_IntS2     =   28,
    CV_M4_IntS3     =   29,
    CV_M4_IntS4     =   30,
    CV_M4_IntS5     =   31,
    CV_M4_IntS6     =   32,
    CV_M4_IntS7     =   33,
    CV_M4_IntT8     =   34,
    CV_M4_IntT9     =   35,
    CV_M4_IntKT0    =   36,
    CV_M4_IntKT1    =   37,
    CV_M4_IntGP     =   38,
    CV_M4_IntSP     =   39,
    CV_M4_IntS8     =   40,
    CV_M4_IntRA     =   41,
    CV_M4_IntLO     =   42,
    CV_M4_IntHI     =   43,

    CV_M4_Fir       =   50,
    CV_M4_Psr       =   51,

    CV_M4_FltF0     =   60,      /* Floating point registers */
    CV_M4_FltF0     =   60,      /* Floating point registers */
    CV_M4_FltF1     =   61,
    CV_M4_FltF2     =   62,
    CV_M4_FltF3     =   63,
    CV_M4_FltF4     =   64,
    CV_M4_FltF5     =   65,
    CV_M4_FltF6     =   66,
    CV_M4_FltF7     =   67,
    CV_M4_FltF8     =   68,
    CV_M4_FltF9     =   69,
    CV_M4_FltF10    =   70,
    CV_M4_FltF11    =   71,
    CV_M4_FltF12    =   72,
    CV_M4_FltF13    =   73,
    CV_M4_FltF14    =   74,
    CV_M4_FltF15    =   75,
    CV_M4_FltF16    =   76,
    CV_M4_FltF17    =   77,
    CV_M4_FltF18    =   78,
    CV_M4_FltF19    =   79,
    CV_M4_FltF20    =   80,
    CV_M4_FltF21    =   81,
    CV_M4_FltF22    =   82,
    CV_M4_FltF23    =   83,
    CV_M4_FltF24    =   84,
    CV_M4_FltF25    =   85,
    CV_M4_FltF26    =   86,
    CV_M4_FltF27    =   87,
    CV_M4_FltF28    =   88,
    CV_M4_FltF29    =   89,
    CV_M4_FltF30    =   90,
    CV_M4_FltF31    =   91,
    CV_M4_FltFsr    =   92,



    CV_ALPHA_NOREG  = CV_REG_NONE,

    CV_ALPHA_FltF0  =   10,   // Floating point registers
    CV_ALPHA_FltF1  =   11,
    CV_ALPHA_FltF2  =   12,
    CV_ALPHA_FltF3  =   13,
    CV_ALPHA_FltF4  =   14,
    CV_ALPHA_FltF5  =   15,
    CV_ALPHA_FltF6  =   16,
    CV_ALPHA_FltF7  =   17,
    CV_ALPHA_FltF8  =   18,
    CV_ALPHA_FltF9  =   19,
    CV_ALPHA_FltF10 =   20,
    CV_ALPHA_FltF11 =   21,
    CV_ALPHA_FltF12 =   22,
    CV_ALPHA_FltF13 =   23,
    CV_ALPHA_FltF14 =   24,
    CV_ALPHA_FltF15 =   25,
    CV_ALPHA_FltF16 =   26,
    CV_ALPHA_FltF17 =   27,
    CV_ALPHA_FltF18 =   28,
    CV_ALPHA_FltF19 =   29,
    CV_ALPHA_FltF20 =   30,
    CV_ALPHA_FltF21 =   31,
    CV_ALPHA_FltF22 =   32,
    CV_ALPHA_FltF23 =   33,
    CV_ALPHA_FltF24 =   34,
    CV_ALPHA_FltF25 =   35,
    CV_ALPHA_FltF26 =   36,
    CV_ALPHA_FltF27 =   37,
    CV_ALPHA_FltF28 =   38,
    CV_ALPHA_FltF29 =   39,
    CV_ALPHA_FltF30 =   40,
    CV_ALPHA_FltF31 =   41,

    CV_ALPHA_IntV0  =   42,   // Integer registers
    CV_ALPHA_IntT0  =   43,
    CV_ALPHA_IntT1  =   44,
    CV_ALPHA_IntT2  =   45,
    CV_ALPHA_IntT3  =   46,
    CV_ALPHA_IntT4  =   47,
    CV_ALPHA_IntT5  =   48,
    CV_ALPHA_IntT6  =   49,
    CV_ALPHA_IntT7  =   50,
    CV_ALPHA_IntS0  =   51,
    CV_ALPHA_IntS1  =   52,
    CV_ALPHA_IntS2  =   53,
    CV_ALPHA_IntS3  =   54,
    CV_ALPHA_IntS4  =   55,
    CV_ALPHA_IntS5  =   56,
    CV_ALPHA_IntFP  =   57,
    CV_ALPHA_IntA0  =   58,
    CV_ALPHA_IntA1  =   59,
    CV_ALPHA_IntA2  =   60,
    CV_ALPHA_IntA3  =   61,
    CV_ALPHA_IntA4  =   62,
    CV_ALPHA_IntA5  =   63,
    CV_ALPHA_IntT8  =   64,
    CV_ALPHA_IntT9  =   65,
    CV_ALPHA_IntT10 =   66,
    CV_ALPHA_IntT11 =   67,
    CV_ALPHA_IntRA  =   68,
    CV_ALPHA_IntT12 =   69,
    CV_ALPHA_IntAT  =   70,
    CV_ALPHA_IntGP  =   71,
    CV_ALPHA_IntSP  =   72,
    CV_ALPHA_IntZERO =  73,


    CV_ALPHA_Fpcr   =   74,   // Control registers
    CV_ALPHA_Fir    =   75,
    CV_ALPHA_Psr    =   76,
    CV_ALPHA_FltFsr =   77,
    CV_ALPHA_SoftFpcr =   78,


    /*
    */
    CV_PPC_GPR0     =  1,
    CV_PPC_GPR1     =  2,
    CV_PPC_GPR2     =  3,
    CV_PPC_GPR3     =  4,
    CV_PPC_GPR4     =  5,
    CV_PPC_GPR5     =  6,
    CV_PPC_GPR6     =  7,
    CV_PPC_GPR7     =  8,
    CV_PPC_GPR8     =  9,
    CV_PPC_GPR9     = 10,
    CV_PPC_GPR10    = 11,
    CV_PPC_GPR11    = 12,
    CV_PPC_GPR12    = 13,
    CV_PPC_GPR13    = 14,
    CV_PPC_GPR14    = 15,
    CV_PPC_GPR15    = 16,
    CV_PPC_GPR16    = 17,
    CV_PPC_GPR17    = 18,
    CV_PPC_GPR18    = 19,
    CV_PPC_GPR19    = 20,
    CV_PPC_GPR20    = 21,
    CV_PPC_GPR21    = 22,
    CV_PPC_GPR22    = 23,
    CV_PPC_GPR23    = 24,
    CV_PPC_GPR24    = 25,
    CV_PPC_GPR25    = 26,
    CV_PPC_GPR26    = 27,
    CV_PPC_GPR27    = 28,
    CV_PPC_GPR28    = 29,
    CV_PPC_GPR29    = 30,
    CV_PPC_GPR30    = 31,
    CV_PPC_GPR31    = 32,

    /*
    */
    CV_PPC_CR       = 33,
    CV_PPC_CR0      = 34,
    CV_PPC_CR1      = 35,
    CV_PPC_CR2      = 36,
    CV_PPC_CR3      = 37,
    CV_PPC_CR4      = 38,
    CV_PPC_CR5      = 39,
    CV_PPC_CR6      = 40,
    CV_PPC_CR7      = 41,

    /*
    */
    CV_PPC_FPR0     = 42,
    CV_PPC_FPR1     = 43,
    CV_PPC_FPR2     = 44,
    CV_PPC_FPR3     = 45,
    CV_PPC_FPR4     = 46,
    CV_PPC_FPR5     = 47,
    CV_PPC_FPR6     = 48,
    CV_PPC_FPR7     = 49,
    CV_PPC_FPR8     = 50,
    CV_PPC_FPR9     = 51,
    CV_PPC_FPR10    = 52,
    CV_PPC_FPR11    = 53,
    CV_PPC_FPR12    = 54,
    CV_PPC_FPR13    = 55,
    CV_PPC_FPR14    = 56,
    CV_PPC_FPR15    = 57,
    CV_PPC_FPR16    = 58,
    CV_PPC_FPR17    = 59,
    CV_PPC_FPR18    = 60,
    CV_PPC_FPR19    = 61,
    CV_PPC_FPR20    = 62,
    CV_PPC_FPR21    = 63,
    CV_PPC_FPR22    = 64,
    CV_PPC_FPR23    = 65,
    CV_PPC_FPR24    = 66,
    CV_PPC_FPR25    = 67,
    CV_PPC_FPR26    = 68,
    CV_PPC_FPR27    = 69,
    CV_PPC_FPR28    = 70,
    CV_PPC_FPR29    = 71,
    CV_PPC_FPR30    = 72,
    CV_PPC_FPR31    = 73,

    /*
    */
    CV_PPC_FPSCR    = 74,

    /*
    */
    CV_PPC_MSR      = 75,

    /*
    */
    CV_PPC_SR0      = 76,
    CV_PPC_SR1      = 77,
    CV_PPC_SR2      = 78,
    CV_PPC_SR3      = 79,
    CV_PPC_SR4      = 80,
    CV_PPC_SR5      = 81,
    CV_PPC_SR6      = 82,
    CV_PPC_SR7      = 83,
    CV_PPC_SR8      = 84,
    CV_PPC_SR9      = 85,
    CV_PPC_SR10     = 86,
    CV_PPC_SR11     = 87,
    CV_PPC_SR12     = 88,
    CV_PPC_SR13     = 89,
    CV_PPC_SR14     = 90,
    CV_PPC_SR15     = 91,

    /*
    */

    /*
    */
    CV_PPC_PC       = 99,     // PC (imaginary register)

    CV_PPC_MQ       = 100,    // MPC601
    CV_PPC_XER      = 101,
    CV_PPC_RTCU     = 104,    // MPC601
    CV_PPC_RTCL     = 105,    // MPC601
    CV_PPC_LR       = 108,
    CV_PPC_CTR      = 109,

    CV_PPC_COMPARE  = 110,    // part of XER (internal to the debugger only)
    CV_PPC_COUNT    = 111,    // part of XER (internal to the debugger only)

    /*
    */
    CV_PPC_DSISR    = 118,
    CV_PPC_DAR      = 119,
    CV_PPC_DEC      = 122,
    CV_PPC_SDR1     = 125,
    CV_PPC_SRR0     = 126,
    CV_PPC_SRR1     = 127,
    CV_PPC_SPRG0    = 372,
    CV_PPC_SPRG1    = 373,
    CV_PPC_SPRG2    = 374,
    CV_PPC_SPRG3    = 375,
    CV_PPC_ASR      = 280,    // 64-bit implementations only
    CV_PPC_EAR      = 382,
    CV_PPC_PVR      = 287,
    CV_PPC_BAT0U    = 628,
    CV_PPC_BAT0L    = 629,
    CV_PPC_BAT1U    = 630,
    CV_PPC_BAT1L    = 631,
    CV_PPC_BAT2U    = 632,
    CV_PPC_BAT2L    = 633,
    CV_PPC_BAT3U    = 634,
    CV_PPC_BAT3L    = 635,
    CV_PPC_DBAT0U   = 636,
    CV_PPC_DBAT0L   = 637,
    CV_PPC_DBAT1U   = 638,
    CV_PPC_DBAT1L   = 639,
    CV_PPC_DBAT2U   = 640,
    CV_PPC_DBAT2L   = 641,
    CV_PPC_DBAT3U   = 642,
    CV_PPC_DBAT3L   = 643,

    /*
    */

    /*
    */

    CV_PPC_PMR0     = 1044,   // MPC620,
    CV_PPC_PMR1     = 1045,   // MPC620,
    CV_PPC_PMR2     = 1046,   // MPC620,
    CV_PPC_PMR3     = 1047,   // MPC620,
    CV_PPC_PMR4     = 1048,   // MPC620,
    CV_PPC_PMR5     = 1049,   // MPC620,
    CV_PPC_PMR6     = 1050,   // MPC620,
    CV_PPC_PMR7     = 1051,   // MPC620,
    CV_PPC_PMR8     = 1052,   // MPC620,
    CV_PPC_PMR9     = 1053,   // MPC620,
    CV_PPC_PMR10    = 1054,   // MPC620,
    CV_PPC_PMR11    = 1055,   // MPC620,
    CV_PPC_PMR12    = 1056,   // MPC620,
    CV_PPC_PMR13    = 1057,   // MPC620,
    CV_PPC_PMR14    = 1058,   // MPC620,
    CV_PPC_PMR15    = 1059,   // MPC620,

    CV_PPC_DMISS    = 1076,   // MPC603
    CV_PPC_DCMP     = 1077,   // MPC603
    CV_PPC_HASH1    = 1078,   // MPC603
    CV_PPC_HASH2    = 1079,   // MPC603
    CV_PPC_IMISS    = 1080,   // MPC603
    CV_PPC_ICMP     = 1081,   // MPC603
    CV_PPC_RPA      = 1082,   // MPC603

    CV_PPC_HID0     = 1108,   // MPC601, MPC603, MPC620
    CV_PPC_HID1     = 1109,   // MPC601
    CV_PPC_HID2     = 1110,   // MPC601, MPC603, MPC620 ( IABR )
    CV_PPC_HID3     = 1111,   // Not Defined
    CV_PPC_HID4     = 1112,   // Not Defined
    CV_PPC_HID5     = 1113,   // MPC601, MPC604, MPC620 ( DABR )
    CV_PPC_HID6     = 1114,   // Not Defined
    CV_PPC_HID7     = 1115,   // Not Defined
    CV_PPC_HID8     = 1116,   // MPC620 ( BUSCSR )
    CV_PPC_HID9     = 1117,   // MPC620 ( L2CSR )
    CV_PPC_HID10    = 1118,   // Not Defined
    CV_PPC_HID11    = 1119,   // Not Defined
    CV_PPC_HID12    = 1120,   // Not Defined
    CV_PPC_HID13    = 1121,   // MPC604 ( HCR )
    CV_PPC_HID14    = 1122,   // Not Defined
    CV_PPC_HID15    = 1123,   // MPC601, MPC604, MPC620 ( PIR )


    CV_JAVA_PC      = 1,


    CV_SH3_NOREG    =   CV_REG_NONE,

    CV_SH3_IntR0    =   10,   // CPU REGISTER
    CV_SH3_IntR1    =   11,
    CV_SH3_IntR2    =   12,
    CV_SH3_IntR3    =   13,
    CV_SH3_IntR4    =   14,
    CV_SH3_IntR5    =   15,
    CV_SH3_IntR6    =   16,
    CV_SH3_IntR7    =   17,
    CV_SH3_IntR8    =   18,
    CV_SH3_IntR9    =   19,
    CV_SH3_IntR10   =   20,
    CV_SH3_IntR11   =   21,
    CV_SH3_IntR12   =   22,
    CV_SH3_IntR13   =   23,
    CV_SH3_IntFp    =   24,
    CV_SH3_IntSp    =   25,
    CV_SH3_Gbr      =   38,
    CV_SH3_Pr       =   39,
    CV_SH3_Mach     =   40,
    CV_SH3_Macl     =   41,

    CV_SH3_Pc       =   50,
    CV_SH3_Sr       =   51,

    CV_SH3_BarA     =   60,
    CV_SH3_BasrA    =   61,
    CV_SH3_BamrA    =   62,
    CV_SH3_BbrA     =   63,
    CV_SH3_BarB     =   64,
    CV_SH3_BasrB    =   65,
    CV_SH3_BamrB    =   66,
    CV_SH3_BbrB     =   67,
    CV_SH3_BdrB     =   68,
    CV_SH3_BdmrB    =   69,
    CV_SH3_Brcr     =   70,


    CV_SH_Fpscr    =   75,    // floating point status/control register
    CV_SH_Fpul     =   76,    // floating point communication register

    CV_SH_FpR0     =   80,    // Floating point registers
    CV_SH_FpR1     =   81,
    CV_SH_FpR2     =   82,
    CV_SH_FpR3     =   83,
    CV_SH_FpR4     =   84,
    CV_SH_FpR5     =   85,
    CV_SH_FpR6     =   86,
    CV_SH_FpR7     =   87,
    CV_SH_FpR8     =   88,
    CV_SH_FpR9     =   89,
    CV_SH_FpR10    =   90,
    CV_SH_FpR11    =   91,
    CV_SH_FpR12    =   92,
    CV_SH_FpR13    =   93,
    CV_SH_FpR14    =   94,
    CV_SH_FpR15    =   95,

    CV_SH_XFpR0    =   96,
    CV_SH_XFpR1    =   97,
    CV_SH_XFpR2    =   98,
    CV_SH_XFpR3    =   99,
    CV_SH_XFpR4    =  100,
    CV_SH_XFpR5    =  101,
    CV_SH_XFpR6    =  102,
    CV_SH_XFpR7    =  103,
    CV_SH_XFpR8    =  104,
    CV_SH_XFpR9    =  105,
    CV_SH_XFpR10   =  106,
    CV_SH_XFpR11   =  107,
    CV_SH_XFpR12   =  108,
    CV_SH_XFpR13   =  109,
    CV_SH_XFpR14   =  110,
    CV_SH_XFpR15   =  111,


    CV_ARM_NOREG    =   CV_REG_NONE,

    CV_ARM_R0       =   10,
    CV_ARM_R1       =   11,
    CV_ARM_R2       =   12,
    CV_ARM_R3       =   13,
    CV_ARM_R4       =   14,
    CV_ARM_R5       =   15,
    CV_ARM_R6       =   16,
    CV_ARM_R7       =   17,
    CV_ARM_R8       =   18,
    CV_ARM_R9       =   19,
    CV_ARM_R10      =   20,
    CV_ARM_R11      =   21, // Frame pointer, if allocated
    CV_ARM_R12      =   22,
    CV_ARM_SP       =   23, // Stack pointer
    CV_ARM_LR       =   24, // Link Register
    CV_ARM_PC       =   25, // Program counter
    CV_ARM_CPSR     =   26, // Current program status register

    CV_ARM_ACC0     =   27, // DSP co-processor 0 40 bit accumulator

    
    CV_ARM_FPSCR    =   40,
    CV_ARM_FPEXC    =   41,
    
    CV_ARM_FS0      =   50,
    CV_ARM_FS1      =   51,
    CV_ARM_FS2      =   52,
    CV_ARM_FS3      =   53,
    CV_ARM_FS4      =   54,
    CV_ARM_FS5      =   55,
    CV_ARM_FS6      =   56,
    CV_ARM_FS7      =   57,
    CV_ARM_FS8      =   58,
    CV_ARM_FS9      =   59,
    CV_ARM_FS10     =   60,
    CV_ARM_FS11     =   61,
    CV_ARM_FS12     =   62,
    CV_ARM_FS13     =   63,
    CV_ARM_FS14     =   64,
    CV_ARM_FS15     =   65,
    CV_ARM_FS16     =   66,
    CV_ARM_FS17     =   67,
    CV_ARM_FS18     =   68,
    CV_ARM_FS19     =   69,
    CV_ARM_FS20     =   70,
    CV_ARM_FS21     =   71,
    CV_ARM_FS22     =   72,
    CV_ARM_FS23     =   73,
    CV_ARM_FS24     =   74,
    CV_ARM_FS25     =   75,
    CV_ARM_FS26     =   76,
    CV_ARM_FS27     =   77,
    CV_ARM_FS28     =   78,
    CV_ARM_FS29     =   79,
    CV_ARM_FS30     =   80,
    CV_ARM_FS31     =   81,

    
    CV_ARM_FPEXTRA0 =   90,
    CV_ARM_FPEXTRA1 =   91,
    CV_ARM_FPEXTRA2 =   92,
    CV_ARM_FPEXTRA3 =   93,
    CV_ARM_FPEXTRA4 =   94,
    CV_ARM_FPEXTRA5 =   95,
    CV_ARM_FPEXTRA6 =   96,
    CV_ARM_FPEXTRA7 =   97,

    CV_ARM_WR0      =   128, 
    CV_ARM_WR1      =   129, 
    CV_ARM_WR2      =   130, 
    CV_ARM_WR3      =   131, 
    CV_ARM_WR4      =   132, 
    CV_ARM_WR5      =   133, 
    CV_ARM_WR6      =   134, 
    CV_ARM_WR7      =   135, 
    CV_ARM_WR8      =   136, 
    CV_ARM_WR9      =   137, 
    CV_ARM_WR10     =   138, 
    CV_ARM_WR11     =   139, 
    CV_ARM_WR12     =   140, 
    CV_ARM_WR13     =   141, 
    CV_ARM_WR14     =   142, 
    CV_ARM_WR15     =   143, 
    
    CV_ARM_WCID     =   144,
    CV_ARM_WCON     =   145,
    CV_ARM_WCSSF    =   146,
    CV_ARM_WCASF    =   147,
    CV_ARM_WC4      =   148,
    CV_ARM_WC5      =   149,
    CV_ARM_WC6      =   150,
    CV_ARM_WC7      =   151,
    CV_ARM_WCGR0    =   152,
    CV_ARM_WCGR1    =   153,
    CV_ARM_WCGR2    =   154,
    CV_ARM_WCGR3    =   155,
    CV_ARM_WC12     =   156,
    CV_ARM_WC13     =   157,
    CV_ARM_WC14     =   158,
    CV_ARM_WC15     =   159,

    
    CV_ARM_FS32     =   200,
    CV_ARM_FS33     =   201,
    CV_ARM_FS34     =   202,
    CV_ARM_FS35     =   203,
    CV_ARM_FS36     =   204,
    CV_ARM_FS37     =   205,
    CV_ARM_FS38     =   206,
    CV_ARM_FS39     =   207,
    CV_ARM_FS40     =   208,
    CV_ARM_FS41     =   209,
    CV_ARM_FS42     =   210,
    CV_ARM_FS43     =   211,
    CV_ARM_FS44     =   212,
    CV_ARM_FS45     =   213,
    CV_ARM_FS46     =   214,
    CV_ARM_FS47     =   215,
    CV_ARM_FS48     =   216,
    CV_ARM_FS49     =   217,
    CV_ARM_FS50     =   218,
    CV_ARM_FS51     =   219,
    CV_ARM_FS52     =   220,
    CV_ARM_FS53     =   221,
    CV_ARM_FS54     =   222,
    CV_ARM_FS55     =   223,
    CV_ARM_FS56     =   224,
    CV_ARM_FS57     =   225,
    CV_ARM_FS58     =   226,
    CV_ARM_FS59     =   227,
    CV_ARM_FS60     =   228,
    CV_ARM_FS61     =   229,
    CV_ARM_FS62     =   230,
    CV_ARM_FS63     =   231,


    CV_ARM_ND0 = 300, 
    CV_ARM_ND1 = 301, 
    CV_ARM_ND2 = 302, 
    CV_ARM_ND3 = 303, 
    CV_ARM_ND4 = 304, 
    CV_ARM_ND5 = 305,
    CV_ARM_ND6 = 306, 
    CV_ARM_ND7 = 307, 
    CV_ARM_ND8 = 308, 
    CV_ARM_ND9 = 309, 
    CV_ARM_ND10 = 310, 
    CV_ARM_ND11 = 311,
    CV_ARM_ND12 = 312, 
    CV_ARM_ND13 = 313, 
    CV_ARM_ND14 = 314, 
    CV_ARM_ND15 = 315, 
    CV_ARM_ND16 = 316,
    CV_ARM_ND17 = 317, 
    CV_ARM_ND18 = 318, 
    CV_ARM_ND19 = 319, 
    CV_ARM_ND20 = 320, 
    CV_ARM_ND21 = 321,
    CV_ARM_ND22 = 322, 
    CV_ARM_ND23 = 323, 
    CV_ARM_ND24 = 324, 
    CV_ARM_ND25 = 325, 
    CV_ARM_ND26 = 326,
    CV_ARM_ND27 = 327, 
    CV_ARM_ND28 = 328, 
    CV_ARM_ND29 = 329, 
    CV_ARM_ND30 = 330, 
    CV_ARM_ND31 = 331,


    CV_ARM_NQ0 = 400, 
    CV_ARM_NQ1 = 401, 
    CV_ARM_NQ2 = 402, 
    CV_ARM_NQ3 = 403, 
    CV_ARM_NQ4 = 404, 
    CV_ARM_NQ5 = 405,
    CV_ARM_NQ6 = 406, 
    CV_ARM_NQ7 = 407, 
    CV_ARM_NQ8 = 408, 
    CV_ARM_NQ9 = 409, 
    CV_ARM_NQ10 = 410, 
    CV_ARM_NQ11 = 411,
    CV_ARM_NQ12 = 412, 
    CV_ARM_NQ13 = 413, 
    CV_ARM_NQ14 = 414, 
    CV_ARM_NQ15 = 415, 


    CV_ARM64_NOREG  =  CV_REG_NONE,


    CV_ARM64_W0     =  10,
    CV_ARM64_W1     =  11,
    CV_ARM64_W2     =  12,
    CV_ARM64_W3     =  13,
    CV_ARM64_W4     =  14,
    CV_ARM64_W5     =  15,
    CV_ARM64_W6     =  16,
    CV_ARM64_W7     =  17,
    CV_ARM64_W8     =  18,
    CV_ARM64_W9     =  19,
    CV_ARM64_W10    =  20,
    CV_ARM64_W11    =  21,
    CV_ARM64_W12    =  22,
    CV_ARM64_W13    =  23,
    CV_ARM64_W14    =  24,
    CV_ARM64_W15    =  25,
    CV_ARM64_W16    =  26,
    CV_ARM64_W17    =  27,
    CV_ARM64_W18    =  28,
    CV_ARM64_W19    =  29,
    CV_ARM64_W20    =  30,
    CV_ARM64_W21    =  31,
    CV_ARM64_W22    =  32,
    CV_ARM64_W23    =  33,
    CV_ARM64_W24    =  34,
    CV_ARM64_W25    =  35,
    CV_ARM64_W26    =  36,
    CV_ARM64_W27    =  37,
    CV_ARM64_W28    =  38,
    CV_ARM64_W29    =  39,
    CV_ARM64_W30    =  40,
    CV_ARM64_WZR    =  41,


    CV_ARM64_X0     =  50,
    CV_ARM64_X1     =  51,
    CV_ARM64_X2     =  52,
    CV_ARM64_X3     =  53,
    CV_ARM64_X4     =  54,
    CV_ARM64_X5     =  55,
    CV_ARM64_X6     =  56,
    CV_ARM64_X7     =  57,
    CV_ARM64_X8     =  58,
    CV_ARM64_X9     =  59,
    CV_ARM64_X10    =  60,
    CV_ARM64_X11    =  61,
    CV_ARM64_X12    =  62,
    CV_ARM64_X13    =  63,
    CV_ARM64_X14    =  64,
    CV_ARM64_X15    =  65,
    CV_ARM64_IP0    =  66,
    CV_ARM64_IP1    =  67,
    CV_ARM64_X18    =  68,
    CV_ARM64_X19    =  69,
    CV_ARM64_X20    =  70,
    CV_ARM64_X21    =  71,
    CV_ARM64_X22    =  72,
    CV_ARM64_X23    =  73,
    CV_ARM64_X24    =  74,
    CV_ARM64_X25    =  75,
    CV_ARM64_X26    =  76,
    CV_ARM64_X27    =  77,
    CV_ARM64_X28    =  78,
    CV_ARM64_FP     =  79,
    CV_ARM64_LR     =  80,
    CV_ARM64_SP     =  81,
    CV_ARM64_ZR     =  82,
    CV_ARM64_PC     =  83,


    CV_ARM64_NZCV   =  90,
    CV_ARM64_CPSR   =  91,


    CV_ARM64_S0     =  100,
    CV_ARM64_S1     =  101,
    CV_ARM64_S2     =  102,
    CV_ARM64_S3     =  103,
    CV_ARM64_S4     =  104,
    CV_ARM64_S5     =  105,
    CV_ARM64_S6     =  106,
    CV_ARM64_S7     =  107,
    CV_ARM64_S8     =  108,
    CV_ARM64_S9     =  109,
    CV_ARM64_S10    =  110,
    CV_ARM64_S11    =  111,
    CV_ARM64_S12    =  112,
    CV_ARM64_S13    =  113,
    CV_ARM64_S14    =  114,
    CV_ARM64_S15    =  115,
    CV_ARM64_S16    =  116,
    CV_ARM64_S17    =  117,
    CV_ARM64_S18    =  118,
    CV_ARM64_S19    =  119,
    CV_ARM64_S20    =  120,
    CV_ARM64_S21    =  121,
    CV_ARM64_S22    =  122,
    CV_ARM64_S23    =  123,
    CV_ARM64_S24    =  124,
    CV_ARM64_S25    =  125,
    CV_ARM64_S26    =  126,
    CV_ARM64_S27    =  127,
    CV_ARM64_S28    =  128,
    CV_ARM64_S29    =  129,
    CV_ARM64_S30    =  130,
    CV_ARM64_S31    =  131,


    CV_ARM64_D0     =  140,
    CV_ARM64_D1     =  141,
    CV_ARM64_D2     =  142,
    CV_ARM64_D3     =  143,
    CV_ARM64_D4     =  144,
    CV_ARM64_D5     =  145,
    CV_ARM64_D6     =  146,
    CV_ARM64_D7     =  147,
    CV_ARM64_D8     =  148,
    CV_ARM64_D9     =  149,
    CV_ARM64_D10    =  150,
    CV_ARM64_D11    =  151,
    CV_ARM64_D12    =  152,
    CV_ARM64_D13    =  153,
    CV_ARM64_D14    =  154,
    CV_ARM64_D15    =  155,
    CV_ARM64_D16    =  156,
    CV_ARM64_D17    =  157,
    CV_ARM64_D18    =  158,
    CV_ARM64_D19    =  159,
    CV_ARM64_D20    =  160,
    CV_ARM64_D21    =  161,
    CV_ARM64_D22    =  162,
    CV_ARM64_D23    =  163,
    CV_ARM64_D24    =  164,
    CV_ARM64_D25    =  165,
    CV_ARM64_D26    =  166,
    CV_ARM64_D27    =  167,
    CV_ARM64_D28    =  168,
    CV_ARM64_D29    =  169,
    CV_ARM64_D30    =  170,
    CV_ARM64_D31    =  171,


    CV_ARM64_Q0     =  180,
    CV_ARM64_Q1     =  181,
    CV_ARM64_Q2     =  182,
    CV_ARM64_Q3     =  183,
    CV_ARM64_Q4     =  184,
    CV_ARM64_Q5     =  185,
    CV_ARM64_Q6     =  186,
    CV_ARM64_Q7     =  187,
    CV_ARM64_Q8     =  188,
    CV_ARM64_Q9     =  189,
    CV_ARM64_Q10    =  190,
    CV_ARM64_Q11    =  191,
    CV_ARM64_Q12    =  192,
    CV_ARM64_Q13    =  193,
    CV_ARM64_Q14    =  194,
    CV_ARM64_Q15    =  195,
    CV_ARM64_Q16    =  196,
    CV_ARM64_Q17    =  197,
    CV_ARM64_Q18    =  198,
    CV_ARM64_Q19    =  199,
    CV_ARM64_Q20    =  200,
    CV_ARM64_Q21    =  201,
    CV_ARM64_Q22    =  202,
    CV_ARM64_Q23    =  203,
    CV_ARM64_Q24    =  204,
    CV_ARM64_Q25    =  205,
    CV_ARM64_Q26    =  206,
    CV_ARM64_Q27    =  207,
    CV_ARM64_Q28    =  208,
    CV_ARM64_Q29    =  209,
    CV_ARM64_Q30    =  210,
    CV_ARM64_Q31    =  211,


    CV_ARM64_FPSR   =  220,
    CV_ARM64_FPCR   =  221,
    

    CV_ARM64_B0     =  230,
    CV_ARM64_B1     =  231,
    CV_ARM64_B2     =  232,
    CV_ARM64_B3     =  233,
    CV_ARM64_B4     =  234,
    CV_ARM64_B5     =  235,
    CV_ARM64_B6     =  236,
    CV_ARM64_B7     =  237,
    CV_ARM64_B8     =  238,
    CV_ARM64_B9     =  239,
    CV_ARM64_B10    =  240,
    CV_ARM64_B11    =  241,
    CV_ARM64_B12    =  242,
    CV_ARM64_B13    =  243,
    CV_ARM64_B14    =  244,
    CV_ARM64_B15    =  245,
    CV_ARM64_B16    =  246,
    CV_ARM64_B17    =  247,
    CV_ARM64_B18    =  248,
    CV_ARM64_B19    =  249,
    CV_ARM64_B20    =  250,
    CV_ARM64_B21    =  251,
    CV_ARM64_B22    =  252,
    CV_ARM64_B23    =  253,
    CV_ARM64_B24    =  254,
    CV_ARM64_B25    =  255,
    CV_ARM64_B26    =  256,
    CV_ARM64_B27    =  257,
    CV_ARM64_B28    =  258,
    CV_ARM64_B29    =  259,
    CV_ARM64_B30    =  260,
    CV_ARM64_B31    =  261,


    CV_ARM64_H0     =  270,
    CV_ARM64_H1     =  271,
    CV_ARM64_H2     =  272,
    CV_ARM64_H3     =  273,
    CV_ARM64_H4     =  274,
    CV_ARM64_H5     =  275,
    CV_ARM64_H6     =  276,
    CV_ARM64_H7     =  277,
    CV_ARM64_H8     =  278,
    CV_ARM64_H9     =  279,
    CV_ARM64_H10    =  280,
    CV_ARM64_H11    =  281,
    CV_ARM64_H12    =  282,
    CV_ARM64_H13    =  283,
    CV_ARM64_H14    =  284,
    CV_ARM64_H15    =  285,
    CV_ARM64_H16    =  286,
    CV_ARM64_H17    =  287,
    CV_ARM64_H18    =  288,
    CV_ARM64_H19    =  289,
    CV_ARM64_H20    =  290,
    CV_ARM64_H21    =  291,
    CV_ARM64_H22    =  292,
    CV_ARM64_H23    =  293,
    CV_ARM64_H24    =  294,
    CV_ARM64_H25    =  295,
    CV_ARM64_H26    =  296,
    CV_ARM64_H27    =  297,
    CV_ARM64_H28    =  298,
    CV_ARM64_H29    =  299,
    CV_ARM64_H30    =  300,
    CV_ARM64_H31    =  301,

     
    CV_ARM64_V0     =  310,
    CV_ARM64_V1     =  311,
    CV_ARM64_V2     =  312,
    CV_ARM64_V3     =  313,
    CV_ARM64_V4     =  314,
    CV_ARM64_V5     =  315,
    CV_ARM64_V6     =  316,
    CV_ARM64_V7     =  317,
    CV_ARM64_V8     =  318,
    CV_ARM64_V9     =  319,
    CV_ARM64_V10    =  320,
    CV_ARM64_V11    =  321,
    CV_ARM64_V12    =  322,
    CV_ARM64_V13    =  323,
    CV_ARM64_V14    =  324,
    CV_ARM64_V15    =  325,
    CV_ARM64_V16    =  326,
    CV_ARM64_V17    =  327,
    CV_ARM64_V18    =  328,
    CV_ARM64_V19    =  329,
    CV_ARM64_V20    =  330,
    CV_ARM64_V21    =  331,
    CV_ARM64_V22    =  332,
    CV_ARM64_V23    =  333,
    CV_ARM64_V24    =  334,
    CV_ARM64_V25    =  335,
    CV_ARM64_V26    =  336,
    CV_ARM64_V27    =  337,
    CV_ARM64_V28    =  338,
    CV_ARM64_V29    =  339,
    CV_ARM64_V30    =  340,
    CV_ARM64_V31    =  341,


    CV_ARM64_Q0H    =  350,
    CV_ARM64_Q1H    =  351,
    CV_ARM64_Q2H    =  352,
    CV_ARM64_Q3H    =  353,
    CV_ARM64_Q4H    =  354,
    CV_ARM64_Q5H    =  355,
    CV_ARM64_Q6H    =  356,
    CV_ARM64_Q7H    =  357,
    CV_ARM64_Q8H    =  358,
    CV_ARM64_Q9H    =  359,
    CV_ARM64_Q10H   =  360,
    CV_ARM64_Q11H   =  361,
    CV_ARM64_Q12H   =  362,
    CV_ARM64_Q13H   =  363,
    CV_ARM64_Q14H   =  364,
    CV_ARM64_Q15H   =  365,
    CV_ARM64_Q16H   =  366,
    CV_ARM64_Q17H   =  367,
    CV_ARM64_Q18H   =  368,
    CV_ARM64_Q19H   =  369,
    CV_ARM64_Q20H   =  370,
    CV_ARM64_Q21H   =  371,
    CV_ARM64_Q22H   =  372,
    CV_ARM64_Q23H   =  373,
    CV_ARM64_Q24H   =  374,
    CV_ARM64_Q25H   =  375,
    CV_ARM64_Q26H   =  376,
    CV_ARM64_Q27H   =  377,
    CV_ARM64_Q28H   =  378,
    CV_ARM64_Q29H   =  379,
    CV_ARM64_Q30H   =  380,
    CV_ARM64_Q31H   =  381,


    CV_ARM64_Z0     =  382,
    CV_ARM64_Z1     =  383,
    CV_ARM64_Z2     =  384,
    CV_ARM64_Z3     =  385,
    CV_ARM64_Z4     =  386,
    CV_ARM64_Z5     =  387,
    CV_ARM64_Z6     =  388,
    CV_ARM64_Z7     =  389,
    CV_ARM64_Z8     =  390,
    CV_ARM64_Z9     =  391,
    CV_ARM64_Z10    =  392,
    CV_ARM64_Z11    =  393,
    CV_ARM64_Z12    =  394,
    CV_ARM64_Z13    =  395,
    CV_ARM64_Z14    =  396,
    CV_ARM64_Z15    =  397,
    CV_ARM64_Z16    =  398,
    CV_ARM64_Z17    =  399,
    CV_ARM64_Z18    =  400,
    CV_ARM64_Z19    =  401,
    CV_ARM64_Z20    =  402,
    CV_ARM64_Z21    =  403,
    CV_ARM64_Z22    =  404,
    CV_ARM64_Z23    =  405,
    CV_ARM64_Z24    =  406,
    CV_ARM64_Z25    =  407,
    CV_ARM64_Z26    =  408,
    CV_ARM64_Z27    =  409,
    CV_ARM64_Z28    =  410,
    CV_ARM64_Z29    =  411,
    CV_ARM64_Z30    =  412,
    CV_ARM64_Z31    =  413,

    CV_ARM64_P0     =  414,
    CV_ARM64_P1     =  415,
    CV_ARM64_P2     =  416,
    CV_ARM64_P3     =  417,
    CV_ARM64_P4     =  418,
    CV_ARM64_P5     =  419,
    CV_ARM64_P6     =  420,
    CV_ARM64_P7     =  421,
    CV_ARM64_P8     =  422,
    CV_ARM64_P9     =  423,
    CV_ARM64_P10    =  424,
    CV_ARM64_P11    =  425,
    CV_ARM64_P12    =  426,
    CV_ARM64_P13    =  427,
    CV_ARM64_P14    =  428,
    CV_ARM64_P15    =  429,

    CV_ARM64_FFR    =  430,


    CV_IA64_NOREG   =   CV_REG_NONE,


    CV_IA64_Br0     =   512,
    CV_IA64_Br1     =   513,
    CV_IA64_Br2     =   514,
    CV_IA64_Br3     =   515,
    CV_IA64_Br4     =   516,
    CV_IA64_Br5     =   517,
    CV_IA64_Br6     =   518,
    CV_IA64_Br7     =   519,


    CV_IA64_P0    =   704,
    CV_IA64_P1    =   705,
    CV_IA64_P2    =   706,
    CV_IA64_P3    =   707,
    CV_IA64_P4    =   708,
    CV_IA64_P5    =   709,
    CV_IA64_P6    =   710,
    CV_IA64_P7    =   711,
    CV_IA64_P8    =   712,
    CV_IA64_P9    =   713,
    CV_IA64_P10   =   714,
    CV_IA64_P11   =   715,
    CV_IA64_P12   =   716,
    CV_IA64_P13   =   717,
    CV_IA64_P14   =   718,
    CV_IA64_P15   =   719,
    CV_IA64_P16   =   720,
    CV_IA64_P17   =   721,
    CV_IA64_P18   =   722,
    CV_IA64_P19   =   723,
    CV_IA64_P20   =   724,
    CV_IA64_P21   =   725,
    CV_IA64_P22   =   726,
    CV_IA64_P23   =   727,
    CV_IA64_P24   =   728,
    CV_IA64_P25   =   729,
    CV_IA64_P26   =   730,
    CV_IA64_P27   =   731,
    CV_IA64_P28   =   732,
    CV_IA64_P29   =   733,
    CV_IA64_P30   =   734,
    CV_IA64_P31   =   735,
    CV_IA64_P32   =   736,
    CV_IA64_P33   =   737,
    CV_IA64_P34   =   738,
    CV_IA64_P35   =   739,
    CV_IA64_P36   =   740,
    CV_IA64_P37   =   741,
    CV_IA64_P38   =   742,
    CV_IA64_P39   =   743,
    CV_IA64_P40   =   744,
    CV_IA64_P41   =   745,
    CV_IA64_P42   =   746,
    CV_IA64_P43   =   747,
    CV_IA64_P44   =   748,
    CV_IA64_P45   =   749,
    CV_IA64_P46   =   750,
    CV_IA64_P47   =   751,
    CV_IA64_P48   =   752,
    CV_IA64_P49   =   753,
    CV_IA64_P50   =   754,
    CV_IA64_P51   =   755,
    CV_IA64_P52   =   756,
    CV_IA64_P53   =   757,
    CV_IA64_P54   =   758,
    CV_IA64_P55   =   759,
    CV_IA64_P56   =   760,
    CV_IA64_P57   =   761,
    CV_IA64_P58   =   762,
    CV_IA64_P59   =   763,
    CV_IA64_P60   =   764,
    CV_IA64_P61   =   765,
    CV_IA64_P62   =   766,
    CV_IA64_P63   =   767,

    CV_IA64_Preds   =   768,


    CV_IA64_IntH0   =   832,
    CV_IA64_IntH1   =   833,
    CV_IA64_IntH2   =   834,
    CV_IA64_IntH3   =   835,
    CV_IA64_IntH4   =   836,
    CV_IA64_IntH5   =   837,
    CV_IA64_IntH6   =   838,
    CV_IA64_IntH7   =   839,
    CV_IA64_IntH8   =   840,
    CV_IA64_IntH9   =   841,
    CV_IA64_IntH10  =   842,
    CV_IA64_IntH11  =   843,
    CV_IA64_IntH12  =   844,
    CV_IA64_IntH13  =   845,
    CV_IA64_IntH14  =   846,
    CV_IA64_IntH15  =   847,


    CV_IA64_Ip      =   1016,
    CV_IA64_Umask   =   1017,
    CV_IA64_Cfm     =   1018,
    CV_IA64_Psr     =   1019,


    CV_IA64_Nats    =   1020,
    CV_IA64_Nats2   =   1021,
    CV_IA64_Nats3   =   1022,


    CV_IA64_IntR0   =   1024,
    CV_IA64_IntR1   =   1025,
    CV_IA64_IntR2   =   1026,
    CV_IA64_IntR3   =   1027,
    CV_IA64_IntR4   =   1028,
    CV_IA64_IntR5   =   1029,
    CV_IA64_IntR6   =   1030,
    CV_IA64_IntR7   =   1031,
    CV_IA64_IntR8   =   1032,
    CV_IA64_IntR9   =   1033,
    CV_IA64_IntR10  =   1034,
    CV_IA64_IntR11  =   1035,
    CV_IA64_IntR12  =   1036,
    CV_IA64_IntR13  =   1037,
    CV_IA64_IntR14  =   1038,
    CV_IA64_IntR15  =   1039,
    CV_IA64_IntR16  =   1040,
    CV_IA64_IntR17  =   1041,
    CV_IA64_IntR18  =   1042,
    CV_IA64_IntR19  =   1043,
    CV_IA64_IntR20  =   1044,
    CV_IA64_IntR21  =   1045,
    CV_IA64_IntR22  =   1046,
    CV_IA64_IntR23  =   1047,
    CV_IA64_IntR24  =   1048,
    CV_IA64_IntR25  =   1049,
    CV_IA64_IntR26  =   1050,
    CV_IA64_IntR27  =   1051,
    CV_IA64_IntR28  =   1052,
    CV_IA64_IntR29  =   1053,
    CV_IA64_IntR30  =   1054,
    CV_IA64_IntR31  =   1055,

    CV_IA64_IntR32  =   1056,
    CV_IA64_IntR33  =   1057,
    CV_IA64_IntR34  =   1058,
    CV_IA64_IntR35  =   1059,
    CV_IA64_IntR36  =   1060,
    CV_IA64_IntR37  =   1061,
    CV_IA64_IntR38  =   1062,
    CV_IA64_IntR39  =   1063,
    CV_IA64_IntR40  =   1064,
    CV_IA64_IntR41  =   1065,
    CV_IA64_IntR42  =   1066,
    CV_IA64_IntR43  =   1067,
    CV_IA64_IntR44  =   1068,
    CV_IA64_IntR45  =   1069,
    CV_IA64_IntR46  =   1070,
    CV_IA64_IntR47  =   1071,
    CV_IA64_IntR48  =   1072,
    CV_IA64_IntR49  =   1073,
    CV_IA64_IntR50  =   1074,
    CV_IA64_IntR51  =   1075,
    CV_IA64_IntR52  =   1076,
    CV_IA64_IntR53  =   1077,
    CV_IA64_IntR54  =   1078,
    CV_IA64_IntR55  =   1079,
    CV_IA64_IntR56  =   1080,
    CV_IA64_IntR57  =   1081,
    CV_IA64_IntR58  =   1082,
    CV_IA64_IntR59  =   1083,
    CV_IA64_IntR60  =   1084,
    CV_IA64_IntR61  =   1085,
    CV_IA64_IntR62  =   1086,
    CV_IA64_IntR63  =   1087,
    CV_IA64_IntR64  =   1088,
    CV_IA64_IntR65  =   1089,
    CV_IA64_IntR66  =   1090,
    CV_IA64_IntR67  =   1091,
    CV_IA64_IntR68  =   1092,
    CV_IA64_IntR69  =   1093,
    CV_IA64_IntR70  =   1094,
    CV_IA64_IntR71  =   1095,
    CV_IA64_IntR72  =   1096,
    CV_IA64_IntR73  =   1097,
    CV_IA64_IntR74  =   1098,
    CV_IA64_IntR75  =   1099,
    CV_IA64_IntR76  =   1100,
    CV_IA64_IntR77  =   1101,
    CV_IA64_IntR78  =   1102,
    CV_IA64_IntR79  =   1103,
    CV_IA64_IntR80  =   1104,
    CV_IA64_IntR81  =   1105,
    CV_IA64_IntR82  =   1106,
    CV_IA64_IntR83  =   1107,
    CV_IA64_IntR84  =   1108,
    CV_IA64_IntR85  =   1109,
    CV_IA64_IntR86  =   1110,
    CV_IA64_IntR87  =   1111,
    CV_IA64_IntR88  =   1112,
    CV_IA64_IntR89  =   1113,
    CV_IA64_IntR90  =   1114,
    CV_IA64_IntR91  =   1115,
    CV_IA64_IntR92  =   1116,
    CV_IA64_IntR93  =   1117,
    CV_IA64_IntR94  =   1118,
    CV_IA64_IntR95  =   1119,
    CV_IA64_IntR96  =   1120,
    CV_IA64_IntR97  =   1121,
    CV_IA64_IntR98  =   1122,
    CV_IA64_IntR99  =   1123,
    CV_IA64_IntR100 =   1124,
    CV_IA64_IntR101 =   1125,
    CV_IA64_IntR102 =   1126,
    CV_IA64_IntR103 =   1127,
    CV_IA64_IntR104 =   1128,
    CV_IA64_IntR105 =   1129,
    CV_IA64_IntR106 =   1130,
    CV_IA64_IntR107 =   1131,
    CV_IA64_IntR108 =   1132,
    CV_IA64_IntR109 =   1133,
    CV_IA64_IntR110 =   1134,
    CV_IA64_IntR111 =   1135,
    CV_IA64_IntR112 =   1136,
    CV_IA64_IntR113 =   1137,
    CV_IA64_IntR114 =   1138,
    CV_IA64_IntR115 =   1139,
    CV_IA64_IntR116 =   1140,
    CV_IA64_IntR117 =   1141,
    CV_IA64_IntR118 =   1142,
    CV_IA64_IntR119 =   1143,
    CV_IA64_IntR120 =   1144,
    CV_IA64_IntR121 =   1145,
    CV_IA64_IntR122 =   1146,
    CV_IA64_IntR123 =   1147,
    CV_IA64_IntR124 =   1148,
    CV_IA64_IntR125 =   1149,
    CV_IA64_IntR126 =   1150,
    CV_IA64_IntR127 =   1151,


    CV_IA64_FltF0   =   2048,
    CV_IA64_FltF1   =   2049,
    CV_IA64_FltF2   =   2050,
    CV_IA64_FltF3   =   2051,
    CV_IA64_FltF4   =   2052,
    CV_IA64_FltF5   =   2053,
    CV_IA64_FltF6   =   2054,
    CV_IA64_FltF7   =   2055,
    CV_IA64_FltF8   =   2056,
    CV_IA64_FltF9   =   2057,
    CV_IA64_FltF10  =   2058,
    CV_IA64_FltF11  =   2059,
    CV_IA64_FltF12  =   2060,
    CV_IA64_FltF13  =   2061,
    CV_IA64_FltF14  =   2062,
    CV_IA64_FltF15  =   2063,
    CV_IA64_FltF16  =   2064,
    CV_IA64_FltF17  =   2065,
    CV_IA64_FltF18  =   2066,
    CV_IA64_FltF19  =   2067,
    CV_IA64_FltF20  =   2068,
    CV_IA64_FltF21  =   2069,
    CV_IA64_FltF22  =   2070,
    CV_IA64_FltF23  =   2071,
    CV_IA64_FltF24  =   2072,
    CV_IA64_FltF25  =   2073,
    CV_IA64_FltF26  =   2074,
    CV_IA64_FltF27  =   2075,
    CV_IA64_FltF28  =   2076,
    CV_IA64_FltF29  =   2077,
    CV_IA64_FltF30  =   2078,
    CV_IA64_FltF31  =   2079,

    CV_IA64_FltF32  =   2080,
    CV_IA64_FltF33  =   2081,
    CV_IA64_FltF34  =   2082,
    CV_IA64_FltF35  =   2083,
    CV_IA64_FltF36  =   2084,
    CV_IA64_FltF37  =   2085,
    CV_IA64_FltF38  =   2086,
    CV_IA64_FltF39  =   2087,
    CV_IA64_FltF40  =   2088,
    CV_IA64_FltF41  =   2089,
    CV_IA64_FltF42  =   2090,
    CV_IA64_FltF43  =   2091,
    CV_IA64_FltF44  =   2092,
    CV_IA64_FltF45  =   2093,
    CV_IA64_FltF46  =   2094,
    CV_IA64_FltF47  =   2095,
    CV_IA64_FltF48  =   2096,
    CV_IA64_FltF49  =   2097,
    CV_IA64_FltF50  =   2098,
    CV_IA64_FltF51  =   2099,
    CV_IA64_FltF52  =   2100,
    CV_IA64_FltF53  =   2101,
    CV_IA64_FltF54  =   2102,
    CV_IA64_FltF55  =   2103,
    CV_IA64_FltF56  =   2104,
    CV_IA64_FltF57  =   2105,
    CV_IA64_FltF58  =   2106,
    CV_IA64_FltF59  =   2107,
    CV_IA64_FltF60  =   2108,
    CV_IA64_FltF61  =   2109,
    CV_IA64_FltF62  =   2110,
    CV_IA64_FltF63  =   2111,
    CV_IA64_FltF64  =   2112,
    CV_IA64_FltF65  =   2113,
    CV_IA64_FltF66  =   2114,
    CV_IA64_FltF67  =   2115,
    CV_IA64_FltF68  =   2116,
    CV_IA64_FltF69  =   2117,
    CV_IA64_FltF70  =   2118,
    CV_IA64_FltF71  =   2119,
    CV_IA64_FltF72  =   2120,
    CV_IA64_FltF73  =   2121,
    CV_IA64_FltF74  =   2122,
    CV_IA64_FltF75  =   2123,
    CV_IA64_FltF76  =   2124,
    CV_IA64_FltF77  =   2125,
    CV_IA64_FltF78  =   2126,
    CV_IA64_FltF79  =   2127,
    CV_IA64_FltF80  =   2128,
    CV_IA64_FltF81  =   2129,
    CV_IA64_FltF82  =   2130,
    CV_IA64_FltF83  =   2131,
    CV_IA64_FltF84  =   2132,
    CV_IA64_FltF85  =   2133,
    CV_IA64_FltF86  =   2134,
    CV_IA64_FltF87  =   2135,
    CV_IA64_FltF88  =   2136,
    CV_IA64_FltF89  =   2137,
    CV_IA64_FltF90  =   2138,
    CV_IA64_FltF91  =   2139,
    CV_IA64_FltF92  =   2140,
    CV_IA64_FltF93  =   2141,
    CV_IA64_FltF94  =   2142,
    CV_IA64_FltF95  =   2143,
    CV_IA64_FltF96  =   2144,
    CV_IA64_FltF97  =   2145,
    CV_IA64_FltF98  =   2146,
    CV_IA64_FltF99  =   2147,
    CV_IA64_FltF100 =   2148,
    CV_IA64_FltF101 =   2149,
    CV_IA64_FltF102 =   2150,
    CV_IA64_FltF103 =   2151,
    CV_IA64_FltF104 =   2152,
    CV_IA64_FltF105 =   2153,
    CV_IA64_FltF106 =   2154,
    CV_IA64_FltF107 =   2155,
    CV_IA64_FltF108 =   2156,
    CV_IA64_FltF109 =   2157,
    CV_IA64_FltF110 =   2158,
    CV_IA64_FltF111 =   2159,
    CV_IA64_FltF112 =   2160,
    CV_IA64_FltF113 =   2161,
    CV_IA64_FltF114 =   2162,
    CV_IA64_FltF115 =   2163,
    CV_IA64_FltF116 =   2164,
    CV_IA64_FltF117 =   2165,
    CV_IA64_FltF118 =   2166,
    CV_IA64_FltF119 =   2167,
    CV_IA64_FltF120 =   2168,
    CV_IA64_FltF121 =   2169,
    CV_IA64_FltF122 =   2170,
    CV_IA64_FltF123 =   2171,
    CV_IA64_FltF124 =   2172,
    CV_IA64_FltF125 =   2173,
    CV_IA64_FltF126 =   2174,
    CV_IA64_FltF127 =   2175,


    CV_IA64_ApKR0   =   3072,
    CV_IA64_ApKR1   =   3073,
    CV_IA64_ApKR2   =   3074,
    CV_IA64_ApKR3   =   3075,
    CV_IA64_ApKR4   =   3076,
    CV_IA64_ApKR5   =   3077,
    CV_IA64_ApKR6   =   3078,
    CV_IA64_ApKR7   =   3079,
    CV_IA64_AR8     =   3080,
    CV_IA64_AR9     =   3081,
    CV_IA64_AR10    =   3082,
    CV_IA64_AR11    =   3083,
    CV_IA64_AR12    =   3084,
    CV_IA64_AR13    =   3085,
    CV_IA64_AR14    =   3086,
    CV_IA64_AR15    =   3087,
    CV_IA64_RsRSC   =   3088,
    CV_IA64_RsBSP   =   3089,
    CV_IA64_RsBSPSTORE  =   3090,
    CV_IA64_RsRNAT  =   3091,
    CV_IA64_AR20    =   3092,
    CV_IA64_StFCR   =   3093,
    CV_IA64_AR22    =   3094,
    CV_IA64_AR23    =   3095,
    CV_IA64_EFLAG   =   3096,
    CV_IA64_CSD     =   3097,
    CV_IA64_SSD     =   3098,
    CV_IA64_CFLG    =   3099,
    CV_IA64_StFSR   =   3100,
    CV_IA64_StFIR   =   3101,
    CV_IA64_StFDR   =   3102,
    CV_IA64_AR31    =   3103,
    CV_IA64_ApCCV   =   3104,
    CV_IA64_AR33    =   3105,
    CV_IA64_AR34    =   3106,
    CV_IA64_AR35    =   3107,
    CV_IA64_ApUNAT  =   3108,
    CV_IA64_AR37    =   3109,
    CV_IA64_AR38    =   3110,
    CV_IA64_AR39    =   3111,
    CV_IA64_StFPSR  =   3112,
    CV_IA64_AR41    =   3113,
    CV_IA64_AR42    =   3114,
    CV_IA64_AR43    =   3115,
    CV_IA64_ApITC   =   3116,
    CV_IA64_AR45    =   3117,
    CV_IA64_AR46    =   3118,
    CV_IA64_AR47    =   3119,
    CV_IA64_AR48    =   3120,
    CV_IA64_AR49    =   3121,
    CV_IA64_AR50    =   3122,
    CV_IA64_AR51    =   3123,
    CV_IA64_AR52    =   3124,
    CV_IA64_AR53    =   3125,
    CV_IA64_AR54    =   3126,
    CV_IA64_AR55    =   3127,
    CV_IA64_AR56    =   3128,
    CV_IA64_AR57    =   3129,
    CV_IA64_AR58    =   3130,
    CV_IA64_AR59    =   3131,
    CV_IA64_AR60    =   3132,
    CV_IA64_AR61    =   3133,
    CV_IA64_AR62    =   3134,
    CV_IA64_AR63    =   3135,
    CV_IA64_RsPFS   =   3136,
    CV_IA64_ApLC    =   3137,
    CV_IA64_ApEC    =   3138,
    CV_IA64_AR67    =   3139,
    CV_IA64_AR68    =   3140,
    CV_IA64_AR69    =   3141,
    CV_IA64_AR70    =   3142,
    CV_IA64_AR71    =   3143,
    CV_IA64_AR72    =   3144,
    CV_IA64_AR73    =   3145,
    CV_IA64_AR74    =   3146,
    CV_IA64_AR75    =   3147,
    CV_IA64_AR76    =   3148,
    CV_IA64_AR77    =   3149,
    CV_IA64_AR78    =   3150,
    CV_IA64_AR79    =   3151,
    CV_IA64_AR80    =   3152,
    CV_IA64_AR81    =   3153,
    CV_IA64_AR82    =   3154,
    CV_IA64_AR83    =   3155,
    CV_IA64_AR84    =   3156,
    CV_IA64_AR85    =   3157,
    CV_IA64_AR86    =   3158,
    CV_IA64_AR87    =   3159,
    CV_IA64_AR88    =   3160,
    CV_IA64_AR89    =   3161,
    CV_IA64_AR90    =   3162,
    CV_IA64_AR91    =   3163,
    CV_IA64_AR92    =   3164,
    CV_IA64_AR93    =   3165,
    CV_IA64_AR94    =   3166,
    CV_IA64_AR95    =   3167,
    CV_IA64_AR96    =   3168,
    CV_IA64_AR97    =   3169,
    CV_IA64_AR98    =   3170,
    CV_IA64_AR99    =   3171,
    CV_IA64_AR100   =   3172,
    CV_IA64_AR101   =   3173,
    CV_IA64_AR102   =   3174,
    CV_IA64_AR103   =   3175,
    CV_IA64_AR104   =   3176,
    CV_IA64_AR105   =   3177,
    CV_IA64_AR106   =   3178,
    CV_IA64_AR107   =   3179,
    CV_IA64_AR108   =   3180,
    CV_IA64_AR109   =   3181,
    CV_IA64_AR110   =   3182,
    CV_IA64_AR111   =   3183,
    CV_IA64_AR112   =   3184,
    CV_IA64_AR113   =   3185,
    CV_IA64_AR114   =   3186,
    CV_IA64_AR115   =   3187,
    CV_IA64_AR116   =   3188,
    CV_IA64_AR117   =   3189,
    CV_IA64_AR118   =   3190,
    CV_IA64_AR119   =   3191,
    CV_IA64_AR120   =   3192,
    CV_IA64_AR121   =   3193,
    CV_IA64_AR122   =   3194,
    CV_IA64_AR123   =   3195,
    CV_IA64_AR124   =   3196,
    CV_IA64_AR125   =   3197,
    CV_IA64_AR126   =   3198,
    CV_IA64_AR127   =   3199,


    CV_IA64_CPUID0  =   3328,
    CV_IA64_CPUID1  =   3329,
    CV_IA64_CPUID2  =   3330,
    CV_IA64_CPUID3  =   3331,
    CV_IA64_CPUID4  =   3332,


    CV_IA64_ApDCR   =   4096,
    CV_IA64_ApITM   =   4097,
    CV_IA64_ApIVA   =   4098,
    CV_IA64_CR3     =   4099,
    CV_IA64_CR4     =   4100,
    CV_IA64_CR5     =   4101,
    CV_IA64_CR6     =   4102,
    CV_IA64_CR7     =   4103,
    CV_IA64_ApPTA   =   4104,
    CV_IA64_ApGPTA  =   4105,
    CV_IA64_CR10    =   4106,
    CV_IA64_CR11    =   4107,
    CV_IA64_CR12    =   4108,
    CV_IA64_CR13    =   4109,
    CV_IA64_CR14    =   4110,
    CV_IA64_CR15    =   4111,
    CV_IA64_StIPSR  =   4112,
    CV_IA64_StISR   =   4113,
    CV_IA64_CR18    =   4114,
    CV_IA64_StIIP   =   4115,
    CV_IA64_StIFA   =   4116,
    CV_IA64_StITIR  =   4117,
    CV_IA64_StIIPA  =   4118,
    CV_IA64_StIFS   =   4119,
    CV_IA64_StIIM   =   4120,
    CV_IA64_StIHA   =   4121,
    CV_IA64_CR26    =   4122,
    CV_IA64_CR27    =   4123,
    CV_IA64_CR28    =   4124,
    CV_IA64_CR29    =   4125,
    CV_IA64_CR30    =   4126,
    CV_IA64_CR31    =   4127,
    CV_IA64_CR32    =   4128,
    CV_IA64_CR33    =   4129,
    CV_IA64_CR34    =   4130,
    CV_IA64_CR35    =   4131,
    CV_IA64_CR36    =   4132,
    CV_IA64_CR37    =   4133,
    CV_IA64_CR38    =   4134,
    CV_IA64_CR39    =   4135,
    CV_IA64_CR40    =   4136,
    CV_IA64_CR41    =   4137,
    CV_IA64_CR42    =   4138,
    CV_IA64_CR43    =   4139,
    CV_IA64_CR44    =   4140,
    CV_IA64_CR45    =   4141,
    CV_IA64_CR46    =   4142,
    CV_IA64_CR47    =   4143,
    CV_IA64_CR48    =   4144,
    CV_IA64_CR49    =   4145,
    CV_IA64_CR50    =   4146,
    CV_IA64_CR51    =   4147,
    CV_IA64_CR52    =   4148,
    CV_IA64_CR53    =   4149,
    CV_IA64_CR54    =   4150,
    CV_IA64_CR55    =   4151,
    CV_IA64_CR56    =   4152,
    CV_IA64_CR57    =   4153,
    CV_IA64_CR58    =   4154,
    CV_IA64_CR59    =   4155,
    CV_IA64_CR60    =   4156,
    CV_IA64_CR61    =   4157,
    CV_IA64_CR62    =   4158,
    CV_IA64_CR63    =   4159,
    CV_IA64_SaLID   =   4160,
    CV_IA64_SaIVR   =   4161,
    CV_IA64_SaTPR   =   4162,
    CV_IA64_SaEOI   =   4163,
    CV_IA64_SaIRR0  =   4164,
    CV_IA64_SaIRR1  =   4165,
    CV_IA64_SaIRR2  =   4166,
    CV_IA64_SaIRR3  =   4167,
    CV_IA64_SaITV   =   4168,
    CV_IA64_SaPMV   =   4169,
    CV_IA64_SaCMCV  =   4170,
    CV_IA64_CR75    =   4171,
    CV_IA64_CR76    =   4172,
    CV_IA64_CR77    =   4173,
    CV_IA64_CR78    =   4174,
    CV_IA64_CR79    =   4175,
    CV_IA64_SaLRR0  =   4176,
    CV_IA64_SaLRR1  =   4177,
    CV_IA64_CR82    =   4178,
    CV_IA64_CR83    =   4179,
    CV_IA64_CR84    =   4180,
    CV_IA64_CR85    =   4181,
    CV_IA64_CR86    =   4182,
    CV_IA64_CR87    =   4183,
    CV_IA64_CR88    =   4184,
    CV_IA64_CR89    =   4185,
    CV_IA64_CR90    =   4186,
    CV_IA64_CR91    =   4187,
    CV_IA64_CR92    =   4188,
    CV_IA64_CR93    =   4189,
    CV_IA64_CR94    =   4190,
    CV_IA64_CR95    =   4191,
    CV_IA64_CR96    =   4192,
    CV_IA64_CR97    =   4193,
    CV_IA64_CR98    =   4194,
    CV_IA64_CR99    =   4195,
    CV_IA64_CR100   =   4196,
    CV_IA64_CR101   =   4197,
    CV_IA64_CR102   =   4198,
    CV_IA64_CR103   =   4199,
    CV_IA64_CR104   =   4200,
    CV_IA64_CR105   =   4201,
    CV_IA64_CR106   =   4202,
    CV_IA64_CR107   =   4203,
    CV_IA64_CR108   =   4204,
    CV_IA64_CR109   =   4205,
    CV_IA64_CR110   =   4206,
    CV_IA64_CR111   =   4207,
    CV_IA64_CR112   =   4208,
    CV_IA64_CR113   =   4209,
    CV_IA64_CR114   =   4210,
    CV_IA64_CR115   =   4211,
    CV_IA64_CR116   =   4212,
    CV_IA64_CR117   =   4213,
    CV_IA64_CR118   =   4214,
    CV_IA64_CR119   =   4215,
    CV_IA64_CR120   =   4216,
    CV_IA64_CR121   =   4217,
    CV_IA64_CR122   =   4218,
    CV_IA64_CR123   =   4219,
    CV_IA64_CR124   =   4220,
    CV_IA64_CR125   =   4221,
    CV_IA64_CR126   =   4222,
    CV_IA64_CR127   =   4223,


    CV_IA64_Pkr0    =   5120,
    CV_IA64_Pkr1    =   5121,
    CV_IA64_Pkr2    =   5122,
    CV_IA64_Pkr3    =   5123,
    CV_IA64_Pkr4    =   5124,
    CV_IA64_Pkr5    =   5125,
    CV_IA64_Pkr6    =   5126,
    CV_IA64_Pkr7    =   5127,
    CV_IA64_Pkr8    =   5128,
    CV_IA64_Pkr9    =   5129,
    CV_IA64_Pkr10   =   5130,
    CV_IA64_Pkr11   =   5131,
    CV_IA64_Pkr12   =   5132,
    CV_IA64_Pkr13   =   5133,
    CV_IA64_Pkr14   =   5134,
    CV_IA64_Pkr15   =   5135,


    CV_IA64_Rr0     =   6144,
    CV_IA64_Rr1     =   6145,
    CV_IA64_Rr2     =   6146,
    CV_IA64_Rr3     =   6147,
    CV_IA64_Rr4     =   6148,
    CV_IA64_Rr5     =   6149,
    CV_IA64_Rr6     =   6150,
    CV_IA64_Rr7     =   6151,


    CV_IA64_PFD0    =   7168,
    CV_IA64_PFD1    =   7169,
    CV_IA64_PFD2    =   7170,
    CV_IA64_PFD3    =   7171,
    CV_IA64_PFD4    =   7172,
    CV_IA64_PFD5    =   7173,
    CV_IA64_PFD6    =   7174,
    CV_IA64_PFD7    =   7175,
    CV_IA64_PFD8    =   7176,
    CV_IA64_PFD9    =   7177,
    CV_IA64_PFD10   =   7178,
    CV_IA64_PFD11   =   7179,
    CV_IA64_PFD12   =   7180,
    CV_IA64_PFD13   =   7181,
    CV_IA64_PFD14   =   7182,
    CV_IA64_PFD15   =   7183,
    CV_IA64_PFD16   =   7184,
    CV_IA64_PFD17   =   7185,


    CV_IA64_PFC0    =   7424,
    CV_IA64_PFC1    =   7425,
    CV_IA64_PFC2    =   7426,
    CV_IA64_PFC3    =   7427,
    CV_IA64_PFC4    =   7428,
    CV_IA64_PFC5    =   7429,
    CV_IA64_PFC6    =   7430,
    CV_IA64_PFC7    =   7431,
    CV_IA64_PFC8    =   7432,
    CV_IA64_PFC9    =   7433,
    CV_IA64_PFC10   =   7434,
    CV_IA64_PFC11   =   7435,
    CV_IA64_PFC12   =   7436,
    CV_IA64_PFC13   =   7437,
    CV_IA64_PFC14   =   7438,
    CV_IA64_PFC15   =   7439,


    CV_IA64_TrI0    =   8192,
    CV_IA64_TrI1    =   8193,
    CV_IA64_TrI2    =   8194,
    CV_IA64_TrI3    =   8195,
    CV_IA64_TrI4    =   8196,
    CV_IA64_TrI5    =   8197,
    CV_IA64_TrI6    =   8198,
    CV_IA64_TrI7    =   8199,


    CV_IA64_TrD0    =   8320,
    CV_IA64_TrD1    =   8321,
    CV_IA64_TrD2    =   8322,
    CV_IA64_TrD3    =   8323,
    CV_IA64_TrD4    =   8324,
    CV_IA64_TrD5    =   8325,
    CV_IA64_TrD6    =   8326,
    CV_IA64_TrD7    =   8327,


    CV_IA64_DbI0    =   8448,
    CV_IA64_DbI1    =   8449,
    CV_IA64_DbI2    =   8450,
    CV_IA64_DbI3    =   8451,
    CV_IA64_DbI4    =   8452,
    CV_IA64_DbI5    =   8453,
    CV_IA64_DbI6    =   8454,
    CV_IA64_DbI7    =   8455,


    CV_IA64_DbD0    =   8576,
    CV_IA64_DbD1    =   8577,
    CV_IA64_DbD2    =   8578,
    CV_IA64_DbD3    =   8579,
    CV_IA64_DbD4    =   8580,
    CV_IA64_DbD5    =   8581,
    CV_IA64_DbD6    =   8582,
    CV_IA64_DbD7    =   8583,


    CV_TRI_NOREG    =   CV_REG_NONE,


    CV_TRI_D0   =   10,
    CV_TRI_D1   =   11,
    CV_TRI_D2   =   12,
    CV_TRI_D3   =   13,
    CV_TRI_D4   =   14,
    CV_TRI_D5   =   15,
    CV_TRI_D6   =   16,
    CV_TRI_D7   =   17,
    CV_TRI_D8   =   18,
    CV_TRI_D9   =   19,
    CV_TRI_D10  =   20,
    CV_TRI_D11  =   21,
    CV_TRI_D12  =   22,
    CV_TRI_D13  =   23,
    CV_TRI_D14  =   24,
    CV_TRI_D15  =   25,


    CV_TRI_A0   =   26,
    CV_TRI_A1   =   27,
    CV_TRI_A2   =   28,
    CV_TRI_A3   =   29,
    CV_TRI_A4   =   30,
    CV_TRI_A5   =   31,
    CV_TRI_A6   =   32,
    CV_TRI_A7   =   33,
    CV_TRI_A8   =   34,
    CV_TRI_A9   =   35,
    CV_TRI_A10  =   36,
    CV_TRI_A11  =   37,
    CV_TRI_A12  =   38,
    CV_TRI_A13  =   39,
    CV_TRI_A14  =   40,
    CV_TRI_A15  =   41,


    CV_TRI_E0   =   42,
    CV_TRI_E2   =   43,
    CV_TRI_E4   =   44,
    CV_TRI_E6   =   45,
    CV_TRI_E8   =   46,
    CV_TRI_E10  =   47,
    CV_TRI_E12  =   48,
    CV_TRI_E14  =   49,


    CV_TRI_EA0  =   50,
    CV_TRI_EA2  =   51,
    CV_TRI_EA4  =   52,
    CV_TRI_EA6  =   53,
    CV_TRI_EA8  =   54,
    CV_TRI_EA10 =   55,
    CV_TRI_EA12 =   56,
    CV_TRI_EA14 =   57,

    CV_TRI_PSW  =   58,
    CV_TRI_PCXI =   59,
    CV_TRI_PC   =   60,
    CV_TRI_FCX  =   61,
    CV_TRI_LCX  =   62,
    CV_TRI_ISP  =   63,
    CV_TRI_ICR  =   64,
    CV_TRI_BIV  =   65,
    CV_TRI_BTV  =   66,
    CV_TRI_SYSCON   =   67,
    CV_TRI_DPRx_0   =   68,
    CV_TRI_DPRx_1   =   69,
    CV_TRI_DPRx_2   =   70,
    CV_TRI_DPRx_3   =   71,
    CV_TRI_CPRx_0   =   68,
    CV_TRI_CPRx_1   =   69,
    CV_TRI_CPRx_2   =   70,
    CV_TRI_CPRx_3   =   71,
    CV_TRI_DPMx_0   =   68,
    CV_TRI_DPMx_1   =   69,
    CV_TRI_DPMx_2   =   70,
    CV_TRI_DPMx_3   =   71,
    CV_TRI_CPMx_0   =   68,
    CV_TRI_CPMx_1   =   69,
    CV_TRI_CPMx_2   =   70,
    CV_TRI_CPMx_3   =   71,
    CV_TRI_DBGSSR   =   72,
    CV_TRI_EXEVT    =   73,
    CV_TRI_SWEVT    =   74,
    CV_TRI_CREVT    =   75,
    CV_TRI_TRnEVT   =   76,
    CV_TRI_MMUCON   =   77,
    CV_TRI_ASI      =   78,
    CV_TRI_TVA      =   79,
    CV_TRI_TPA      =   80,
    CV_TRI_TPX      =   81,
    CV_TRI_TFA      =   82,


    CV_AM33_NOREG   =   CV_REG_NONE,

    CV_AM33_E0      =   10,
    CV_AM33_E1      =   11,
    CV_AM33_E2      =   12,
    CV_AM33_E3      =   13,
    CV_AM33_E4      =   14,
    CV_AM33_E5      =   15,
    CV_AM33_E6      =   16,
    CV_AM33_E7      =   17,

    CV_AM33_A0      =   20,
    CV_AM33_A1      =   21,
    CV_AM33_A2      =   22,
    CV_AM33_A3      =   23,

    CV_AM33_D0      =   30,
    CV_AM33_D1      =   31,
    CV_AM33_D2      =   32,
    CV_AM33_D3      =   33,

    CV_AM33_FS0     =   40,
    CV_AM33_FS1     =   41,
    CV_AM33_FS2     =   42,
    CV_AM33_FS3     =   43,
    CV_AM33_FS4     =   44,
    CV_AM33_FS5     =   45,
    CV_AM33_FS6     =   46,
    CV_AM33_FS7     =   47,
    CV_AM33_FS8     =   48,
    CV_AM33_FS9     =   49,
    CV_AM33_FS10    =   50,
    CV_AM33_FS11    =   51,
    CV_AM33_FS12    =   52,
    CV_AM33_FS13    =   53,
    CV_AM33_FS14    =   54,
    CV_AM33_FS15    =   55,
    CV_AM33_FS16    =   56,
    CV_AM33_FS17    =   57,
    CV_AM33_FS18    =   58,
    CV_AM33_FS19    =   59,
    CV_AM33_FS20    =   60,
    CV_AM33_FS21    =   61,
    CV_AM33_FS22    =   62,
    CV_AM33_FS23    =   63,
    CV_AM33_FS24    =   64,
    CV_AM33_FS25    =   65,
    CV_AM33_FS26    =   66,
    CV_AM33_FS27    =   67,
    CV_AM33_FS28    =   68,
    CV_AM33_FS29    =   69,
    CV_AM33_FS30    =   70,
    CV_AM33_FS31    =   71,


    CV_AM33_SP      =   80,

    CV_AM33_PC      =   81,

    CV_AM33_MDR     =   82,
    CV_AM33_MDRQ    =   83,
    CV_AM33_MCRH    =   84,
    CV_AM33_MCRL    =   85,
    CV_AM33_MCVF    =   86,

    CV_AM33_EPSW    =   87,
    CV_AM33_FPCR    =   88,

    CV_AM33_LIR     =   89,
    CV_AM33_LAR     =   90,


    CV_M32R_NOREG    =   CV_REG_NONE,

    CV_M32R_R0    =   10,
    CV_M32R_R1    =   11,
    CV_M32R_R2    =   12,
    CV_M32R_R3    =   13,
    CV_M32R_R4    =   14,
    CV_M32R_R5    =   15,
    CV_M32R_R6    =   16,
    CV_M32R_R7    =   17,
    CV_M32R_R8    =   18,
    CV_M32R_R9    =   19,
    CV_M32R_R10   =   20,
    CV_M32R_R11   =   21,
    CV_M32R_R12   =   22,   // Gloabal Pointer, if used
    CV_M32R_R13   =   23,   // Frame Pointer, if allocated
    CV_M32R_R14   =   24,   // Link Register
    CV_M32R_R15   =   25,   // Stack Pointer
    CV_M32R_PSW   =   26,   // Preocessor Status Register
    CV_M32R_CBR   =   27,   // Condition Bit Register
    CV_M32R_SPI   =   28,   // Interrupt Stack Pointer
    CV_M32R_SPU   =   29,   // User Stack Pointer
    CV_M32R_SPO   =   30,   // OS Stack Pointer
    CV_M32R_BPC   =   31,   // Backup Program Counter
    CV_M32R_ACHI  =   32,   // Accumulator High
    CV_M32R_ACLO  =   33,   // Accumulator Low
    CV_M32R_PC    =   34,   // Program Counter


    CV_SHMEDIA_NOREG   =   CV_REG_NONE,
    CV_SHMEDIA_R0      =   10,
    CV_SHMEDIA_R1      =   11,
    CV_SHMEDIA_R2      =   12,
    CV_SHMEDIA_R3      =   13,
    CV_SHMEDIA_R4      =   14,
    CV_SHMEDIA_R5      =   15,
    CV_SHMEDIA_R6      =   16,
    CV_SHMEDIA_R7      =   17,
    CV_SHMEDIA_R8      =   18,
    CV_SHMEDIA_R9      =   19,
    CV_SHMEDIA_R10     =   20,
    CV_SHMEDIA_R11     =   21,
    CV_SHMEDIA_R12     =   22,
    CV_SHMEDIA_R13     =   23,
    CV_SHMEDIA_R14     =   24,
    CV_SHMEDIA_R15     =   25,
    CV_SHMEDIA_R16     =   26,
    CV_SHMEDIA_R17     =   27,
    CV_SHMEDIA_R18     =   28,
    CV_SHMEDIA_R19     =   29,
    CV_SHMEDIA_R20     =   30,
    CV_SHMEDIA_R21     =   31,
    CV_SHMEDIA_R22     =   32,
    CV_SHMEDIA_R23     =   33,
    CV_SHMEDIA_R24     =   34,
    CV_SHMEDIA_R25     =   35,
    CV_SHMEDIA_R26     =   36,
    CV_SHMEDIA_R27     =   37,
    CV_SHMEDIA_R28     =   38,
    CV_SHMEDIA_R29     =   39,
    CV_SHMEDIA_R30     =   40,
    CV_SHMEDIA_R31     =   41,
    CV_SHMEDIA_R32     =   42,
    CV_SHMEDIA_R33     =   43,
    CV_SHMEDIA_R34     =   44,
    CV_SHMEDIA_R35     =   45,
    CV_SHMEDIA_R36     =   46,
    CV_SHMEDIA_R37     =   47,
    CV_SHMEDIA_R38     =   48,
    CV_SHMEDIA_R39     =   49,
    CV_SHMEDIA_R40     =   50,
    CV_SHMEDIA_R41     =   51,
    CV_SHMEDIA_R42     =   52,
    CV_SHMEDIA_R43     =   53,
    CV_SHMEDIA_R44     =   54,
    CV_SHMEDIA_R45     =   55,
    CV_SHMEDIA_R46     =   56,
    CV_SHMEDIA_R47     =   57,
    CV_SHMEDIA_R48     =   58,
    CV_SHMEDIA_R49     =   59,
    CV_SHMEDIA_R50     =   60,
    CV_SHMEDIA_R51     =   61,
    CV_SHMEDIA_R52     =   62,
    CV_SHMEDIA_R53     =   63,
    CV_SHMEDIA_R54     =   64,
    CV_SHMEDIA_R55     =   65,
    CV_SHMEDIA_R56     =   66,
    CV_SHMEDIA_R57     =   67,
    CV_SHMEDIA_R58     =   68,
    CV_SHMEDIA_R59     =   69,
    CV_SHMEDIA_R60     =   70,
    CV_SHMEDIA_R61     =   71,
    CV_SHMEDIA_R62     =   72,
    CV_SHMEDIA_R63     =   73,
    
    CV_SHMEDIA_TR0     =   74,
    CV_SHMEDIA_TR1     =   75,
    CV_SHMEDIA_TR2     =   76,
    CV_SHMEDIA_TR3     =   77,
    CV_SHMEDIA_TR4     =   78,
    CV_SHMEDIA_TR5     =   79,
    CV_SHMEDIA_TR6     =   80,
    CV_SHMEDIA_TR7     =   81,
    CV_SHMEDIA_TR8     =   82, // future-proof
    CV_SHMEDIA_TR9     =   83, // future-proof
    CV_SHMEDIA_TR10    =   84, // future-proof
    CV_SHMEDIA_TR11    =   85, // future-proof
    CV_SHMEDIA_TR12    =   86, // future-proof
    CV_SHMEDIA_TR13    =   87, // future-proof
    CV_SHMEDIA_TR14    =   88, // future-proof
    CV_SHMEDIA_TR15    =   89, // future-proof

    CV_SHMEDIA_FR0     =   128,
    CV_SHMEDIA_FR1     =   129,
    CV_SHMEDIA_FR2     =   130,
    CV_SHMEDIA_FR3     =   131,
    CV_SHMEDIA_FR4     =   132,
    CV_SHMEDIA_FR5     =   133,
    CV_SHMEDIA_FR6     =   134,
    CV_SHMEDIA_FR7     =   135,
    CV_SHMEDIA_FR8     =   136,
    CV_SHMEDIA_FR9     =   137,
    CV_SHMEDIA_FR10    =   138,
    CV_SHMEDIA_FR11    =   139,
    CV_SHMEDIA_FR12    =   140,
    CV_SHMEDIA_FR13    =   141,
    CV_SHMEDIA_FR14    =   142,
    CV_SHMEDIA_FR15    =   143,
    CV_SHMEDIA_FR16    =   144,
    CV_SHMEDIA_FR17    =   145,
    CV_SHMEDIA_FR18    =   146,
    CV_SHMEDIA_FR19    =   147,
    CV_SHMEDIA_FR20    =   148,
    CV_SHMEDIA_FR21    =   149,
    CV_SHMEDIA_FR22    =   150,
    CV_SHMEDIA_FR23    =   151,
    CV_SHMEDIA_FR24    =   152,
    CV_SHMEDIA_FR25    =   153,
    CV_SHMEDIA_FR26    =   154,
    CV_SHMEDIA_FR27    =   155,
    CV_SHMEDIA_FR28    =   156,
    CV_SHMEDIA_FR29    =   157,
    CV_SHMEDIA_FR30    =   158,
    CV_SHMEDIA_FR31    =   159,
    CV_SHMEDIA_FR32    =   160,
    CV_SHMEDIA_FR33    =   161,
    CV_SHMEDIA_FR34    =   162,
    CV_SHMEDIA_FR35    =   163,
    CV_SHMEDIA_FR36    =   164,
    CV_SHMEDIA_FR37    =   165,
    CV_SHMEDIA_FR38    =   166,
    CV_SHMEDIA_FR39    =   167,
    CV_SHMEDIA_FR40    =   168,
    CV_SHMEDIA_FR41    =   169,
    CV_SHMEDIA_FR42    =   170,
    CV_SHMEDIA_FR43    =   171,
    CV_SHMEDIA_FR44    =   172,
    CV_SHMEDIA_FR45    =   173,
    CV_SHMEDIA_FR46    =   174,
    CV_SHMEDIA_FR47    =   175,
    CV_SHMEDIA_FR48    =   176,
    CV_SHMEDIA_FR49    =   177,
    CV_SHMEDIA_FR50    =   178,
    CV_SHMEDIA_FR51    =   179,
    CV_SHMEDIA_FR52    =   180,
    CV_SHMEDIA_FR53    =   181,
    CV_SHMEDIA_FR54    =   182,
    CV_SHMEDIA_FR55    =   183,
    CV_SHMEDIA_FR56    =   184,
    CV_SHMEDIA_FR57    =   185,
    CV_SHMEDIA_FR58    =   186,
    CV_SHMEDIA_FR59    =   187,
    CV_SHMEDIA_FR60    =   188,
    CV_SHMEDIA_FR61    =   189,
    CV_SHMEDIA_FR62    =   190,
    CV_SHMEDIA_FR63    =   191,

    CV_SHMEDIA_DR0     =   256,
    CV_SHMEDIA_DR2     =   258,
    CV_SHMEDIA_DR4     =   260,
    CV_SHMEDIA_DR6     =   262,
    CV_SHMEDIA_DR8     =   264,
    CV_SHMEDIA_DR10    =   266,
    CV_SHMEDIA_DR12    =   268,
    CV_SHMEDIA_DR14    =   270,
    CV_SHMEDIA_DR16    =   272,
    CV_SHMEDIA_DR18    =   274,
    CV_SHMEDIA_DR20    =   276,
    CV_SHMEDIA_DR22    =   278,
    CV_SHMEDIA_DR24    =   280,
    CV_SHMEDIA_DR26    =   282,
    CV_SHMEDIA_DR28    =   284,
    CV_SHMEDIA_DR30    =   286,
    CV_SHMEDIA_DR32    =   288,
    CV_SHMEDIA_DR34    =   290,
    CV_SHMEDIA_DR36    =   292,
    CV_SHMEDIA_DR38    =   294,
    CV_SHMEDIA_DR40    =   296,
    CV_SHMEDIA_DR42    =   298,
    CV_SHMEDIA_DR44    =   300,
    CV_SHMEDIA_DR46    =   302,
    CV_SHMEDIA_DR48    =   304,
    CV_SHMEDIA_DR50    =   306,
    CV_SHMEDIA_DR52    =   308,
    CV_SHMEDIA_DR54    =   310,
    CV_SHMEDIA_DR56    =   312,
    CV_SHMEDIA_DR58    =   314,
    CV_SHMEDIA_DR60    =   316,
    CV_SHMEDIA_DR62    =   318,

    CV_SHMEDIA_FV0     =   512,
    CV_SHMEDIA_FV4     =   516,
    CV_SHMEDIA_FV8     =   520,
    CV_SHMEDIA_FV12    =   524,
    CV_SHMEDIA_FV16    =   528,
    CV_SHMEDIA_FV20    =   532,
    CV_SHMEDIA_FV24    =   536,
    CV_SHMEDIA_FV28    =   540,
    CV_SHMEDIA_FV32    =   544,
    CV_SHMEDIA_FV36    =   548,
    CV_SHMEDIA_FV40    =   552,
    CV_SHMEDIA_FV44    =   556,
    CV_SHMEDIA_FV48    =   560,
    CV_SHMEDIA_FV52    =   564,
    CV_SHMEDIA_FV56    =   568,
    CV_SHMEDIA_FV60    =   572,

    CV_SHMEDIA_MTRX0   =   1024,
    CV_SHMEDIA_MTRX16  =   1040,
    CV_SHMEDIA_MTRX32  =   1056,
    CV_SHMEDIA_MTRX48  =   1072,

    CV_SHMEDIA_CR0     =   2000,
    CV_SHMEDIA_CR1     =   2001,
    CV_SHMEDIA_CR2     =   2002,
    CV_SHMEDIA_CR3     =   2003,
    CV_SHMEDIA_CR4     =   2004,
    CV_SHMEDIA_CR5     =   2005,
    CV_SHMEDIA_CR6     =   2006,
    CV_SHMEDIA_CR7     =   2007,
    CV_SHMEDIA_CR8     =   2008,
    CV_SHMEDIA_CR9     =   2009,
    CV_SHMEDIA_CR10    =   2010,
    CV_SHMEDIA_CR11    =   2011,
    CV_SHMEDIA_CR12    =   2012,
    CV_SHMEDIA_CR13    =   2013,
    CV_SHMEDIA_CR14    =   2014,
    CV_SHMEDIA_CR15    =   2015,
    CV_SHMEDIA_CR16    =   2016,
    CV_SHMEDIA_CR17    =   2017,
    CV_SHMEDIA_CR18    =   2018,
    CV_SHMEDIA_CR19    =   2019,
    CV_SHMEDIA_CR20    =   2020,
    CV_SHMEDIA_CR21    =   2021,
    CV_SHMEDIA_CR22    =   2022,
    CV_SHMEDIA_CR23    =   2023,
    CV_SHMEDIA_CR24    =   2024,
    CV_SHMEDIA_CR25    =   2025,
    CV_SHMEDIA_CR26    =   2026,
    CV_SHMEDIA_CR27    =   2027,
    CV_SHMEDIA_CR28    =   2028,
    CV_SHMEDIA_CR29    =   2029,
    CV_SHMEDIA_CR30    =   2030,
    CV_SHMEDIA_CR31    =   2031,
    CV_SHMEDIA_CR32    =   2032,
    CV_SHMEDIA_CR33    =   2033,
    CV_SHMEDIA_CR34    =   2034,
    CV_SHMEDIA_CR35    =   2035,
    CV_SHMEDIA_CR36    =   2036,
    CV_SHMEDIA_CR37    =   2037,
    CV_SHMEDIA_CR38    =   2038,
    CV_SHMEDIA_CR39    =   2039,
    CV_SHMEDIA_CR40    =   2040,
    CV_SHMEDIA_CR41    =   2041,
    CV_SHMEDIA_CR42    =   2042,
    CV_SHMEDIA_CR43    =   2043,
    CV_SHMEDIA_CR44    =   2044,
    CV_SHMEDIA_CR45    =   2045,
    CV_SHMEDIA_CR46    =   2046,
    CV_SHMEDIA_CR47    =   2047,
    CV_SHMEDIA_CR48    =   2048,
    CV_SHMEDIA_CR49    =   2049,
    CV_SHMEDIA_CR50    =   2050,
    CV_SHMEDIA_CR51    =   2051,
    CV_SHMEDIA_CR52    =   2052,
    CV_SHMEDIA_CR53    =   2053,
    CV_SHMEDIA_CR54    =   2054,
    CV_SHMEDIA_CR55    =   2055,
    CV_SHMEDIA_CR56    =   2056,
    CV_SHMEDIA_CR57    =   2057,
    CV_SHMEDIA_CR58    =   2058,
    CV_SHMEDIA_CR59    =   2059,
    CV_SHMEDIA_CR60    =   2060,
    CV_SHMEDIA_CR61    =   2061,
    CV_SHMEDIA_CR62    =   2062,
    CV_SHMEDIA_CR63    =   2063,

    CV_SHMEDIA_FPSCR   =   2064,

    CV_SHMEDIA_GBR     =   CV_SHMEDIA_R16,
    CV_SHMEDIA_MACL    =   90, // synonym for lower 32bits of media R17
    CV_SHMEDIA_MACH    =   91, // synonym for upper 32bits of media R17
    CV_SHMEDIA_PR      =   CV_SHMEDIA_R18,
    CV_SHMEDIA_T       =   92, // synonym for lowest bit of media R19
    CV_SHMEDIA_FPUL    =   CV_SHMEDIA_FR32,
    CV_SHMEDIA_PC      =   93,
    CV_SHMEDIA_SR      =   CV_SHMEDIA_CR0,


    CV_AMD64_AL       =   1,
    CV_AMD64_CL       =   2,
    CV_AMD64_DL       =   3,
    CV_AMD64_BL       =   4,
    CV_AMD64_AH       =   5,
    CV_AMD64_CH       =   6,
    CV_AMD64_DH       =   7,
    CV_AMD64_BH       =   8,
    CV_AMD64_AX       =   9,
    CV_AMD64_CX       =  10,
    CV_AMD64_DX       =  11,
    CV_AMD64_BX       =  12,
    CV_AMD64_SP       =  13,
    CV_AMD64_BP       =  14,
    CV_AMD64_SI       =  15,
    CV_AMD64_DI       =  16,
    CV_AMD64_EAX      =  17,
    CV_AMD64_ECX      =  18,
    CV_AMD64_EDX      =  19,
    CV_AMD64_EBX      =  20,
    CV_AMD64_ESP      =  21,
    CV_AMD64_EBP      =  22,
    CV_AMD64_ESI      =  23,
    CV_AMD64_EDI      =  24,
    CV_AMD64_ES       =  25,
    CV_AMD64_CS       =  26,
    CV_AMD64_SS       =  27,
    CV_AMD64_DS       =  28,
    CV_AMD64_FS       =  29,
    CV_AMD64_GS       =  30,
    CV_AMD64_FLAGS    =  32,
    CV_AMD64_RIP      =  33,
    CV_AMD64_EFLAGS   =  34,

    CV_AMD64_CR0      =  80,
    CV_AMD64_CR1      =  81,
    CV_AMD64_CR2      =  82,
    CV_AMD64_CR3      =  83,
    CV_AMD64_CR4      =  84,
    CV_AMD64_CR8      =  88,

    CV_AMD64_DR0      =  90,
    CV_AMD64_DR1      =  91,
    CV_AMD64_DR2      =  92,
    CV_AMD64_DR3      =  93,
    CV_AMD64_DR4      =  94,
    CV_AMD64_DR5      =  95,
    CV_AMD64_DR6      =  96,
    CV_AMD64_DR7      =  97,
    CV_AMD64_DR8      =  98,
    CV_AMD64_DR9      =  99,
    CV_AMD64_DR10     =  100,
    CV_AMD64_DR11     =  101,
    CV_AMD64_DR12     =  102,
    CV_AMD64_DR13     =  103,
    CV_AMD64_DR14     =  104,
    CV_AMD64_DR15     =  105,

    CV_AMD64_GDTR     =  110,
    CV_AMD64_GDTL     =  111,
    CV_AMD64_IDTR     =  112,
    CV_AMD64_IDTL     =  113,
    CV_AMD64_LDTR     =  114,
    CV_AMD64_TR       =  115,

    CV_AMD64_ST0      =  128,
    CV_AMD64_ST1      =  129,
    CV_AMD64_ST2      =  130,
    CV_AMD64_ST3      =  131,
    CV_AMD64_ST4      =  132,
    CV_AMD64_ST5      =  133,
    CV_AMD64_ST6      =  134,
    CV_AMD64_ST7      =  135,
    CV_AMD64_CTRL     =  136,
    CV_AMD64_STAT     =  137,
    CV_AMD64_TAG      =  138,
    CV_AMD64_FPIP     =  139,
    CV_AMD64_FPCS     =  140,
    CV_AMD64_FPDO     =  141,
    CV_AMD64_FPDS     =  142,
    CV_AMD64_ISEM     =  143,
    CV_AMD64_FPEIP    =  144,
    CV_AMD64_FPEDO    =  145,

    CV_AMD64_MM0      =  146,
    CV_AMD64_MM1      =  147,
    CV_AMD64_MM2      =  148,
    CV_AMD64_MM3      =  149,
    CV_AMD64_MM4      =  150,
    CV_AMD64_MM5      =  151,
    CV_AMD64_MM6      =  152,
    CV_AMD64_MM7      =  153,

    CV_AMD64_XMM0     =  154,   // KATMAI registers
    CV_AMD64_XMM1     =  155,
    CV_AMD64_XMM2     =  156,
    CV_AMD64_XMM3     =  157,
    CV_AMD64_XMM4     =  158,
    CV_AMD64_XMM5     =  159,
    CV_AMD64_XMM6     =  160,
    CV_AMD64_XMM7     =  161,

    CV_AMD64_XMM0_0   =  162,   // KATMAI sub-registers
    CV_AMD64_XMM0_1   =  163,
    CV_AMD64_XMM0_2   =  164,
    CV_AMD64_XMM0_3   =  165,
    CV_AMD64_XMM1_0   =  166,
    CV_AMD64_XMM1_1   =  167,
    CV_AMD64_XMM1_2   =  168,
    CV_AMD64_XMM1_3   =  169,
    CV_AMD64_XMM2_0   =  170,
    CV_AMD64_XMM2_1   =  171,
    CV_AMD64_XMM2_2   =  172,
    CV_AMD64_XMM2_3   =  173,
    CV_AMD64_XMM3_0   =  174,
    CV_AMD64_XMM3_1   =  175,
    CV_AMD64_XMM3_2   =  176,
    CV_AMD64_XMM3_3   =  177,
    CV_AMD64_XMM4_0   =  178,
    CV_AMD64_XMM4_1   =  179,
    CV_AMD64_XMM4_2   =  180,
    CV_AMD64_XMM4_3   =  181,
    CV_AMD64_XMM5_0   =  182,
    CV_AMD64_XMM5_1   =  183,
    CV_AMD64_XMM5_2   =  184,
    CV_AMD64_XMM5_3   =  185,
    CV_AMD64_XMM6_0   =  186,
    CV_AMD64_XMM6_1   =  187,
    CV_AMD64_XMM6_2   =  188,
    CV_AMD64_XMM6_3   =  189,
    CV_AMD64_XMM7_0   =  190,
    CV_AMD64_XMM7_1   =  191,
    CV_AMD64_XMM7_2   =  192,
    CV_AMD64_XMM7_3   =  193,

    CV_AMD64_XMM0L    =  194,
    CV_AMD64_XMM1L    =  195,
    CV_AMD64_XMM2L    =  196,
    CV_AMD64_XMM3L    =  197,
    CV_AMD64_XMM4L    =  198,
    CV_AMD64_XMM5L    =  199,
    CV_AMD64_XMM6L    =  200,
    CV_AMD64_XMM7L    =  201,

    CV_AMD64_XMM0H    =  202,
    CV_AMD64_XMM1H    =  203,
    CV_AMD64_XMM2H    =  204,
    CV_AMD64_XMM3H    =  205,
    CV_AMD64_XMM4H    =  206,
    CV_AMD64_XMM5H    =  207,
    CV_AMD64_XMM6H    =  208,
    CV_AMD64_XMM7H    =  209,

    CV_AMD64_MXCSR    =  211,   // XMM status register

    CV_AMD64_EMM0L    =  220,   // XMM sub-registers (WNI integer)
    CV_AMD64_EMM1L    =  221,
    CV_AMD64_EMM2L    =  222,
    CV_AMD64_EMM3L    =  223,
    CV_AMD64_EMM4L    =  224,
    CV_AMD64_EMM5L    =  225,
    CV_AMD64_EMM6L    =  226,
    CV_AMD64_EMM7L    =  227,

    CV_AMD64_EMM0H    =  228,
    CV_AMD64_EMM1H    =  229,
    CV_AMD64_EMM2H    =  230,
    CV_AMD64_EMM3H    =  231,
    CV_AMD64_EMM4H    =  232,
    CV_AMD64_EMM5H    =  233,
    CV_AMD64_EMM6H    =  234,
    CV_AMD64_EMM7H    =  235,

    CV_AMD64_MM00     =  236,
    CV_AMD64_MM01     =  237,
    CV_AMD64_MM10     =  238,
    CV_AMD64_MM11     =  239,
    CV_AMD64_MM20     =  240,
    CV_AMD64_MM21     =  241,
    CV_AMD64_MM30     =  242,
    CV_AMD64_MM31     =  243,
    CV_AMD64_MM40     =  244,
    CV_AMD64_MM41     =  245,
    CV_AMD64_MM50     =  246,
    CV_AMD64_MM51     =  247,
    CV_AMD64_MM60     =  248,
    CV_AMD64_MM61     =  249,
    CV_AMD64_MM70     =  250,
    CV_AMD64_MM71     =  251,

    CV_AMD64_XMM8     =  252,   // KATMAI registers
    CV_AMD64_XMM9     =  253,
    CV_AMD64_XMM10    =  254,
    CV_AMD64_XMM11    =  255,
    CV_AMD64_XMM12    =  256,
    CV_AMD64_XMM13    =  257,
    CV_AMD64_XMM14    =  258,
    CV_AMD64_XMM15    =  259,

    CV_AMD64_XMM8_0   =  260,   // KATMAI sub-registers
    CV_AMD64_XMM8_1   =  261,
    CV_AMD64_XMM8_2   =  262,
    CV_AMD64_XMM8_3   =  263,
    CV_AMD64_XMM9_0   =  264,
    CV_AMD64_XMM9_1   =  265,
    CV_AMD64_XMM9_2   =  266,
    CV_AMD64_XMM9_3   =  267,
    CV_AMD64_XMM10_0  =  268,
    CV_AMD64_XMM10_1  =  269,
    CV_AMD64_XMM10_2  =  270,
    CV_AMD64_XMM10_3  =  271,
    CV_AMD64_XMM11_0  =  272,
    CV_AMD64_XMM11_1  =  273,
    CV_AMD64_XMM11_2  =  274,
    CV_AMD64_XMM11_3  =  275,
    CV_AMD64_XMM12_0  =  276,
    CV_AMD64_XMM12_1  =  277,
    CV_AMD64_XMM12_2  =  278,
    CV_AMD64_XMM12_3  =  279,
    CV_AMD64_XMM13_0  =  280,
    CV_AMD64_XMM13_1  =  281,
    CV_AMD64_XMM13_2  =  282,
    CV_AMD64_XMM13_3  =  283,
    CV_AMD64_XMM14_0  =  284,
    CV_AMD64_XMM14_1  =  285,
    CV_AMD64_XMM14_2  =  286,
    CV_AMD64_XMM14_3  =  287,
    CV_AMD64_XMM15_0  =  288,
    CV_AMD64_XMM15_1  =  289,
    CV_AMD64_XMM15_2  =  290,
    CV_AMD64_XMM15_3  =  291,

    CV_AMD64_XMM8L    =  292,
    CV_AMD64_XMM9L    =  293,
    CV_AMD64_XMM10L   =  294,
    CV_AMD64_XMM11L   =  295,
    CV_AMD64_XMM12L   =  296,
    CV_AMD64_XMM13L   =  297,
    CV_AMD64_XMM14L   =  298,
    CV_AMD64_XMM15L   =  299,

    CV_AMD64_XMM8H    =  300,
    CV_AMD64_XMM9H    =  301,
    CV_AMD64_XMM10H   =  302,
    CV_AMD64_XMM11H   =  303,
    CV_AMD64_XMM12H   =  304,
    CV_AMD64_XMM13H   =  305,
    CV_AMD64_XMM14H   =  306,
    CV_AMD64_XMM15H   =  307,

    CV_AMD64_EMM8L    =  308,   // XMM sub-registers (WNI integer)
    CV_AMD64_EMM9L    =  309,
    CV_AMD64_EMM10L   =  310,
    CV_AMD64_EMM11L   =  311,
    CV_AMD64_EMM12L   =  312,
    CV_AMD64_EMM13L   =  313,
    CV_AMD64_EMM14L   =  314,
    CV_AMD64_EMM15L   =  315,

    CV_AMD64_EMM8H    =  316,
    CV_AMD64_EMM9H    =  317,
    CV_AMD64_EMM10H   =  318,
    CV_AMD64_EMM11H   =  319,
    CV_AMD64_EMM12H   =  320,
    CV_AMD64_EMM13H   =  321,
    CV_AMD64_EMM14H   =  322,
    CV_AMD64_EMM15H   =  323,

    CV_AMD64_SIL      =  324,
    CV_AMD64_DIL      =  325,
    CV_AMD64_BPL      =  326,
    CV_AMD64_SPL      =  327,

    CV_AMD64_RAX      =  328,
    CV_AMD64_RBX      =  329,
    CV_AMD64_RCX      =  330,
    CV_AMD64_RDX      =  331,
    CV_AMD64_RSI      =  332,
    CV_AMD64_RDI      =  333,
    CV_AMD64_RBP      =  334,
    CV_AMD64_RSP      =  335,

    CV_AMD64_R8       =  336,
    CV_AMD64_R9       =  337,
    CV_AMD64_R10      =  338,
    CV_AMD64_R11      =  339,
    CV_AMD64_R12      =  340,
    CV_AMD64_R13      =  341,
    CV_AMD64_R14      =  342,
    CV_AMD64_R15      =  343,

    CV_AMD64_R8B      =  344,
    CV_AMD64_R9B      =  345,
    CV_AMD64_R10B     =  346,
    CV_AMD64_R11B     =  347,
    CV_AMD64_R12B     =  348,
    CV_AMD64_R13B     =  349,
    CV_AMD64_R14B     =  350,
    CV_AMD64_R15B     =  351,

    CV_AMD64_R8W      =  352,
    CV_AMD64_R9W      =  353,
    CV_AMD64_R10W     =  354,
    CV_AMD64_R11W     =  355,
    CV_AMD64_R12W     =  356,
    CV_AMD64_R13W     =  357,
    CV_AMD64_R14W     =  358,
    CV_AMD64_R15W     =  359,

    CV_AMD64_R8D      =  360,
    CV_AMD64_R9D      =  361,
    CV_AMD64_R10D     =  362,
    CV_AMD64_R11D     =  363,
    CV_AMD64_R12D     =  364,
    CV_AMD64_R13D     =  365,
    CV_AMD64_R14D     =  366,
    CV_AMD64_R15D     =  367,

    CV_AMD64_YMM0     =  368,
    CV_AMD64_YMM1     =  369,
    CV_AMD64_YMM2     =  370,
    CV_AMD64_YMM3     =  371,
    CV_AMD64_YMM4     =  372,
    CV_AMD64_YMM5     =  373,
    CV_AMD64_YMM6     =  374,
    CV_AMD64_YMM7     =  375,
    CV_AMD64_YMM8     =  376, 
    CV_AMD64_YMM9     =  377,
    CV_AMD64_YMM10    =  378,
    CV_AMD64_YMM11    =  379,
    CV_AMD64_YMM12    =  380,
    CV_AMD64_YMM13    =  381,
    CV_AMD64_YMM14    =  382,
    CV_AMD64_YMM15    =  383,

    CV_AMD64_YMM0H    =  384,
    CV_AMD64_YMM1H    =  385,
    CV_AMD64_YMM2H    =  386,
    CV_AMD64_YMM3H    =  387,
    CV_AMD64_YMM4H    =  388,
    CV_AMD64_YMM5H    =  389,
    CV_AMD64_YMM6H    =  390,
    CV_AMD64_YMM7H    =  391,
    CV_AMD64_YMM8H    =  392, 
    CV_AMD64_YMM9H    =  393,
    CV_AMD64_YMM10H   =  394,
    CV_AMD64_YMM11H   =  395,
    CV_AMD64_YMM12H   =  396,
    CV_AMD64_YMM13H   =  397,
    CV_AMD64_YMM14H   =  398,
    CV_AMD64_YMM15H   =  399,

    CV_AMD64_XMM0IL    = 400,
    CV_AMD64_XMM1IL    = 401,
    CV_AMD64_XMM2IL    = 402,
    CV_AMD64_XMM3IL    = 403,
    CV_AMD64_XMM4IL    = 404,
    CV_AMD64_XMM5IL    = 405,
    CV_AMD64_XMM6IL    = 406,
    CV_AMD64_XMM7IL    = 407,
    CV_AMD64_XMM8IL    = 408,
    CV_AMD64_XMM9IL    = 409,
    CV_AMD64_XMM10IL    = 410,
    CV_AMD64_XMM11IL    = 411,
    CV_AMD64_XMM12IL    = 412,
    CV_AMD64_XMM13IL    = 413,
    CV_AMD64_XMM14IL    = 414,
    CV_AMD64_XMM15IL    = 415,

    CV_AMD64_XMM0IH    = 416,
    CV_AMD64_XMM1IH    = 417,
    CV_AMD64_XMM2IH    = 418,
    CV_AMD64_XMM3IH    = 419,
    CV_AMD64_XMM4IH    = 420,
    CV_AMD64_XMM5IH    = 421,
    CV_AMD64_XMM6IH    = 422,
    CV_AMD64_XMM7IH    = 423,
    CV_AMD64_XMM8IH    = 424,
    CV_AMD64_XMM9IH    = 425,
    CV_AMD64_XMM10IH    = 426,
    CV_AMD64_XMM11IH    = 427,
    CV_AMD64_XMM12IH    = 428,
    CV_AMD64_XMM13IH    = 429,
    CV_AMD64_XMM14IH    = 430,
    CV_AMD64_XMM15IH    = 431,

    CV_AMD64_YMM0I0    =  432,        // AVX integer registers
    CV_AMD64_YMM0I1    =  433,
    CV_AMD64_YMM0I2    =  434,
    CV_AMD64_YMM0I3    =  435,
    CV_AMD64_YMM1I0    =  436,
    CV_AMD64_YMM1I1    =  437,
    CV_AMD64_YMM1I2    =  438,
    CV_AMD64_YMM1I3    =  439,
    CV_AMD64_YMM2I0    =  440,
    CV_AMD64_YMM2I1    =  441,
    CV_AMD64_YMM2I2    =  442,
    CV_AMD64_YMM2I3    =  443,
    CV_AMD64_YMM3I0    =  444,
    CV_AMD64_YMM3I1    =  445,
    CV_AMD64_YMM3I2    =  446,
    CV_AMD64_YMM3I3    =  447,
    CV_AMD64_YMM4I0    =  448,
    CV_AMD64_YMM4I1    =  449,
    CV_AMD64_YMM4I2    =  450,
    CV_AMD64_YMM4I3    =  451,
    CV_AMD64_YMM5I0    =  452,
    CV_AMD64_YMM5I1    =  453,
    CV_AMD64_YMM5I2    =  454,
    CV_AMD64_YMM5I3    =  455,
    CV_AMD64_YMM6I0    =  456,
    CV_AMD64_YMM6I1    =  457,
    CV_AMD64_YMM6I2    =  458,
    CV_AMD64_YMM6I3    =  459,
    CV_AMD64_YMM7I0    =  460,
    CV_AMD64_YMM7I1    =  461,
    CV_AMD64_YMM7I2    =  462,
    CV_AMD64_YMM7I3    =  463,
    CV_AMD64_YMM8I0    =  464,
    CV_AMD64_YMM8I1    =  465,
    CV_AMD64_YMM8I2    =  466,
    CV_AMD64_YMM8I3    =  467,
    CV_AMD64_YMM9I0    =  468,
    CV_AMD64_YMM9I1    =  469,
    CV_AMD64_YMM9I2    =  470,
    CV_AMD64_YMM9I3    =  471,
    CV_AMD64_YMM10I0    =  472,
    CV_AMD64_YMM10I1    =  473,
    CV_AMD64_YMM10I2    =  474,
    CV_AMD64_YMM10I3    =  475,
    CV_AMD64_YMM11I0    =  476,
    CV_AMD64_YMM11I1    =  477,
    CV_AMD64_YMM11I2    =  478,
    CV_AMD64_YMM11I3    =  479,
    CV_AMD64_YMM12I0    =  480,
    CV_AMD64_YMM12I1    =  481,
    CV_AMD64_YMM12I2    =  482,
    CV_AMD64_YMM12I3    =  483,
    CV_AMD64_YMM13I0    =  484,
    CV_AMD64_YMM13I1    =  485,
    CV_AMD64_YMM13I2    =  486,
    CV_AMD64_YMM13I3    =  487,
    CV_AMD64_YMM14I0    =  488,
    CV_AMD64_YMM14I1    =  489,
    CV_AMD64_YMM14I2    =  490,
    CV_AMD64_YMM14I3    =  491,
    CV_AMD64_YMM15I0    =  492,
    CV_AMD64_YMM15I1    =  493,
    CV_AMD64_YMM15I2    =  494,
    CV_AMD64_YMM15I3    =  495,

    CV_AMD64_YMM0F0    =  496,        // AVX floating-point single precise registers
    CV_AMD64_YMM0F1    =  497,
    CV_AMD64_YMM0F2    =  498,
    CV_AMD64_YMM0F3    =  499,
    CV_AMD64_YMM0F4    =  500,
    CV_AMD64_YMM0F5    =  501,
    CV_AMD64_YMM0F6    =  502,
    CV_AMD64_YMM0F7    =  503,
    CV_AMD64_YMM1F0    =  504,
    CV_AMD64_YMM1F1    =  505,
    CV_AMD64_YMM1F2    =  506,
    CV_AMD64_YMM1F3    =  507,
    CV_AMD64_YMM1F4    =  508,
    CV_AMD64_YMM1F5    =  509,
    CV_AMD64_YMM1F6    =  510,
    CV_AMD64_YMM1F7    =  511,
    CV_AMD64_YMM2F0    =  512,
    CV_AMD64_YMM2F1    =  513,
    CV_AMD64_YMM2F2    =  514,
    CV_AMD64_YMM2F3    =  515,
    CV_AMD64_YMM2F4    =  516,
    CV_AMD64_YMM2F5    =  517,
    CV_AMD64_YMM2F6    =  518,
    CV_AMD64_YMM2F7    =  519,
    CV_AMD64_YMM3F0    =  520,
    CV_AMD64_YMM3F1    =  521,
    CV_AMD64_YMM3F2    =  522,
    CV_AMD64_YMM3F3    =  523,
    CV_AMD64_YMM3F4    =  524,
    CV_AMD64_YMM3F5    =  525,
    CV_AMD64_YMM3F6    =  526,
    CV_AMD64_YMM3F7    =  527,
    CV_AMD64_YMM4F0    =  528,
    CV_AMD64_YMM4F1    =  529,
    CV_AMD64_YMM4F2    =  530,
    CV_AMD64_YMM4F3    =  531,
    CV_AMD64_YMM4F4    =  532,
    CV_AMD64_YMM4F5    =  533,
    CV_AMD64_YMM4F6    =  534,
    CV_AMD64_YMM4F7    =  535,
    CV_AMD64_YMM5F0    =  536,
    CV_AMD64_YMM5F1    =  537,
    CV_AMD64_YMM5F2    =  538,
    CV_AMD64_YMM5F3    =  539,
    CV_AMD64_YMM5F4    =  540,
    CV_AMD64_YMM5F5    =  541,
    CV_AMD64_YMM5F6    =  542,
    CV_AMD64_YMM5F7    =  543,
    CV_AMD64_YMM6F0    =  544,
    CV_AMD64_YMM6F1    =  545,
    CV_AMD64_YMM6F2    =  546,
    CV_AMD64_YMM6F3    =  547,
    CV_AMD64_YMM6F4    =  548,
    CV_AMD64_YMM6F5    =  549,
    CV_AMD64_YMM6F6    =  550,
    CV_AMD64_YMM6F7    =  551,
    CV_AMD64_YMM7F0    =  552,
    CV_AMD64_YMM7F1    =  553,
    CV_AMD64_YMM7F2    =  554,
    CV_AMD64_YMM7F3    =  555,
    CV_AMD64_YMM7F4    =  556,
    CV_AMD64_YMM7F5    =  557,
    CV_AMD64_YMM7F6    =  558,
    CV_AMD64_YMM7F7    =  559,
    CV_AMD64_YMM8F0    =  560,
    CV_AMD64_YMM8F1    =  561,
    CV_AMD64_YMM8F2    =  562,
    CV_AMD64_YMM8F3    =  563,
    CV_AMD64_YMM8F4    =  564,
    CV_AMD64_YMM8F5    =  565,
    CV_AMD64_YMM8F6    =  566,
    CV_AMD64_YMM8F7    =  567,
    CV_AMD64_YMM9F0    =  568,
    CV_AMD64_YMM9F1    =  569,
    CV_AMD64_YMM9F2    =  570,
    CV_AMD64_YMM9F3    =  571,
    CV_AMD64_YMM9F4    =  572,
    CV_AMD64_YMM9F5    =  573,
    CV_AMD64_YMM9F6    =  574,
    CV_AMD64_YMM9F7    =  575,
    CV_AMD64_YMM10F0    =  576,
    CV_AMD64_YMM10F1    =  577,
    CV_AMD64_YMM10F2    =  578,
    CV_AMD64_YMM10F3    =  579,
    CV_AMD64_YMM10F4    =  580,
    CV_AMD64_YMM10F5    =  581,
    CV_AMD64_YMM10F6    =  582,
    CV_AMD64_YMM10F7    =  583,
    CV_AMD64_YMM11F0    =  584,
    CV_AMD64_YMM11F1    =  585,
    CV_AMD64_YMM11F2    =  586,
    CV_AMD64_YMM11F3    =  587,
    CV_AMD64_YMM11F4    =  588,
    CV_AMD64_YMM11F5    =  589,
    CV_AMD64_YMM11F6    =  590,
    CV_AMD64_YMM11F7    =  591,
    CV_AMD64_YMM12F0    =  592,
    CV_AMD64_YMM12F1    =  593,
    CV_AMD64_YMM12F2    =  594,
    CV_AMD64_YMM12F3    =  595,
    CV_AMD64_YMM12F4    =  596,
    CV_AMD64_YMM12F5    =  597,
    CV_AMD64_YMM12F6    =  598,
    CV_AMD64_YMM12F7    =  599,
    CV_AMD64_YMM13F0    =  600,
    CV_AMD64_YMM13F1    =  601,
    CV_AMD64_YMM13F2    =  602,
    CV_AMD64_YMM13F3    =  603,
    CV_AMD64_YMM13F4    =  604,
    CV_AMD64_YMM13F5    =  605,
    CV_AMD64_YMM13F6    =  606,
    CV_AMD64_YMM13F7    =  607,
    CV_AMD64_YMM14F0    =  608,
    CV_AMD64_YMM14F1    =  609,
    CV_AMD64_YMM14F2    =  610,
    CV_AMD64_YMM14F3    =  611,
    CV_AMD64_YMM14F4    =  612,
    CV_AMD64_YMM14F5    =  613,
    CV_AMD64_YMM14F6    =  614,
    CV_AMD64_YMM14F7    =  615,
    CV_AMD64_YMM15F0    =  616,
    CV_AMD64_YMM15F1    =  617,
    CV_AMD64_YMM15F2    =  618,
    CV_AMD64_YMM15F3    =  619,
    CV_AMD64_YMM15F4    =  620,
    CV_AMD64_YMM15F5    =  621,
    CV_AMD64_YMM15F6    =  622,
    CV_AMD64_YMM15F7    =  623,
    
    CV_AMD64_YMM0D0    =  624,        // AVX floating-point double precise registers
    CV_AMD64_YMM0D1    =  625,
    CV_AMD64_YMM0D2    =  626,
    CV_AMD64_YMM0D3    =  627,
    CV_AMD64_YMM1D0    =  628,
    CV_AMD64_YMM1D1    =  629,
    CV_AMD64_YMM1D2    =  630,
    CV_AMD64_YMM1D3    =  631,
    CV_AMD64_YMM2D0    =  632,
    CV_AMD64_YMM2D1    =  633,
    CV_AMD64_YMM2D2    =  634,
    CV_AMD64_YMM2D3    =  635,
    CV_AMD64_YMM3D0    =  636,
    CV_AMD64_YMM3D1    =  637,
    CV_AMD64_YMM3D2    =  638,
    CV_AMD64_YMM3D3    =  639,
    CV_AMD64_YMM4D0    =  640,
    CV_AMD64_YMM4D1    =  641,
    CV_AMD64_YMM4D2    =  642,
    CV_AMD64_YMM4D3    =  643,
    CV_AMD64_YMM5D0    =  644,
    CV_AMD64_YMM5D1    =  645,
    CV_AMD64_YMM5D2    =  646,
    CV_AMD64_YMM5D3    =  647,
    CV_AMD64_YMM6D0    =  648,
    CV_AMD64_YMM6D1    =  649,
    CV_AMD64_YMM6D2    =  650,
    CV_AMD64_YMM6D3    =  651,
    CV_AMD64_YMM7D0    =  652,
    CV_AMD64_YMM7D1    =  653,
    CV_AMD64_YMM7D2    =  654,
    CV_AMD64_YMM7D3    =  655,
    CV_AMD64_YMM8D0    =  656,
    CV_AMD64_YMM8D1    =  657,
    CV_AMD64_YMM8D2    =  658,
    CV_AMD64_YMM8D3    =  659,
    CV_AMD64_YMM9D0    =  660,
    CV_AMD64_YMM9D1    =  661,
    CV_AMD64_YMM9D2    =  662,
    CV_AMD64_YMM9D3    =  663,
    CV_AMD64_YMM10D0    =  664,
    CV_AMD64_YMM10D1    =  665,
    CV_AMD64_YMM10D2    =  666,
    CV_AMD64_YMM10D3    =  667,
    CV_AMD64_YMM11D0    =  668,
    CV_AMD64_YMM11D1    =  669,
    CV_AMD64_YMM11D2    =  670,
    CV_AMD64_YMM11D3    =  671,
    CV_AMD64_YMM12D0    =  672,
    CV_AMD64_YMM12D1    =  673,
    CV_AMD64_YMM12D2    =  674,
    CV_AMD64_YMM12D3    =  675,
    CV_AMD64_YMM13D0    =  676,
    CV_AMD64_YMM13D1    =  677,
    CV_AMD64_YMM13D2    =  678,
    CV_AMD64_YMM13D3    =  679,
    CV_AMD64_YMM14D0    =  680,
    CV_AMD64_YMM14D1    =  681,
    CV_AMD64_YMM14D2    =  682,
    CV_AMD64_YMM14D3    =  683,
    CV_AMD64_YMM15D0    =  684,
    CV_AMD64_YMM15D1    =  685,
    CV_AMD64_YMM15D2    =  686,
    CV_AMD64_YMM15D3    =  687,

    CV_AMD64_BND0       =  688,        // AMD64 MPX bounds registers
    CV_AMD64_BND1       =  689,
    CV_AMD64_BND2       =  690,
    CV_AMD64_BND3       =  691,
    CV_AMD64_BNDCFGU    =  692,
    CV_AMD64_BNDSTATUS  =  693,

    CV_AMD64_XMM16      =  694,     // AVX-512 registers
    CV_AMD64_XMM17      =  695,
    CV_AMD64_XMM18      =  696,
    CV_AMD64_XMM19      =  697,
    CV_AMD64_XMM20      =  698,
    CV_AMD64_XMM21      =  699,
    CV_AMD64_XMM22      =  700,
    CV_AMD64_XMM23      =  701,
    CV_AMD64_XMM24      =  702,
    CV_AMD64_XMM25      =  703,
    CV_AMD64_XMM26      =  704,
    CV_AMD64_XMM27      =  705,
    CV_AMD64_XMM28      =  706,
    CV_AMD64_XMM29      =  707,
    CV_AMD64_XMM30      =  708,
    CV_AMD64_XMM31      =  709,

    CV_AMD64_YMM16      =  710,
    CV_AMD64_YMM17      =  711,
    CV_AMD64_YMM18      =  712,
    CV_AMD64_YMM19      =  713,
    CV_AMD64_YMM20      =  714,
    CV_AMD64_YMM21      =  715,
    CV_AMD64_YMM22      =  716,
    CV_AMD64_YMM23      =  717,
    CV_AMD64_YMM24      =  718,
    CV_AMD64_YMM25      =  719,
    CV_AMD64_YMM26      =  720,
    CV_AMD64_YMM27      =  721,
    CV_AMD64_YMM28      =  722,
    CV_AMD64_YMM29      =  723,
    CV_AMD64_YMM30      =  724,
    CV_AMD64_YMM31      =  725,

    CV_AMD64_ZMM0       =  726,
    CV_AMD64_ZMM1       =  727,
    CV_AMD64_ZMM2       =  728,
    CV_AMD64_ZMM3       =  729,
    CV_AMD64_ZMM4       =  730,
    CV_AMD64_ZMM5       =  731,
    CV_AMD64_ZMM6       =  732,
    CV_AMD64_ZMM7       =  733,
    CV_AMD64_ZMM8       =  734,
    CV_AMD64_ZMM9       =  735,
    CV_AMD64_ZMM10      =  736,
    CV_AMD64_ZMM11      =  737,
    CV_AMD64_ZMM12      =  738,
    CV_AMD64_ZMM13      =  739,
    CV_AMD64_ZMM14      =  740,
    CV_AMD64_ZMM15      =  741,
    CV_AMD64_ZMM16      =  742,
    CV_AMD64_ZMM17      =  743,
    CV_AMD64_ZMM18      =  744,
    CV_AMD64_ZMM19      =  745,
    CV_AMD64_ZMM20      =  746,
    CV_AMD64_ZMM21      =  747,
    CV_AMD64_ZMM22      =  748,
    CV_AMD64_ZMM23      =  749,
    CV_AMD64_ZMM24      =  750,
    CV_AMD64_ZMM25      =  751,
    CV_AMD64_ZMM26      =  752,
    CV_AMD64_ZMM27      =  753,
    CV_AMD64_ZMM28      =  754,
    CV_AMD64_ZMM29      =  755,
    CV_AMD64_ZMM30      =  756,
    CV_AMD64_ZMM31      =  757,

    CV_AMD64_K0         =  758,
    CV_AMD64_K1         =  759,
    CV_AMD64_K2         =  760,
    CV_AMD64_K3         =  761,
    CV_AMD64_K4         =  762,
    CV_AMD64_K5         =  763,
    CV_AMD64_K6         =  764,
    CV_AMD64_K7         =  765,

    CV_AMD64_ZMM0H      =  766,     // upper 256 bits of the first 16 AMD64 AVX-512 registers
    CV_AMD64_ZMM1H      =  767,
    CV_AMD64_ZMM2H      =  768,
    CV_AMD64_ZMM3H      =  769,
    CV_AMD64_ZMM4H      =  770,
    CV_AMD64_ZMM5H      =  771,
    CV_AMD64_ZMM6H      =  772,
    CV_AMD64_ZMM7H      =  773,
    CV_AMD64_ZMM8H      =  774,
    CV_AMD64_ZMM9H      =  775,
    CV_AMD64_ZMM10H     =  776,
    CV_AMD64_ZMM11H     =  777,
    CV_AMD64_ZMM12H     =  778,
    CV_AMD64_ZMM13H     =  779,
    CV_AMD64_ZMM14H     =  780,
    CV_AMD64_ZMM15H     =  781,

    CV_AMD64_XMM16L     =  782,     // extended KATMAI registers
    CV_AMD64_XMM17L     =  783,
    CV_AMD64_XMM18L     =  784,
    CV_AMD64_XMM19L     =  785,
    CV_AMD64_XMM20L     =  786,
    CV_AMD64_XMM21L     =  787,
    CV_AMD64_XMM22L     =  788,
    CV_AMD64_XMM23L     =  789,
    CV_AMD64_XMM24L     =  790,
    CV_AMD64_XMM25L     =  791,
    CV_AMD64_XMM26L     =  792,
    CV_AMD64_XMM27L     =  793,
    CV_AMD64_XMM28L     =  794,
    CV_AMD64_XMM29L     =  795,
    CV_AMD64_XMM30L     =  796,
    CV_AMD64_XMM31L     =  797,

    CV_AMD64_XMM16_0    =  798,
    CV_AMD64_XMM17_0    =  799,
    CV_AMD64_XMM18_0    =  800,
    CV_AMD64_XMM19_0    =  801,
    CV_AMD64_XMM20_0    =  802,
    CV_AMD64_XMM21_0    =  803,
    CV_AMD64_XMM22_0    =  804,
    CV_AMD64_XMM23_0    =  805,
    CV_AMD64_XMM24_0    =  806,
    CV_AMD64_XMM25_0    =  807,
    CV_AMD64_XMM26_0    =  808,
    CV_AMD64_XMM27_0    =  809,
    CV_AMD64_XMM28_0    =  810,
    CV_AMD64_XMM29_0    =  811,
    CV_AMD64_XMM30_0    =  812,
    CV_AMD64_XMM31_0    =  813,

    CV_AMD64_XMM16H     =  814,
    CV_AMD64_XMM17H     =  815,
    CV_AMD64_XMM18H     =  816,
    CV_AMD64_XMM19H     =  817,
    CV_AMD64_XMM20H     =  818,
    CV_AMD64_XMM21H     =  819,
    CV_AMD64_XMM22H     =  820,
    CV_AMD64_XMM23H     =  821,
    CV_AMD64_XMM24H     =  822,
    CV_AMD64_XMM25H     =  823,
    CV_AMD64_XMM26H     =  824,
    CV_AMD64_XMM27H     =  825,
    CV_AMD64_XMM28H     =  826,
    CV_AMD64_XMM29H     =  827,
    CV_AMD64_XMM30H     =  828,
    CV_AMD64_XMM31H     =  829,

    CV_AMD64_EMM16H     =  830,
    CV_AMD64_EMM17H     =  831,
    CV_AMD64_EMM18H     =  832,
    CV_AMD64_EMM19H     =  833,
    CV_AMD64_EMM20H     =  834,
    CV_AMD64_EMM21H     =  835,
    CV_AMD64_EMM22H     =  836,
    CV_AMD64_EMM23H     =  837,
    CV_AMD64_EMM24H     =  838,
    CV_AMD64_EMM25H     =  839,
    CV_AMD64_EMM26H     =  840,
    CV_AMD64_EMM27H     =  841,
    CV_AMD64_EMM28H     =  842,
    CV_AMD64_EMM29H     =  843,
    CV_AMD64_EMM30H     =  844,
    CV_AMD64_EMM31H     =  845,

    CV_AMD64_SSP        =  846,      // CET- Shadow Stack Pointer

    CV_AMD64_TMM0       =  847,      // AMX tile registers
    CV_AMD64_TMM1       =  848,
    CV_AMD64_TMM2       =  849,
    CV_AMD64_TMM3       =  850,
    CV_AMD64_TMM4       =  851,
    CV_AMD64_TMM5       =  852,
    CV_AMD64_TMM6       =  853,
    CV_AMD64_TMM7       =  854,
    CV_AMD64_TILECFG    =  855,      // AMX tile cfg register


} CV_HREG_e;
%ProgramFiles%\Microsoft Visual Studio\2022\Professional\DIA SDK\include\cvconst.h(405,0)