| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Program Files (x86)/Windows Kits/10/Include/10.0.19041.0/um/ |
Upload File : |
/*++
Copyright (c) Microsoft Corporation. All rights reserved.
Module Name:
OPATHLEX.H
Abstract:
Object Path DFA Tokens
History:
--*/
#ifndef _OPATHLEX_H_
#include <winapifamily.h>
#pragma region Desktop Family
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
#define OPATH_TOK_EOF 0
#define OPATH_TOK_ERROR 1
#define OPATH_TOK_IDENT 100
#define OPATH_TOK_QSTRING 101
#define OPATH_TOK_INT 102
#define OPATH_TOK_HEXINT 103
#define OPATH_TOK_EQ 104
#define OPATH_TOK_DOT 105
#define OPATH_TOK_OPEN_PAREN 106
#define OPATH_TOK_CLOSE_PAREN 107
#define OPATH_TOK_SINGLETON_SYM 108
#define OPATH_TOK_COMMA 109
#define OPATH_TOK_BACKSLASH 110
#define OPATH_TOK_COLON 111
#define OPATH_SINGLETON_STRING L"@"
extern LexEl OPath_LexTable[];
#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP) */
#pragma endregion
#endif