]> git.proxmox.com Git - rustc.git/blame - vendor/windows-sys/src/Windows/Win32/System/Search/mod.rs
New upstream version 1.67.1+dfsg1
[rustc.git] / vendor / windows-sys / src / Windows / Win32 / System / Search / mod.rs
CommitLineData
5e7ed085
FG
1#[cfg(feature = "Win32_System_Search_Common")]
2pub mod Common;
487cf647 3#[cfg_attr(windows, link(name = "windows"))]
5e7ed085 4extern "system" {
04454e1e 5 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 6 pub fn ODBCGetTryWaitValue() -> u32;
04454e1e 7 #[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Foundation\"`*"]
5e7ed085
FG
8 #[cfg(feature = "Win32_Foundation")]
9 pub fn ODBCSetTryWaitValue(dwvalue: u32) -> super::super::Foundation::BOOL;
04454e1e 10 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 11 pub fn SQLAllocConnect(environmenthandle: *mut ::core::ffi::c_void, connectionhandle: *mut *mut ::core::ffi::c_void) -> i16;
04454e1e 12 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 13 pub fn SQLAllocEnv(environmenthandle: *mut *mut ::core::ffi::c_void) -> i16;
04454e1e 14 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 15 pub fn SQLAllocHandle(handletype: i16, inputhandle: *mut ::core::ffi::c_void, outputhandle: *mut *mut ::core::ffi::c_void) -> i16;
04454e1e 16 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 17 pub fn SQLAllocHandleStd(fhandletype: i16, hinput: *mut ::core::ffi::c_void, phoutput: *mut *mut ::core::ffi::c_void) -> i16;
04454e1e 18 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 19 pub fn SQLAllocStmt(connectionhandle: *mut ::core::ffi::c_void, statementhandle: *mut *mut ::core::ffi::c_void) -> i16;
04454e1e 20 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
21 #[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
22 pub fn SQLBindCol(statementhandle: *mut ::core::ffi::c_void, columnnumber: u16, targettype: i16, targetvalue: *mut ::core::ffi::c_void, bufferlength: i64, strlen_or_ind: *mut i64) -> i16;
04454e1e 23 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
24 #[cfg(target_arch = "x86")]
25 pub fn SQLBindCol(statementhandle: *mut ::core::ffi::c_void, columnnumber: u16, targettype: i16, targetvalue: *mut ::core::ffi::c_void, bufferlength: i32, strlen_or_ind: *mut i32) -> i16;
04454e1e 26 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
27 #[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
28 pub fn SQLBindParam(statementhandle: *mut ::core::ffi::c_void, parameternumber: u16, valuetype: i16, parametertype: i16, lengthprecision: u64, parameterscale: i16, parametervalue: *mut ::core::ffi::c_void, strlen_or_ind: *mut i64) -> i16;
04454e1e 29 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
30 #[cfg(target_arch = "x86")]
31 pub fn SQLBindParam(statementhandle: *mut ::core::ffi::c_void, parameternumber: u16, valuetype: i16, parametertype: i16, lengthprecision: u32, parameterscale: i16, parametervalue: *mut ::core::ffi::c_void, strlen_or_ind: *mut i32) -> i16;
04454e1e 32 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
33 #[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
34 pub fn SQLBindParameter(hstmt: *mut ::core::ffi::c_void, ipar: u16, fparamtype: i16, fctype: i16, fsqltype: i16, cbcoldef: u64, ibscale: i16, rgbvalue: *mut ::core::ffi::c_void, cbvaluemax: i64, pcbvalue: *mut i64) -> i16;
04454e1e 35 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
36 #[cfg(target_arch = "x86")]
37 pub fn SQLBindParameter(hstmt: *mut ::core::ffi::c_void, ipar: u16, fparamtype: i16, fctype: i16, fsqltype: i16, cbcoldef: u32, ibscale: i16, rgbvalue: *mut ::core::ffi::c_void, cbvaluemax: i32, pcbvalue: *mut i32) -> i16;
04454e1e 38 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 39 pub fn SQLBrowseConnect(hdbc: *mut ::core::ffi::c_void, szconnstrin: *const u8, cchconnstrin: i16, szconnstrout: *mut u8, cchconnstroutmax: i16, pcchconnstrout: *mut i16) -> i16;
04454e1e 40 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 41 pub fn SQLBrowseConnectA(hdbc: *mut ::core::ffi::c_void, szconnstrin: *const u8, cbconnstrin: i16, szconnstrout: *mut u8, cbconnstroutmax: i16, pcbconnstrout: *mut i16) -> i16;
04454e1e 42 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 43 pub fn SQLBrowseConnectW(hdbc: *mut ::core::ffi::c_void, szconnstrin: *const u16, cchconnstrin: i16, szconnstrout: *mut u16, cchconnstroutmax: i16, pcchconnstrout: *mut i16) -> i16;
04454e1e 44 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 45 pub fn SQLBulkOperations(statementhandle: *mut ::core::ffi::c_void, operation: i16) -> i16;
04454e1e 46 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 47 pub fn SQLCancel(statementhandle: *mut ::core::ffi::c_void) -> i16;
04454e1e 48 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 49 pub fn SQLCancelHandle(handletype: i16, inputhandle: *mut ::core::ffi::c_void) -> i16;
04454e1e 50 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 51 pub fn SQLCloseCursor(statementhandle: *mut ::core::ffi::c_void) -> i16;
04454e1e 52 #[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Foundation\"`*"]
5e7ed085
FG
53 #[cfg(feature = "Win32_Foundation")]
54 pub fn SQLCloseEnumServers(henumhandle: super::super::Foundation::HANDLE) -> i16;
04454e1e 55 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
56 #[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
57 pub fn SQLColAttribute(statementhandle: *mut ::core::ffi::c_void, columnnumber: u16, fieldidentifier: u16, characterattribute: *mut ::core::ffi::c_void, bufferlength: i16, stringlength: *mut i16, numericattribute: *mut i64) -> i16;
04454e1e 58 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
59 #[cfg(target_arch = "x86")]
60 pub fn SQLColAttribute(statementhandle: *mut ::core::ffi::c_void, columnnumber: u16, fieldidentifier: u16, characterattribute: *mut ::core::ffi::c_void, bufferlength: i16, stringlength: *mut i16, numericattribute: *mut ::core::ffi::c_void) -> i16;
04454e1e 61 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
62 #[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
63 pub fn SQLColAttributeA(hstmt: *mut ::core::ffi::c_void, icol: i16, ifield: i16, pcharattr: *mut ::core::ffi::c_void, cbcharattrmax: i16, pcbcharattr: *mut i16, pnumattr: *mut i64) -> i16;
04454e1e 64 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
65 #[cfg(target_arch = "x86")]
66 pub fn SQLColAttributeA(hstmt: *mut ::core::ffi::c_void, icol: i16, ifield: i16, pcharattr: *mut ::core::ffi::c_void, cbcharattrmax: i16, pcbcharattr: *mut i16, pnumattr: *mut ::core::ffi::c_void) -> i16;
04454e1e 67 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
68 #[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
69 pub fn SQLColAttributeW(hstmt: *mut ::core::ffi::c_void, icol: u16, ifield: u16, pcharattr: *mut ::core::ffi::c_void, cbdescmax: i16, pcbcharattr: *mut i16, pnumattr: *mut i64) -> i16;
04454e1e 70 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
71 #[cfg(target_arch = "x86")]
72 pub fn SQLColAttributeW(hstmt: *mut ::core::ffi::c_void, icol: u16, ifield: u16, pcharattr: *mut ::core::ffi::c_void, cbdescmax: i16, pcbcharattr: *mut i16, pnumattr: *mut ::core::ffi::c_void) -> i16;
04454e1e 73 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
74 #[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
75 pub fn SQLColAttributes(hstmt: *mut ::core::ffi::c_void, icol: u16, fdesctype: u16, rgbdesc: *mut ::core::ffi::c_void, cbdescmax: i16, pcbdesc: *mut i16, pfdesc: *mut i64) -> i16;
04454e1e 76 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
77 #[cfg(target_arch = "x86")]
78 pub fn SQLColAttributes(hstmt: *mut ::core::ffi::c_void, icol: u16, fdesctype: u16, rgbdesc: *mut ::core::ffi::c_void, cbdescmax: i16, pcbdesc: *mut i16, pfdesc: *mut i32) -> i16;
04454e1e 79 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
80 #[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
81 pub fn SQLColAttributesA(hstmt: *mut ::core::ffi::c_void, icol: u16, fdesctype: u16, rgbdesc: *mut ::core::ffi::c_void, cbdescmax: i16, pcbdesc: *mut i16, pfdesc: *mut i64) -> i16;
04454e1e 82 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
83 #[cfg(target_arch = "x86")]
84 pub fn SQLColAttributesA(hstmt: *mut ::core::ffi::c_void, icol: u16, fdesctype: u16, rgbdesc: *mut ::core::ffi::c_void, cbdescmax: i16, pcbdesc: *mut i16, pfdesc: *mut i32) -> i16;
04454e1e 85 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
86 #[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
87 pub fn SQLColAttributesW(hstmt: *mut ::core::ffi::c_void, icol: u16, fdesctype: u16, rgbdesc: *mut ::core::ffi::c_void, cbdescmax: i16, pcbdesc: *mut i16, pfdesc: *mut i64) -> i16;
04454e1e 88 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
89 #[cfg(target_arch = "x86")]
90 pub fn SQLColAttributesW(hstmt: *mut ::core::ffi::c_void, icol: u16, fdesctype: u16, rgbdesc: *mut ::core::ffi::c_void, cbdescmax: i16, pcbdesc: *mut i16, pfdesc: *mut i32) -> i16;
04454e1e 91 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 92 pub fn SQLColumnPrivileges(hstmt: *mut ::core::ffi::c_void, szcatalogname: *const u8, cchcatalogname: i16, szschemaname: *const u8, cchschemaname: i16, sztablename: *const u8, cchtablename: i16, szcolumnname: *const u8, cchcolumnname: i16) -> i16;
04454e1e 93 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 94 pub fn SQLColumnPrivilegesA(hstmt: *mut ::core::ffi::c_void, szcatalogname: *const u8, cbcatalogname: i16, szschemaname: *const u8, cbschemaname: i16, sztablename: *const u8, cbtablename: i16, szcolumnname: *const u8, cbcolumnname: i16) -> i16;
04454e1e 95 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 96 pub fn SQLColumnPrivilegesW(hstmt: *mut ::core::ffi::c_void, szcatalogname: *const u16, cchcatalogname: i16, szschemaname: *const u16, cchschemaname: i16, sztablename: *const u16, cchtablename: i16, szcolumnname: *const u16, cchcolumnname: i16) -> i16;
04454e1e 97 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 98 pub fn SQLColumns(statementhandle: *mut ::core::ffi::c_void, catalogname: *const u8, namelength1: i16, schemaname: *const u8, namelength2: i16, tablename: *const u8, namelength3: i16, columnname: *const u8, namelength4: i16) -> i16;
04454e1e 99 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 100 pub fn SQLColumnsA(hstmt: *mut ::core::ffi::c_void, szcatalogname: *const u8, cbcatalogname: i16, szschemaname: *const u8, cbschemaname: i16, sztablename: *const u8, cbtablename: i16, szcolumnname: *const u8, cbcolumnname: i16) -> i16;
04454e1e 101 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 102 pub fn SQLColumnsW(hstmt: *mut ::core::ffi::c_void, szcatalogname: *const u16, cchcatalogname: i16, szschemaname: *const u16, cchschemaname: i16, sztablename: *const u16, cchtablename: i16, szcolumnname: *const u16, cchcolumnname: i16) -> i16;
04454e1e 103 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 104 pub fn SQLCompleteAsync(handletype: i16, handle: *mut ::core::ffi::c_void, asyncretcodeptr: *mut i16) -> i16;
04454e1e 105 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 106 pub fn SQLConnect(connectionhandle: *mut ::core::ffi::c_void, servername: *const u8, namelength1: i16, username: *const u8, namelength2: i16, authentication: *const u8, namelength3: i16) -> i16;
04454e1e 107 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 108 pub fn SQLConnectA(hdbc: *mut ::core::ffi::c_void, szdsn: *const u8, cbdsn: i16, szuid: *const u8, cbuid: i16, szauthstr: *const u8, cbauthstr: i16) -> i16;
04454e1e 109 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 110 pub fn SQLConnectW(hdbc: *mut ::core::ffi::c_void, szdsn: *const u16, cchdsn: i16, szuid: *const u16, cchuid: i16, szauthstr: *const u16, cchauthstr: i16) -> i16;
04454e1e 111 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 112 pub fn SQLCopyDesc(sourcedeschandle: *mut ::core::ffi::c_void, targetdeschandle: *mut ::core::ffi::c_void) -> i16;
04454e1e 113 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 114 pub fn SQLDataSources(environmenthandle: *mut ::core::ffi::c_void, direction: u16, servername: *mut u8, bufferlength1: i16, namelength1ptr: *mut i16, description: *mut u8, bufferlength2: i16, namelength2ptr: *mut i16) -> i16;
04454e1e 115 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 116 pub fn SQLDataSourcesA(henv: *mut ::core::ffi::c_void, fdirection: u16, szdsn: *mut u8, cbdsnmax: i16, pcbdsn: *mut i16, szdescription: *mut u8, cbdescriptionmax: i16, pcbdescription: *mut i16) -> i16;
04454e1e 117 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 118 pub fn SQLDataSourcesW(henv: *mut ::core::ffi::c_void, fdirection: u16, szdsn: *mut u16, cchdsnmax: i16, pcchdsn: *mut i16, wszdescription: *mut u16, cchdescriptionmax: i16, pcchdescription: *mut i16) -> i16;
04454e1e 119 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
120 #[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
121 pub fn SQLDescribeCol(statementhandle: *mut ::core::ffi::c_void, columnnumber: u16, columnname: *mut u8, bufferlength: i16, namelength: *mut i16, datatype: *mut i16, columnsize: *mut u64, decimaldigits: *mut i16, nullable: *mut i16) -> i16;
04454e1e 122 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
123 #[cfg(target_arch = "x86")]
124 pub fn SQLDescribeCol(statementhandle: *mut ::core::ffi::c_void, columnnumber: u16, columnname: *mut u8, bufferlength: i16, namelength: *mut i16, datatype: *mut i16, columnsize: *mut u32, decimaldigits: *mut i16, nullable: *mut i16) -> i16;
04454e1e 125 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
126 #[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
127 pub fn SQLDescribeColA(hstmt: *mut ::core::ffi::c_void, icol: u16, szcolname: *mut u8, cbcolnamemax: i16, pcbcolname: *mut i16, pfsqltype: *mut i16, pcbcoldef: *mut u64, pibscale: *mut i16, pfnullable: *mut i16) -> i16;
04454e1e 128 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
129 #[cfg(target_arch = "x86")]
130 pub fn SQLDescribeColA(hstmt: *mut ::core::ffi::c_void, icol: u16, szcolname: *mut u8, cbcolnamemax: i16, pcbcolname: *mut i16, pfsqltype: *mut i16, pcbcoldef: *mut u32, pibscale: *mut i16, pfnullable: *mut i16) -> i16;
04454e1e 131 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
132 #[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
133 pub fn SQLDescribeColW(hstmt: *mut ::core::ffi::c_void, icol: u16, szcolname: *mut u16, cchcolnamemax: i16, pcchcolname: *mut i16, pfsqltype: *mut i16, pcbcoldef: *mut u64, pibscale: *mut i16, pfnullable: *mut i16) -> i16;
04454e1e 134 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
135 #[cfg(target_arch = "x86")]
136 pub fn SQLDescribeColW(hstmt: *mut ::core::ffi::c_void, icol: u16, szcolname: *mut u16, cchcolnamemax: i16, pcchcolname: *mut i16, pfsqltype: *mut i16, pcbcoldef: *mut u32, pibscale: *mut i16, pfnullable: *mut i16) -> i16;
04454e1e 137 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
138 #[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
139 pub fn SQLDescribeParam(hstmt: *mut ::core::ffi::c_void, ipar: u16, pfsqltype: *mut i16, pcbparamdef: *mut u64, pibscale: *mut i16, pfnullable: *mut i16) -> i16;
04454e1e 140 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
141 #[cfg(target_arch = "x86")]
142 pub fn SQLDescribeParam(hstmt: *mut ::core::ffi::c_void, ipar: u16, pfsqltype: *mut i16, pcbparamdef: *mut u32, pibscale: *mut i16, pfnullable: *mut i16) -> i16;
04454e1e 143 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 144 pub fn SQLDisconnect(connectionhandle: *mut ::core::ffi::c_void) -> i16;
04454e1e 145 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 146 pub fn SQLDriverConnect(hdbc: *mut ::core::ffi::c_void, hwnd: isize, szconnstrin: *const u8, cchconnstrin: i16, szconnstrout: *mut u8, cchconnstroutmax: i16, pcchconnstrout: *mut i16, fdrivercompletion: u16) -> i16;
04454e1e 147 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 148 pub fn SQLDriverConnectA(hdbc: *mut ::core::ffi::c_void, hwnd: isize, szconnstrin: *const u8, cbconnstrin: i16, szconnstrout: *mut u8, cbconnstroutmax: i16, pcbconnstrout: *mut i16, fdrivercompletion: u16) -> i16;
04454e1e 149 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 150 pub fn SQLDriverConnectW(hdbc: *mut ::core::ffi::c_void, hwnd: isize, szconnstrin: *const u16, cchconnstrin: i16, szconnstrout: *mut u16, cchconnstroutmax: i16, pcchconnstrout: *mut i16, fdrivercompletion: u16) -> i16;
04454e1e 151 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 152 pub fn SQLDrivers(henv: *mut ::core::ffi::c_void, fdirection: u16, szdriverdesc: *mut u8, cchdriverdescmax: i16, pcchdriverdesc: *mut i16, szdriverattributes: *mut u8, cchdrvrattrmax: i16, pcchdrvrattr: *mut i16) -> i16;
04454e1e 153 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 154 pub fn SQLDriversA(henv: *mut ::core::ffi::c_void, fdirection: u16, szdriverdesc: *mut u8, cbdriverdescmax: i16, pcbdriverdesc: *mut i16, szdriverattributes: *mut u8, cbdrvrattrmax: i16, pcbdrvrattr: *mut i16) -> i16;
04454e1e 155 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 156 pub fn SQLDriversW(henv: *mut ::core::ffi::c_void, fdirection: u16, szdriverdesc: *mut u16, cchdriverdescmax: i16, pcchdriverdesc: *mut i16, szdriverattributes: *mut u16, cchdrvrattrmax: i16, pcchdrvrattr: *mut i16) -> i16;
04454e1e 157 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 158 pub fn SQLEndTran(handletype: i16, handle: *mut ::core::ffi::c_void, completiontype: i16) -> i16;
04454e1e 159 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 160 pub fn SQLError(environmenthandle: *mut ::core::ffi::c_void, connectionhandle: *mut ::core::ffi::c_void, statementhandle: *mut ::core::ffi::c_void, sqlstate: *mut u8, nativeerror: *mut i32, messagetext: *mut u8, bufferlength: i16, textlength: *mut i16) -> i16;
04454e1e 161 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 162 pub fn SQLErrorA(henv: *mut ::core::ffi::c_void, hdbc: *mut ::core::ffi::c_void, hstmt: *mut ::core::ffi::c_void, szsqlstate: *mut u8, pfnativeerror: *mut i32, szerrormsg: *mut u8, cberrormsgmax: i16, pcberrormsg: *mut i16) -> i16;
04454e1e 163 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 164 pub fn SQLErrorW(henv: *mut ::core::ffi::c_void, hdbc: *mut ::core::ffi::c_void, hstmt: *mut ::core::ffi::c_void, wszsqlstate: *mut u16, pfnativeerror: *mut i32, wszerrormsg: *mut u16, ccherrormsgmax: i16, pccherrormsg: *mut i16) -> i16;
04454e1e 165 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 166 pub fn SQLExecDirect(statementhandle: *mut ::core::ffi::c_void, statementtext: *const u8, textlength: i32) -> i16;
04454e1e 167 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 168 pub fn SQLExecDirectA(hstmt: *mut ::core::ffi::c_void, szsqlstr: *const u8, cbsqlstr: i32) -> i16;
04454e1e 169 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 170 pub fn SQLExecDirectW(hstmt: *mut ::core::ffi::c_void, szsqlstr: *const u16, textlength: i32) -> i16;
04454e1e 171 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 172 pub fn SQLExecute(statementhandle: *mut ::core::ffi::c_void) -> i16;
04454e1e 173 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
174 #[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
175 pub fn SQLExtendedFetch(hstmt: *mut ::core::ffi::c_void, ffetchtype: u16, irow: i64, pcrow: *mut u64, rgfrowstatus: *mut u16) -> i16;
04454e1e 176 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
177 #[cfg(target_arch = "x86")]
178 pub fn SQLExtendedFetch(hstmt: *mut ::core::ffi::c_void, ffetchtype: u16, irow: i32, pcrow: *mut u32, rgfrowstatus: *mut u16) -> i16;
04454e1e 179 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 180 pub fn SQLFetch(statementhandle: *mut ::core::ffi::c_void) -> i16;
04454e1e 181 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
182 #[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
183 pub fn SQLFetchScroll(statementhandle: *mut ::core::ffi::c_void, fetchorientation: i16, fetchoffset: i64) -> i16;
04454e1e 184 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
185 #[cfg(target_arch = "x86")]
186 pub fn SQLFetchScroll(statementhandle: *mut ::core::ffi::c_void, fetchorientation: i16, fetchoffset: i32) -> i16;
04454e1e 187 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 188 pub fn SQLForeignKeys(hstmt: *mut ::core::ffi::c_void, szpkcatalogname: *const u8, cchpkcatalogname: i16, szpkschemaname: *const u8, cchpkschemaname: i16, szpktablename: *const u8, cchpktablename: i16, szfkcatalogname: *const u8, cchfkcatalogname: i16, szfkschemaname: *const u8, cchfkschemaname: i16, szfktablename: *const u8, cchfktablename: i16) -> i16;
04454e1e 189 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 190 pub fn SQLForeignKeysA(hstmt: *mut ::core::ffi::c_void, szpkcatalogname: *const u8, cbpkcatalogname: i16, szpkschemaname: *const u8, cbpkschemaname: i16, szpktablename: *const u8, cbpktablename: i16, szfkcatalogname: *const u8, cbfkcatalogname: i16, szfkschemaname: *const u8, cbfkschemaname: i16, szfktablename: *const u8, cbfktablename: i16) -> i16;
04454e1e 191 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 192 pub fn SQLForeignKeysW(hstmt: *mut ::core::ffi::c_void, szpkcatalogname: *const u16, cchpkcatalogname: i16, szpkschemaname: *const u16, cchpkschemaname: i16, szpktablename: *const u16, cchpktablename: i16, szfkcatalogname: *const u16, cchfkcatalogname: i16, szfkschemaname: *const u16, cchfkschemaname: i16, szfktablename: *const u16, cchfktablename: i16) -> i16;
04454e1e 193 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 194 pub fn SQLFreeConnect(connectionhandle: *mut ::core::ffi::c_void) -> i16;
04454e1e 195 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 196 pub fn SQLFreeEnv(environmenthandle: *mut ::core::ffi::c_void) -> i16;
04454e1e 197 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 198 pub fn SQLFreeHandle(handletype: i16, handle: *mut ::core::ffi::c_void) -> i16;
04454e1e 199 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 200 pub fn SQLFreeStmt(statementhandle: *mut ::core::ffi::c_void, option: u16) -> i16;
04454e1e 201 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 202 pub fn SQLGetConnectAttr(connectionhandle: *mut ::core::ffi::c_void, attribute: i32, value: *mut ::core::ffi::c_void, bufferlength: i32, stringlengthptr: *mut i32) -> i16;
04454e1e 203 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 204 pub fn SQLGetConnectAttrA(hdbc: *mut ::core::ffi::c_void, fattribute: i32, rgbvalue: *mut ::core::ffi::c_void, cbvaluemax: i32, pcbvalue: *mut i32) -> i16;
04454e1e 205 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 206 pub fn SQLGetConnectAttrW(hdbc: *mut ::core::ffi::c_void, fattribute: i32, rgbvalue: *mut ::core::ffi::c_void, cbvaluemax: i32, pcbvalue: *mut i32) -> i16;
04454e1e 207 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 208 pub fn SQLGetConnectOption(connectionhandle: *mut ::core::ffi::c_void, option: u16, value: *mut ::core::ffi::c_void) -> i16;
04454e1e 209 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 210 pub fn SQLGetConnectOptionA(hdbc: *mut ::core::ffi::c_void, foption: u16, pvparam: *mut ::core::ffi::c_void) -> i16;
04454e1e 211 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 212 pub fn SQLGetConnectOptionW(hdbc: *mut ::core::ffi::c_void, foption: u16, pvparam: *mut ::core::ffi::c_void) -> i16;
04454e1e 213 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 214 pub fn SQLGetCursorName(statementhandle: *mut ::core::ffi::c_void, cursorname: *mut u8, bufferlength: i16, namelengthptr: *mut i16) -> i16;
04454e1e 215 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 216 pub fn SQLGetCursorNameA(hstmt: *mut ::core::ffi::c_void, szcursor: *mut u8, cbcursormax: i16, pcbcursor: *mut i16) -> i16;
04454e1e 217 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 218 pub fn SQLGetCursorNameW(hstmt: *mut ::core::ffi::c_void, szcursor: *mut u16, cchcursormax: i16, pcchcursor: *mut i16) -> i16;
04454e1e 219 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
220 #[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
221 pub fn SQLGetData(statementhandle: *mut ::core::ffi::c_void, columnnumber: u16, targettype: i16, targetvalue: *mut ::core::ffi::c_void, bufferlength: i64, strlen_or_indptr: *mut i64) -> i16;
04454e1e 222 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
223 #[cfg(target_arch = "x86")]
224 pub fn SQLGetData(statementhandle: *mut ::core::ffi::c_void, columnnumber: u16, targettype: i16, targetvalue: *mut ::core::ffi::c_void, bufferlength: i32, strlen_or_indptr: *mut i32) -> i16;
04454e1e 225 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 226 pub fn SQLGetDescField(descriptorhandle: *mut ::core::ffi::c_void, recnumber: i16, fieldidentifier: i16, value: *mut ::core::ffi::c_void, bufferlength: i32, stringlength: *mut i32) -> i16;
04454e1e 227 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 228 pub fn SQLGetDescFieldA(hdesc: *mut ::core::ffi::c_void, irecord: i16, ifield: i16, rgbvalue: *mut ::core::ffi::c_void, cbbufferlength: i32, stringlength: *mut i32) -> i16;
04454e1e 229 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 230 pub fn SQLGetDescFieldW(hdesc: *mut ::core::ffi::c_void, irecord: i16, ifield: i16, rgbvalue: *mut ::core::ffi::c_void, cbbufferlength: i32, stringlength: *mut i32) -> i16;
04454e1e 231 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
232 #[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
233 pub fn SQLGetDescRec(descriptorhandle: *mut ::core::ffi::c_void, recnumber: i16, name: *mut u8, bufferlength: i16, stringlengthptr: *mut i16, typeptr: *mut i16, subtypeptr: *mut i16, lengthptr: *mut i64, precisionptr: *mut i16, scaleptr: *mut i16, nullableptr: *mut i16) -> i16;
04454e1e 234 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
235 #[cfg(target_arch = "x86")]
236 pub fn SQLGetDescRec(descriptorhandle: *mut ::core::ffi::c_void, recnumber: i16, name: *mut u8, bufferlength: i16, stringlengthptr: *mut i16, typeptr: *mut i16, subtypeptr: *mut i16, lengthptr: *mut i32, precisionptr: *mut i16, scaleptr: *mut i16, nullableptr: *mut i16) -> i16;
04454e1e 237 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
238 #[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
239 pub fn SQLGetDescRecA(hdesc: *mut ::core::ffi::c_void, irecord: i16, szname: *mut u8, cbnamemax: i16, pcbname: *mut i16, pftype: *mut i16, pfsubtype: *mut i16, plength: *mut i64, pprecision: *mut i16, pscale: *mut i16, pnullable: *mut i16) -> i16;
04454e1e 240 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
241 #[cfg(target_arch = "x86")]
242 pub fn SQLGetDescRecA(hdesc: *mut ::core::ffi::c_void, irecord: i16, szname: *mut u8, cbnamemax: i16, pcbname: *mut i16, pftype: *mut i16, pfsubtype: *mut i16, plength: *mut i32, pprecision: *mut i16, pscale: *mut i16, pnullable: *mut i16) -> i16;
04454e1e 243 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
244 #[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
245 pub fn SQLGetDescRecW(hdesc: *mut ::core::ffi::c_void, irecord: i16, szname: *mut u16, cchnamemax: i16, pcchname: *mut i16, pftype: *mut i16, pfsubtype: *mut i16, plength: *mut i64, pprecision: *mut i16, pscale: *mut i16, pnullable: *mut i16) -> i16;
04454e1e 246 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
247 #[cfg(target_arch = "x86")]
248 pub fn SQLGetDescRecW(hdesc: *mut ::core::ffi::c_void, irecord: i16, szname: *mut u16, cchnamemax: i16, pcchname: *mut i16, pftype: *mut i16, pfsubtype: *mut i16, plength: *mut i32, pprecision: *mut i16, pscale: *mut i16, pnullable: *mut i16) -> i16;
04454e1e 249 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 250 pub fn SQLGetDiagField(handletype: i16, handle: *mut ::core::ffi::c_void, recnumber: i16, diagidentifier: i16, diaginfo: *mut ::core::ffi::c_void, bufferlength: i16, stringlength: *mut i16) -> i16;
04454e1e 251 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 252 pub fn SQLGetDiagFieldA(fhandletype: i16, handle: *mut ::core::ffi::c_void, irecord: i16, fdiagfield: i16, rgbdiaginfo: *mut ::core::ffi::c_void, cbdiaginfomax: i16, pcbdiaginfo: *mut i16) -> i16;
04454e1e 253 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 254 pub fn SQLGetDiagFieldW(fhandletype: i16, handle: *mut ::core::ffi::c_void, irecord: i16, fdiagfield: i16, rgbdiaginfo: *mut ::core::ffi::c_void, cbbufferlength: i16, pcbstringlength: *mut i16) -> i16;
04454e1e 255 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 256 pub fn SQLGetDiagRec(handletype: i16, handle: *mut ::core::ffi::c_void, recnumber: i16, sqlstate: *mut u8, nativeerror: *mut i32, messagetext: *mut u8, bufferlength: i16, textlength: *mut i16) -> i16;
04454e1e 257 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 258 pub fn SQLGetDiagRecA(fhandletype: i16, handle: *mut ::core::ffi::c_void, irecord: i16, szsqlstate: *mut u8, pfnativeerror: *mut i32, szerrormsg: *mut u8, cberrormsgmax: i16, pcberrormsg: *mut i16) -> i16;
04454e1e 259 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 260 pub fn SQLGetDiagRecW(fhandletype: i16, handle: *mut ::core::ffi::c_void, irecord: i16, szsqlstate: *mut u16, pfnativeerror: *mut i32, szerrormsg: *mut u16, ccherrormsgmax: i16, pccherrormsg: *mut i16) -> i16;
04454e1e 261 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 262 pub fn SQLGetEnvAttr(environmenthandle: *mut ::core::ffi::c_void, attribute: i32, value: *mut ::core::ffi::c_void, bufferlength: i32, stringlength: *mut i32) -> i16;
04454e1e 263 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 264 pub fn SQLGetFunctions(connectionhandle: *mut ::core::ffi::c_void, functionid: u16, supported: *mut u16) -> i16;
04454e1e 265 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 266 pub fn SQLGetInfo(connectionhandle: *mut ::core::ffi::c_void, infotype: u16, infovalue: *mut ::core::ffi::c_void, bufferlength: i16, stringlengthptr: *mut i16) -> i16;
04454e1e 267 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 268 pub fn SQLGetInfoA(hdbc: *mut ::core::ffi::c_void, finfotype: u16, rgbinfovalue: *mut ::core::ffi::c_void, cbinfovaluemax: i16, pcbinfovalue: *mut i16) -> i16;
04454e1e 269 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 270 pub fn SQLGetInfoW(hdbc: *mut ::core::ffi::c_void, finfotype: u16, rgbinfovalue: *mut ::core::ffi::c_void, cbinfovaluemax: i16, pcbinfovalue: *mut i16) -> i16;
04454e1e 271 #[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Foundation\"`*"]
5e7ed085
FG
272 #[cfg(feature = "Win32_Foundation")]
273 pub fn SQLGetNextEnumeration(henumhandle: super::super::Foundation::HANDLE, prgenumdata: *mut u8, pienumlength: *mut i32) -> i16;
04454e1e 274 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 275 pub fn SQLGetStmtAttr(statementhandle: *mut ::core::ffi::c_void, attribute: i32, value: *mut ::core::ffi::c_void, bufferlength: i32, stringlength: *mut i32) -> i16;
04454e1e 276 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 277 pub fn SQLGetStmtAttrA(hstmt: *mut ::core::ffi::c_void, fattribute: i32, rgbvalue: *mut ::core::ffi::c_void, cbvaluemax: i32, pcbvalue: *mut i32) -> i16;
04454e1e 278 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 279 pub fn SQLGetStmtAttrW(hstmt: *mut ::core::ffi::c_void, fattribute: i32, rgbvalue: *mut ::core::ffi::c_void, cbvaluemax: i32, pcbvalue: *mut i32) -> i16;
04454e1e 280 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 281 pub fn SQLGetStmtOption(statementhandle: *mut ::core::ffi::c_void, option: u16, value: *mut ::core::ffi::c_void) -> i16;
04454e1e 282 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 283 pub fn SQLGetTypeInfo(statementhandle: *mut ::core::ffi::c_void, datatype: i16) -> i16;
04454e1e 284 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 285 pub fn SQLGetTypeInfoA(statementhandle: *mut ::core::ffi::c_void, datatype: i16) -> i16;
04454e1e 286 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 287 pub fn SQLGetTypeInfoW(statementhandle: *mut ::core::ffi::c_void, datatype: i16) -> i16;
04454e1e 288 #[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Foundation\"`*"]
5e7ed085 289 #[cfg(feature = "Win32_Foundation")]
04454e1e
FG
290 pub fn SQLInitEnumServers(pwchservername: ::windows_sys::core::PCWSTR, pwchinstancename: ::windows_sys::core::PCWSTR) -> super::super::Foundation::HANDLE;
291 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
292 pub fn SQLLinkedCatalogsA(param0: *mut ::core::ffi::c_void, param1: ::windows_sys::core::PCSTR, param2: i16) -> i16;
293 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
294 pub fn SQLLinkedCatalogsW(param0: *mut ::core::ffi::c_void, param1: ::windows_sys::core::PCWSTR, param2: i16) -> i16;
295 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 296 pub fn SQLLinkedServers(param0: *mut ::core::ffi::c_void) -> i16;
04454e1e 297 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 298 pub fn SQLMoreResults(hstmt: *mut ::core::ffi::c_void) -> i16;
04454e1e 299 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 300 pub fn SQLNativeSql(hdbc: *mut ::core::ffi::c_void, szsqlstrin: *const u8, cchsqlstrin: i32, szsqlstr: *mut u8, cchsqlstrmax: i32, pcbsqlstr: *mut i32) -> i16;
04454e1e 301 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 302 pub fn SQLNativeSqlA(hdbc: *mut ::core::ffi::c_void, szsqlstrin: *const u8, cbsqlstrin: i32, szsqlstr: *mut u8, cbsqlstrmax: i32, pcbsqlstr: *mut i32) -> i16;
04454e1e 303 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 304 pub fn SQLNativeSqlW(hdbc: *mut ::core::ffi::c_void, szsqlstrin: *const u16, cchsqlstrin: i32, szsqlstr: *mut u16, cchsqlstrmax: i32, pcchsqlstr: *mut i32) -> i16;
04454e1e 305 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 306 pub fn SQLNumParams(hstmt: *mut ::core::ffi::c_void, pcpar: *mut i16) -> i16;
04454e1e 307 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 308 pub fn SQLNumResultCols(statementhandle: *mut ::core::ffi::c_void, columncount: *mut i16) -> i16;
04454e1e 309 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 310 pub fn SQLParamData(statementhandle: *mut ::core::ffi::c_void, value: *mut *mut ::core::ffi::c_void) -> i16;
04454e1e 311 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
312 #[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
313 pub fn SQLParamOptions(hstmt: *mut ::core::ffi::c_void, crow: u64, pirow: *mut u64) -> i16;
04454e1e 314 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
315 #[cfg(target_arch = "x86")]
316 pub fn SQLParamOptions(hstmt: *mut ::core::ffi::c_void, crow: u32, pirow: *mut u32) -> i16;
04454e1e 317 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 318 pub fn SQLPrepare(statementhandle: *mut ::core::ffi::c_void, statementtext: *const u8, textlength: i32) -> i16;
04454e1e 319 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 320 pub fn SQLPrepareA(hstmt: *mut ::core::ffi::c_void, szsqlstr: *const u8, cbsqlstr: i32) -> i16;
04454e1e 321 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 322 pub fn SQLPrepareW(hstmt: *mut ::core::ffi::c_void, szsqlstr: *const u16, cchsqlstr: i32) -> i16;
04454e1e 323 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 324 pub fn SQLPrimaryKeys(hstmt: *mut ::core::ffi::c_void, szcatalogname: *const u8, cchcatalogname: i16, szschemaname: *const u8, cchschemaname: i16, sztablename: *const u8, cchtablename: i16) -> i16;
04454e1e 325 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 326 pub fn SQLPrimaryKeysA(hstmt: *mut ::core::ffi::c_void, szcatalogname: *const u8, cbcatalogname: i16, szschemaname: *const u8, cbschemaname: i16, sztablename: *const u8, cbtablename: i16) -> i16;
04454e1e 327 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 328 pub fn SQLPrimaryKeysW(hstmt: *mut ::core::ffi::c_void, szcatalogname: *const u16, cchcatalogname: i16, szschemaname: *const u16, cchschemaname: i16, sztablename: *const u16, cchtablename: i16) -> i16;
04454e1e 329 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 330 pub fn SQLProcedureColumns(hstmt: *mut ::core::ffi::c_void, szcatalogname: *const u8, cchcatalogname: i16, szschemaname: *const u8, cchschemaname: i16, szprocname: *const u8, cchprocname: i16, szcolumnname: *const u8, cchcolumnname: i16) -> i16;
04454e1e 331 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 332 pub fn SQLProcedureColumnsA(hstmt: *mut ::core::ffi::c_void, szcatalogname: *const u8, cbcatalogname: i16, szschemaname: *const u8, cbschemaname: i16, szprocname: *const u8, cbprocname: i16, szcolumnname: *const u8, cbcolumnname: i16) -> i16;
04454e1e 333 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 334 pub fn SQLProcedureColumnsW(hstmt: *mut ::core::ffi::c_void, szcatalogname: *const u16, cchcatalogname: i16, szschemaname: *const u16, cchschemaname: i16, szprocname: *const u16, cchprocname: i16, szcolumnname: *const u16, cchcolumnname: i16) -> i16;
04454e1e 335 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 336 pub fn SQLProcedures(hstmt: *mut ::core::ffi::c_void, szcatalogname: *const u8, cchcatalogname: i16, szschemaname: *const u8, cchschemaname: i16, szprocname: *const u8, cchprocname: i16) -> i16;
04454e1e 337 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 338 pub fn SQLProceduresA(hstmt: *mut ::core::ffi::c_void, szcatalogname: *const u8, cbcatalogname: i16, szschemaname: *const u8, cbschemaname: i16, szprocname: *const u8, cbprocname: i16) -> i16;
04454e1e 339 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 340 pub fn SQLProceduresW(hstmt: *mut ::core::ffi::c_void, szcatalogname: *const u16, cchcatalogname: i16, szschemaname: *const u16, cchschemaname: i16, szprocname: *const u16, cchprocname: i16) -> i16;
04454e1e 341 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
342 #[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
343 pub fn SQLPutData(statementhandle: *mut ::core::ffi::c_void, data: *const ::core::ffi::c_void, strlen_or_ind: i64) -> i16;
04454e1e 344 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
345 #[cfg(target_arch = "x86")]
346 pub fn SQLPutData(statementhandle: *mut ::core::ffi::c_void, data: *const ::core::ffi::c_void, strlen_or_ind: i32) -> i16;
04454e1e 347 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
348 #[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
349 pub fn SQLRowCount(statementhandle: *const ::core::ffi::c_void, rowcount: *mut i64) -> i16;
04454e1e 350 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
351 #[cfg(target_arch = "x86")]
352 pub fn SQLRowCount(statementhandle: *const ::core::ffi::c_void, rowcount: *mut i32) -> i16;
04454e1e 353 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 354 pub fn SQLSetConnectAttr(connectionhandle: *mut ::core::ffi::c_void, attribute: i32, value: *const ::core::ffi::c_void, stringlength: i32) -> i16;
04454e1e 355 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 356 pub fn SQLSetConnectAttrA(hdbc: *mut ::core::ffi::c_void, fattribute: i32, rgbvalue: *const ::core::ffi::c_void, cbvalue: i32) -> i16;
04454e1e 357 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 358 pub fn SQLSetConnectAttrW(hdbc: *mut ::core::ffi::c_void, fattribute: i32, rgbvalue: *const ::core::ffi::c_void, cbvalue: i32) -> i16;
04454e1e 359 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
360 #[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
361 pub fn SQLSetConnectOption(connectionhandle: *mut ::core::ffi::c_void, option: u16, value: u64) -> i16;
04454e1e 362 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
363 #[cfg(target_arch = "x86")]
364 pub fn SQLSetConnectOption(connectionhandle: *mut ::core::ffi::c_void, option: u16, value: u32) -> i16;
04454e1e 365 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
366 #[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
367 pub fn SQLSetConnectOptionA(hdbc: *mut ::core::ffi::c_void, foption: u16, vparam: u64) -> i16;
04454e1e 368 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
369 #[cfg(target_arch = "x86")]
370 pub fn SQLSetConnectOptionA(hdbc: *mut ::core::ffi::c_void, foption: u16, vparam: u32) -> i16;
04454e1e 371 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
372 #[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
373 pub fn SQLSetConnectOptionW(hdbc: *mut ::core::ffi::c_void, foption: u16, vparam: u64) -> i16;
04454e1e 374 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
375 #[cfg(target_arch = "x86")]
376 pub fn SQLSetConnectOptionW(hdbc: *mut ::core::ffi::c_void, foption: u16, vparam: u32) -> i16;
04454e1e 377 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 378 pub fn SQLSetCursorName(statementhandle: *mut ::core::ffi::c_void, cursorname: *const u8, namelength: i16) -> i16;
04454e1e 379 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 380 pub fn SQLSetCursorNameA(hstmt: *mut ::core::ffi::c_void, szcursor: *const u8, cbcursor: i16) -> i16;
04454e1e 381 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 382 pub fn SQLSetCursorNameW(hstmt: *mut ::core::ffi::c_void, szcursor: *const u16, cchcursor: i16) -> i16;
04454e1e 383 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 384 pub fn SQLSetDescField(descriptorhandle: *mut ::core::ffi::c_void, recnumber: i16, fieldidentifier: i16, value: *const ::core::ffi::c_void, bufferlength: i32) -> i16;
04454e1e 385 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 386 pub fn SQLSetDescFieldW(descriptorhandle: *mut ::core::ffi::c_void, recnumber: i16, fieldidentifier: i16, value: *mut ::core::ffi::c_void, bufferlength: i32) -> i16;
04454e1e 387 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
388 #[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
389 pub fn SQLSetDescRec(descriptorhandle: *mut ::core::ffi::c_void, recnumber: i16, r#type: i16, subtype: i16, length: i64, precision: i16, scale: i16, data: *mut ::core::ffi::c_void, stringlength: *mut i64, indicator: *mut i64) -> i16;
04454e1e 390 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
391 #[cfg(target_arch = "x86")]
392 pub fn SQLSetDescRec(descriptorhandle: *mut ::core::ffi::c_void, recnumber: i16, r#type: i16, subtype: i16, length: i32, precision: i16, scale: i16, data: *mut ::core::ffi::c_void, stringlength: *mut i32, indicator: *mut i32) -> i16;
04454e1e 393 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 394 pub fn SQLSetEnvAttr(environmenthandle: *mut ::core::ffi::c_void, attribute: i32, value: *const ::core::ffi::c_void, stringlength: i32) -> i16;
04454e1e 395 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
396 #[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
397 pub fn SQLSetParam(statementhandle: *mut ::core::ffi::c_void, parameternumber: u16, valuetype: i16, parametertype: i16, lengthprecision: u64, parameterscale: i16, parametervalue: *const ::core::ffi::c_void, strlen_or_ind: *mut i64) -> i16;
04454e1e 398 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
399 #[cfg(target_arch = "x86")]
400 pub fn SQLSetParam(statementhandle: *mut ::core::ffi::c_void, parameternumber: u16, valuetype: i16, parametertype: i16, lengthprecision: u32, parameterscale: i16, parametervalue: *const ::core::ffi::c_void, strlen_or_ind: *mut i32) -> i16;
04454e1e 401 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
402 #[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
403 pub fn SQLSetPos(hstmt: *mut ::core::ffi::c_void, irow: u64, foption: u16, flock: u16) -> i16;
04454e1e 404 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
405 #[cfg(target_arch = "x86")]
406 pub fn SQLSetPos(hstmt: *mut ::core::ffi::c_void, irow: u16, foption: u16, flock: u16) -> i16;
04454e1e 407 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
408 #[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
409 pub fn SQLSetScrollOptions(hstmt: *mut ::core::ffi::c_void, fconcurrency: u16, crowkeyset: i64, crowrowset: u16) -> i16;
04454e1e 410 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
411 #[cfg(target_arch = "x86")]
412 pub fn SQLSetScrollOptions(hstmt: *mut ::core::ffi::c_void, fconcurrency: u16, crowkeyset: i32, crowrowset: u16) -> i16;
04454e1e 413 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 414 pub fn SQLSetStmtAttr(statementhandle: *mut ::core::ffi::c_void, attribute: i32, value: *const ::core::ffi::c_void, stringlength: i32) -> i16;
04454e1e 415 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 416 pub fn SQLSetStmtAttrW(hstmt: *mut ::core::ffi::c_void, fattribute: i32, rgbvalue: *mut ::core::ffi::c_void, cbvaluemax: i32) -> i16;
04454e1e 417 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
418 #[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
419 pub fn SQLSetStmtOption(statementhandle: *mut ::core::ffi::c_void, option: u16, value: u64) -> i16;
04454e1e 420 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
421 #[cfg(target_arch = "x86")]
422 pub fn SQLSetStmtOption(statementhandle: *mut ::core::ffi::c_void, option: u16, value: u32) -> i16;
04454e1e 423 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 424 pub fn SQLSpecialColumns(statementhandle: *mut ::core::ffi::c_void, identifiertype: u16, catalogname: *const u8, namelength1: i16, schemaname: *const u8, namelength2: i16, tablename: *const u8, namelength3: i16, scope: u16, nullable: u16) -> i16;
04454e1e 425 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 426 pub fn SQLSpecialColumnsA(hstmt: *mut ::core::ffi::c_void, fcoltype: u16, szcatalogname: *const u8, cbcatalogname: i16, szschemaname: *const u8, cbschemaname: i16, sztablename: *const u8, cbtablename: i16, fscope: u16, fnullable: u16) -> i16;
04454e1e 427 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 428 pub fn SQLSpecialColumnsW(hstmt: *mut ::core::ffi::c_void, fcoltype: u16, szcatalogname: *const u16, cchcatalogname: i16, szschemaname: *const u16, cchschemaname: i16, sztablename: *const u16, cchtablename: i16, fscope: u16, fnullable: u16) -> i16;
04454e1e 429 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 430 pub fn SQLStatistics(statementhandle: *mut ::core::ffi::c_void, catalogname: *const u8, namelength1: i16, schemaname: *const u8, namelength2: i16, tablename: *const u8, namelength3: i16, unique: u16, reserved: u16) -> i16;
04454e1e 431 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 432 pub fn SQLStatisticsA(hstmt: *mut ::core::ffi::c_void, szcatalogname: *const u8, cbcatalogname: i16, szschemaname: *const u8, cbschemaname: i16, sztablename: *const u8, cbtablename: i16, funique: u16, faccuracy: u16) -> i16;
04454e1e 433 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 434 pub fn SQLStatisticsW(hstmt: *mut ::core::ffi::c_void, szcatalogname: *const u16, cchcatalogname: i16, szschemaname: *const u16, cchschemaname: i16, sztablename: *const u16, cchtablename: i16, funique: u16, faccuracy: u16) -> i16;
04454e1e 435 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 436 pub fn SQLTablePrivileges(hstmt: *mut ::core::ffi::c_void, szcatalogname: *const u8, cchcatalogname: i16, szschemaname: *const u8, cchschemaname: i16, sztablename: *const u8, cchtablename: i16) -> i16;
04454e1e 437 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 438 pub fn SQLTablePrivilegesA(hstmt: *mut ::core::ffi::c_void, szcatalogname: *const u8, cbcatalogname: i16, szschemaname: *const u8, cbschemaname: i16, sztablename: *const u8, cbtablename: i16) -> i16;
04454e1e 439 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 440 pub fn SQLTablePrivilegesW(hstmt: *mut ::core::ffi::c_void, szcatalogname: *const u16, cchcatalogname: i16, szschemaname: *const u16, cchschemaname: i16, sztablename: *const u16, cchtablename: i16) -> i16;
04454e1e 441 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 442 pub fn SQLTables(statementhandle: *mut ::core::ffi::c_void, catalogname: *const u8, namelength1: i16, schemaname: *const u8, namelength2: i16, tablename: *const u8, namelength3: i16, tabletype: *const u8, namelength4: i16) -> i16;
04454e1e 443 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 444 pub fn SQLTablesA(hstmt: *mut ::core::ffi::c_void, szcatalogname: *const u8, cbcatalogname: i16, szschemaname: *const u8, cbschemaname: i16, sztablename: *const u8, cbtablename: i16, sztabletype: *const u8, cbtabletype: i16) -> i16;
04454e1e 445 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 446 pub fn SQLTablesW(hstmt: *mut ::core::ffi::c_void, szcatalogname: *const u16, cchcatalogname: i16, szschemaname: *const u16, cchschemaname: i16, sztablename: *const u16, cchtablename: i16, sztabletype: *const u16, cchtabletype: i16) -> i16;
04454e1e 447 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 448 pub fn SQLTransact(environmenthandle: *mut ::core::ffi::c_void, connectionhandle: *mut ::core::ffi::c_void, completiontype: u16) -> i16;
04454e1e 449 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 450 pub fn bcp_batch(param0: *mut ::core::ffi::c_void) -> i32;
04454e1e 451 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 452 pub fn bcp_bind(param0: *mut ::core::ffi::c_void, param1: *mut u8, param2: i32, param3: i32, param4: *mut u8, param5: i32, param6: i32, param7: i32) -> i16;
04454e1e 453 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 454 pub fn bcp_colfmt(param0: *mut ::core::ffi::c_void, param1: i32, param2: u8, param3: i32, param4: i32, param5: *mut u8, param6: i32, param7: i32) -> i16;
04454e1e 455 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 456 pub fn bcp_collen(param0: *mut ::core::ffi::c_void, param1: i32, param2: i32) -> i16;
04454e1e 457 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 458 pub fn bcp_colptr(param0: *mut ::core::ffi::c_void, param1: *mut u8, param2: i32) -> i16;
04454e1e 459 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 460 pub fn bcp_columns(param0: *mut ::core::ffi::c_void, param1: i32) -> i16;
04454e1e 461 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 462 pub fn bcp_control(param0: *mut ::core::ffi::c_void, param1: i32, param2: *mut ::core::ffi::c_void) -> i16;
04454e1e 463 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 464 pub fn bcp_done(param0: *mut ::core::ffi::c_void) -> i32;
04454e1e 465 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 466 pub fn bcp_exec(param0: *mut ::core::ffi::c_void, param1: *mut i32) -> i16;
04454e1e 467 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 468 pub fn bcp_getcolfmt(param0: *mut ::core::ffi::c_void, param1: i32, param2: i32, param3: *mut ::core::ffi::c_void, param4: i32, param5: *mut i32) -> i16;
04454e1e
FG
469 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
470 pub fn bcp_initA(param0: *mut ::core::ffi::c_void, param1: ::windows_sys::core::PCSTR, param2: ::windows_sys::core::PCSTR, param3: ::windows_sys::core::PCSTR, param4: i32) -> i16;
471 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
472 pub fn bcp_initW(param0: *mut ::core::ffi::c_void, param1: ::windows_sys::core::PCWSTR, param2: ::windows_sys::core::PCWSTR, param3: ::windows_sys::core::PCWSTR, param4: i32) -> i16;
473 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 474 pub fn bcp_moretext(param0: *mut ::core::ffi::c_void, param1: i32, param2: *mut u8) -> i16;
04454e1e
FG
475 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
476 pub fn bcp_readfmtA(param0: *mut ::core::ffi::c_void, param1: ::windows_sys::core::PCSTR) -> i16;
477 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
478 pub fn bcp_readfmtW(param0: *mut ::core::ffi::c_void, param1: ::windows_sys::core::PCWSTR) -> i16;
479 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 480 pub fn bcp_sendrow(param0: *mut ::core::ffi::c_void) -> i16;
04454e1e 481 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 482 pub fn bcp_setcolfmt(param0: *mut ::core::ffi::c_void, param1: i32, param2: i32, param3: *mut ::core::ffi::c_void, param4: i32) -> i16;
04454e1e
FG
483 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
484 pub fn bcp_writefmtA(param0: *mut ::core::ffi::c_void, param1: ::windows_sys::core::PCSTR) -> i16;
485 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
486 pub fn bcp_writefmtW(param0: *mut ::core::ffi::c_void, param1: ::windows_sys::core::PCWSTR) -> i16;
487 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
488 pub fn dbprtypeA(param0: i32) -> ::windows_sys::core::PSTR;
489 #[doc = "*Required features: `\"Win32_System_Search\"`*"]
490 pub fn dbprtypeW(param0: i32) -> ::windows_sys::core::PWSTR;
491}
487cf647
FG
492pub type DataSource = *mut ::core::ffi::c_void;
493pub type DataSourceListener = *mut ::core::ffi::c_void;
494pub type DataSourceObject = *mut ::core::ffi::c_void;
495pub type IAccessor = *mut ::core::ffi::c_void;
496pub type IAlterIndex = *mut ::core::ffi::c_void;
497pub type IAlterTable = *mut ::core::ffi::c_void;
498pub type IBindResource = *mut ::core::ffi::c_void;
499pub type IChapteredRowset = *mut ::core::ffi::c_void;
500pub type IColumnMapper = *mut ::core::ffi::c_void;
501pub type IColumnMapperCreator = *mut ::core::ffi::c_void;
502pub type IColumnsInfo = *mut ::core::ffi::c_void;
503pub type IColumnsInfo2 = *mut ::core::ffi::c_void;
504pub type IColumnsRowset = *mut ::core::ffi::c_void;
505pub type ICommand = *mut ::core::ffi::c_void;
506pub type ICommandCost = *mut ::core::ffi::c_void;
507pub type ICommandPersist = *mut ::core::ffi::c_void;
508pub type ICommandPrepare = *mut ::core::ffi::c_void;
509pub type ICommandProperties = *mut ::core::ffi::c_void;
510pub type ICommandStream = *mut ::core::ffi::c_void;
511pub type ICommandText = *mut ::core::ffi::c_void;
512pub type ICommandValidate = *mut ::core::ffi::c_void;
513pub type ICommandWithParameters = *mut ::core::ffi::c_void;
514pub type ICondition = *mut ::core::ffi::c_void;
515pub type ICondition2 = *mut ::core::ffi::c_void;
516pub type IConditionFactory = *mut ::core::ffi::c_void;
517pub type IConditionFactory2 = *mut ::core::ffi::c_void;
518pub type IConditionGenerator = *mut ::core::ffi::c_void;
519pub type IConvertType = *mut ::core::ffi::c_void;
520pub type ICreateRow = *mut ::core::ffi::c_void;
521pub type IDBAsynchNotify = *mut ::core::ffi::c_void;
522pub type IDBAsynchStatus = *mut ::core::ffi::c_void;
523pub type IDBBinderProperties = *mut ::core::ffi::c_void;
524pub type IDBCreateCommand = *mut ::core::ffi::c_void;
525pub type IDBCreateSession = *mut ::core::ffi::c_void;
526pub type IDBDataSourceAdmin = *mut ::core::ffi::c_void;
527pub type IDBInfo = *mut ::core::ffi::c_void;
528pub type IDBInitialize = *mut ::core::ffi::c_void;
529pub type IDBPromptInitialize = *mut ::core::ffi::c_void;
530pub type IDBProperties = *mut ::core::ffi::c_void;
531pub type IDBSchemaCommand = *mut ::core::ffi::c_void;
532pub type IDBSchemaRowset = *mut ::core::ffi::c_void;
533pub type IDCInfo = *mut ::core::ffi::c_void;
534pub type IDataConvert = *mut ::core::ffi::c_void;
535pub type IDataInitialize = *mut ::core::ffi::c_void;
536pub type IDataSourceLocator = *mut ::core::ffi::c_void;
537pub type IEntity = *mut ::core::ffi::c_void;
538pub type IEnumItemProperties = *mut ::core::ffi::c_void;
539pub type IEnumSearchRoots = *mut ::core::ffi::c_void;
540pub type IEnumSearchScopeRules = *mut ::core::ffi::c_void;
541pub type IEnumSubscription = *mut ::core::ffi::c_void;
542pub type IErrorLookup = *mut ::core::ffi::c_void;
543pub type IErrorRecords = *mut ::core::ffi::c_void;
544pub type IGetDataSource = *mut ::core::ffi::c_void;
545pub type IGetRow = *mut ::core::ffi::c_void;
546pub type IGetSession = *mut ::core::ffi::c_void;
547pub type IGetSourceRow = *mut ::core::ffi::c_void;
548pub type IIndexDefinition = *mut ::core::ffi::c_void;
549pub type IInterval = *mut ::core::ffi::c_void;
550pub type ILoadFilter = *mut ::core::ffi::c_void;
551pub type ILoadFilterWithPrivateComActivation = *mut ::core::ffi::c_void;
552pub type IMDDataset = *mut ::core::ffi::c_void;
553pub type IMDFind = *mut ::core::ffi::c_void;
554pub type IMDRangeRowset = *mut ::core::ffi::c_void;
555pub type IMetaData = *mut ::core::ffi::c_void;
556pub type IMultipleResults = *mut ::core::ffi::c_void;
557pub type INamedEntity = *mut ::core::ffi::c_void;
558pub type INamedEntityCollector = *mut ::core::ffi::c_void;
559pub type IObjectAccessControl = *mut ::core::ffi::c_void;
560pub type IOpLockStatus = *mut ::core::ffi::c_void;
561pub type IOpenRowset = *mut ::core::ffi::c_void;
562pub type IParentRowset = *mut ::core::ffi::c_void;
563pub type IProtocolHandlerSite = *mut ::core::ffi::c_void;
564pub type IProvideMoniker = *mut ::core::ffi::c_void;
565pub type IQueryParser = *mut ::core::ffi::c_void;
566pub type IQueryParserManager = *mut ::core::ffi::c_void;
567pub type IQuerySolution = *mut ::core::ffi::c_void;
568pub type IReadData = *mut ::core::ffi::c_void;
569pub type IRegisterProvider = *mut ::core::ffi::c_void;
570pub type IRelationship = *mut ::core::ffi::c_void;
571pub type IRichChunk = *mut ::core::ffi::c_void;
572pub type IRow = *mut ::core::ffi::c_void;
573pub type IRowChange = *mut ::core::ffi::c_void;
574pub type IRowPosition = *mut ::core::ffi::c_void;
575pub type IRowPositionChange = *mut ::core::ffi::c_void;
576pub type IRowSchemaChange = *mut ::core::ffi::c_void;
577pub type IRowset = *mut ::core::ffi::c_void;
578pub type IRowsetAsynch = *mut ::core::ffi::c_void;
579pub type IRowsetBookmark = *mut ::core::ffi::c_void;
580pub type IRowsetChange = *mut ::core::ffi::c_void;
581pub type IRowsetChangeExtInfo = *mut ::core::ffi::c_void;
582pub type IRowsetChapterMember = *mut ::core::ffi::c_void;
583pub type IRowsetCopyRows = *mut ::core::ffi::c_void;
584pub type IRowsetCurrentIndex = *mut ::core::ffi::c_void;
585pub type IRowsetEvents = *mut ::core::ffi::c_void;
586pub type IRowsetFastLoad = *mut ::core::ffi::c_void;
587pub type IRowsetFind = *mut ::core::ffi::c_void;
588pub type IRowsetIdentity = *mut ::core::ffi::c_void;
589pub type IRowsetIndex = *mut ::core::ffi::c_void;
590pub type IRowsetInfo = *mut ::core::ffi::c_void;
591pub type IRowsetKeys = *mut ::core::ffi::c_void;
592pub type IRowsetLocate = *mut ::core::ffi::c_void;
593pub type IRowsetNewRowAfter = *mut ::core::ffi::c_void;
594pub type IRowsetNextRowset = *mut ::core::ffi::c_void;
595pub type IRowsetNotify = *mut ::core::ffi::c_void;
596pub type IRowsetPrioritization = *mut ::core::ffi::c_void;
597pub type IRowsetQueryStatus = *mut ::core::ffi::c_void;
598pub type IRowsetRefresh = *mut ::core::ffi::c_void;
599pub type IRowsetResynch = *mut ::core::ffi::c_void;
600pub type IRowsetScroll = *mut ::core::ffi::c_void;
601pub type IRowsetUpdate = *mut ::core::ffi::c_void;
602pub type IRowsetView = *mut ::core::ffi::c_void;
603pub type IRowsetWatchAll = *mut ::core::ffi::c_void;
604pub type IRowsetWatchNotify = *mut ::core::ffi::c_void;
605pub type IRowsetWatchRegion = *mut ::core::ffi::c_void;
606pub type IRowsetWithParameters = *mut ::core::ffi::c_void;
607pub type ISQLErrorInfo = *mut ::core::ffi::c_void;
608pub type ISQLGetDiagField = *mut ::core::ffi::c_void;
609pub type ISQLRequestDiagFields = *mut ::core::ffi::c_void;
610pub type ISQLServerErrorInfo = *mut ::core::ffi::c_void;
611pub type ISchemaLocalizerSupport = *mut ::core::ffi::c_void;
612pub type ISchemaLock = *mut ::core::ffi::c_void;
613pub type ISchemaProvider = *mut ::core::ffi::c_void;
614pub type IScopedOperations = *mut ::core::ffi::c_void;
615pub type ISearchCatalogManager = *mut ::core::ffi::c_void;
616pub type ISearchCatalogManager2 = *mut ::core::ffi::c_void;
617pub type ISearchCrawlScopeManager = *mut ::core::ffi::c_void;
618pub type ISearchCrawlScopeManager2 = *mut ::core::ffi::c_void;
619pub type ISearchItemsChangedSink = *mut ::core::ffi::c_void;
620pub type ISearchLanguageSupport = *mut ::core::ffi::c_void;
621pub type ISearchManager = *mut ::core::ffi::c_void;
622pub type ISearchManager2 = *mut ::core::ffi::c_void;
623pub type ISearchNotifyInlineSite = *mut ::core::ffi::c_void;
624pub type ISearchPersistentItemsChangedSink = *mut ::core::ffi::c_void;
625pub type ISearchProtocol = *mut ::core::ffi::c_void;
626pub type ISearchProtocol2 = *mut ::core::ffi::c_void;
627pub type ISearchProtocolThreadContext = *mut ::core::ffi::c_void;
628pub type ISearchQueryHelper = *mut ::core::ffi::c_void;
629pub type ISearchQueryHits = *mut ::core::ffi::c_void;
630pub type ISearchRoot = *mut ::core::ffi::c_void;
631pub type ISearchScopeRule = *mut ::core::ffi::c_void;
632pub type ISearchViewChangedSink = *mut ::core::ffi::c_void;
633pub type ISecurityInfo = *mut ::core::ffi::c_void;
634pub type IService = *mut ::core::ffi::c_void;
635pub type ISessionProperties = *mut ::core::ffi::c_void;
636pub type ISimpleCommandCreator = *mut ::core::ffi::c_void;
637pub type ISourcesRowset = *mut ::core::ffi::c_void;
638pub type IStemmer = *mut ::core::ffi::c_void;
639pub type ISubscriptionItem = *mut ::core::ffi::c_void;
640pub type ISubscriptionMgr = *mut ::core::ffi::c_void;
641pub type ISubscriptionMgr2 = *mut ::core::ffi::c_void;
642pub type ITableCreation = *mut ::core::ffi::c_void;
643pub type ITableDefinition = *mut ::core::ffi::c_void;
644pub type ITableDefinitionWithConstraints = *mut ::core::ffi::c_void;
645pub type ITableRename = *mut ::core::ffi::c_void;
646pub type ITokenCollection = *mut ::core::ffi::c_void;
647pub type ITransactionJoin = *mut ::core::ffi::c_void;
648pub type ITransactionLocal = *mut ::core::ffi::c_void;
649pub type ITransactionObject = *mut ::core::ffi::c_void;
650pub type ITrusteeAdmin = *mut ::core::ffi::c_void;
651pub type ITrusteeGroupAdmin = *mut ::core::ffi::c_void;
652pub type IUMS = *mut ::core::ffi::c_void;
653pub type IUMSInitialize = *mut ::core::ffi::c_void;
654pub type IUrlAccessor = *mut ::core::ffi::c_void;
655pub type IUrlAccessor2 = *mut ::core::ffi::c_void;
656pub type IUrlAccessor3 = *mut ::core::ffi::c_void;
657pub type IUrlAccessor4 = *mut ::core::ffi::c_void;
658pub type IViewChapter = *mut ::core::ffi::c_void;
659pub type IViewFilter = *mut ::core::ffi::c_void;
660pub type IViewRowset = *mut ::core::ffi::c_void;
661pub type IViewSort = *mut ::core::ffi::c_void;
662pub type IWordBreaker = *mut ::core::ffi::c_void;
663pub type IWordFormSink = *mut ::core::ffi::c_void;
664pub type IWordSink = *mut ::core::ffi::c_void;
665pub type OLEDBSimpleProvider = *mut ::core::ffi::c_void;
666pub type OLEDBSimpleProviderListener = *mut ::core::ffi::c_void;
04454e1e 667#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 668pub const BCP6xFILEFMT: u32 = 9u32;
04454e1e 669#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 670pub const BCPABORT: u32 = 6u32;
04454e1e 671#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 672pub const BCPBATCH: u32 = 4u32;
04454e1e 673#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 674pub const BCPFILECP: u32 = 12u32;
04454e1e 675#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 676pub const BCPFILECP_ACP: u32 = 0u32;
04454e1e 677#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 678pub const BCPFILECP_OEMCP: u32 = 1u32;
04454e1e 679#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 680pub const BCPFILECP_RAW: i32 = -1i32;
04454e1e 681#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 682pub const BCPFILEFMT: u32 = 15u32;
04454e1e 683#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 684pub const BCPFIRST: u32 = 2u32;
04454e1e 685#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 686pub const BCPHINTS: u32 = 11u32;
04454e1e 687#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 688pub const BCPHINTSA: u32 = 10u32;
04454e1e 689#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 690pub const BCPHINTSW: u32 = 11u32;
04454e1e 691#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 692pub const BCPKEEPIDENTITY: u32 = 8u32;
04454e1e 693#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 694pub const BCPKEEPNULLS: u32 = 5u32;
04454e1e 695#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 696pub const BCPLAST: u32 = 3u32;
04454e1e 697#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 698pub const BCPMAXERRS: u32 = 1u32;
04454e1e 699#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 700pub const BCPODBC: u32 = 7u32;
04454e1e 701#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 702pub const BCPTEXTFILE: u32 = 14u32;
04454e1e 703#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 704pub const BCPUNICODEFILE: u32 = 13u32;
04454e1e 705#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 706pub const BCP_FMT_COLLATION: u32 = 6u32;
04454e1e 707#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 708pub const BCP_FMT_COLLATION_ID: u32 = 7u32;
04454e1e 709#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 710pub const BCP_FMT_DATA_LEN: u32 = 3u32;
04454e1e 711#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 712pub const BCP_FMT_INDICATOR_LEN: u32 = 2u32;
04454e1e 713#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 714pub const BCP_FMT_SERVER_COL: u32 = 5u32;
04454e1e 715#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 716pub const BCP_FMT_TERMINATOR: u32 = 4u32;
04454e1e 717#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 718pub const BCP_FMT_TYPE: u32 = 1u32;
04454e1e 719#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 720pub const BMK_DURABILITY_INTRANSACTION: i32 = 1i32;
04454e1e 721#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 722pub const BMK_DURABILITY_REORGANIZATION: i32 = 3i32;
04454e1e 723#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 724pub const BMK_DURABILITY_ROWSET: i32 = 0i32;
04454e1e 725#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 726pub const BMK_DURABILITY_XTRANSACTION: i32 = 2i32;
04454e1e 727#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 728pub const BUCKET_EXPONENTIAL: u32 = 1u32;
04454e1e 729#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 730pub const BUCKET_LINEAR: u32 = 0u32;
04454e1e 731#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 732pub const CATEGORIZE_BUCKETS: u32 = 2u32;
04454e1e 733#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 734pub const CATEGORIZE_CLUSTER: u32 = 1u32;
04454e1e 735#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 736pub const CATEGORIZE_RANGE: u32 = 3u32;
04454e1e 737#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 738pub const CATEGORIZE_UNIQUE: u32 = 0u32;
04454e1e 739#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 740pub const CATEGORY_COLLATOR: i32 = 2i32;
04454e1e 741#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 742pub const CATEGORY_GATHERER: i32 = 3i32;
04454e1e 743#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 744pub const CATEGORY_INDEXER: i32 = 4i32;
04454e1e 745#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 746pub const CATEGORY_SEARCH: i32 = 1i32;
04454e1e 747#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 748pub const CDBBMKDISPIDS: u32 = 8u32;
04454e1e 749#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 750pub const CDBCOLDISPIDS: u32 = 28u32;
04454e1e 751#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 752pub const CDBSELFDISPIDS: u32 = 8u32;
04454e1e 753#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 754pub const CERT_E_NOT_FOUND_OR_NO_PERMISSSION: i32 = -2147211263i32;
04454e1e 755#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 756pub const CI_E_CORRUPT_FWIDX: ::windows_sys::core::HRESULT = -1073473491i32;
04454e1e 757#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 758pub const CI_E_DIACRITIC_SETTINGS_DIFFER: ::windows_sys::core::HRESULT = -1073473490i32;
04454e1e 759#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 760pub const CI_E_INCONSISTENT_TRANSACTION: ::windows_sys::core::HRESULT = -1073473486i32;
04454e1e 761#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 762pub const CI_E_INVALID_CATALOG_LIST_VERSION: ::windows_sys::core::HRESULT = -2147215313i32;
04454e1e 763#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 764pub const CI_E_MULTIPLE_PROTECTED_USERS_UNSUPPORTED: ::windows_sys::core::HRESULT = -1073473483i32;
04454e1e 765#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 766pub const CI_E_NO_AUXMETADATA: ::windows_sys::core::HRESULT = -2147215318i32;
04454e1e 767#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 768pub const CI_E_NO_CATALOG_MANAGER: ::windows_sys::core::HRESULT = -1073473487i32;
04454e1e 769#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 770pub const CI_E_NO_PROTECTED_USER: ::windows_sys::core::HRESULT = -1073473484i32;
04454e1e 771#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 772pub const CI_E_PROTECTED_CATALOG_NON_INTERACTIVE_USER: ::windows_sys::core::HRESULT = -1073473481i32;
04454e1e 773#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 774pub const CI_E_PROTECTED_CATALOG_NOT_AVAILABLE: ::windows_sys::core::HRESULT = -1073473485i32;
04454e1e 775#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 776pub const CI_E_PROTECTED_CATALOG_SID_MISMATCH: ::windows_sys::core::HRESULT = -1073473482i32;
04454e1e 777#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 778pub const CI_S_CATALOG_RESET: ::windows_sys::core::HRESULT = 268336i32;
04454e1e 779#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 780pub const CI_S_CLIENT_REQUESTED_ABORT: ::windows_sys::core::HRESULT = 268331i32;
04454e1e 781#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 782pub const CI_S_NEW_AUXMETADATA: ::windows_sys::core::HRESULT = 268329i32;
04454e1e 783#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
784pub const CI_S_RETRY_DOCUMENT: ::windows_sys::core::HRESULT = 268332i32;
785pub const CLSID_DataShapeProvider: ::windows_sys::core::GUID = ::windows_sys::core::GUID { data1: 877240776, data2: 50540, data3: 4560, data4: [173, 114, 0, 192, 79, 194, 152, 99] };
786pub const CLSID_MSDASQL: ::windows_sys::core::GUID = ::windows_sys::core::GUID { data1: 3367314123, data2: 23795, data3: 4558, data4: [173, 229, 0, 170, 0, 68, 119, 61] };
787pub const CLSID_MSDASQL_ENUMERATOR: ::windows_sys::core::GUID = ::windows_sys::core::GUID { data1: 3367314125, data2: 23795, data3: 4558, data4: [173, 229, 0, 170, 0, 68, 119, 61] };
788pub const CLSID_MSPersist: ::windows_sys::core::GUID = ::windows_sys::core::GUID { data1: 2080891088, data2: 17432, data3: 4562, data4: [146, 18, 0, 192, 79, 187, 191, 179] };
789pub const CLSID_SQLOLEDB: ::windows_sys::core::GUID = ::windows_sys::core::GUID { data1: 209711468, data2: 14563, data3: 4560, data4: [151, 171, 0, 192, 79, 194, 173, 152] };
790pub const CLSID_SQLOLEDB_ENUMERATOR: ::windows_sys::core::GUID = ::windows_sys::core::GUID { data1: 3751947150, data2: 59021, data3: 4560, data4: [151, 228, 0, 192, 79, 194, 173, 152] };
791pub const CLSID_SQLOLEDB_ERROR: ::windows_sys::core::GUID = ::windows_sys::core::GUID { data1: 3230870626, data2: 14565, data3: 4560, data4: [151, 171, 0, 192, 79, 194, 173, 152] };
04454e1e 792#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 793pub const CMDLINE_E_ALREADY_INIT: i32 = -2147216123i32;
04454e1e 794#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 795pub const CMDLINE_E_NOT_INIT: i32 = -2147216124i32;
04454e1e 796#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 797pub const CMDLINE_E_NUM_PARAMS: i32 = -2147216122i32;
04454e1e 798#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 799pub const CMDLINE_E_PARAM_SIZE: i32 = -2147216125i32;
04454e1e 800#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 801pub const CMDLINE_E_PAREN: i32 = -2147216126i32;
04454e1e 802#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 803pub const CMDLINE_E_UNEXPECTED: i32 = -2147216127i32;
04454e1e 804#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 805pub const CM_E_CONNECTIONTIMEOUT: i32 = -2147219963i32;
04454e1e 806#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 807pub const CM_E_DATASOURCENOTAVAILABLE: i32 = -2147219964i32;
04454e1e 808#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 809pub const CM_E_INSUFFICIENTBUFFER: i32 = -2147219957i32;
04454e1e 810#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 811pub const CM_E_INVALIDDATASOURCE: i32 = -2147219959i32;
04454e1e 812#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 813pub const CM_E_NOQUERYCONNECTIONS: i32 = -2147219965i32;
04454e1e 814#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 815pub const CM_E_REGISTRY: i32 = -2147219960i32;
04454e1e 816#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 817pub const CM_E_SERVERNOTFOUND: i32 = -2147219962i32;
04454e1e 818#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 819pub const CM_E_TIMEOUT: i32 = -2147219958i32;
04454e1e 820#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 821pub const CM_E_TOOMANYDATASERVERS: i32 = -2147219967i32;
04454e1e 822#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 823pub const CM_E_TOOMANYDATASOURCES: i32 = -2147219966i32;
04454e1e 824#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 825pub const CM_S_NODATASERVERS: i32 = 263687i32;
04454e1e 826#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 827pub const COLL_E_BADRESULT: i32 = -2147220218i32;
04454e1e 828#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 829pub const COLL_E_BADSEQUENCE: i32 = -2147220223i32;
04454e1e 830#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 831pub const COLL_E_BUFFERTOOSMALL: i32 = -2147220220i32;
04454e1e 832#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 833pub const COLL_E_DUPLICATEDBID: i32 = -2147220216i32;
04454e1e 834#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 835pub const COLL_E_INCOMPATIBLECOLUMNS: i32 = -2147220221i32;
04454e1e 836#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 837pub const COLL_E_MAXCONNEXCEEDED: i32 = -2147220213i32;
04454e1e 838#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 839pub const COLL_E_NODEFAULTCATALOG: i32 = -2147220214i32;
04454e1e 840#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 841pub const COLL_E_NOMOREDATA: i32 = -2147220222i32;
04454e1e 842#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 843pub const COLL_E_NOSORTCOLUMN: i32 = -2147220217i32;
04454e1e 844#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 845pub const COLL_E_TOOMANYMERGECOLUMNS: i32 = -2147220215i32;
04454e1e 846#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 847pub const CONTENT_SOURCE_E_CONTENT_CLASS_READ: i32 = -2147208188i32;
04454e1e 848#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 849pub const CONTENT_SOURCE_E_CONTENT_SOURCE_COLUMN_TYPE: i32 = -2147208185i32;
04454e1e 850#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 851pub const CONTENT_SOURCE_E_NULL_CONTENT_CLASS_BSTR: i32 = -2147208186i32;
04454e1e 852#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 853pub const CONTENT_SOURCE_E_NULL_URI: i32 = -2147208183i32;
04454e1e 854#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 855pub const CONTENT_SOURCE_E_OUT_OF_RANGE: i32 = -2147208184i32;
04454e1e 856#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 857pub const CONTENT_SOURCE_E_PROPERTY_MAPPING_BAD_VECTOR_SIZE: i32 = -2147208189i32;
04454e1e 858#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 859pub const CONTENT_SOURCE_E_PROPERTY_MAPPING_READ: i32 = -2147208191i32;
04454e1e 860#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 861pub const CONTENT_SOURCE_E_UNEXPECTED_EXCEPTION: i32 = -2147208187i32;
04454e1e 862#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 863pub const CONTENT_SOURCE_E_UNEXPECTED_NULL_POINTER: i32 = -2147208190i32;
04454e1e 864#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 865pub const CQUERYDISPIDS: u32 = 11u32;
04454e1e 866#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 867pub const CQUERYMETADISPIDS: u32 = 10u32;
04454e1e 868#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 869pub const CQUERYPROPERTY: u32 = 64u32;
04454e1e 870#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 871pub const CRESTRICTIONS_DBSCHEMA_ASSERTIONS: u32 = 3u32;
04454e1e 872#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 873pub const CRESTRICTIONS_DBSCHEMA_CATALOGS: u32 = 1u32;
04454e1e 874#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 875pub const CRESTRICTIONS_DBSCHEMA_CHARACTER_SETS: u32 = 3u32;
04454e1e 876#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 877pub const CRESTRICTIONS_DBSCHEMA_CHECK_CONSTRAINTS: u32 = 3u32;
04454e1e 878#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 879pub const CRESTRICTIONS_DBSCHEMA_CHECK_CONSTRAINTS_BY_TABLE: u32 = 6u32;
04454e1e 880#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 881pub const CRESTRICTIONS_DBSCHEMA_COLLATIONS: u32 = 3u32;
04454e1e 882#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 883pub const CRESTRICTIONS_DBSCHEMA_COLUMNS: u32 = 4u32;
04454e1e 884#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 885pub const CRESTRICTIONS_DBSCHEMA_COLUMN_DOMAIN_USAGE: u32 = 4u32;
04454e1e 886#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 887pub const CRESTRICTIONS_DBSCHEMA_COLUMN_PRIVILEGES: u32 = 6u32;
04454e1e 888#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 889pub const CRESTRICTIONS_DBSCHEMA_CONSTRAINT_COLUMN_USAGE: u32 = 4u32;
04454e1e 890#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 891pub const CRESTRICTIONS_DBSCHEMA_CONSTRAINT_TABLE_USAGE: u32 = 3u32;
04454e1e 892#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 893pub const CRESTRICTIONS_DBSCHEMA_FOREIGN_KEYS: u32 = 6u32;
04454e1e 894#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 895pub const CRESTRICTIONS_DBSCHEMA_INDEXES: u32 = 5u32;
04454e1e 896#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 897pub const CRESTRICTIONS_DBSCHEMA_KEY_COLUMN_USAGE: u32 = 7u32;
04454e1e 898#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 899pub const CRESTRICTIONS_DBSCHEMA_LINKEDSERVERS: u32 = 1u32;
04454e1e 900#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 901pub const CRESTRICTIONS_DBSCHEMA_OBJECTS: u32 = 1u32;
04454e1e 902#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 903pub const CRESTRICTIONS_DBSCHEMA_OBJECT_ACTIONS: u32 = 1u32;
04454e1e 904#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 905pub const CRESTRICTIONS_DBSCHEMA_PRIMARY_KEYS: u32 = 3u32;
04454e1e 906#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 907pub const CRESTRICTIONS_DBSCHEMA_PROCEDURES: u32 = 4u32;
04454e1e 908#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 909pub const CRESTRICTIONS_DBSCHEMA_PROCEDURE_COLUMNS: u32 = 4u32;
04454e1e 910#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 911pub const CRESTRICTIONS_DBSCHEMA_PROCEDURE_PARAMETERS: u32 = 4u32;
04454e1e 912#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 913pub const CRESTRICTIONS_DBSCHEMA_PROVIDER_TYPES: u32 = 2u32;
04454e1e 914#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 915pub const CRESTRICTIONS_DBSCHEMA_REFERENTIAL_CONSTRAINTS: u32 = 3u32;
04454e1e 916#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 917pub const CRESTRICTIONS_DBSCHEMA_SCHEMATA: u32 = 3u32;
04454e1e 918#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 919pub const CRESTRICTIONS_DBSCHEMA_SQL_LANGUAGES: u32 = 0u32;
04454e1e 920#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 921pub const CRESTRICTIONS_DBSCHEMA_STATISTICS: u32 = 3u32;
04454e1e 922#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 923pub const CRESTRICTIONS_DBSCHEMA_TABLES: u32 = 4u32;
04454e1e 924#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 925pub const CRESTRICTIONS_DBSCHEMA_TABLES_INFO: u32 = 4u32;
04454e1e 926#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 927pub const CRESTRICTIONS_DBSCHEMA_TABLE_CONSTRAINTS: u32 = 7u32;
04454e1e 928#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 929pub const CRESTRICTIONS_DBSCHEMA_TABLE_PRIVILEGES: u32 = 5u32;
04454e1e 930#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 931pub const CRESTRICTIONS_DBSCHEMA_TABLE_STATISTICS: u32 = 7u32;
04454e1e 932#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 933pub const CRESTRICTIONS_DBSCHEMA_TRANSLATIONS: u32 = 3u32;
04454e1e 934#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 935pub const CRESTRICTIONS_DBSCHEMA_TRUSTEE: u32 = 4u32;
04454e1e 936#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 937pub const CRESTRICTIONS_DBSCHEMA_USAGE_PRIVILEGES: u32 = 6u32;
04454e1e 938#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 939pub const CRESTRICTIONS_DBSCHEMA_VIEWS: u32 = 3u32;
04454e1e 940#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 941pub const CRESTRICTIONS_DBSCHEMA_VIEW_COLUMN_USAGE: u32 = 3u32;
04454e1e 942#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 943pub const CRESTRICTIONS_DBSCHEMA_VIEW_TABLE_USAGE: u32 = 3u32;
04454e1e 944#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 945pub const CRESTRICTIONS_MDSCHEMA_ACTIONS: u32 = 8u32;
04454e1e 946#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 947pub const CRESTRICTIONS_MDSCHEMA_COMMANDS: u32 = 5u32;
04454e1e 948#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 949pub const CRESTRICTIONS_MDSCHEMA_CUBES: u32 = 3u32;
04454e1e 950#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 951pub const CRESTRICTIONS_MDSCHEMA_DIMENSIONS: u32 = 5u32;
04454e1e 952#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 953pub const CRESTRICTIONS_MDSCHEMA_FUNCTIONS: u32 = 4u32;
04454e1e 954#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 955pub const CRESTRICTIONS_MDSCHEMA_HIERARCHIES: u32 = 6u32;
04454e1e 956#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 957pub const CRESTRICTIONS_MDSCHEMA_LEVELS: u32 = 7u32;
04454e1e 958#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 959pub const CRESTRICTIONS_MDSCHEMA_MEASURES: u32 = 5u32;
04454e1e 960#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 961pub const CRESTRICTIONS_MDSCHEMA_MEMBERS: u32 = 12u32;
04454e1e 962#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 963pub const CRESTRICTIONS_MDSCHEMA_PROPERTIES: u32 = 9u32;
04454e1e 964#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085 965pub const CRESTRICTIONS_MDSCHEMA_SETS: u32 = 5u32;
04454e1e 966#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
967pub const CSTORAGEPROPERTY: u32 = 23u32;
968pub const CSearchLanguageSupport: ::windows_sys::core::GUID = ::windows_sys::core::GUID { data1: 1785252992, data2: 17207, data3: 19900, data4: [189, 39, 251, 251, 16, 83, 130, 11] };
969pub const CSearchManager: ::windows_sys::core::GUID = ::windows_sys::core::GUID { data1: 2097769567, data2: 44040, data3: 20255, data4: [190, 183, 92, 34, 197, 23, 206, 57] };
970pub const CSearchRoot: ::windows_sys::core::GUID = ::windows_sys::core::GUID { data1: 813067218, data2: 59932, data3: 20264, data4: [191, 39, 11, 68, 226, 246, 141, 183] };
971pub const CSearchScopeRule: ::windows_sys::core::GUID = ::windows_sys::core::GUID { data1: 3862816592, data2: 15319, data3: 19429, data4: [156, 132, 107, 66, 129, 152, 140, 68] };
487cf647
FG
972pub const CompoundCondition: ::windows_sys::core::GUID = ::windows_sys::core::GUID { data1: 292523283, data2: 4126, data3: 20389, data4: [132, 212, 255, 130, 121, 56, 25, 53] };
973pub const ConditionFactory: ::windows_sys::core::GUID = ::windows_sys::core::GUID { data1: 3762193840, data2: 31715, data3: 16384, data4: [186, 152, 108, 19, 222, 159, 164, 134] };
04454e1e 974#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 975pub const DBCOMPUTEMODE_COMPUTED: u32 = 1u32;
04454e1e 976#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 977pub const DBCOMPUTEMODE_DYNAMIC: u32 = 2u32;
04454e1e 978#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647
FG
979pub const DBCOMPUTEMODE_NOTCOMPUTED: u32 = 3u32;
980pub const DBGUID_MSSQLXML: ::windows_sys::core::GUID = ::windows_sys::core::GUID { data1: 1565727922, data2: 59117, data3: 4562, data4: [178, 82, 0, 192, 79, 104, 27, 113] };
981pub const DBGUID_XPATH: ::windows_sys::core::GUID = ::windows_sys::core::GUID { data1: 3962192531, data2: 59544, data3: 4562, data4: [177, 183, 0, 192, 79, 104, 12, 86] };
04454e1e 982#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 983pub const DBMAXCHAR: u32 = 8001u32;
04454e1e 984#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 985pub const DBPARAMTYPE_INPUT: u32 = 1u32;
04454e1e 986#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 987pub const DBPARAMTYPE_INPUTOUTPUT: u32 = 2u32;
04454e1e 988#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 989pub const DBPARAMTYPE_OUTPUT: u32 = 3u32;
04454e1e 990#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 991pub const DBPARAMTYPE_RETURNVALUE: u32 = 4u32;
04454e1e 992#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 993pub const DBPROMPT_COMPLETE: u32 = 2u32;
04454e1e 994#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 995pub const DBPROMPT_COMPLETEREQUIRED: u32 = 3u32;
04454e1e 996#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 997pub const DBPROMPT_NOPROMPT: u32 = 4u32;
04454e1e 998#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 999pub const DBPROMPT_PROMPT: u32 = 1u32;
04454e1e 1000#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647
FG
1001pub const DBPROPFLAGS_PERSIST: u32 = 8192u32;
1002pub const DBPROPSET_MSDAORA8_ROWSET: ::windows_sys::core::GUID = ::windows_sys::core::GUID { data1: 2131141493, data2: 56682, data3: 17371, data4: [180, 224, 31, 193, 33, 229, 230, 43] };
1003pub const DBPROPSET_MSDAORA_ROWSET: ::windows_sys::core::GUID = ::windows_sys::core::GUID { data1: 3905703101, data2: 65023, data3: 4560, data4: [184, 101, 0, 160, 201, 8, 28, 29] };
1004pub const DBPROPSET_MSDSDBINIT: ::windows_sys::core::GUID = ::windows_sys::core::GUID { data1: 1439404456, data2: 23674, data3: 4561, data4: [173, 173, 0, 192, 79, 194, 152, 99] };
1005pub const DBPROPSET_MSDSSESSION: ::windows_sys::core::GUID = ::windows_sys::core::GUID { data1: 3992024374, data2: 44991, data3: 4561, data4: [136, 71, 0, 0, 248, 121, 249, 140] };
1006pub const DBPROPSET_PERSIST: ::windows_sys::core::GUID = ::windows_sys::core::GUID { data1: 1299724704, data2: 23438, data3: 4561, data4: [166, 179, 0, 160, 201, 19, 140, 102] };
1007pub const DBPROPSET_PROVIDERCONNATTR: ::windows_sys::core::GUID = ::windows_sys::core::GUID { data1: 1232888036, data2: 28963, data3: 4559, data4: [177, 113, 0, 170, 0, 87, 89, 158] };
1008pub const DBPROPSET_PROVIDERDATASOURCEINFO: ::windows_sys::core::GUID = ::windows_sys::core::GUID { data1: 1232888032, data2: 28963, data3: 4559, data4: [177, 113, 0, 170, 0, 87, 89, 158] };
1009pub const DBPROPSET_PROVIDERDBINIT: ::windows_sys::core::GUID = ::windows_sys::core::GUID { data1: 1232888034, data2: 28963, data3: 4559, data4: [177, 113, 0, 170, 0, 87, 89, 158] };
1010pub const DBPROPSET_PROVIDERROWSET: ::windows_sys::core::GUID = ::windows_sys::core::GUID { data1: 1232888033, data2: 28963, data3: 4559, data4: [177, 113, 0, 170, 0, 87, 89, 158] };
1011pub const DBPROPSET_PROVIDERSTMTATTR: ::windows_sys::core::GUID = ::windows_sys::core::GUID { data1: 1232888035, data2: 28963, data3: 4559, data4: [177, 113, 0, 170, 0, 87, 89, 158] };
1012pub const DBPROPSET_SQLSERVERCOLUMN: ::windows_sys::core::GUID = ::windows_sys::core::GUID { data1: 996408158, data2: 16315, data3: 4563, data4: [159, 41, 0, 192, 79, 142, 233, 220] };
1013pub const DBPROPSET_SQLSERVERDATASOURCE: ::windows_sys::core::GUID = ::windows_sys::core::GUID { data1: 686796516, data2: 11564, data3: 4561, data4: [152, 7, 0, 192, 79, 194, 173, 152] };
1014pub const DBPROPSET_SQLSERVERDATASOURCEINFO: ::windows_sys::core::GUID = ::windows_sys::core::GUID { data1: 3742419860, data2: 13814, data3: 4562, data4: [156, 84, 0, 192, 79, 121, 113, 211] };
1015pub const DBPROPSET_SQLSERVERDBINIT: ::windows_sys::core::GUID = ::windows_sys::core::GUID { data1: 1559546384, data2: 61217, data3: 4560, data4: [151, 231, 0, 192, 79, 194, 173, 152] };
1016pub const DBPROPSET_SQLSERVERROWSET: ::windows_sys::core::GUID = ::windows_sys::core::GUID { data1: 1559546385, data2: 61217, data3: 4560, data4: [151, 231, 0, 192, 79, 194, 173, 152] };
1017pub const DBPROPSET_SQLSERVERSESSION: ::windows_sys::core::GUID = ::windows_sys::core::GUID { data1: 686796517, data2: 11564, data3: 4561, data4: [152, 7, 0, 192, 79, 194, 173, 152] };
1018pub const DBPROPSET_SQLSERVERSTREAM: ::windows_sys::core::GUID = ::windows_sys::core::GUID { data1: 2675556467, data2: 35437, data3: 19402, data4: [168, 168, 201, 183, 154, 155, 150, 45] };
04454e1e 1019#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1020pub const DBPROPVAL_AO_RANDOM: i32 = 2i32;
04454e1e 1021#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1022pub const DBPROPVAL_AO_SEQUENTIAL: i32 = 0i32;
04454e1e 1023#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1024pub const DBPROPVAL_AO_SEQUENTIALSTORAGEOBJECTS: i32 = 1i32;
04454e1e 1025#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1026pub const DBPROPVAL_ASYNCH_BACKGROUNDPOPULATION: i32 = 8i32;
04454e1e 1027#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1028pub const DBPROPVAL_ASYNCH_INITIALIZE: i32 = 1i32;
04454e1e 1029#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1030pub const DBPROPVAL_ASYNCH_POPULATEONDEMAND: i32 = 32i32;
04454e1e 1031#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1032pub const DBPROPVAL_ASYNCH_PREPOPULATE: i32 = 16i32;
04454e1e 1033#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1034pub const DBPROPVAL_ASYNCH_RANDOMPOPULATION: i32 = 4i32;
04454e1e 1035#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1036pub const DBPROPVAL_ASYNCH_SEQUENTIALPOPULATION: i32 = 2i32;
04454e1e 1037#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1038pub const DBPROPVAL_BD_INTRANSACTION: i32 = 1i32;
04454e1e 1039#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1040pub const DBPROPVAL_BD_REORGANIZATION: i32 = 3i32;
04454e1e 1041#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1042pub const DBPROPVAL_BD_ROWSET: i32 = 0i32;
04454e1e 1043#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1044pub const DBPROPVAL_BD_XTRANSACTION: i32 = 2i32;
04454e1e 1045#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1046pub const DBPROPVAL_BI_CROSSROWSET: i32 = 1i32;
04454e1e 1047#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1048pub const DBPROPVAL_BMK_KEY: i32 = 2i32;
04454e1e 1049#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1050pub const DBPROPVAL_BMK_NUMERIC: i32 = 1i32;
04454e1e 1051#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1052pub const DBPROPVAL_BO_NOINDEXUPDATE: i32 = 1i32;
04454e1e 1053#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1054pub const DBPROPVAL_BO_NOLOG: i32 = 0i32;
04454e1e 1055#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1056pub const DBPROPVAL_BO_REFINTEGRITY: i32 = 2i32;
04454e1e 1057#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1058pub const DBPROPVAL_CB_DELETE: i32 = 1i32;
04454e1e 1059#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1060pub const DBPROPVAL_CB_NON_NULL: i32 = 2i32;
04454e1e 1061#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1062pub const DBPROPVAL_CB_NULL: i32 = 1i32;
04454e1e 1063#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1064pub const DBPROPVAL_CB_PRESERVE: i32 = 2i32;
04454e1e 1065#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1066pub const DBPROPVAL_CD_NOTNULL: i32 = 1i32;
04454e1e 1067#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1068pub const DBPROPVAL_CL_END: i32 = 2i32;
04454e1e 1069#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1070pub const DBPROPVAL_CL_START: i32 = 1i32;
04454e1e 1071#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1072pub const DBPROPVAL_CM_TRANSACTIONS: i32 = 1i32;
04454e1e 1073#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1074pub const DBPROPVAL_CO_BEGINSWITH: i32 = 32i32;
04454e1e 1075#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1076pub const DBPROPVAL_CO_CASEINSENSITIVE: i32 = 8i32;
04454e1e 1077#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1078pub const DBPROPVAL_CO_CASESENSITIVE: i32 = 4i32;
04454e1e 1079#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1080pub const DBPROPVAL_CO_CONTAINS: i32 = 16i32;
04454e1e 1081#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1082pub const DBPROPVAL_CO_EQUALITY: i32 = 1i32;
04454e1e 1083#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1084pub const DBPROPVAL_CO_STRING: i32 = 2i32;
04454e1e 1085#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1086pub const DBPROPVAL_CS_COMMUNICATIONFAILURE: i32 = 2i32;
04454e1e 1087#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1088pub const DBPROPVAL_CS_INITIALIZED: i32 = 1i32;
04454e1e 1089#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1090pub const DBPROPVAL_CS_UNINITIALIZED: i32 = 0i32;
04454e1e 1091#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1092pub const DBPROPVAL_CU_DML_STATEMENTS: i32 = 1i32;
04454e1e 1093#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1094pub const DBPROPVAL_CU_INDEX_DEFINITION: i32 = 4i32;
04454e1e 1095#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1096pub const DBPROPVAL_CU_PRIVILEGE_DEFINITION: i32 = 8i32;
04454e1e 1097#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1098pub const DBPROPVAL_CU_TABLE_DEFINITION: i32 = 2i32;
04454e1e 1099#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1100pub const DBPROPVAL_DF_INITIALLY_DEFERRED: u32 = 1u32;
04454e1e 1101#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1102pub const DBPROPVAL_DF_INITIALLY_IMMEDIATE: u32 = 2u32;
04454e1e 1103#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1104pub const DBPROPVAL_DF_NOT_DEFERRABLE: u32 = 3u32;
04454e1e 1105#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1106pub const DBPROPVAL_DST_DOCSOURCE: i32 = 4i32;
04454e1e 1107#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1108pub const DBPROPVAL_DST_MDP: i32 = 2i32;
04454e1e 1109#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1110pub const DBPROPVAL_DST_TDP: i32 = 1i32;
04454e1e 1111#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1112pub const DBPROPVAL_DST_TDPANDMDP: i32 = 3i32;
04454e1e 1113#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1114pub const DBPROPVAL_FU_CATALOG: i32 = 8i32;
04454e1e 1115#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1116pub const DBPROPVAL_FU_COLUMN: i32 = 2i32;
04454e1e 1117#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1118pub const DBPROPVAL_FU_NOT_SUPPORTED: i32 = 1i32;
04454e1e 1119#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1120pub const DBPROPVAL_FU_TABLE: i32 = 4i32;
04454e1e 1121#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1122pub const DBPROPVAL_GB_COLLATE: i32 = 16i32;
04454e1e 1123#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1124pub const DBPROPVAL_GB_CONTAINS_SELECT: i32 = 4i32;
04454e1e 1125#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1126pub const DBPROPVAL_GB_EQUALS_SELECT: i32 = 2i32;
04454e1e 1127#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1128pub const DBPROPVAL_GB_NOT_SUPPORTED: i32 = 1i32;
04454e1e 1129#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1130pub const DBPROPVAL_GB_NO_RELATION: i32 = 8i32;
04454e1e 1131#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1132pub const DBPROPVAL_GU_NOTSUPPORTED: i32 = 1i32;
04454e1e 1133#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1134pub const DBPROPVAL_GU_SUFFIX: i32 = 2i32;
04454e1e 1135#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1136pub const DBPROPVAL_HT_DIFFERENT_CATALOGS: i32 = 1i32;
04454e1e 1137#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1138pub const DBPROPVAL_HT_DIFFERENT_PROVIDERS: i32 = 2i32;
04454e1e 1139#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1140pub const DBPROPVAL_IC_LOWER: i32 = 2i32;
04454e1e 1141#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1142pub const DBPROPVAL_IC_MIXED: i32 = 8i32;
04454e1e 1143#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1144pub const DBPROPVAL_IC_SENSITIVE: i32 = 4i32;
04454e1e 1145#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1146pub const DBPROPVAL_IC_UPPER: i32 = 1i32;
04454e1e 1147#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1148pub const DBPROPVAL_IN_ALLOWNULL: i32 = 0i32;
04454e1e 1149#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1150pub const DBPROPVAL_IN_DISALLOWNULL: i32 = 1i32;
04454e1e 1151#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1152pub const DBPROPVAL_IN_IGNOREANYNULL: i32 = 4i32;
04454e1e 1153#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1154pub const DBPROPVAL_IN_IGNORENULL: i32 = 2i32;
04454e1e 1155#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1156pub const DBPROPVAL_IT_BTREE: i32 = 1i32;
04454e1e 1157#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1158pub const DBPROPVAL_IT_CONTENT: i32 = 3i32;
04454e1e 1159#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1160pub const DBPROPVAL_IT_HASH: i32 = 2i32;
04454e1e 1161#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1162pub const DBPROPVAL_IT_OTHER: i32 = 4i32;
04454e1e 1163#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1164pub const DBPROPVAL_LM_INTENT: i32 = 4i32;
04454e1e 1165#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1166pub const DBPROPVAL_LM_NONE: i32 = 1i32;
04454e1e 1167#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1168pub const DBPROPVAL_LM_READ: i32 = 2i32;
04454e1e 1169#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1170pub const DBPROPVAL_LM_RITE: i32 = 8i32;
04454e1e 1171#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1172pub const DBPROPVAL_LM_SINGLEROW: i32 = 2i32;
04454e1e 1173#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1174pub const DBPROPVAL_MR_CONCURRENT: i32 = 2i32;
04454e1e 1175#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1176pub const DBPROPVAL_MR_NOTSUPPORTED: i32 = 0i32;
04454e1e 1177#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1178pub const DBPROPVAL_MR_SUPPORTED: i32 = 1i32;
04454e1e 1179#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1180pub const DBPROPVAL_NC_END: i32 = 1i32;
04454e1e 1181#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1182pub const DBPROPVAL_NC_HIGH: i32 = 2i32;
04454e1e 1183#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1184pub const DBPROPVAL_NC_LOW: i32 = 4i32;
04454e1e 1185#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1186pub const DBPROPVAL_NC_START: i32 = 8i32;
04454e1e 1187#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1188pub const DBPROPVAL_NP_ABOUTTODO: i32 = 2i32;
04454e1e 1189#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1190pub const DBPROPVAL_NP_DIDEVENT: i32 = 16i32;
04454e1e 1191#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1192pub const DBPROPVAL_NP_FAILEDTODO: i32 = 8i32;
04454e1e 1193#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1194pub const DBPROPVAL_NP_OKTODO: i32 = 1i32;
04454e1e 1195#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1196pub const DBPROPVAL_NP_SYNCHAFTER: i32 = 4i32;
04454e1e 1197#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1198pub const DBPROPVAL_NT_MULTIPLEROWS: i32 = 2i32;
04454e1e 1199#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1200pub const DBPROPVAL_NT_SINGLEROW: i32 = 1i32;
04454e1e 1201#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1202pub const DBPROPVAL_OA_ATEXECUTE: i32 = 2i32;
04454e1e 1203#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1204pub const DBPROPVAL_OA_ATROWRELEASE: i32 = 4i32;
04454e1e 1205#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1206pub const DBPROPVAL_OA_NOTSUPPORTED: i32 = 1i32;
04454e1e 1207#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1208pub const DBPROPVAL_OO_BLOB: i32 = 1i32;
04454e1e 1209#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1210pub const DBPROPVAL_OO_DIRECTBIND: i32 = 16i32;
04454e1e 1211#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1212pub const DBPROPVAL_OO_IPERSIST: i32 = 2i32;
04454e1e 1213#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1214pub const DBPROPVAL_OO_ROWOBJECT: i32 = 4i32;
04454e1e 1215#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1216pub const DBPROPVAL_OO_SCOPED: i32 = 8i32;
04454e1e 1217#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1218pub const DBPROPVAL_OO_SINGLETON: i32 = 32i32;
04454e1e 1219#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1220pub const DBPROPVAL_OP_EQUAL: i32 = 1i32;
04454e1e 1221#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1222pub const DBPROPVAL_OP_RELATIVE: i32 = 2i32;
04454e1e 1223#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1224pub const DBPROPVAL_OP_STRING: i32 = 4i32;
04454e1e 1225#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1226pub const DBPROPVAL_ORS_HISTOGRAM: i32 = 8i32;
04454e1e 1227#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1228pub const DBPROPVAL_ORS_INDEX: i32 = 1i32;
04454e1e 1229#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1230pub const DBPROPVAL_ORS_INTEGRATEDINDEX: i32 = 2i32;
04454e1e 1231#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1232pub const DBPROPVAL_ORS_STOREDPROC: i32 = 4i32;
04454e1e 1233#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1234pub const DBPROPVAL_ORS_TABLE: i32 = 0i32;
04454e1e 1235#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1236pub const DBPROPVAL_OS_AGR_AFTERSESSION: i32 = 8i32;
04454e1e 1237#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1238pub const DBPROPVAL_OS_CLIENTCURSOR: i32 = 4i32;
04454e1e 1239#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1240pub const DBPROPVAL_OS_DISABLEALL: i32 = 0i32;
04454e1e 1241#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1242pub const DBPROPVAL_OS_ENABLEALL: i32 = -1i32;
04454e1e 1243#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1244pub const DBPROPVAL_OS_RESOURCEPOOLING: i32 = 1i32;
04454e1e 1245#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1246pub const DBPROPVAL_OS_TXNENLISTMENT: i32 = 2i32;
04454e1e 1247#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1248pub const DBPROPVAL_PERSIST_ADTG: u32 = 0u32;
04454e1e 1249#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1250pub const DBPROPVAL_PERSIST_XML: u32 = 1u32;
04454e1e 1251#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1252pub const DBPROPVAL_PT_GUID: i32 = 8i32;
04454e1e 1253#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1254pub const DBPROPVAL_PT_GUID_NAME: i32 = 1i32;
04454e1e 1255#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1256pub const DBPROPVAL_PT_GUID_PROPID: i32 = 2i32;
04454e1e 1257#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1258pub const DBPROPVAL_PT_NAME: i32 = 4i32;
04454e1e 1259#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1260pub const DBPROPVAL_PT_PGUID_NAME: i32 = 32i32;
04454e1e 1261#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1262pub const DBPROPVAL_PT_PGUID_PROPID: i32 = 64i32;
04454e1e 1263#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1264pub const DBPROPVAL_PT_PROPID: i32 = 16i32;
04454e1e 1265#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1266pub const DBPROPVAL_RD_RESETALL: i32 = -1i32;
04454e1e 1267#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1268pub const DBPROPVAL_RT_APTMTTHREAD: i32 = 2i32;
04454e1e 1269#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1270pub const DBPROPVAL_RT_FREETHREAD: i32 = 1i32;
04454e1e 1271#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1272pub const DBPROPVAL_RT_SINGLETHREAD: i32 = 4i32;
04454e1e 1273#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1274pub const DBPROPVAL_SQL_ANSI89_IEF: i32 = 8i32;
04454e1e 1275#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1276pub const DBPROPVAL_SQL_ANSI92_ENTRY: i32 = 16i32;
04454e1e 1277#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1278pub const DBPROPVAL_SQL_ANSI92_FULL: i32 = 128i32;
04454e1e 1279#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1280pub const DBPROPVAL_SQL_ANSI92_INTERMEDIATE: i32 = 64i32;
04454e1e 1281#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1282pub const DBPROPVAL_SQL_ESCAPECLAUSES: i32 = 256i32;
04454e1e 1283#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1284pub const DBPROPVAL_SQL_FIPS_TRANSITIONAL: i32 = 32i32;
04454e1e 1285#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1286pub const DBPROPVAL_SQL_NONE: i32 = 0i32;
04454e1e 1287#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1288pub const DBPROPVAL_SQL_ODBC_CORE: i32 = 2i32;
04454e1e 1289#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1290pub const DBPROPVAL_SQL_ODBC_EXTENDED: i32 = 4i32;
04454e1e 1291#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1292pub const DBPROPVAL_SQL_ODBC_MINIMUM: i32 = 1i32;
04454e1e 1293#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1294pub const DBPROPVAL_SQL_SUBMINIMUM: i32 = 512i32;
04454e1e 1295#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1296pub const DBPROPVAL_SQ_COMPARISON: i32 = 2i32;
04454e1e 1297#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1298pub const DBPROPVAL_SQ_CORRELATEDSUBQUERIES: i32 = 1i32;
04454e1e 1299#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1300pub const DBPROPVAL_SQ_EXISTS: i32 = 4i32;
04454e1e 1301#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1302pub const DBPROPVAL_SQ_IN: i32 = 8i32;
04454e1e 1303#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1304pub const DBPROPVAL_SQ_QUANTIFIED: i32 = 16i32;
04454e1e 1305#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1306pub const DBPROPVAL_SQ_TABLE: i32 = 32i32;
04454e1e 1307#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1308pub const DBPROPVAL_SS_ILOCKBYTES: i32 = 8i32;
04454e1e 1309#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1310pub const DBPROPVAL_SS_ISEQUENTIALSTREAM: i32 = 1i32;
04454e1e 1311#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1312pub const DBPROPVAL_SS_ISTORAGE: i32 = 4i32;
04454e1e 1313#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1314pub const DBPROPVAL_SS_ISTREAM: i32 = 2i32;
04454e1e 1315#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1316pub const DBPROPVAL_STGM_CONVERT: u32 = 262144u32;
04454e1e 1317#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1318pub const DBPROPVAL_STGM_DELETEONRELEASE: u32 = 2097152u32;
04454e1e 1319#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1320pub const DBPROPVAL_STGM_DIRECT: u32 = 65536u32;
04454e1e 1321#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1322pub const DBPROPVAL_STGM_FAILIFTHERE: u32 = 524288u32;
04454e1e 1323#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1324pub const DBPROPVAL_STGM_PRIORITY: u32 = 1048576u32;
04454e1e 1325#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1326pub const DBPROPVAL_STGM_TRANSACTED: u32 = 131072u32;
04454e1e 1327#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1328pub const DBPROPVAL_SU_DML_STATEMENTS: i32 = 1i32;
04454e1e 1329#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1330pub const DBPROPVAL_SU_INDEX_DEFINITION: i32 = 4i32;
04454e1e 1331#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1332pub const DBPROPVAL_SU_PRIVILEGE_DEFINITION: i32 = 8i32;
04454e1e 1333#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1334pub const DBPROPVAL_SU_TABLE_DEFINITION: i32 = 2i32;
04454e1e 1335#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1336pub const DBPROPVAL_TC_ALL: i32 = 8i32;
04454e1e 1337#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1338pub const DBPROPVAL_TC_DDL_COMMIT: i32 = 2i32;
04454e1e 1339#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1340pub const DBPROPVAL_TC_DDL_IGNORE: i32 = 4i32;
04454e1e 1341#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1342pub const DBPROPVAL_TC_DDL_LOCK: i32 = 16i32;
04454e1e 1343#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1344pub const DBPROPVAL_TC_DML: i32 = 1i32;
04454e1e 1345#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1346pub const DBPROPVAL_TC_NONE: i32 = 0i32;
04454e1e 1347#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1348pub const DBPROPVAL_TI_BROWSE: i32 = 256i32;
04454e1e 1349#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1350pub const DBPROPVAL_TI_CHAOS: i32 = 16i32;
04454e1e 1351#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1352pub const DBPROPVAL_TI_CURSORSTABILITY: i32 = 4096i32;
04454e1e 1353#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1354pub const DBPROPVAL_TI_ISOLATED: i32 = 1048576i32;
04454e1e 1355#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1356pub const DBPROPVAL_TI_READCOMMITTED: i32 = 4096i32;
04454e1e 1357#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1358pub const DBPROPVAL_TI_READUNCOMMITTED: i32 = 256i32;
04454e1e 1359#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1360pub const DBPROPVAL_TI_REPEATABLEREAD: i32 = 65536i32;
04454e1e 1361#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1362pub const DBPROPVAL_TI_SERIALIZABLE: i32 = 1048576i32;
04454e1e 1363#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1364pub const DBPROPVAL_TR_ABORT: i32 = 16i32;
04454e1e 1365#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1366pub const DBPROPVAL_TR_ABORT_DC: i32 = 8i32;
04454e1e 1367#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1368pub const DBPROPVAL_TR_ABORT_NO: i32 = 32i32;
04454e1e 1369#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1370pub const DBPROPVAL_TR_BOTH: i32 = 128i32;
04454e1e 1371#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1372pub const DBPROPVAL_TR_COMMIT: i32 = 2i32;
04454e1e 1373#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1374pub const DBPROPVAL_TR_COMMIT_DC: i32 = 1i32;
04454e1e 1375#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1376pub const DBPROPVAL_TR_COMMIT_NO: i32 = 4i32;
04454e1e 1377#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1378pub const DBPROPVAL_TR_DONTCARE: i32 = 64i32;
04454e1e 1379#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1380pub const DBPROPVAL_TR_NONE: i32 = 256i32;
04454e1e 1381#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1382pub const DBPROPVAL_TR_OPTIMISTIC: i32 = 512i32;
04454e1e 1383#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1384pub const DBPROPVAL_TS_CARDINALITY: i32 = 1i32;
04454e1e 1385#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1386pub const DBPROPVAL_TS_HISTOGRAM: i32 = 2i32;
04454e1e 1387#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1388pub const DBPROPVAL_UP_CHANGE: i32 = 1i32;
04454e1e 1389#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1390pub const DBPROPVAL_UP_DELETE: i32 = 2i32;
04454e1e 1391#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1392pub const DBPROPVAL_UP_INSERT: i32 = 4i32;
04454e1e 1393#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1394pub const DBPROP_HCHAPTER: u32 = 4u32;
04454e1e 1395#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1396pub const DBPROP_INTERLEAVEDROWS: u32 = 8u32;
04454e1e 1397#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1398pub const DBPROP_MAINTAINPROPS: u32 = 5u32;
04454e1e 1399#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1400pub const DBPROP_MSDAORA8_DETERMINEKEYCOLUMNS: u32 = 2u32;
04454e1e 1401#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1402pub const DBPROP_MSDAORA_DETERMINEKEYCOLUMNS: u32 = 1u32;
04454e1e 1403#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1404pub const DBPROP_PersistFormat: u32 = 2u32;
04454e1e 1405#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1406pub const DBPROP_PersistSchema: u32 = 3u32;
04454e1e 1407#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647
FG
1408pub const DBPROP_Unicode: u32 = 6u32;
1409pub const DBSCHEMA_LINKEDSERVERS: ::windows_sys::core::GUID = ::windows_sys::core::GUID { data1: 2425604852, data2: 11948, data3: 4561, data4: [152, 9, 0, 192, 79, 194, 173, 152] };
04454e1e 1410#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1411pub const DBTYPE_SQLVARIANT: u32 = 144u32;
04454e1e 1412#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1413pub const DB_ALL_EXCEPT_LIKE: u32 = 3u32;
04454e1e 1414#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1415pub const DB_BINDFLAGS_COLLECTION: i32 = 16i32;
04454e1e 1416#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1417pub const DB_BINDFLAGS_DELAYFETCHCOLUMNS: i32 = 1i32;
04454e1e 1418#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1419pub const DB_BINDFLAGS_DELAYFETCHSTREAM: i32 = 2i32;
04454e1e 1420#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1421pub const DB_BINDFLAGS_ISSTRUCTUREDDOCUMENT: i32 = 128i32;
04454e1e 1422#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1423pub const DB_BINDFLAGS_OPENIFEXISTS: i32 = 32i32;
04454e1e 1424#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1425pub const DB_BINDFLAGS_OUTPUT: i32 = 8i32;
04454e1e 1426#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1427pub const DB_BINDFLAGS_OVERWRITE: i32 = 64i32;
04454e1e 1428#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1429pub const DB_BINDFLAGS_RECURSIVE: i32 = 4i32;
04454e1e 1430#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1431pub const DB_COLLATION_ASC: u32 = 1u32;
04454e1e 1432#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1433pub const DB_COLLATION_DESC: u32 = 2u32;
04454e1e 1434#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1435pub const DB_COUNTUNAVAILABLE: i32 = -1i32;
04454e1e 1436#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1437pub const DB_E_ABORTLIMITREACHED: ::windows_sys::core::HRESULT = -2147217871i32;
04454e1e 1438#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1439pub const DB_E_ALREADYINITIALIZED: ::windows_sys::core::HRESULT = -2147217838i32;
04454e1e 1440#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1441pub const DB_E_ALTERRESTRICTED: ::windows_sys::core::HRESULT = -2147217763i32;
04454e1e 1442#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1443pub const DB_E_ASYNCNOTSUPPORTED: ::windows_sys::core::HRESULT = -2147217771i32;
04454e1e 1444#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1445pub const DB_E_BADACCESSORFLAGS: ::windows_sys::core::HRESULT = -2147217850i32;
04454e1e 1446#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1447pub const DB_E_BADACCESSORHANDLE: ::windows_sys::core::HRESULT = -2147217920i32;
04454e1e 1448#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1449pub const DB_E_BADACCESSORTYPE: ::windows_sys::core::HRESULT = -2147217845i32;
04454e1e 1450#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1451pub const DB_E_BADBINDINFO: ::windows_sys::core::HRESULT = -2147217912i32;
04454e1e 1452#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1453pub const DB_E_BADBOOKMARK: ::windows_sys::core::HRESULT = -2147217906i32;
04454e1e 1454#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1455pub const DB_E_BADCHAPTER: ::windows_sys::core::HRESULT = -2147217914i32;
04454e1e 1456#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1457pub const DB_E_BADCOLUMNID: ::windows_sys::core::HRESULT = -2147217903i32;
04454e1e 1458#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1459pub const DB_E_BADCOMMANDFLAGS: ::windows_sys::core::HRESULT = -2147217780i32;
04454e1e 1460#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1461pub const DB_E_BADCOMMANDID: ::windows_sys::core::HRESULT = -2147217802i32;
04454e1e 1462#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1463pub const DB_E_BADCOMPAREOP: ::windows_sys::core::HRESULT = -2147217881i32;
04454e1e 1464#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1465pub const DB_E_BADCONSTRAINTFORM: ::windows_sys::core::HRESULT = -2147217800i32;
04454e1e 1466#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1467pub const DB_E_BADCONSTRAINTID: ::windows_sys::core::HRESULT = -2147217781i32;
04454e1e 1468#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1469pub const DB_E_BADCONSTRAINTTYPE: ::windows_sys::core::HRESULT = -2147217801i32;
04454e1e 1470#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1471pub const DB_E_BADCONVERTFLAG: ::windows_sys::core::HRESULT = -2147217828i32;
04454e1e 1472#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1473pub const DB_E_BADCOPY: ::windows_sys::core::HRESULT = -2147217863i32;
04454e1e 1474#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1475pub const DB_E_BADDEFERRABILITY: ::windows_sys::core::HRESULT = -2147217799i32;
04454e1e 1476#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1477pub const DB_E_BADDYNAMICERRORID: ::windows_sys::core::HRESULT = -2147217830i32;
04454e1e 1478#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1479pub const DB_E_BADHRESULT: ::windows_sys::core::HRESULT = -2147217832i32;
04454e1e 1480#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1481pub const DB_E_BADID: i32 = -2147217860i32;
04454e1e 1482#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1483pub const DB_E_BADINDEXID: ::windows_sys::core::HRESULT = -2147217806i32;
04454e1e 1484#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1485pub const DB_E_BADINITSTRING: ::windows_sys::core::HRESULT = -2147217805i32;
04454e1e 1486#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1487pub const DB_E_BADLOCKMODE: ::windows_sys::core::HRESULT = -2147217905i32;
04454e1e 1488#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1489pub const DB_E_BADLOOKUPID: ::windows_sys::core::HRESULT = -2147217831i32;
04454e1e 1490#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1491pub const DB_E_BADMATCHTYPE: ::windows_sys::core::HRESULT = -2147217792i32;
04454e1e 1492#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1493pub const DB_E_BADORDINAL: ::windows_sys::core::HRESULT = -2147217835i32;
04454e1e 1494#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1495pub const DB_E_BADPARAMETERNAME: ::windows_sys::core::HRESULT = -2147217827i32;
04454e1e 1496#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1497pub const DB_E_BADPRECISION: ::windows_sys::core::HRESULT = -2147217862i32;
04454e1e 1498#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1499pub const DB_E_BADPROPERTYVALUE: ::windows_sys::core::HRESULT = -2147217852i32;
04454e1e 1500#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1501pub const DB_E_BADRATIO: ::windows_sys::core::HRESULT = -2147217902i32;
04454e1e 1502#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1503pub const DB_E_BADRECORDNUM: ::windows_sys::core::HRESULT = -2147217854i32;
04454e1e 1504#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1505pub const DB_E_BADREGIONHANDLE: ::windows_sys::core::HRESULT = -2147217878i32;
04454e1e 1506#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1507pub const DB_E_BADROWHANDLE: ::windows_sys::core::HRESULT = -2147217916i32;
04454e1e 1508#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1509pub const DB_E_BADSCALE: ::windows_sys::core::HRESULT = -2147217861i32;
04454e1e 1510#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1511pub const DB_E_BADSOURCEHANDLE: ::windows_sys::core::HRESULT = -2147217840i32;
04454e1e 1512#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1513pub const DB_E_BADSTARTPOSITION: ::windows_sys::core::HRESULT = -2147217890i32;
04454e1e 1514#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1515pub const DB_E_BADSTATUSVALUE: ::windows_sys::core::HRESULT = -2147217880i32;
04454e1e 1516#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1517pub const DB_E_BADSTORAGEFLAG: ::windows_sys::core::HRESULT = -2147217882i32;
04454e1e 1518#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1519pub const DB_E_BADSTORAGEFLAGS: ::windows_sys::core::HRESULT = -2147217849i32;
04454e1e 1520#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1521pub const DB_E_BADTABLEID: ::windows_sys::core::HRESULT = -2147217860i32;
04454e1e 1522#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1523pub const DB_E_BADTYPE: ::windows_sys::core::HRESULT = -2147217859i32;
04454e1e 1524#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1525pub const DB_E_BADTYPENAME: ::windows_sys::core::HRESULT = -2147217872i32;
04454e1e 1526#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1527pub const DB_E_BADUPDATEDELETERULE: ::windows_sys::core::HRESULT = -2147217782i32;
04454e1e 1528#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1529pub const DB_E_BADVALUES: ::windows_sys::core::HRESULT = -2147217901i32;
04454e1e 1530#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1531pub const DB_E_BOGUS: ::windows_sys::core::HRESULT = -2147217665i32;
04454e1e 1532#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1533pub const DB_E_BOOKMARKSKIPPED: ::windows_sys::core::HRESULT = -2147217853i32;
04454e1e 1534#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1535pub const DB_E_BYREFACCESSORNOTSUPPORTED: ::windows_sys::core::HRESULT = -2147217848i32;
04454e1e 1536#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1537pub const DB_E_CANCELED: ::windows_sys::core::HRESULT = -2147217842i32;
04454e1e 1538#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1539pub const DB_E_CANNOTCONNECT: ::windows_sys::core::HRESULT = -2147217770i32;
04454e1e 1540#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1541pub const DB_E_CANNOTFREE: ::windows_sys::core::HRESULT = -2147217894i32;
04454e1e 1542#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1543pub const DB_E_CANNOTRESTART: ::windows_sys::core::HRESULT = -2147217896i32;
04454e1e 1544#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1545pub const DB_E_CANTCANCEL: ::windows_sys::core::HRESULT = -2147217899i32;
04454e1e 1546#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1547pub const DB_E_CANTCONVERTVALUE: ::windows_sys::core::HRESULT = -2147217913i32;
04454e1e 1548#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1549pub const DB_E_CANTFETCHBACKWARDS: ::windows_sys::core::HRESULT = -2147217884i32;
04454e1e 1550#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1551pub const DB_E_CANTFILTER: ::windows_sys::core::HRESULT = -2147217825i32;
04454e1e 1552#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1553pub const DB_E_CANTORDER: ::windows_sys::core::HRESULT = -2147217824i32;
04454e1e 1554#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1555pub const DB_E_CANTSCROLLBACKWARDS: ::windows_sys::core::HRESULT = -2147217879i32;
04454e1e 1556#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1557pub const DB_E_CANTTRANSLATE: ::windows_sys::core::HRESULT = -2147217869i32;
04454e1e 1558#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1559pub const DB_E_CHAPTERNOTRELEASED: ::windows_sys::core::HRESULT = -2147217841i32;
04454e1e 1560#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1561pub const DB_E_COLUMNUNAVAILABLE: ::windows_sys::core::HRESULT = -2147217760i32;
04454e1e 1562#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1563pub const DB_E_COMMANDNOTPERSISTED: ::windows_sys::core::HRESULT = -2147217817i32;
04454e1e 1564#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1565pub const DB_E_CONCURRENCYVIOLATION: ::windows_sys::core::HRESULT = -2147217864i32;
04454e1e 1566#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1567pub const DB_E_COSTLIMIT: ::windows_sys::core::HRESULT = -2147217907i32;
04454e1e 1568#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1569pub const DB_E_DATAOVERFLOW: ::windows_sys::core::HRESULT = -2147217833i32;
04454e1e 1570#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1571pub const DB_E_DELETEDROW: ::windows_sys::core::HRESULT = -2147217885i32;
04454e1e 1572#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1573pub const DB_E_DIALECTNOTSUPPORTED: ::windows_sys::core::HRESULT = -2147217898i32;
04454e1e 1574#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1575pub const DB_E_DROPRESTRICTED: ::windows_sys::core::HRESULT = -2147217776i32;
04454e1e 1576#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1577pub const DB_E_DUPLICATECOLUMNID: ::windows_sys::core::HRESULT = -2147217858i32;
04454e1e 1578#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1579pub const DB_E_DUPLICATECONSTRAINTID: ::windows_sys::core::HRESULT = -2147217767i32;
04454e1e 1580#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1581pub const DB_E_DUPLICATEDATASOURCE: ::windows_sys::core::HRESULT = -2147217897i32;
04454e1e 1582#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1583pub const DB_E_DUPLICATEID: ::windows_sys::core::HRESULT = -2147217816i32;
04454e1e 1584#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1585pub const DB_E_DUPLICATEINDEXID: ::windows_sys::core::HRESULT = -2147217868i32;
04454e1e 1586#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1587pub const DB_E_DUPLICATETABLEID: ::windows_sys::core::HRESULT = -2147217857i32;
04454e1e 1588#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1589pub const DB_E_ERRORSINCOMMAND: ::windows_sys::core::HRESULT = -2147217900i32;
04454e1e 1590#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1591pub const DB_E_ERRORSOCCURRED: ::windows_sys::core::HRESULT = -2147217887i32;
04454e1e 1592#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1593pub const DB_E_GOALREJECTED: ::windows_sys::core::HRESULT = -2147217892i32;
04454e1e 1594#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1595pub const DB_E_INDEXINUSE: ::windows_sys::core::HRESULT = -2147217866i32;
04454e1e 1596#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1597pub const DB_E_INTEGRITYVIOLATION: ::windows_sys::core::HRESULT = -2147217873i32;
04454e1e 1598#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1599pub const DB_E_INVALID: ::windows_sys::core::HRESULT = -2147217851i32;
04454e1e 1600#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1601pub const DB_E_INVALIDTRANSITION: ::windows_sys::core::HRESULT = -2147217876i32;
04454e1e 1602#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1603pub const DB_E_LIMITREJECTED: ::windows_sys::core::HRESULT = -2147217909i32;
04454e1e 1604#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1605pub const DB_E_MAXPENDCHANGESEXCEEDED: ::windows_sys::core::HRESULT = -2147217836i32;
04454e1e 1606#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1607pub const DB_E_MISMATCHEDPROVIDER: ::windows_sys::core::HRESULT = -2147217803i32;
04454e1e 1608#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1609pub const DB_E_MULTIPLESTATEMENTS: ::windows_sys::core::HRESULT = -2147217874i32;
04454e1e 1610#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1611pub const DB_E_MULTIPLESTORAGE: ::windows_sys::core::HRESULT = -2147217826i32;
04454e1e 1612#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1613pub const DB_E_NEWLYINSERTED: ::windows_sys::core::HRESULT = -2147217893i32;
04454e1e 1614#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1615pub const DB_E_NOAGGREGATION: ::windows_sys::core::HRESULT = -2147217886i32;
04454e1e 1616#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1617pub const DB_E_NOCOLUMN: ::windows_sys::core::HRESULT = -2147217819i32;
04454e1e 1618#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1619pub const DB_E_NOCOMMAND: ::windows_sys::core::HRESULT = -2147217908i32;
04454e1e 1620#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1621pub const DB_E_NOCONSTRAINT: ::windows_sys::core::HRESULT = -2147217761i32;
04454e1e 1622#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1623pub const DB_E_NOINDEX: ::windows_sys::core::HRESULT = -2147217867i32;
04454e1e 1624#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1625pub const DB_E_NOLOCALE: ::windows_sys::core::HRESULT = -2147217855i32;
04454e1e 1626#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1627pub const DB_E_NONCONTIGUOUSRANGE: ::windows_sys::core::HRESULT = -2147217877i32;
04454e1e 1628#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1629pub const DB_E_NOPROVIDERSREGISTERED: ::windows_sys::core::HRESULT = -2147217804i32;
04454e1e 1630#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1631pub const DB_E_NOQUERY: ::windows_sys::core::HRESULT = -2147217889i32;
04454e1e 1632#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1633pub const DB_E_NOSOURCEOBJECT: ::windows_sys::core::HRESULT = -2147217775i32;
04454e1e 1634#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1635pub const DB_E_NOSTATISTIC: ::windows_sys::core::HRESULT = -2147217764i32;
04454e1e 1636#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1637pub const DB_E_NOTABLE: ::windows_sys::core::HRESULT = -2147217865i32;
04454e1e 1638#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1639pub const DB_E_NOTAREFERENCECOLUMN: ::windows_sys::core::HRESULT = -2147217910i32;
04454e1e 1640#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1641pub const DB_E_NOTASUBREGION: ::windows_sys::core::HRESULT = -2147217875i32;
04454e1e 1642#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1643pub const DB_E_NOTCOLLECTION: ::windows_sys::core::HRESULT = -2147217773i32;
04454e1e 1644#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1645pub const DB_E_NOTFOUND: ::windows_sys::core::HRESULT = -2147217895i32;
04454e1e 1646#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1647pub const DB_E_NOTPREPARED: ::windows_sys::core::HRESULT = -2147217846i32;
04454e1e 1648#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1649pub const DB_E_NOTREENTRANT: ::windows_sys::core::HRESULT = -2147217888i32;
04454e1e 1650#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1651pub const DB_E_NOTSUPPORTED: ::windows_sys::core::HRESULT = -2147217837i32;
04454e1e 1652#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1653pub const DB_E_NULLACCESSORNOTSUPPORTED: ::windows_sys::core::HRESULT = -2147217847i32;
04454e1e 1654#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1655pub const DB_E_OBJECTCREATIONLIMITREACHED: ::windows_sys::core::HRESULT = -2147217815i32;
04454e1e 1656#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1657pub const DB_E_OBJECTMISMATCH: ::windows_sys::core::HRESULT = -2147217779i32;
04454e1e 1658#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1659pub const DB_E_OBJECTOPEN: ::windows_sys::core::HRESULT = -2147217915i32;
04454e1e 1660#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1661pub const DB_E_OUTOFSPACE: ::windows_sys::core::HRESULT = -2147217766i32;
04454e1e 1662#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1663pub const DB_E_PARAMNOTOPTIONAL: ::windows_sys::core::HRESULT = -2147217904i32;
04454e1e 1664#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1665pub const DB_E_PARAMUNAVAILABLE: ::windows_sys::core::HRESULT = -2147217839i32;
04454e1e 1666#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1667pub const DB_E_PENDINGCHANGES: ::windows_sys::core::HRESULT = -2147217834i32;
04454e1e 1668#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1669pub const DB_E_PENDINGINSERT: ::windows_sys::core::HRESULT = -2147217829i32;
04454e1e 1670#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1671pub const DB_E_READONLY: ::windows_sys::core::HRESULT = -2147217772i32;
04454e1e 1672#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1673pub const DB_E_READONLYACCESSOR: ::windows_sys::core::HRESULT = -2147217918i32;
04454e1e 1674#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1675pub const DB_E_RESOURCEEXISTS: ::windows_sys::core::HRESULT = -2147217768i32;
04454e1e 1676#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1677pub const DB_E_RESOURCELOCKED: ::windows_sys::core::HRESULT = -2147217774i32;
04454e1e 1678#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1679pub const DB_E_RESOURCENOTSUPPORTED: ::windows_sys::core::HRESULT = -2147217762i32;
04454e1e 1680#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1681pub const DB_E_RESOURCEOUTOFSCOPE: ::windows_sys::core::HRESULT = -2147217778i32;
04454e1e 1682#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1683pub const DB_E_ROWLIMITEXCEEDED: ::windows_sys::core::HRESULT = -2147217919i32;
04454e1e 1684#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1685pub const DB_E_ROWSETINCOMMAND: ::windows_sys::core::HRESULT = -2147217870i32;
04454e1e 1686#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1687pub const DB_E_ROWSNOTRELEASED: ::windows_sys::core::HRESULT = -2147217883i32;
04454e1e 1688#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1689pub const DB_E_SCHEMAVIOLATION: ::windows_sys::core::HRESULT = -2147217917i32;
04454e1e 1690#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1691pub const DB_E_TABLEINUSE: ::windows_sys::core::HRESULT = -2147217856i32;
04454e1e 1692#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1693pub const DB_E_TIMEOUT: ::windows_sys::core::HRESULT = -2147217769i32;
04454e1e 1694#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1695pub const DB_E_UNSUPPORTEDCONVERSION: ::windows_sys::core::HRESULT = -2147217891i32;
04454e1e 1696#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1697pub const DB_E_WRITEONLYACCESSOR: ::windows_sys::core::HRESULT = -2147217844i32;
04454e1e 1698#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1699pub const DB_IMP_LEVEL_ANONYMOUS: u32 = 0u32;
04454e1e 1700#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1701pub const DB_IMP_LEVEL_DELEGATE: u32 = 3u32;
04454e1e 1702#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1703pub const DB_IMP_LEVEL_IDENTIFY: u32 = 1u32;
04454e1e 1704#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1705pub const DB_IMP_LEVEL_IMPERSONATE: u32 = 2u32;
04454e1e 1706#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1707pub const DB_IN: u32 = 1u32;
04454e1e 1708#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1709pub const DB_INVALID_HACCESSOR: u32 = 0u32;
04454e1e 1710#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1711pub const DB_INVALID_HCHAPTER: u32 = 0u32;
04454e1e 1712#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1713pub const DB_LIKE_ONLY: u32 = 2u32;
04454e1e 1714#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1715pub const DB_LOCAL_EXCLUSIVE: u32 = 3u32;
04454e1e 1716#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1717pub const DB_LOCAL_SHARED: u32 = 2u32;
04454e1e 1718#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1719pub const DB_MODE_READ: u32 = 1u32;
04454e1e 1720#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1721pub const DB_MODE_READWRITE: u32 = 3u32;
04454e1e 1722#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1723pub const DB_MODE_SHARE_DENY_NONE: u32 = 16u32;
04454e1e 1724#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1725pub const DB_MODE_SHARE_DENY_READ: u32 = 4u32;
04454e1e 1726#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1727pub const DB_MODE_SHARE_DENY_WRITE: u32 = 8u32;
04454e1e 1728#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1729pub const DB_MODE_SHARE_EXCLUSIVE: u32 = 12u32;
04454e1e 1730#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1731pub const DB_MODE_WRITE: u32 = 2u32;
04454e1e 1732#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1733pub const DB_NULL_HACCESSOR: u32 = 0u32;
04454e1e 1734#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1735pub const DB_NULL_HCHAPTER: u32 = 0u32;
04454e1e 1736#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1737pub const DB_NULL_HROW: u32 = 0u32;
04454e1e 1738#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1739pub const DB_OUT: u32 = 2u32;
04454e1e 1740#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1741pub const DB_PROT_LEVEL_CALL: u32 = 2u32;
04454e1e 1742#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1743pub const DB_PROT_LEVEL_CONNECT: u32 = 1u32;
04454e1e 1744#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1745pub const DB_PROT_LEVEL_NONE: u32 = 0u32;
04454e1e 1746#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1747pub const DB_PROT_LEVEL_PKT: u32 = 3u32;
04454e1e 1748#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1749pub const DB_PROT_LEVEL_PKT_INTEGRITY: u32 = 4u32;
04454e1e 1750#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1751pub const DB_PROT_LEVEL_PKT_PRIVACY: u32 = 5u32;
04454e1e 1752#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1753pub const DB_PT_FUNCTION: u32 = 3u32;
04454e1e 1754#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1755pub const DB_PT_PROCEDURE: u32 = 2u32;
04454e1e 1756#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1757pub const DB_PT_UNKNOWN: u32 = 1u32;
04454e1e 1758#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1759pub const DB_REMOTE: u32 = 1u32;
04454e1e 1760#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1761pub const DB_SEARCHABLE: u32 = 4u32;
04454e1e 1762#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1763pub const DB_SEC_E_AUTH_FAILED: ::windows_sys::core::HRESULT = -2147217843i32;
04454e1e 1764#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1765pub const DB_SEC_E_PERMISSIONDENIED: ::windows_sys::core::HRESULT = -2147217911i32;
04454e1e 1766#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1767pub const DB_SEC_E_SAFEMODE_DENIED: ::windows_sys::core::HRESULT = -2147217765i32;
04454e1e 1768#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1769pub const DB_S_ASYNCHRONOUS: ::windows_sys::core::HRESULT = 265936i32;
04454e1e 1770#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1771pub const DB_S_BADROWHANDLE: ::windows_sys::core::HRESULT = 265939i32;
04454e1e 1772#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1773pub const DB_S_BOOKMARKSKIPPED: ::windows_sys::core::HRESULT = 265923i32;
04454e1e 1774#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1775pub const DB_S_BUFFERFULL: ::windows_sys::core::HRESULT = 265928i32;
04454e1e 1776#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1777pub const DB_S_CANTRELEASE: ::windows_sys::core::HRESULT = 265930i32;
04454e1e 1778#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1779pub const DB_S_COLUMNSCHANGED: ::windows_sys::core::HRESULT = 265937i32;
04454e1e 1780#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1781pub const DB_S_COLUMNTYPEMISMATCH: ::windows_sys::core::HRESULT = 265921i32;
04454e1e 1782#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1783pub const DB_S_COMMANDREEXECUTED: ::windows_sys::core::HRESULT = 265927i32;
04454e1e 1784#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1785pub const DB_S_DELETEDROW: ::windows_sys::core::HRESULT = 265940i32;
04454e1e 1786#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1787pub const DB_S_DIALECTIGNORED: ::windows_sys::core::HRESULT = 265933i32;
04454e1e 1788#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1789pub const DB_S_ENDOFROWSET: ::windows_sys::core::HRESULT = 265926i32;
04454e1e 1790#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1791pub const DB_S_ERRORSOCCURRED: ::windows_sys::core::HRESULT = 265946i32;
04454e1e 1792#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1793pub const DB_S_ERRORSRETURNED: ::windows_sys::core::HRESULT = 265938i32;
04454e1e 1794#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1795pub const DB_S_GOALCHANGED: ::windows_sys::core::HRESULT = 265931i32;
04454e1e 1796#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1797pub const DB_S_LOCKUPGRADED: ::windows_sys::core::HRESULT = 265944i32;
04454e1e 1798#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1799pub const DB_S_MULTIPLECHANGES: ::windows_sys::core::HRESULT = 265948i32;
04454e1e 1800#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1801pub const DB_S_NONEXTROWSET: ::windows_sys::core::HRESULT = 265925i32;
04454e1e 1802#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1803pub const DB_S_NORESULT: ::windows_sys::core::HRESULT = 265929i32;
04454e1e 1804#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1805pub const DB_S_NOROWSPECIFICCOLUMNS: ::windows_sys::core::HRESULT = 265949i32;
04454e1e 1806#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1807pub const DB_S_NOTSINGLETON: ::windows_sys::core::HRESULT = 265943i32;
04454e1e 1808#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1809pub const DB_S_PARAMUNAVAILABLE: ::windows_sys::core::HRESULT = 265947i32;
04454e1e 1810#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1811pub const DB_S_PROPERTIESCHANGED: ::windows_sys::core::HRESULT = 265945i32;
04454e1e 1812#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1813pub const DB_S_ROWLIMITEXCEEDED: ::windows_sys::core::HRESULT = 265920i32;
04454e1e 1814#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1815pub const DB_S_STOPLIMITREACHED: ::windows_sys::core::HRESULT = 265942i32;
04454e1e 1816#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1817pub const DB_S_TOOMANYCHANGES: ::windows_sys::core::HRESULT = 265941i32;
04454e1e 1818#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1819pub const DB_S_TYPEINFOOVERRIDDEN: ::windows_sys::core::HRESULT = 265922i32;
04454e1e 1820#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1821pub const DB_S_UNWANTEDOPERATION: ::windows_sys::core::HRESULT = 265932i32;
04454e1e 1822#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1823pub const DB_S_UNWANTEDPHASE: ::windows_sys::core::HRESULT = 265934i32;
04454e1e 1824#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1825pub const DB_S_UNWANTEDREASON: ::windows_sys::core::HRESULT = 265935i32;
04454e1e 1826#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1827pub const DB_UNSEARCHABLE: u32 = 1u32;
04454e1e 1828#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1829pub const DISPID_QUERY_ALL: u32 = 6u32;
04454e1e 1830#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1831pub const DISPID_QUERY_HITCOUNT: u32 = 4u32;
04454e1e 1832#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1833pub const DISPID_QUERY_LASTSEENTIME: u32 = 10u32;
04454e1e 1834#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1835pub const DISPID_QUERY_METADATA_PROPDISPID: u32 = 6u32;
04454e1e 1836#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1837pub const DISPID_QUERY_METADATA_PROPGUID: u32 = 5u32;
04454e1e 1838#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1839pub const DISPID_QUERY_METADATA_PROPMODIFIABLE: u32 = 9u32;
04454e1e 1840#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1841pub const DISPID_QUERY_METADATA_PROPNAME: u32 = 7u32;
04454e1e 1842#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1843pub const DISPID_QUERY_METADATA_STORELEVEL: u32 = 8u32;
04454e1e 1844#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1845pub const DISPID_QUERY_METADATA_VROOTAUTOMATIC: u32 = 3u32;
04454e1e 1846#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1847pub const DISPID_QUERY_METADATA_VROOTMANUAL: u32 = 4u32;
04454e1e 1848#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1849pub const DISPID_QUERY_METADATA_VROOTUSED: u32 = 2u32;
04454e1e 1850#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1851pub const DISPID_QUERY_RANK: u32 = 3u32;
04454e1e 1852#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1853pub const DISPID_QUERY_RANKVECTOR: u32 = 2u32;
04454e1e 1854#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1855pub const DISPID_QUERY_REVNAME: u32 = 8u32;
04454e1e 1856#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1857pub const DISPID_QUERY_UNFILTERED: u32 = 7u32;
04454e1e 1858#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1859pub const DISPID_QUERY_VIRTUALPATH: u32 = 9u32;
04454e1e 1860#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1861pub const DISPID_QUERY_WORKID: u32 = 5u32;
04454e1e 1862#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1863pub const DS_E_ALREADYDISABLED: i32 = -2147220447i32;
04454e1e 1864#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1865pub const DS_E_ALREADYENABLED: i32 = -2147220454i32;
04454e1e 1866#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1867pub const DS_E_BADREQUEST: i32 = -2147220475i32;
04454e1e 1868#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1869pub const DS_E_BADRESULT: i32 = -2147220445i32;
04454e1e 1870#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1871pub const DS_E_BADSEQUENCE: i32 = -2147220473i32;
04454e1e 1872#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1873pub const DS_E_BUFFERTOOSMALL: i32 = -2147220449i32;
04454e1e 1874#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1875pub const DS_E_CANNOTREMOVECONCURRENT: i32 = -2147220443i32;
04454e1e 1876#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1877pub const DS_E_CANNOTWRITEREGISTRY: i32 = -2147220444i32;
04454e1e 1878#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1879pub const DS_E_CONFIGBAD: i32 = -2147220470i32;
04454e1e 1880#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1881pub const DS_E_CONFIGNOTRIGHTTYPE: i32 = -2147220456i32;
04454e1e 1882#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1883pub const DS_E_DATANOTPRESENT: i32 = -2147220464i32;
04454e1e 1884#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1885pub const DS_E_DATASOURCENOTAVAILABLE: i32 = -2147220478i32;
04454e1e 1886#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1887pub const DS_E_DATASOURCENOTDISABLED: i32 = -2147220459i32;
04454e1e 1888#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1889pub const DS_E_DUPLICATEID: i32 = -2147220462i32;
04454e1e 1890#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1891pub const DS_E_INDEXDIRECTORY: i32 = -2147220452i32;
04454e1e 1892#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1893pub const DS_E_INVALIDCATALOGNAME: i32 = -2147220457i32;
04454e1e 1894#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1895pub const DS_E_INVALIDDATASOURCE: i32 = -2147220479i32;
04454e1e 1896#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1897pub const DS_E_INVALIDTAGDB: i32 = -2147220458i32;
04454e1e 1898#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1899pub const DS_E_MESSAGETOOLONG: i32 = -2147220472i32;
04454e1e 1900#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1901pub const DS_E_MISSINGCATALOG: i32 = -2147220440i32;
04454e1e 1902#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1903pub const DS_E_NOMOREDATA: i32 = -2147220480i32;
04454e1e 1904#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1905pub const DS_E_PARAMOUTOFRANGE: i32 = -2147220448i32;
04454e1e 1906#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1907pub const DS_E_PROPVERSIONMISMATCH: i32 = -2147220441i32;
04454e1e 1908#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1909pub const DS_E_PROTOCOLVERSION: i32 = -2147220455i32;
04454e1e 1910#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1911pub const DS_E_QUERYCANCELED: i32 = -2147220477i32;
04454e1e 1912#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1913pub const DS_E_QUERYHUNG: i32 = -2147220446i32;
04454e1e 1914#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1915pub const DS_E_REGISTRY: i32 = -2147220460i32;
04454e1e 1916#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1917pub const DS_E_SEARCHCATNAMECOLLISION: i32 = -2147220442i32;
04454e1e 1918#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1919pub const DS_E_SERVERCAPACITY: i32 = -2147220474i32;
04454e1e 1920#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1921pub const DS_E_SERVERERROR: i32 = -2147220471i32;
04454e1e 1922#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1923pub const DS_E_SETSTATUSINPROGRESS: i32 = -2147220463i32;
04454e1e 1924#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1925pub const DS_E_TOOMANYDATASOURCES: i32 = -2147220461i32;
04454e1e 1926#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1927pub const DS_E_UNKNOWNPARAM: i32 = -2147220450i32;
04454e1e 1928#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1929pub const DS_E_UNKNOWNREQUEST: i32 = -2147220476i32;
04454e1e 1930#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647
FG
1931pub const DS_E_VALUETOOLARGE: i32 = -2147220451i32;
1932pub const DataLinks: ::windows_sys::core::GUID = ::windows_sys::core::GUID { data1: 570871218, data2: 6593, data3: 4561, data4: [137, 224, 0, 192, 79, 215, 168, 41] };
04454e1e 1933#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1934pub const ERROR_FTE: u32 = 13824u32;
04454e1e 1935#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1936pub const ERROR_FTE_CB: u32 = 51968u32;
04454e1e 1937#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1938pub const ERROR_FTE_FD: u32 = 64768u32;
04454e1e 1939#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1940pub const ERROR_SOURCE_CMDLINE: u32 = 5376u32;
04454e1e 1941#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1942pub const ERROR_SOURCE_COLLATOR: u32 = 1280u32;
04454e1e 1943#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1944pub const ERROR_SOURCE_CONNMGR: u32 = 1536u32;
04454e1e 1945#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1946pub const ERROR_SOURCE_CONTENT_SOURCE: u32 = 13312u32;
04454e1e 1947#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1948pub const ERROR_SOURCE_DATASOURCE: u32 = 1024u32;
04454e1e 1949#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1950pub const ERROR_SOURCE_DAV: u32 = 8960u32;
04454e1e 1951#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1952pub const ERROR_SOURCE_EXSTOREPH: u32 = 9984u32;
04454e1e 1953#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1954pub const ERROR_SOURCE_FLTRDMN: u32 = 9216u32;
04454e1e 1955#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1956pub const ERROR_SOURCE_GATHERER: u32 = 3328u32;
04454e1e 1957#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1958pub const ERROR_SOURCE_INDEXER: u32 = 4352u32;
04454e1e 1959#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1960pub const ERROR_SOURCE_MSS: u32 = 8448u32;
04454e1e 1961#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1962pub const ERROR_SOURCE_NETWORKING: u32 = 768u32;
04454e1e 1963#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1964pub const ERROR_SOURCE_NLADMIN: u32 = 6400u32;
04454e1e 1965#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1966pub const ERROR_SOURCE_NOTESPH: u32 = 9728u32;
04454e1e 1967#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1968pub const ERROR_SOURCE_OLEDB_BINDER: u32 = 9472u32;
04454e1e 1969#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1970pub const ERROR_SOURCE_PEOPLE_IMPORT: u32 = 16384u32;
04454e1e 1971#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1972pub const ERROR_SOURCE_PROTHNDLR: u32 = 4608u32;
04454e1e 1973#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1974pub const ERROR_SOURCE_QUERY: u32 = 1792u32;
04454e1e 1975#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1976pub const ERROR_SOURCE_REMOTE_EXSTOREPH: u32 = 13568u32;
04454e1e 1977#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1978pub const ERROR_SOURCE_SCHEMA: u32 = 3072u32;
04454e1e 1979#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1980pub const ERROR_SOURCE_SCRIPTPI: u32 = 8192u32;
04454e1e 1981#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1982pub const ERROR_SOURCE_SECURITY: u32 = 5120u32;
04454e1e 1983#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1984pub const ERROR_SOURCE_SETUP: u32 = 4864u32;
04454e1e 1985#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1986pub const ERROR_SOURCE_SRCH_SCHEMA_CACHE: u32 = 13056u32;
04454e1e 1987#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1988pub const ERROR_SOURCE_XML: u32 = 8704u32;
04454e1e 1989#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1990pub const EVENT_AUDIENCECOMPUTATION_CANNOTSTART: i32 = -1073738223i32;
04454e1e 1991#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1992pub const EVENT_AUTOCAT_CANT_CREATE_FILE_SHARE: i32 = -1073738726i32;
04454e1e 1993#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1994pub const EVENT_AUTOCAT_PERFMON: i32 = -1073738753i32;
04454e1e 1995#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1996pub const EVENT_CONFIG_ERROR: i32 = -1073738821i32;
04454e1e 1997#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 1998pub const EVENT_CONFIG_SYNTAX: i32 = -2147482604i32;
04454e1e 1999#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2000pub const EVENT_CRAWL_SCHEDULED: i32 = 1073744884i32;
04454e1e 2001#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2002pub const EVENT_DETAILED_FILTERPOOL_ADD_FAILED: i32 = -1073738719i32;
04454e1e 2003#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2004pub const EVENT_DSS_NOT_ENABLED: i32 = -2147476572i32;
04454e1e 2005#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2006pub const EVENT_ENUMERATE_SESSIONS_FAILED: i32 = -1073738720i32;
04454e1e 2007#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2008pub const EVENT_EXCEPTION: i32 = -1073740815i32;
04454e1e 2009#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2010pub const EVENT_FAILED_CREATE_GATHERER_LOG: i32 = -2147480587i32;
04454e1e 2011#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2012pub const EVENT_FAILED_INITIALIZE_CRAWL: i32 = -1073738765i32;
04454e1e 2013#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2014pub const EVENT_FILTERPOOL_ADD_FAILED: i32 = -1073738722i32;
04454e1e 2015#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2016pub const EVENT_FILTERPOOL_DELETE_FAILED: i32 = -1073738721i32;
04454e1e 2017#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2018pub const EVENT_FILTER_HOST_FORCE_TERMINATE: i32 = -2147473624i32;
04454e1e 2019#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2020pub const EVENT_FILTER_HOST_NOT_INITIALIZED: i32 = -1073738724i32;
04454e1e 2021#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2022pub const EVENT_FILTER_HOST_NOT_TERMINATED: i32 = -1073738723i32;
04454e1e 2023#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2024pub const EVENT_GATHERER_DATASOURCE: i32 = -1073738727i32;
04454e1e 2025#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2026pub const EVENT_GATHERER_PERFMON: i32 = -1073738817i32;
04454e1e 2027#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2028pub const EVENT_GATHERSVC_PERFMON: i32 = -1073738818i32;
04454e1e 2029#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2030pub const EVENT_GATHER_ADVISE_FAILED: i32 = -1073738798i32;
04454e1e 2031#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2032pub const EVENT_GATHER_APP_INIT_FAILED: i32 = -1073738766i32;
04454e1e 2033#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2034pub const EVENT_GATHER_AUTODESCENCODE_INVALID: i32 = -2147480592i32;
04454e1e 2035#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2036pub const EVENT_GATHER_AUTODESCLEN_ADJUSTED: i32 = -2147480603i32;
04454e1e 2037#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2038pub const EVENT_GATHER_BACKUPAPP_COMPLETE: i32 = 3077i32;
04454e1e 2039#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2040pub const EVENT_GATHER_BACKUPAPP_ERROR: i32 = -1073738748i32;
04454e1e 2041#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2042pub const EVENT_GATHER_CANT_CREATE_DOCID: i32 = -1073738793i32;
04454e1e 2043#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2044pub const EVENT_GATHER_CANT_DELETE_DOCID: i32 = -1073738792i32;
04454e1e 2045#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2046pub const EVENT_GATHER_CHECKPOINT_CORRUPT: i32 = -1073738732i32;
04454e1e 2047#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2048pub const EVENT_GATHER_CHECKPOINT_FAILED: i32 = -1073738736i32;
04454e1e 2049#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2050pub const EVENT_GATHER_CHECKPOINT_FILE_MISSING: i32 = -1073738731i32;
04454e1e 2051#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2052pub const EVENT_GATHER_CRAWL_IN_PROGRESS: i32 = -2147480609i32;
04454e1e 2053#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2054pub const EVENT_GATHER_CRAWL_NOT_STARTED: i32 = -2147480625i32;
04454e1e 2055#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2056pub const EVENT_GATHER_CRAWL_SEED_ERROR: i32 = -2147480624i32;
04454e1e 2057#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2058pub const EVENT_GATHER_CRAWL_SEED_FAILED: i32 = -2147480612i32;
04454e1e 2059#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2060pub const EVENT_GATHER_CRAWL_SEED_FAILED_INIT: i32 = -2147480611i32;
04454e1e 2061#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2062pub const EVENT_GATHER_CRITICAL_ERROR: i32 = -1073738799i32;
04454e1e 2063#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2064pub const EVENT_GATHER_DAEMON_TERMINATED: i32 = -2147480570i32;
04454e1e 2065#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2066pub const EVENT_GATHER_DELETING_HISTORY_ITEMS: i32 = -1073738774i32;
04454e1e 2067#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2068pub const EVENT_GATHER_DIRTY_STARTUP: i32 = -2147480576i32;
04454e1e 2069#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2070pub const EVENT_GATHER_DISK_FULL: i32 = -2147480594i32;
04454e1e 2071#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2072pub const EVENT_GATHER_END_ADAPTIVE: i32 = 1073744891i32;
04454e1e 2073#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2074pub const EVENT_GATHER_END_CRAWL: i32 = 1073744842i32;
04454e1e 2075#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2076pub const EVENT_GATHER_END_INCREMENTAL: i32 = 1073744871i32;
04454e1e 2077#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2078pub const EVENT_GATHER_EXCEPTION: i32 = -1073738810i32;
04454e1e 2079#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2080pub const EVENT_GATHER_FLUSH_FAILED: i32 = -1073738737i32;
04454e1e 2081#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2082pub const EVENT_GATHER_FROM_NOT_SET: i32 = -1073738776i32;
04454e1e 2083#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2084pub const EVENT_GATHER_HISTORY_CORRUPTION_DETECTED: i32 = -2147480575i32;
04454e1e 2085#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2086pub const EVENT_GATHER_INTERNAL: i32 = -1073738804i32;
04454e1e 2087#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2088pub const EVENT_GATHER_INVALID_NETWORK_ACCESS_ACCOUNT: i32 = -1073738739i32;
04454e1e 2089#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2090pub const EVENT_GATHER_LOCK_FAILED: i32 = -1073738784i32;
04454e1e 2091#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2092pub const EVENT_GATHER_NO_CRAWL_SEEDS: i32 = -2147480602i32;
04454e1e 2093#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2094pub const EVENT_GATHER_NO_SCHEMA: i32 = -2147480593i32;
04454e1e 2095#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2096pub const EVENT_GATHER_OBJ_INIT_FAILED: i32 = -1073738796i32;
04454e1e 2097#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2098pub const EVENT_GATHER_PLUGINMGR_INIT_FAILED: i32 = -1073738767i32;
04454e1e 2099#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2100pub const EVENT_GATHER_PLUGIN_INIT_FAILED: i32 = -1073738795i32;
04454e1e 2101#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2102pub const EVENT_GATHER_PROTOCOLHANDLER_INIT_FAILED: i32 = -1073738740i32;
04454e1e 2103#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2104pub const EVENT_GATHER_PROTOCOLHANDLER_LOAD_FAILED: i32 = -1073738741i32;
04454e1e 2105#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2106pub const EVENT_GATHER_READ_CHECKPOINT_FAILED: i32 = -1073738733i32;
04454e1e 2107#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2108pub const EVENT_GATHER_RECOVERY_FAILURE: i32 = -1073738222i32;
04454e1e 2109#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2110pub const EVENT_GATHER_REG_MISSING: i32 = -2147480610i32;
04454e1e 2111#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2112pub const EVENT_GATHER_RESET_START: i32 = 1073744865i32;
04454e1e 2113#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2114pub const EVENT_GATHER_RESTOREAPP_COMPLETE: i32 = 3075i32;
04454e1e 2115#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2116pub const EVENT_GATHER_RESTOREAPP_ERROR: i32 = -1073738750i32;
04454e1e 2117#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2118pub const EVENT_GATHER_RESTORE_CHECKPOINT_FAILED: i32 = -1073738734i32;
04454e1e 2119#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2120pub const EVENT_GATHER_RESTORE_COMPLETE: i32 = 3069i32;
04454e1e 2121#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2122pub const EVENT_GATHER_RESTORE_ERROR: i32 = -1073738754i32;
04454e1e 2123#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2124pub const EVENT_GATHER_RESUME: i32 = 1073744868i32;
04454e1e 2125#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2126pub const EVENT_GATHER_SAVE_FAILED: i32 = -1073738735i32;
04454e1e 2127#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2128pub const EVENT_GATHER_SERVICE_INIT: i32 = -1073738794i32;
04454e1e 2129#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2130pub const EVENT_GATHER_START_CRAWL: i32 = 1073744843i32;
04454e1e 2131#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2132pub const EVENT_GATHER_START_CRAWL_IF_RESET: i32 = -2147480595i32;
04454e1e 2133#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2134pub const EVENT_GATHER_START_PAUSE: i32 = -2147480606i32;
04454e1e 2135#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2136pub const EVENT_GATHER_STOP_START: i32 = 1073744876i32;
04454e1e 2137#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2138pub const EVENT_GATHER_SYSTEM_LCID_CHANGED: i32 = -2147480562i32;
04454e1e 2139#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2140pub const EVENT_GATHER_THROTTLE: i32 = 1073744867i32;
04454e1e 2141#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2142pub const EVENT_GATHER_TRANSACTION_FAIL: i32 = -1073738797i32;
04454e1e 2143#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2144pub const EVENT_HASHMAP_INSERT: i32 = -1073738816i32;
04454e1e 2145#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2146pub const EVENT_HASHMAP_UPDATE: i32 = -1073738811i32;
04454e1e 2147#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2148pub const EVENT_INDEXER_ADD_DSS_DISCONNECT: i32 = -2147476585i32;
04454e1e 2149#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2150pub const EVENT_INDEXER_ADD_DSS_FAILED: i32 = -2147476627i32;
04454e1e 2151#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2152pub const EVENT_INDEXER_ADD_DSS_SUCCEEDED: i32 = 7019i32;
04454e1e 2153#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2154pub const EVENT_INDEXER_BUILD_ENDED: i32 = 1073748873i32;
04454e1e 2155#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2156pub const EVENT_INDEXER_BUILD_FAILED: i32 = -1073734797i32;
04454e1e 2157#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2158pub const EVENT_INDEXER_BUILD_START: i32 = 1073748872i32;
04454e1e 2159#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2160pub const EVENT_INDEXER_CI_LOAD_ERROR: i32 = -1073734785i32;
04454e1e 2161#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2162pub const EVENT_INDEXER_DSS_ALREADY_ADDED: i32 = 1073748870i32;
04454e1e 2163#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2164pub const EVENT_INDEXER_DSS_CONTACT_FAILED: i32 = -1073734800i32;
04454e1e 2165#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2166pub const EVENT_INDEXER_DSS_UNABLE_TO_REMOVE: i32 = -1073734755i32;
04454e1e 2167#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2168pub const EVENT_INDEXER_FAIL_TO_CREATE_PER_USER_CATALOG: i32 = -1073731797i32;
04454e1e 2169#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2170pub const EVENT_INDEXER_FAIL_TO_SET_MAX_JETINSTANCE: i32 = -1073731798i32;
04454e1e 2171#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2172pub const EVENT_INDEXER_FAIL_TO_UNLOAD_PER_USER_CATALOG: i32 = -1073731796i32;
04454e1e 2173#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2174pub const EVENT_INDEXER_INIT_ERROR: i32 = -1073734814i32;
04454e1e 2175#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2176pub const EVENT_INDEXER_INVALID_DIRECTORY: i32 = -1073734813i32;
04454e1e 2177#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2178pub const EVENT_INDEXER_LOAD_FAIL: i32 = -1073734781i32;
04454e1e 2179#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2180pub const EVENT_INDEXER_MISSING_APP_DIRECTORY: i32 = -1073734758i32;
04454e1e 2181#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2182pub const EVENT_INDEXER_NEW_PROJECT: i32 = -1073734754i32;
04454e1e 2183#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2184pub const EVENT_INDEXER_NO_SEARCH_SERVERS: i32 = -2147476630i32;
04454e1e 2185#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2186pub const EVENT_INDEXER_OUT_OF_DATABASE_INSTANCE: i32 = -1073731799i32;
04454e1e 2187#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2188pub const EVENT_INDEXER_PAUSED_FOR_DISKFULL: i32 = -1073734811i32;
04454e1e 2189#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2190pub const EVENT_INDEXER_PERFMON: i32 = -1073734760i32;
04454e1e 2191#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2192pub const EVENT_INDEXER_PROPSTORE_INIT_FAILED: i32 = -1073734787i32;
04454e1e 2193#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2194pub const EVENT_INDEXER_PROP_ABORTED: i32 = 1073748899i32;
04454e1e 2195#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2196pub const EVENT_INDEXER_PROP_COMMITTED: i32 = 1073748898i32;
04454e1e 2197#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2198pub const EVENT_INDEXER_PROP_COMMIT_FAILED: i32 = -1073734747i32;
04454e1e 2199#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2200pub const EVENT_INDEXER_PROP_ERROR: i32 = -1073734812i32;
04454e1e 2201#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2202pub const EVENT_INDEXER_PROP_STARTED: i32 = 1073748841i32;
04454e1e 2203#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2204pub const EVENT_INDEXER_PROP_STATE_CORRUPT: i32 = -1073734780i32;
04454e1e 2205#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2206pub const EVENT_INDEXER_PROP_STOPPED: i32 = -2147476633i32;
04454e1e 2207#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2208pub const EVENT_INDEXER_PROP_SUCCEEDED: i32 = 7016i32;
04454e1e 2209#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2210pub const EVENT_INDEXER_REG_ERROR: i32 = -1073734756i32;
04454e1e 2211#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2212pub const EVENT_INDEXER_REG_MISSING: i32 = -1073734796i32;
04454e1e 2213#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2214pub const EVENT_INDEXER_REMOVED_PROJECT: i32 = -1073734753i32;
04454e1e 2215#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2216pub const EVENT_INDEXER_REMOVE_DSS_FAILED: i32 = -1073734801i32;
04454e1e 2217#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2218pub const EVENT_INDEXER_REMOVE_DSS_SUCCEEDED: i32 = 7020i32;
04454e1e 2219#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2220pub const EVENT_INDEXER_RESET_FOR_CORRUPTION: i32 = -1073734784i32;
04454e1e 2221#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2222pub const EVENT_INDEXER_SCHEMA_COPY_ERROR: i32 = -1073734823i32;
04454e1e 2223#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2224pub const EVENT_INDEXER_SHUTDOWN: i32 = 1073748866i32;
04454e1e 2225#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2226pub const EVENT_INDEXER_STARTED: i32 = 1073748824i32;
04454e1e 2227#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2228pub const EVENT_INDEXER_VERIFY_PROP_ACCOUNT: i32 = -1073734768i32;
04454e1e 2229#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2230pub const EVENT_LEARN_COMPILE_FAILED: i32 = -2147480583i32;
04454e1e 2231#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2232pub const EVENT_LEARN_CREATE_DB_FAILED: i32 = -2147480584i32;
04454e1e 2233#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2234pub const EVENT_LEARN_PROPAGATION_COPY_FAILED: i32 = -2147480585i32;
04454e1e 2235#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2236pub const EVENT_LEARN_PROPAGATION_FAILED: i32 = -2147480582i32;
04454e1e 2237#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2238pub const EVENT_LOCAL_GROUPS_CACHE_FLUSHED: i32 = 1073744920i32;
04454e1e 2239#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2240pub const EVENT_LOCAL_GROUP_NOT_EXPANDED: i32 = 1073744919i32;
04454e1e 2241#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2242pub const EVENT_NOTIFICATION_FAILURE: i32 = -1073738745i32;
04454e1e 2243#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2244pub const EVENT_NOTIFICATION_FAILURE_SCOPE_EXCEEDED_LOGGING: i32 = -2147480568i32;
04454e1e 2245#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2246pub const EVENT_NOTIFICATION_RESTORED: i32 = 1073744905i32;
04454e1e 2247#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2248pub const EVENT_NOTIFICATION_RESTORED_SCOPE_EXCEEDED_LOGGING: i32 = -2147480566i32;
04454e1e 2249#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2250pub const EVENT_NOTIFICATION_THREAD_EXIT_FAILED: i32 = -1073738725i32;
04454e1e 2251#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2252pub const EVENT_OUTOFMEMORY: i32 = -1073740817i32;
04454e1e 2253#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2254pub const EVENT_PERF_COUNTERS_ALREADY_EXISTS: i32 = -2147473626i32;
04454e1e 2255#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2256pub const EVENT_PERF_COUNTERS_NOT_LOADED: i32 = -2147473628i32;
04454e1e 2257#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2258pub const EVENT_PERF_COUNTERS_REGISTRY_TROUBLE: i32 = -2147473627i32;
04454e1e 2259#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2260pub const EVENT_PROTOCOL_HOST_FORCE_TERMINATE: i32 = -2147473625i32;
04454e1e 2261#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2262pub const EVENT_REG_VERSION: i32 = -1073738790i32;
04454e1e 2263#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2264pub const EVENT_SSSEARCH_CREATE_PATH_RULES_FAILED: i32 = -2147482634i32;
04454e1e 2265#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2266pub const EVENT_SSSEARCH_CSM_SAVE_FAILED: i32 = -1073740805i32;
04454e1e 2267#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2268pub const EVENT_SSSEARCH_DATAFILES_MOVE_FAILED: i32 = -1073740808i32;
04454e1e 2269#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2270pub const EVENT_SSSEARCH_DATAFILES_MOVE_ROLLBACK_ERRORS: i32 = -2147482630i32;
04454e1e 2271#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2272pub const EVENT_SSSEARCH_DATAFILES_MOVE_SUCCEEDED: i32 = 1073742841i32;
04454e1e 2273#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2274pub const EVENT_SSSEARCH_DROPPED_EVENTS: i32 = -2147482633i32;
04454e1e 2275#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2276pub const EVENT_SSSEARCH_SETUP_CLEANUP_FAILED: i32 = -1073740813i32;
04454e1e 2277#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2278pub const EVENT_SSSEARCH_SETUP_CLEANUP_STARTED: i32 = -2147482640i32;
04454e1e 2279#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2280pub const EVENT_SSSEARCH_SETUP_CLEANUP_SUCCEEDED: i32 = 1073742834i32;
04454e1e 2281#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2282pub const EVENT_SSSEARCH_SETUP_FAILED: i32 = -1073740818i32;
04454e1e 2283#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2284pub const EVENT_SSSEARCH_SETUP_SUCCEEDED: i32 = 1073742829i32;
04454e1e 2285#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2286pub const EVENT_SSSEARCH_STARTED: i32 = 1073742827i32;
04454e1e 2287#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2288pub const EVENT_SSSEARCH_STARTING_SETUP: i32 = 1073742828i32;
04454e1e 2289#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2290pub const EVENT_SSSEARCH_STOPPED: i32 = 1073742837i32;
04454e1e 2291#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2292pub const EVENT_STS_INIT_SECURITY_FAILED: i32 = -2147480554i32;
04454e1e 2293#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2294pub const EVENT_SYSTEM_EXCEPTION: i32 = -2147482595i32;
04454e1e 2295#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2296pub const EVENT_TRANSACTION_READ: i32 = -1073738809i32;
04454e1e 2297#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2298pub const EVENT_TRANSLOG_APPEND: i32 = -1073738814i32;
04454e1e 2299#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2300pub const EVENT_TRANSLOG_CREATE: i32 = -1073738791i32;
04454e1e 2301#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2302pub const EVENT_TRANSLOG_CREATE_TRX: i32 = -1073738815i32;
04454e1e 2303#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2304pub const EVENT_TRANSLOG_UPDATE: i32 = -1073738813i32;
04454e1e 2305#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2306pub const EVENT_UNPRIVILEGED_SERVICE_ACCOUNT: i32 = -2147482596i32;
04454e1e 2307#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2308pub const EVENT_USING_DIFFERENT_WORD_BREAKER: i32 = -2147480580i32;
04454e1e 2309#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2310pub const EVENT_WARNING_CANNOT_UPGRADE_NOISE_FILE: i32 = -2147473634i32;
04454e1e 2311#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2312pub const EVENT_WARNING_CANNOT_UPGRADE_NOISE_FILES: i32 = -2147473635i32;
04454e1e 2313#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2314pub const EVENT_WBREAKER_NOT_LOADED: i32 = -2147480586i32;
04454e1e 2315#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2316pub const EVENT_WIN32_ERROR: i32 = -2147473633i32;
04454e1e 2317#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2318pub const EXCI_E_ACCESS_DENIED: i32 = -2147216990i32;
04454e1e 2319#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2320pub const EXCI_E_BADCONFIG_OR_ACCESSDENIED: i32 = -2147216988i32;
04454e1e 2321#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2322pub const EXCI_E_INVALID_ACCOUNT_INFO: i32 = -2147216984i32;
04454e1e 2323#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2324pub const EXCI_E_INVALID_EXCHANGE_SERVER: i32 = -2147216989i32;
04454e1e 2325#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2326pub const EXCI_E_INVALID_SERVER_CONFIG: i32 = -2147216991i32;
04454e1e 2327#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2328pub const EXCI_E_NOT_ADMIN_OR_WRONG_SITE: i32 = -2147216986i32;
04454e1e 2329#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2330pub const EXCI_E_NO_CONFIG: i32 = -2147216992i32;
04454e1e 2331#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2332pub const EXCI_E_NO_MAPI: i32 = -2147216985i32;
04454e1e 2333#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2334pub const EXCI_E_WRONG_SERVER_OR_ACCT: i32 = -2147216987i32;
04454e1e 2335#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2336pub const EXSTOREPH_E_UNEXPECTED: i32 = -2147211519i32;
04454e1e 2337#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2338pub const EX_ANY: u32 = 0u32;
04454e1e 2339#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2340pub const EX_CMDFATAL: u32 = 20u32;
04454e1e 2341#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2342pub const EX_CONTROL: u32 = 25u32;
04454e1e 2343#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2344pub const EX_DBCORRUPT: u32 = 23u32;
04454e1e 2345#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2346pub const EX_DBFATAL: u32 = 21u32;
04454e1e 2347#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2348pub const EX_DEADLOCK: u32 = 13u32;
04454e1e 2349#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2350pub const EX_HARDWARE: u32 = 24u32;
04454e1e 2351#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2352pub const EX_INFO: u32 = 10u32;
04454e1e 2353#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2354pub const EX_INTOK: u32 = 18u32;
04454e1e 2355#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2356pub const EX_LIMIT: u32 = 19u32;
04454e1e 2357#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2358pub const EX_MAXISEVERITY: u32 = 10u32;
04454e1e 2359#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2360pub const EX_MISSING: u32 = 11u32;
04454e1e 2361#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2362pub const EX_PERMIT: u32 = 14u32;
04454e1e 2363#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2364pub const EX_RESOURCE: u32 = 17u32;
04454e1e 2365#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2366pub const EX_SYNTAX: u32 = 15u32;
04454e1e 2367#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2368pub const EX_TABCORRUPT: u32 = 22u32;
04454e1e 2369#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2370pub const EX_TYPE: u32 = 12u32;
04454e1e 2371#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2372pub const EX_USER: u32 = 16u32;
04454e1e 2373#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2374pub const FAIL: u32 = 0u32;
04454e1e 2375#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2376pub const FLTRDMN_E_CANNOT_DECRYPT_PASSWORD: i32 = -2147212282i32;
04454e1e 2377#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2378pub const FLTRDMN_E_ENCRYPTED_DOCUMENT: i32 = -2147212283i32;
04454e1e 2379#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2380pub const FLTRDMN_E_FILTER_INIT_FAILED: i32 = -2147212284i32;
04454e1e 2381#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2382pub const FLTRDMN_E_QI_FILTER_FAILED: i32 = -2147212286i32;
04454e1e 2383#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2384pub const FLTRDMN_E_UNEXPECTED: i32 = -2147212287i32;
04454e1e 2385#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2386pub const FTE_E_ADMIN_BLOB_CORRUPT: i32 = -2147207676i32;
04454e1e 2387#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2388pub const FTE_E_AFFINITY_MASK: i32 = -2147207651i32;
04454e1e 2389#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2390pub const FTE_E_ALREADY_INITIALIZED: i32 = -2147207604i32;
04454e1e 2391#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2392pub const FTE_E_ANOTHER_STATUS_CHANGE_IS_ALREADY_ACTIVE: i32 = -2147207635i32;
04454e1e 2393#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2394pub const FTE_E_BATCH_ABORTED: i32 = -2147207636i32;
04454e1e 2395#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2396pub const FTE_E_CATALOG_ALREADY_EXISTS: i32 = -2147207656i32;
04454e1e 2397#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2398pub const FTE_E_CATALOG_DOES_NOT_EXIST: i32 = -2147207639i32;
04454e1e 2399#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2400pub const FTE_E_CB_CBID_OUT_OF_BOUND: i32 = -2147169535i32;
04454e1e 2401#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2402pub const FTE_E_CB_NOT_ENOUGH_AVAIL_PHY_MEM: i32 = -2147169534i32;
04454e1e 2403#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2404pub const FTE_E_CB_NOT_ENOUGH_OCC_BUFFER: i32 = -2147169533i32;
04454e1e 2405#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2406pub const FTE_E_CB_OUT_OF_MEMORY: i32 = -2147169536i32;
04454e1e 2407#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2408pub const FTE_E_COM_SIGNATURE_VALIDATION: i32 = -2147207652i32;
04454e1e 2409#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2410pub const FTE_E_CORRUPT_GATHERER_HASH_MAP: i32 = -2147207619i32;
04454e1e 2411#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2412pub const FTE_E_CORRUPT_PROPERTY_STORE: i32 = -2147207622i32;
04454e1e 2413#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2414pub const FTE_E_CORRUPT_WORDLIST: i32 = -2147169532i32;
04454e1e 2415#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2416pub const FTE_E_DATATYPE_MISALIGNMENT: i32 = -2147207605i32;
04454e1e 2417#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2418pub const FTE_E_DEPENDENT_TRAN_FAILED_TO_PERSIST: i32 = -2147207641i32;
04454e1e 2419#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2420pub const FTE_E_DOC_TOO_HUGE: i32 = -2147207606i32;
04454e1e 2421#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2422pub const FTE_E_DUPLICATE_OBJECT: i32 = -2147207644i32;
04454e1e 2423#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2424pub const FTE_E_ERROR_WRITING_REGISTRY: i32 = -2147207674i32;
04454e1e 2425#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2426pub const FTE_E_EXCEEDED_MAX_PLUGINS: i32 = -2147207647i32;
04454e1e 2427#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2428pub const FTE_E_FAILED_TO_CREATE_ACCESSOR: i32 = -2147207625i32;
04454e1e 2429#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2430pub const FTE_E_FAILURE_TO_POST_SETCOMPLETION_STATUS: i32 = -2147207597i32;
04454e1e 2431#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2432pub const FTE_E_FD_DID_NOT_CONNECT: i32 = -2147207660i32;
04454e1e 2433#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2434pub const FTE_E_FD_DOC_TIMEOUT: i32 = -2147156733i32;
04454e1e 2435#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2436pub const FTE_E_FD_DOC_UNEXPECTED_EXIT: i32 = -2147156731i32;
04454e1e 2437#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2438pub const FTE_E_FD_FAILED_TO_LOAD_IFILTER: i32 = -2147156734i32;
04454e1e 2439#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2440pub const FTE_E_FD_FILTER_CAUSED_SHARING_VIOLATION: i32 = -2147156725i32;
04454e1e 2441#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2442pub const FTE_E_FD_IDLE: i32 = -2147207595i32;
04454e1e 2443#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2444pub const FTE_E_FD_IFILTER_INIT_FAILED: i32 = -2147156735i32;
04454e1e 2445#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2446pub const FTE_E_FD_NOISE_NO_IPERSISTSTREAM_ON_TEXT_FILTER: i32 = -2147156729i32;
04454e1e 2447#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2448pub const FTE_E_FD_NOISE_NO_TEXT_FILTER: i32 = -2147156730i32;
04454e1e 2449#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2450pub const FTE_E_FD_NOISE_TEXT_FILTER_INIT_FAILED: i32 = -2147156727i32;
04454e1e 2451#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2452pub const FTE_E_FD_NOISE_TEXT_FILTER_LOAD_FAILED: i32 = -2147156728i32;
04454e1e 2453#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2454pub const FTE_E_FD_NO_IPERSIST_INTERFACE: i32 = -2147156736i32;
04454e1e 2455#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2456pub const FTE_E_FD_OCCURRENCE_OVERFLOW: i32 = -2147156726i32;
04454e1e 2457#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2458pub const FTE_E_FD_OWNERSHIP_OBSOLETE: i32 = -2147207650i32;
04454e1e 2459#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2460pub const FTE_E_FD_SHUTDOWN: i32 = -2147207640i32;
04454e1e 2461#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2462pub const FTE_E_FD_TIMEOUT: i32 = -2147207632i32;
04454e1e 2463#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2464pub const FTE_E_FD_UNEXPECTED_EXIT: i32 = -2147156732i32;
04454e1e 2465#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2466pub const FTE_E_FD_UNRESPONSIVE: i32 = -2147207594i32;
04454e1e 2467#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2468pub const FTE_E_FD_USED_TOO_MUCH_MEMORY: i32 = -2147207603i32;
04454e1e 2469#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2470pub const FTE_E_FILTER_SINGLE_THREADED: i32 = -2147207675i32;
04454e1e 2471#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2472pub const FTE_E_HIGH_MEMORY_PRESSURE: i32 = -2147207601i32;
04454e1e 2473#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2474pub const FTE_E_INVALID_CODEPAGE: i32 = -2147207596i32;
04454e1e 2475#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2476pub const FTE_E_INVALID_DOCID: i32 = -2147207663i32;
04454e1e 2477#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2478pub const FTE_E_INVALID_ISOLATE_ERROR_BATCH: i32 = -2147207600i32;
04454e1e 2479#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2480pub const FTE_E_INVALID_PROG_ID: i32 = -2147207614i32;
04454e1e 2481#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2482pub const FTE_E_INVALID_PROJECT_ID: i32 = -2147207598i32;
04454e1e 2483#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2484pub const FTE_E_INVALID_PROPERTY: i32 = -2147207630i32;
04454e1e 2485#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2486pub const FTE_E_INVALID_TYPE: i32 = -2147207624i32;
04454e1e 2487#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2488pub const FTE_E_KEY_NOT_CACHED: i32 = -2147207618i32;
04454e1e 2489#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2490pub const FTE_E_LIBRARY_NOT_LOADED: i32 = -2147207627i32;
04454e1e 2491#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2492pub const FTE_E_NOT_PROCESSED_DUE_TO_PREVIOUS_ERRORS: i32 = -2147207633i32;
04454e1e 2493#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2494pub const FTE_E_NO_MORE_PROPERTIES: i32 = -2147207629i32;
04454e1e 2495#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2496pub const FTE_E_NO_PLUGINS: i32 = -2147207638i32;
04454e1e 2497#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2498pub const FTE_E_NO_PROPERTY_STORE: i32 = -1073465766i32;
04454e1e 2499#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2500pub const FTE_E_OUT_OF_RANGE: i32 = -2147207623i32;
04454e1e 2501#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2502pub const FTE_E_PATH_TOO_LONG: i32 = -2147207654i32;
04454e1e 2503#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2504pub const FTE_E_PAUSE_EXTERNAL: i32 = -2147207662i32;
04454e1e 2505#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2506pub const FTE_E_PERFMON_FULL: i32 = -2147207626i32;
04454e1e 2507#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2508pub const FTE_E_PERF_NOT_LOADED: i32 = -2147207611i32;
04454e1e 2509#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2510pub const FTE_E_PIPE_DATA_CORRUPTED: i32 = -2147207671i32;
04454e1e 2511#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2512pub const FTE_E_PIPE_NOT_CONNECTED: i32 = -2147207677i32;
04454e1e 2513#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2514pub const FTE_E_PROGID_REQUIRED: i32 = -2147207658i32;
04454e1e 2515#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2516pub const FTE_E_PROJECT_NOT_INITALIZED: i32 = -2147207672i32;
04454e1e 2517#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2518pub const FTE_E_PROJECT_SHUTDOWN: i32 = -2147207673i32;
04454e1e 2519#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2520pub const FTE_E_PROPERTY_STORE_WORKID_NOTVALID: i32 = -2147207621i32;
04454e1e 2521#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2522pub const FTE_E_READONLY_CATALOG: i32 = -2147207612i32;
04454e1e 2523#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2524pub const FTE_E_REDUNDANT_TRAN_FAILURE: i32 = -2147207642i32;
04454e1e 2525#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2526pub const FTE_E_REJECTED_DUE_TO_PROJECT_STATUS: i32 = -2147207661i32;
04454e1e 2527#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2528pub const FTE_E_RESOURCE_SHUTDOWN: i32 = -2147207631i32;
04454e1e 2529#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2530pub const FTE_E_RETRY_HUGE_DOC: i32 = -2147207608i32;
04454e1e 2531#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2532pub const FTE_E_RETRY_SINGLE_DOC_PER_BATCH: i32 = -2147207599i32;
04454e1e 2533#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2534pub const FTE_E_SECRET_NOT_FOUND: i32 = -2147207678i32;
04454e1e 2535#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2536pub const FTE_E_SERIAL_STREAM_CORRUPT: i32 = -2147207613i32;
04454e1e 2537#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2538pub const FTE_E_STACK_CORRUPTED: i32 = -2147207615i32;
04454e1e 2539#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2540pub const FTE_E_STATIC_THREAD_INVALID_ARGUMENTS: i32 = -2147207657i32;
04454e1e 2541#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2542pub const FTE_E_UNEXPECTED_EXIT: i32 = -2147207602i32;
04454e1e 2543#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2544pub const FTE_E_UNKNOWN_FD_TYPE: i32 = -2147207607i32;
04454e1e 2545#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2546pub const FTE_E_UNKNOWN_PLUGIN: i32 = -2147207628i32;
04454e1e 2547#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2548pub const FTE_E_UPGRADE_INTERFACE_ALREADY_INSTANTIATED: i32 = -2147207616i32;
04454e1e 2549#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2550pub const FTE_E_UPGRADE_INTERFACE_ALREADY_SHUTDOWN: i32 = -2147207617i32;
04454e1e 2551#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2552pub const FTE_E_URB_TOO_BIG: i32 = -2147207664i32;
04454e1e 2553#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2554pub const FTE_INVALID_ADMIN_CLIENT: i32 = -2147207653i32;
04454e1e 2555#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2556pub const FTE_S_BEYOND_QUOTA: i32 = 276002i32;
04454e1e 2557#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2558pub const FTE_S_CATALOG_BLOB_MISMATCHED: i32 = 276056i32;
04454e1e 2559#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2560pub const FTE_S_PROPERTY_RESET: i32 = 276057i32;
04454e1e 2561#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2562pub const FTE_S_PROPERTY_STORE_END_OF_ENUMERATION: i32 = 276028i32;
04454e1e 2563#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2564pub const FTE_S_READONLY_CATALOG: i32 = 276038i32;
04454e1e 2565#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2566pub const FTE_S_REDUNDANT: i32 = 276005i32;
04454e1e 2567#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2568pub const FTE_S_RESOURCES_STARTING_TO_GET_LOW: i32 = 275993i32;
04454e1e 2569#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2570pub const FTE_S_RESUME: i32 = 276014i32;
04454e1e 2571#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2572pub const FTE_S_STATUS_CHANGE_REQUEST: i32 = 276011i32;
04454e1e 2573#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647
FG
2574pub const FTE_S_TRY_TO_FLUSH: i32 = 276055i32;
2575pub const FilterRegistration: ::windows_sys::core::GUID = ::windows_sys::core::GUID { data1: 2652330893, data2: 62762, data3: 4568, data4: [185, 165, 80, 80, 84, 80, 48, 48] };
04454e1e 2576#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2577pub const GENERATE_METHOD_PREFIXMATCH: u32 = 1u32;
04454e1e 2578#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2579pub const GENERATE_METHOD_STEMMED: u32 = 2u32;
04454e1e 2580#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2581pub const GHTR_E_INSUFFICIENT_DISK_SPACE: i32 = -2147218037i32;
04454e1e 2582#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2583pub const GHTR_E_LOCAL_SERVER_UNAVAILABLE: i32 = -2147218055i32;
04454e1e 2584#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2585pub const GTHR_E_ADDLINKS_FAILED_WILL_RETRY_PARENT: i32 = -2147217989i32;
04454e1e 2586#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2587pub const GTHR_E_APPLICATION_NOT_FOUND: i32 = -2147218079i32;
04454e1e 2588#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2589pub const GTHR_E_AUTOCAT_UNEXPECTED: i32 = -2147218012i32;
04454e1e 2590#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2591pub const GTHR_E_BACKUP_VALIDATION_FAIL: i32 = -2147217994i32;
04454e1e 2592#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2593pub const GTHR_E_BAD_FILTER_DAEMON: i32 = -2147218119i32;
04454e1e 2594#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2595pub const GTHR_E_BAD_FILTER_HOST: i32 = -2147217993i32;
04454e1e 2596#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2597pub const GTHR_E_CANNOT_ENABLE_CHECKPOINT: i32 = -2147218002i32;
04454e1e 2598#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2599pub const GTHR_E_CANNOT_REMOVE_PLUGINMGR: i32 = -2147218078i32;
04454e1e 2600#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2601pub const GTHR_E_CONFIG_DUP_EXTENSION: i32 = -2147218165i32;
04454e1e 2602#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2603pub const GTHR_E_CONFIG_DUP_PROJECT: i32 = -2147218166i32;
04454e1e 2604#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2605pub const GTHR_E_CONTENT_ID_CONFLICT: i32 = -2147218062i32;
04454e1e 2606#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2607pub const GTHR_E_DIRMON_NOT_INITIALZED: i32 = -2147218019i32;
04454e1e 2608#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2609pub const GTHR_E_DUPLICATE_OBJECT: i32 = -2147218174i32;
04454e1e 2610#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2611pub const GTHR_E_DUPLICATE_PROJECT: i32 = -2147218094i32;
04454e1e 2612#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2613pub const GTHR_E_DUPLICATE_URL: i32 = -2147218163i32;
04454e1e 2614#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2615pub const GTHR_E_DUP_PROPERTY_MAPPING: i32 = -2147218134i32;
04454e1e 2616#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2617pub const GTHR_E_EMPTY_DACL: i32 = -2147218006i32;
04454e1e 2618#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2619pub const GTHR_E_ERROR_INITIALIZING_PERFMON: i32 = -2147218171i32;
04454e1e 2620#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2621pub const GTHR_E_ERROR_OBJECT_NOT_FOUND: i32 = -2147218170i32;
04454e1e 2622#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2623pub const GTHR_E_ERROR_WRITING_REGISTRY: i32 = -2147218172i32;
04454e1e 2624#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2625pub const GTHR_E_FILTERPOOL_NOTFOUND: i32 = -2147217990i32;
04454e1e 2626#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2627pub const GTHR_E_FILTER_FAULT: i32 = -2147218075i32;
04454e1e 2628#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2629pub const GTHR_E_FILTER_INIT: i32 = -2147218130i32;
04454e1e 2630#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2631pub const GTHR_E_FILTER_INTERRUPTED: i32 = -2147218092i32;
04454e1e 2632#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2633pub const GTHR_E_FILTER_INVALID_MESSAGE: i32 = -2147218158i32;
04454e1e 2634#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2635pub const GTHR_E_FILTER_NOT_FOUND: i32 = -2147218154i32;
04454e1e 2636#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2637pub const GTHR_E_FILTER_NO_CODEPAGE: i32 = -2147218123i32;
04454e1e 2638#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2639pub const GTHR_E_FILTER_NO_MORE_THREADS: i32 = -2147218153i32;
04454e1e 2640#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2641pub const GTHR_E_FILTER_PROCESS_TERMINATED: i32 = -2147218159i32;
04454e1e 2642#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2643pub const GTHR_E_FILTER_PROCESS_TERMINATED_QUOTA: i32 = -2147218151i32;
04454e1e 2644#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2645pub const GTHR_E_FILTER_SINGLE_THREADED: i32 = -2147218069i32;
04454e1e 2646#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2647pub const GTHR_E_FOLDER_CRAWLED_BY_ANOTHER_WORKSPACE: i32 = -2147218007i32;
04454e1e 2648#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2649pub const GTHR_E_FORCE_NOTIFICATION_RESET: i32 = -2147218065i32;
04454e1e 2650#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2651pub const GTHR_E_FROM_NOT_SPECIFIED: i32 = -2147218109i32;
04454e1e 2652#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2653pub const GTHR_E_IE_OFFLINE: i32 = -2147218120i32;
04454e1e 2654#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2655pub const GTHR_E_INSUFFICIENT_EXAMPLE_CATEGORIES: i32 = -2147218014i32;
04454e1e 2656#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2657pub const GTHR_E_INSUFFICIENT_EXAMPLE_DOCUMENTS: i32 = -2147218013i32;
04454e1e 2658#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2659pub const GTHR_E_INSUFFICIENT_FEATURE_TERMS: i32 = -2147218015i32;
04454e1e 2660#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2661pub const GTHR_E_INVALIDFUNCTION: i32 = -2147218161i32;
04454e1e 2662#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2663pub const GTHR_E_INVALID_ACCOUNT: i32 = -2147218132i32;
04454e1e 2664#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2665pub const GTHR_E_INVALID_ACCOUNT_SYNTAX: i32 = -2147218129i32;
04454e1e 2666#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2667pub const GTHR_E_INVALID_APPLICATION_NAME: i32 = -2147218077i32;
04454e1e 2668#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2669pub const GTHR_E_INVALID_CALL_FROM_WBREAKER: i32 = -2147218058i32;
04454e1e 2670#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2671pub const GTHR_E_INVALID_DIRECTORY: i32 = -2147218093i32;
04454e1e 2672#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2673pub const GTHR_E_INVALID_EXTENSION: i32 = -2147218107i32;
04454e1e 2674#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2675pub const GTHR_E_INVALID_GROW_FACTOR: i32 = -2147218106i32;
04454e1e 2676#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2677pub const GTHR_E_INVALID_HOST_NAME: i32 = -2147218096i32;
04454e1e 2678#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2679pub const GTHR_E_INVALID_LOG_FILE_NAME: i32 = -2147218103i32;
04454e1e 2680#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2681pub const GTHR_E_INVALID_MAPPING: i32 = -2147218112i32;
04454e1e 2682#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2683pub const GTHR_E_INVALID_PATH: i32 = -2147218124i32;
04454e1e 2684#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2685pub const GTHR_E_INVALID_PATH_EXPRESSION: i32 = -2147218088i32;
04454e1e 2686#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2687pub const GTHR_E_INVALID_PATH_SPEC: i32 = -2147218016i32;
04454e1e 2688#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2689pub const GTHR_E_INVALID_PROJECT_NAME: i32 = -2147218142i32;
04454e1e 2690#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2691pub const GTHR_E_INVALID_PROXY_PORT: i32 = -2147218091i32;
04454e1e 2692#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2693pub const GTHR_E_INVALID_RESOURCE_ID: i32 = -2147218035i32;
04454e1e 2694#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2695pub const GTHR_E_INVALID_RETRIES: i32 = -2147218104i32;
04454e1e 2696#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2697pub const GTHR_E_INVALID_START_ADDRESS: i32 = -2147217998i32;
04454e1e 2698#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2699pub const GTHR_E_INVALID_START_PAGE: i32 = -2147218095i32;
04454e1e 2700#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2701pub const GTHR_E_INVALID_START_PAGE_HOST: i32 = -2147218087i32;
04454e1e 2702#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2703pub const GTHR_E_INVALID_START_PAGE_PATH: i32 = -2147218080i32;
04454e1e 2704#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2705pub const GTHR_E_INVALID_STREAM_LOGS_COUNT: i32 = -2147218108i32;
04454e1e 2706#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2707pub const GTHR_E_INVALID_TIME_OUT: i32 = -2147218105i32;
04454e1e 2708#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2709pub const GTHR_E_JET_BACKUP_ERROR: i32 = -2147218026i32;
04454e1e 2710#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2711pub const GTHR_E_JET_RESTORE_ERROR: i32 = -2147218025i32;
04454e1e 2712#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2713pub const GTHR_E_LOCAL_GROUPS_EXPANSION_INTERNAL_ERROR: i32 = -2147216867i32;
04454e1e 2714#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2715pub const GTHR_E_NAME_TOO_LONG: i32 = -2147218156i32;
04454e1e 2716#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2717pub const GTHR_E_NESTED_HIERARCHICAL_START_ADDRESSES: i32 = -2147218034i32;
04454e1e 2718#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2719pub const GTHR_E_NOFILTERSINK: i32 = -2147218160i32;
04454e1e 2720#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2721pub const GTHR_E_NON_FIXED_DRIVE: i32 = -2147218074i32;
04454e1e 2722#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2723pub const GTHR_E_NOTIFICATION_FILE_SHARE_INFO_NOT_AVAILABLE: i32 = -2147218040i32;
04454e1e 2724#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2725pub const GTHR_E_NOTIFICATION_LOCAL_PATH_MUST_USE_FIXED_DRIVE: i32 = -2147218039i32;
04454e1e 2726#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2727pub const GTHR_E_NOTIFICATION_START_ADDRESS_INVALID: i32 = -2147218042i32;
04454e1e 2728#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2729pub const GTHR_E_NOTIFICATION_START_PAGE: i32 = -2147218137i32;
04454e1e 2730#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2731pub const GTHR_E_NOTIFICATION_TYPE_NOT_SUPPORTED: i32 = -2147218041i32;
04454e1e 2732#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2733pub const GTHR_E_NOTIF_ACCESS_TOKEN_UPDATED: i32 = -2147218020i32;
04454e1e 2734#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2735pub const GTHR_E_NOTIF_BEING_REMOVED: i32 = -2147218018i32;
04454e1e 2736#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2737pub const GTHR_E_NOTIF_EXCESSIVE_THROUGHPUT: i32 = -2147218017i32;
04454e1e 2738#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2739pub const GTHR_E_NO_IDENTITY: i32 = -2147218155i32;
04454e1e 2740#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2741pub const GTHR_E_NO_PRTCLHNLR: i32 = -2147218121i32;
04454e1e 2742#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2743pub const GTHR_E_NTF_CLIENT_NOT_SUBSCRIBED: i32 = -1073476167i32;
04454e1e 2744#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2745pub const GTHR_E_OBJECT_NOT_VALID: i32 = -2147218005i32;
04454e1e 2746#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2747pub const GTHR_E_OUT_OF_DOC_ID: i32 = -2147218138i32;
04454e1e 2748#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2749pub const GTHR_E_PIPE_NOT_CONNECTTED: i32 = -2147217996i32;
04454e1e 2750#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2751pub const GTHR_E_PLUGIN_NOT_REGISTERED: i32 = -2147218021i32;
04454e1e 2752#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2753pub const GTHR_E_PROJECT_NOT_INITIALIZED: i32 = -2147218149i32;
04454e1e 2754#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2755pub const GTHR_E_PROPERTIES_EXCEEDED: i32 = -2147218000i32;
04454e1e 2756#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2757pub const GTHR_E_PROPERTY_LIST_NOT_INITIALIZED: i32 = -2147218057i32;
04454e1e 2758#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2759pub const GTHR_E_PROXY_NAME: i32 = -2147218127i32;
04454e1e 2760#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2761pub const GTHR_E_PRT_HNDLR_PROGID_MISSING: i32 = -2147218152i32;
04454e1e 2762#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2763pub const GTHR_E_RECOVERABLE_EXOLEDB_ERROR: i32 = -2147218060i32;
04454e1e 2764#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2765pub const GTHR_E_RETRY: i32 = -2147218027i32;
04454e1e 2766#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2767pub const GTHR_E_SCHEMA_ERRORS_OCCURRED: i32 = -2147218054i32;
04454e1e 2768#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2769pub const GTHR_E_SCOPES_EXCEEDED: i32 = -2147218001i32;
04454e1e 2770#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2771pub const GTHR_E_SECRET_NOT_FOUND: i32 = -2147218089i32;
04454e1e 2772#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2773pub const GTHR_E_SERVER_UNAVAILABLE: i32 = -2147218126i32;
04454e1e 2774#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2775pub const GTHR_E_SHUTTING_DOWN: i32 = -2147218141i32;
04454e1e 2776#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2777pub const GTHR_E_SINGLE_THREADED_EMBEDDING: i32 = -2147218011i32;
04454e1e 2778#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2779pub const GTHR_E_TIMEOUT: i32 = -2147218053i32;
04454e1e 2780#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2781pub const GTHR_E_TOO_MANY_PLUGINS: i32 = -2147218162i32;
04454e1e 2782#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2783pub const GTHR_E_UNABLE_TO_READ_EXCHANGE_STORE: i32 = -2147218061i32;
04454e1e 2784#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2785pub const GTHR_E_UNABLE_TO_READ_REGISTRY: i32 = -2147218173i32;
04454e1e 2786#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2787pub const GTHR_E_UNKNOWN_PROTOCOL: i32 = -2147218150i32;
04454e1e 2788#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2789pub const GTHR_E_UNSUPPORTED_PROPERTY_TYPE: i32 = -2147218157i32;
04454e1e 2790#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2791pub const GTHR_E_URL_EXCLUDED: i32 = -2147218169i32;
04454e1e 2792#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2793pub const GTHR_E_URL_UNIDENTIFIED: i32 = -2147218067i32;
04454e1e 2794#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2795pub const GTHR_E_USER_AGENT_NOT_SPECIFIED: i32 = -2147218111i32;
04454e1e 2796#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2797pub const GTHR_E_VALUE_NOT_AVAILABLE: i32 = -2147218139i32;
04454e1e 2798#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2799pub const GTHR_S_BAD_FILE_LINK: i32 = 265580i32;
04454e1e 2800#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2801pub const GTHR_S_CANNOT_FILTER: i32 = 265520i32;
04454e1e 2802#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2803pub const GTHR_S_CANNOT_WORDBREAK: i32 = 265638i32;
04454e1e 2804#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2805pub const GTHR_S_CONFIG_HAS_ACCOUNTS: i32 = 265558i32;
04454e1e 2806#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2807pub const GTHR_S_CRAWL_ADAPTIVE: i32 = 265605i32;
04454e1e 2808#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2809pub const GTHR_S_CRAWL_FULL: i32 = 265603i32;
04454e1e 2810#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2811pub const GTHR_S_CRAWL_INCREMENTAL: i32 = 265604i32;
04454e1e 2812#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2813pub const GTHR_S_CRAWL_SCHEDULED: i32 = 265576i32;
04454e1e 2814#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2815pub const GTHR_S_END_PROCESS_LOOP_NOTIFY_QUEUE: i32 = 265584i32;
04454e1e 2816#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2817pub const GTHR_S_END_STD_CHUNKS: i32 = 265508i32;
04454e1e 2818#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2819pub const GTHR_S_MODIFIED_PARTS: i32 = 265592i32;
04454e1e 2820#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2821pub const GTHR_S_NOT_ALL_PARTS: i32 = 265582i32;
04454e1e 2822#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2823pub const GTHR_S_NO_CRAWL_SEEDS: i32 = 265515i32;
04454e1e 2824#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2825pub const GTHR_S_NO_INDEX: i32 = 265616i32;
04454e1e 2826#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2827pub const GTHR_S_OFFICE_CHILD: i32 = 265626i32;
04454e1e 2828#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2829pub const GTHR_S_PAUSE_REASON_BACKOFF: i32 = 265620i32;
04454e1e 2830#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2831pub const GTHR_S_PAUSE_REASON_EXTERNAL: i32 = 265618i32;
04454e1e 2832#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2833pub const GTHR_S_PAUSE_REASON_PROFILE_IMPORT: i32 = 265651i32;
04454e1e 2834#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2835pub const GTHR_S_PAUSE_REASON_UPGRADING: i32 = 265619i32;
04454e1e 2836#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2837pub const GTHR_S_PROB_NOT_MODIFIED: i32 = 265575i32;
04454e1e 2838#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2839pub const GTHR_S_START_FILTER_FROM_BODY: i32 = 265585i32;
04454e1e 2840#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2841pub const GTHR_S_START_FILTER_FROM_PROTOCOL: i32 = 265578i32;
04454e1e 2842#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2843pub const GTHR_S_STATUS_CHANGE_IGNORED: i32 = 265500i32;
04454e1e 2844#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2845pub const GTHR_S_STATUS_END_CRAWL: i32 = 265501i32;
04454e1e 2846#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2847pub const GTHR_S_STATUS_PAUSE: i32 = 265505i32;
04454e1e 2848#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2849pub const GTHR_S_STATUS_RESET: i32 = 265502i32;
04454e1e 2850#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2851pub const GTHR_S_STATUS_RESUME: i32 = 265504i32;
04454e1e 2852#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2853pub const GTHR_S_STATUS_START: i32 = 265526i32;
04454e1e 2854#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2855pub const GTHR_S_STATUS_STOP: i32 = 265523i32;
04454e1e 2856#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2857pub const GTHR_S_STATUS_THROTTLE: i32 = 265503i32;
04454e1e 2858#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2859pub const GTHR_S_TRANSACTION_IGNORED: i32 = 265577i32;
04454e1e 2860#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2861pub const GTHR_S_USE_MIME_FILTER: i32 = 265639i32;
04454e1e 2862#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2863pub const IDENTIFIER_SDK_ERROR: u32 = 268435456u32;
04454e1e 2864#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2865pub const IDENTIFIER_SDK_MASK: u32 = 4026531840u32;
04454e1e 2866#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2867pub const IDS_MON_BUILTIN_PROPERTY: ::windows_sys::core::HRESULT = 264511i32;
04454e1e 2868#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2869pub const IDS_MON_BUILTIN_VIEW: ::windows_sys::core::HRESULT = 264503i32;
04454e1e 2870#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2871pub const IDS_MON_CANNOT_CAST: ::windows_sys::core::HRESULT = 264518i32;
04454e1e 2872#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2873pub const IDS_MON_CANNOT_CONVERT: ::windows_sys::core::HRESULT = 264507i32;
04454e1e 2874#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2875pub const IDS_MON_COLUMN_NOT_DEFINED: ::windows_sys::core::HRESULT = 264502i32;
04454e1e 2876#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2877pub const IDS_MON_DATE_OUT_OF_RANGE: ::windows_sys::core::HRESULT = 264519i32;
04454e1e 2878#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2879pub const IDS_MON_DEFAULT_ERROR: ::windows_sys::core::HRESULT = 264495i32;
04454e1e 2880#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2881pub const IDS_MON_ILLEGAL_PASSTHROUGH: ::windows_sys::core::HRESULT = 264496i32;
04454e1e 2882#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2883pub const IDS_MON_INVALIDSELECT_COALESCE: ::windows_sys::core::HRESULT = 264517i32;
04454e1e 2884#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2885pub const IDS_MON_INVALID_CATALOG: ::windows_sys::core::HRESULT = 264516i32;
04454e1e 2886#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2887pub const IDS_MON_INVALID_IN_GROUP_CLAUSE: ::windows_sys::core::HRESULT = 264520i32;
04454e1e 2888#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2889pub const IDS_MON_MATCH_STRING: ::windows_sys::core::HRESULT = 264513i32;
04454e1e 2890#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2891pub const IDS_MON_NOT_COLUMN_OF_VIEW: ::windows_sys::core::HRESULT = 264510i32;
04454e1e 2892#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2893pub const IDS_MON_ORDINAL_OUT_OF_RANGE: ::windows_sys::core::HRESULT = 264500i32;
04454e1e 2894#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2895pub const IDS_MON_OR_NOT: ::windows_sys::core::HRESULT = 264506i32;
04454e1e 2896#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2897pub const IDS_MON_OUT_OF_MEMORY: ::windows_sys::core::HRESULT = 264504i32;
04454e1e 2898#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2899pub const IDS_MON_OUT_OF_RANGE: ::windows_sys::core::HRESULT = 264508i32;
04454e1e 2900#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2901pub const IDS_MON_PARSE_ERR_1_PARAM: ::windows_sys::core::HRESULT = 264497i32;
04454e1e 2902#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2903pub const IDS_MON_PARSE_ERR_2_PARAM: ::windows_sys::core::HRESULT = 264498i32;
04454e1e 2904#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2905pub const IDS_MON_PROPERTY_NAME_IN_VIEW: ::windows_sys::core::HRESULT = 264514i32;
04454e1e 2906#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2907pub const IDS_MON_RELATIVE_INTERVAL: ::windows_sys::core::HRESULT = 264509i32;
04454e1e 2908#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2909pub const IDS_MON_SELECT_STAR: ::windows_sys::core::HRESULT = 264505i32;
04454e1e 2910#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2911pub const IDS_MON_SEMI_COLON: ::windows_sys::core::HRESULT = 264499i32;
04454e1e 2912#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2913pub const IDS_MON_VIEW_ALREADY_DEFINED: ::windows_sys::core::HRESULT = 264515i32;
04454e1e 2914#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2915pub const IDS_MON_VIEW_NOT_DEFINED: ::windows_sys::core::HRESULT = 264501i32;
04454e1e 2916#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2917pub const IDS_MON_WEIGHT_OUT_OF_RANGE: ::windows_sys::core::HRESULT = 264512i32;
04454e1e 2918#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2919pub const IDX_E_BUILD_IN_PROGRESS: i32 = -2147217147i32;
04454e1e 2920#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2921pub const IDX_E_CATALOG_DISMOUNTED: i32 = -2147217124i32;
04454e1e 2922#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2923pub const IDX_E_CORRUPT_INDEX: i32 = -2147217136i32;
04454e1e 2924#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2925pub const IDX_E_DISKFULL: i32 = -2147217138i32;
04454e1e 2926#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2927pub const IDX_E_DOCUMENT_ABORTED: i32 = -2147217125i32;
04454e1e 2928#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2929pub const IDX_E_DSS_NOT_CONNECTED: i32 = -2147217126i32;
04454e1e 2930#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2931pub const IDX_E_IDXLSTFILE_CORRUPT: i32 = -2147217146i32;
04454e1e 2932#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2933pub const IDX_E_INVALIDTAG: i32 = -2147217151i32;
04454e1e 2934#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2935pub const IDX_E_INVALID_INDEX: i32 = -2147217137i32;
04454e1e 2936#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2937pub const IDX_E_METAFILE_CORRUPT: i32 = -2147217150i32;
04454e1e 2938#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2939pub const IDX_E_NOISELIST_NOTFOUND: i32 = -2147217141i32;
04454e1e 2940#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2941pub const IDX_E_NOT_LOADED: i32 = -2147217129i32;
04454e1e 2942#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2943pub const IDX_E_OBJECT_NOT_FOUND: i32 = -2147217144i32;
04454e1e 2944#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2945pub const IDX_E_PROPSTORE_INIT_FAILED: i32 = -2147217134i32;
04454e1e 2946#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2947pub const IDX_E_PROP_MAJOR_VERSION_MISMATCH: i32 = -2147217128i32;
04454e1e 2948#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2949pub const IDX_E_PROP_MINOR_VERSION_MISMATCH: i32 = -2147217127i32;
04454e1e 2950#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2951pub const IDX_E_PROP_STATE_CORRUPT: i32 = -2147217133i32;
04454e1e 2952#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2953pub const IDX_E_PROP_STOPPED: i32 = -2147217139i32;
04454e1e 2954#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2955pub const IDX_E_REGISTRY_ENTRY: i32 = -2147217145i32;
04454e1e 2956#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2957pub const IDX_E_SEARCH_SERVER_ALREADY_EXISTS: i32 = -2147217148i32;
04454e1e 2958#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2959pub const IDX_E_SEARCH_SERVER_NOT_FOUND: i32 = -2147217143i32;
04454e1e 2960#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2961pub const IDX_E_STEMMER_NOTFOUND: i32 = -2147217140i32;
04454e1e 2962#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2963pub const IDX_E_TOO_MANY_SEARCH_SERVERS: i32 = -2147217149i32;
04454e1e 2964#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2965pub const IDX_E_USE_APPGLOBAL_PROPTABLE: i32 = -2147217120i32;
04454e1e 2966#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2967pub const IDX_E_USE_DEFAULT_CONTENTCLASS: i32 = -2147217121i32;
04454e1e 2968#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2969pub const IDX_E_WB_NOTFOUND: i32 = -2147217142i32;
04454e1e 2970#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2971pub const IDX_S_DSS_NOT_AVAILABLE: i32 = 266525i32;
04454e1e 2972#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2973pub const IDX_S_NO_BUILD_IN_PROGRESS: i32 = 266516i32;
04454e1e 2974#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2975pub const IDX_S_SEARCH_SERVER_ALREADY_EXISTS: i32 = 266517i32;
04454e1e 2976#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2977pub const IDX_S_SEARCH_SERVER_DOES_NOT_EXIST: i32 = 266518i32;
04454e1e 2978#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2979pub const INET_E_AGENT_CACHE_SIZE_EXCEEDED: ::windows_sys::core::HRESULT = -2146693246i32;
04454e1e 2980#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2981pub const INET_E_AGENT_CONNECTION_FAILED: ::windows_sys::core::HRESULT = -2146693245i32;
04454e1e 2982#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2983pub const INET_E_AGENT_EXCEEDING_CACHE_SIZE: ::windows_sys::core::HRESULT = -2146693232i32;
04454e1e 2984#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2985pub const INET_E_AGENT_MAX_SIZE_EXCEEDED: ::windows_sys::core::HRESULT = -2146693248i32;
04454e1e 2986#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2987pub const INET_E_SCHEDULED_EXCLUDE_RANGE: ::windows_sys::core::HRESULT = -2146693241i32;
04454e1e 2988#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2989pub const INET_E_SCHEDULED_UPDATES_DISABLED: ::windows_sys::core::HRESULT = -2146693244i32;
04454e1e 2990#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2991pub const INET_E_SCHEDULED_UPDATES_RESTRICTED: ::windows_sys::core::HRESULT = -2146693243i32;
04454e1e 2992#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2993pub const INET_E_SCHEDULED_UPDATE_INTERVAL: ::windows_sys::core::HRESULT = -2146693242i32;
04454e1e 2994#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 2995pub const INET_S_AGENT_INCREASED_CACHE_SIZE: ::windows_sys::core::HRESULT = 790416i32;
04454e1e 2996#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647
FG
2997pub const INET_S_AGENT_PART_FAIL: ::windows_sys::core::HRESULT = 790401i32;
2998pub const Interval: ::windows_sys::core::GUID = ::windows_sys::core::GUID { data1: 3646363423, data2: 19449, data3: 19938, data4: [188, 213, 199, 10, 124, 165, 88, 54] };
04454e1e 2999#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3000pub const JET_GET_PROP_STORE_ERROR: i32 = -1073732822i32;
04454e1e 3001#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3002pub const JET_INIT_ERROR: i32 = -1073732824i32;
04454e1e 3003#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3004pub const JET_MULTIINSTANCE_DISABLED: i32 = -2147474645i32;
04454e1e 3005#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3006pub const JET_NEW_PROP_STORE_ERROR: i32 = -1073732823i32;
04454e1e 3007#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3008pub const JPS_E_CATALOG_DECSRIPTION_MISSING: i32 = -2147217023i32;
04454e1e 3009#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3010pub const JPS_E_INSUFFICIENT_DATABASE_RESOURCES: i32 = -2147217019i32;
04454e1e 3011#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3012pub const JPS_E_INSUFFICIENT_DATABASE_SESSIONS: i32 = -2147217020i32;
04454e1e 3013#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3014pub const JPS_E_INSUFFICIENT_VERSION_STORAGE: i32 = -2147217021i32;
04454e1e 3015#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3016pub const JPS_E_JET_ERR: i32 = -2147217025i32;
04454e1e 3017#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3018pub const JPS_E_MISSING_INFORMATION: i32 = -2147217022i32;
04454e1e 3019#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3020pub const JPS_E_PROPAGATION_CORRUPTION: i32 = -2147217016i32;
04454e1e 3021#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3022pub const JPS_E_PROPAGATION_FILE: i32 = -2147217017i32;
04454e1e 3023#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3024pub const JPS_E_PROPAGATION_VERSION_MISMATCH: i32 = -2147217015i32;
04454e1e 3025#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3026pub const JPS_E_SCHEMA_ERROR: i32 = -2147217018i32;
04454e1e 3027#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3028pub const JPS_E_SHARING_VIOLATION: i32 = -2147217014i32;
04454e1e 3029#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3030pub const JPS_S_DUPLICATE_DOC_DETECTED: i32 = 266624i32;
04454e1e 3031#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3032pub const KAGPROPVAL_CONCUR_LOCK: u32 = 4u32;
04454e1e 3033#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3034pub const KAGPROPVAL_CONCUR_READ_ONLY: u32 = 8u32;
04454e1e 3035#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3036pub const KAGPROPVAL_CONCUR_ROWVER: u32 = 1u32;
04454e1e 3037#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3038pub const KAGPROPVAL_CONCUR_VALUES: u32 = 2u32;
04454e1e 3039#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3040pub const KAGPROP_ACCESSIBLEPROCEDURES: u32 = 2u32;
04454e1e 3041#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3042pub const KAGPROP_ACCESSIBLETABLES: u32 = 3u32;
04454e1e 3043#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3044pub const KAGPROP_ACTIVESTATEMENTS: u32 = 24u32;
04454e1e 3045#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3046pub const KAGPROP_AUTH_SERVERINTEGRATED: u32 = 3u32;
04454e1e 3047#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3048pub const KAGPROP_AUTH_TRUSTEDCONNECTION: u32 = 2u32;
04454e1e 3049#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3050pub const KAGPROP_BLOBSONFOCURSOR: u32 = 8u32;
04454e1e 3051#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3052pub const KAGPROP_CONCURRENCY: u32 = 7u32;
04454e1e 3053#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3054pub const KAGPROP_CURSOR: u32 = 6u32;
04454e1e 3055#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3056pub const KAGPROP_DRIVERNAME: u32 = 7u32;
04454e1e 3057#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3058pub const KAGPROP_DRIVERODBCVER: u32 = 9u32;
04454e1e 3059#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3060pub const KAGPROP_DRIVERVER: u32 = 8u32;
04454e1e 3061#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3062pub const KAGPROP_FILEUSAGE: u32 = 23u32;
04454e1e 3063#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3064pub const KAGPROP_FORCENOPARAMETERREBIND: u32 = 11u32;
04454e1e 3065#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3066pub const KAGPROP_FORCENOPREPARE: u32 = 12u32;
04454e1e 3067#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3068pub const KAGPROP_FORCENOREEXECUTE: u32 = 13u32;
04454e1e 3069#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3070pub const KAGPROP_FORCESSFIREHOSEMODE: u32 = 10u32;
04454e1e 3071#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3072pub const KAGPROP_INCLUDENONEXACT: u32 = 9u32;
04454e1e 3073#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3074pub const KAGPROP_IRowsetChangeExtInfo: u32 = 5u32;
04454e1e 3075#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3076pub const KAGPROP_LIKEESCAPECLAUSE: u32 = 10u32;
04454e1e 3077#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3078pub const KAGPROP_MARSHALLABLE: u32 = 3u32;
04454e1e 3079#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3080pub const KAGPROP_MAXCOLUMNSINGROUPBY: u32 = 12u32;
04454e1e 3081#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3082pub const KAGPROP_MAXCOLUMNSININDEX: u32 = 13u32;
04454e1e 3083#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3084pub const KAGPROP_MAXCOLUMNSINORDERBY: u32 = 14u32;
04454e1e 3085#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3086pub const KAGPROP_MAXCOLUMNSINSELECT: u32 = 15u32;
04454e1e 3087#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3088pub const KAGPROP_MAXCOLUMNSINTABLE: u32 = 16u32;
04454e1e 3089#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3090pub const KAGPROP_NUMERICFUNCTIONS: u32 = 17u32;
04454e1e 3091#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3092pub const KAGPROP_ODBCSQLCONFORMANCE: u32 = 18u32;
04454e1e 3093#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3094pub const KAGPROP_ODBCSQLOPTIEF: u32 = 4u32;
04454e1e 3095#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3096pub const KAGPROP_OJCAPABILITY: u32 = 5u32;
04454e1e 3097#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3098pub const KAGPROP_OUTERJOINS: u32 = 19u32;
04454e1e 3099#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3100pub const KAGPROP_POSITIONONNEWROW: u32 = 4u32;
04454e1e 3101#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3102pub const KAGPROP_PROCEDURES: u32 = 6u32;
04454e1e 3103#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3104pub const KAGPROP_QUERYBASEDUPDATES: u32 = 2u32;
04454e1e 3105#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3106pub const KAGPROP_SPECIALCHARACTERS: u32 = 11u32;
04454e1e 3107#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3108pub const KAGPROP_STRINGFUNCTIONS: u32 = 20u32;
04454e1e 3109#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3110pub const KAGPROP_SYSTEMFUNCTIONS: u32 = 21u32;
04454e1e 3111#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647
FG
3112pub const KAGPROP_TIMEDATEFUNCTIONS: u32 = 22u32;
3113pub const LeafCondition: ::windows_sys::core::GUID = ::windows_sys::core::GUID { data1: 1391549577, data2: 23063, data3: 18657, data4: [187, 205, 70, 163, 248, 156, 124, 194] };
04454e1e 3114#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3115pub const MAXNAME: u32 = 129u32;
04454e1e 3116#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3117pub const MAXNUMERICLEN: u32 = 16u32;
04454e1e 3118#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3119pub const MAXUSEVERITY: u32 = 18u32;
04454e1e 3120#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3121pub const MAX_QUERY_RANK: u32 = 1000u32;
04454e1e 3122#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3123pub const MDAXIS_CHAPTERS: u32 = 4u32;
04454e1e 3124#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3125pub const MDAXIS_COLUMNS: u32 = 0u32;
04454e1e 3126#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3127pub const MDAXIS_PAGES: u32 = 2u32;
04454e1e 3128#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3129pub const MDAXIS_ROWS: u32 = 1u32;
04454e1e 3130#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3131pub const MDAXIS_SECTIONS: u32 = 3u32;
04454e1e 3132#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3133pub const MDAXIS_SLICERS: u32 = 4294967295u32;
04454e1e 3134#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3135pub const MDDISPINFO_DRILLED_DOWN: u32 = 65536u32;
04454e1e 3136#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3137pub const MDDISPINFO_PARENT_SAME_AS_PREV: u32 = 131072u32;
04454e1e 3138#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3139pub const MDFF_BOLD: u32 = 1u32;
04454e1e 3140#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3141pub const MDFF_ITALIC: u32 = 2u32;
04454e1e 3142#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3143pub const MDFF_STRIKEOUT: u32 = 8u32;
04454e1e 3144#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3145pub const MDFF_UNDERLINE: u32 = 4u32;
04454e1e 3146#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3147pub const MDLEVEL_TYPE_ALL: u32 = 1u32;
04454e1e 3148#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3149pub const MDLEVEL_TYPE_CALCULATED: u32 = 2u32;
04454e1e 3150#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3151pub const MDLEVEL_TYPE_REGULAR: u32 = 0u32;
04454e1e 3152#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3153pub const MDLEVEL_TYPE_RESERVED1: u32 = 8u32;
04454e1e 3154#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3155pub const MDLEVEL_TYPE_TIME: u32 = 4u32;
04454e1e 3156#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3157pub const MDLEVEL_TYPE_TIME_DAYS: u32 = 516u32;
04454e1e 3158#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3159pub const MDLEVEL_TYPE_TIME_HALF_YEAR: u32 = 36u32;
04454e1e 3160#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3161pub const MDLEVEL_TYPE_TIME_HOURS: u32 = 772u32;
04454e1e 3162#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3163pub const MDLEVEL_TYPE_TIME_MINUTES: u32 = 1028u32;
04454e1e 3164#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3165pub const MDLEVEL_TYPE_TIME_MONTHS: u32 = 132u32;
04454e1e 3166#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3167pub const MDLEVEL_TYPE_TIME_QUARTERS: u32 = 68u32;
04454e1e 3168#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3169pub const MDLEVEL_TYPE_TIME_SECONDS: u32 = 2052u32;
04454e1e 3170#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3171pub const MDLEVEL_TYPE_TIME_UNDEFINED: u32 = 4100u32;
04454e1e 3172#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3173pub const MDLEVEL_TYPE_TIME_WEEKS: u32 = 260u32;
04454e1e 3174#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3175pub const MDLEVEL_TYPE_TIME_YEARS: u32 = 20u32;
04454e1e 3176#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3177pub const MDLEVEL_TYPE_UNKNOWN: u32 = 0u32;
04454e1e 3178#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3179pub const MDMEASURE_AGGR_AVG: u32 = 5u32;
04454e1e 3180#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3181pub const MDMEASURE_AGGR_CALCULATED: u32 = 127u32;
04454e1e 3182#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3183pub const MDMEASURE_AGGR_COUNT: u32 = 2u32;
04454e1e 3184#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3185pub const MDMEASURE_AGGR_MAX: u32 = 4u32;
04454e1e 3186#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3187pub const MDMEASURE_AGGR_MIN: u32 = 3u32;
04454e1e 3188#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3189pub const MDMEASURE_AGGR_STD: u32 = 7u32;
04454e1e 3190#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3191pub const MDMEASURE_AGGR_SUM: u32 = 1u32;
04454e1e 3192#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3193pub const MDMEASURE_AGGR_UNKNOWN: u32 = 0u32;
04454e1e 3194#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3195pub const MDMEASURE_AGGR_VAR: u32 = 6u32;
04454e1e 3196#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3197pub const MDMEMBER_TYPE_ALL: u32 = 2u32;
04454e1e 3198#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3199pub const MDMEMBER_TYPE_FORMULA: u32 = 4u32;
04454e1e 3200#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3201pub const MDMEMBER_TYPE_MEASURE: u32 = 3u32;
04454e1e 3202#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3203pub const MDMEMBER_TYPE_REGULAR: u32 = 1u32;
04454e1e 3204#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3205pub const MDMEMBER_TYPE_RESERVE1: u32 = 5u32;
04454e1e 3206#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3207pub const MDMEMBER_TYPE_RESERVE2: u32 = 6u32;
04454e1e 3208#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3209pub const MDMEMBER_TYPE_RESERVE3: u32 = 7u32;
04454e1e 3210#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3211pub const MDMEMBER_TYPE_RESERVE4: u32 = 8u32;
04454e1e 3212#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3213pub const MDMEMBER_TYPE_UNKNOWN: u32 = 0u32;
04454e1e 3214#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3215pub const MDPROPVAL_AU_UNCHANGED: i32 = 1i32;
04454e1e 3216#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3217pub const MDPROPVAL_AU_UNKNOWN: i32 = 2i32;
04454e1e 3218#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3219pub const MDPROPVAL_AU_UNSUPPORTED: i32 = 0i32;
04454e1e 3220#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3221pub const MDPROPVAL_FS_FULL_SUPPORT: i32 = 1i32;
04454e1e 3222#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3223pub const MDPROPVAL_FS_GENERATED_COLUMN: i32 = 2i32;
04454e1e 3224#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3225pub const MDPROPVAL_FS_GENERATED_DIMENSION: i32 = 3i32;
04454e1e 3226#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3227pub const MDPROPVAL_FS_NO_SUPPORT: i32 = 4i32;
04454e1e 3228#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3229pub const MDPROPVAL_MC_SEARCHEDCASE: i32 = 2i32;
04454e1e 3230#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3231pub const MDPROPVAL_MC_SINGLECASE: i32 = 1i32;
04454e1e 3232#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3233pub const MDPROPVAL_MD_AFTER: i32 = 4i32;
04454e1e 3234#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3235pub const MDPROPVAL_MD_BEFORE: i32 = 2i32;
04454e1e 3236#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3237pub const MDPROPVAL_MD_SELF: i32 = 1i32;
04454e1e 3238#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3239pub const MDPROPVAL_MF_CREATE_CALCMEMBERS: i32 = 4i32;
04454e1e 3240#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3241pub const MDPROPVAL_MF_CREATE_NAMEDSETS: i32 = 8i32;
04454e1e 3242#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3243pub const MDPROPVAL_MF_SCOPE_GLOBAL: i32 = 32i32;
04454e1e 3244#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3245pub const MDPROPVAL_MF_SCOPE_SESSION: i32 = 16i32;
04454e1e 3246#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3247pub const MDPROPVAL_MF_WITH_CALCMEMBERS: i32 = 1i32;
04454e1e 3248#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3249pub const MDPROPVAL_MF_WITH_NAMEDSETS: i32 = 2i32;
04454e1e 3250#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3251pub const MDPROPVAL_MJC_IMPLICITCUBE: i32 = 4i32;
04454e1e 3252#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3253pub const MDPROPVAL_MJC_MULTICUBES: i32 = 2i32;
04454e1e 3254#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3255pub const MDPROPVAL_MJC_SINGLECUBE: i32 = 1i32;
04454e1e 3256#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3257pub const MDPROPVAL_MMF_CLOSINGPERIOD: i32 = 8i32;
04454e1e 3258#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3259pub const MDPROPVAL_MMF_COUSIN: i32 = 1i32;
04454e1e 3260#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3261pub const MDPROPVAL_MMF_OPENINGPERIOD: i32 = 4i32;
04454e1e 3262#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3263pub const MDPROPVAL_MMF_PARALLELPERIOD: i32 = 2i32;
04454e1e 3264#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3265pub const MDPROPVAL_MNF_AGGREGATE: i32 = 16i32;
04454e1e 3266#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3267pub const MDPROPVAL_MNF_CORRELATION: i32 = 64i32;
04454e1e 3268#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3269pub const MDPROPVAL_MNF_COVARIANCE: i32 = 32i32;
04454e1e 3270#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3271pub const MDPROPVAL_MNF_DRILLDOWNLEVEL: i32 = 2048i32;
04454e1e 3272#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3273pub const MDPROPVAL_MNF_DRILLDOWNLEVELBOTTOM: i32 = 32768i32;
04454e1e 3274#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3275pub const MDPROPVAL_MNF_DRILLDOWNLEVELTOP: i32 = 16384i32;
04454e1e 3276#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3277pub const MDPROPVAL_MNF_DRILLDOWNMEMBERBOTTOM: i32 = 8192i32;
04454e1e 3278#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3279pub const MDPROPVAL_MNF_DRILLDOWNMEMBERTOP: i32 = 4096i32;
04454e1e 3280#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3281pub const MDPROPVAL_MNF_DRILLUPLEVEL: i32 = 131072i32;
04454e1e 3282#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3283pub const MDPROPVAL_MNF_DRILLUPMEMBER: i32 = 65536i32;
04454e1e 3284#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3285pub const MDPROPVAL_MNF_LINREG2: i32 = 512i32;
04454e1e 3286#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3287pub const MDPROPVAL_MNF_LINREGPOINT: i32 = 1024i32;
04454e1e 3288#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3289pub const MDPROPVAL_MNF_LINREGSLOPE: i32 = 128i32;
04454e1e 3290#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3291pub const MDPROPVAL_MNF_LINREGVARIANCE: i32 = 256i32;
04454e1e 3292#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3293pub const MDPROPVAL_MNF_MEDIAN: i32 = 1i32;
04454e1e 3294#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3295pub const MDPROPVAL_MNF_RANK: i32 = 8i32;
04454e1e 3296#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3297pub const MDPROPVAL_MNF_STDDEV: i32 = 4i32;
04454e1e 3298#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3299pub const MDPROPVAL_MNF_VAR: i32 = 2i32;
04454e1e 3300#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3301pub const MDPROPVAL_MOQ_CATALOG_CUBE: i32 = 2i32;
04454e1e 3302#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3303pub const MDPROPVAL_MOQ_CUBE_DIM: i32 = 8i32;
04454e1e 3304#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3305pub const MDPROPVAL_MOQ_DATASOURCE_CUBE: i32 = 1i32;
04454e1e 3306#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3307pub const MDPROPVAL_MOQ_DIMHIER_LEVEL: i32 = 32i32;
04454e1e 3308#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3309pub const MDPROPVAL_MOQ_DIMHIER_MEMBER: i32 = 256i32;
04454e1e 3310#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3311pub const MDPROPVAL_MOQ_DIM_HIER: i32 = 16i32;
04454e1e 3312#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3313pub const MDPROPVAL_MOQ_LEVEL_MEMBER: i32 = 64i32;
04454e1e 3314#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3315pub const MDPROPVAL_MOQ_MEMBER_MEMBER: i32 = 128i32;
04454e1e 3316#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3317pub const MDPROPVAL_MOQ_OUTERREFERENCE: i32 = 1i32;
04454e1e 3318#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3319pub const MDPROPVAL_MOQ_SCHEMA_CUBE: i32 = 4i32;
04454e1e 3320#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3321pub const MDPROPVAL_MSC_GREATERTHAN: i32 = 2i32;
04454e1e 3322#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3323pub const MDPROPVAL_MSC_GREATERTHANEQUAL: i32 = 8i32;
04454e1e 3324#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3325pub const MDPROPVAL_MSC_LESSTHAN: i32 = 1i32;
04454e1e 3326#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3327pub const MDPROPVAL_MSC_LESSTHANEQUAL: i32 = 4i32;
04454e1e 3328#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3329pub const MDPROPVAL_MSF_BOTTOMPERCENT: i32 = 2i32;
04454e1e 3330#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3331pub const MDPROPVAL_MSF_BOTTOMSUM: i32 = 8i32;
04454e1e 3332#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3333pub const MDPROPVAL_MSF_DRILLDOWNLEVEL: i32 = 2048i32;
04454e1e 3334#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3335pub const MDPROPVAL_MSF_DRILLDOWNLEVELBOTTOM: i32 = 32768i32;
04454e1e 3336#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3337pub const MDPROPVAL_MSF_DRILLDOWNLEVELTOP: i32 = 16384i32;
04454e1e 3338#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3339pub const MDPROPVAL_MSF_DRILLDOWNMEMBBER: i32 = 1024i32;
04454e1e 3340#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3341pub const MDPROPVAL_MSF_DRILLDOWNMEMBERBOTTOM: i32 = 8192i32;
04454e1e 3342#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3343pub const MDPROPVAL_MSF_DRILLDOWNMEMBERTOP: i32 = 4096i32;
04454e1e 3344#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3345pub const MDPROPVAL_MSF_DRILLUPLEVEL: i32 = 131072i32;
04454e1e 3346#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3347pub const MDPROPVAL_MSF_DRILLUPMEMBER: i32 = 65536i32;
04454e1e 3348#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3349pub const MDPROPVAL_MSF_LASTPERIODS: i32 = 32i32;
04454e1e 3350#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3351pub const MDPROPVAL_MSF_MTD: i32 = 256i32;
04454e1e 3352#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3353pub const MDPROPVAL_MSF_PERIODSTODATE: i32 = 16i32;
04454e1e 3354#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3355pub const MDPROPVAL_MSF_QTD: i32 = 128i32;
04454e1e 3356#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3357pub const MDPROPVAL_MSF_TOGGLEDRILLSTATE: i32 = 262144i32;
04454e1e 3358#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3359pub const MDPROPVAL_MSF_TOPPERCENT: i32 = 1i32;
04454e1e 3360#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3361pub const MDPROPVAL_MSF_TOPSUM: i32 = 4i32;
04454e1e 3362#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3363pub const MDPROPVAL_MSF_WTD: i32 = 512i32;
04454e1e 3364#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3365pub const MDPROPVAL_MSF_YTD: i32 = 64i32;
04454e1e 3366#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3367pub const MDPROPVAL_MS_MULTIPLETUPLES: i32 = 1i32;
04454e1e 3368#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3369pub const MDPROPVAL_MS_SINGLETUPLE: i32 = 2i32;
04454e1e 3370#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3371pub const MDPROPVAL_NL_NAMEDLEVELS: i32 = 1i32;
04454e1e 3372#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3373pub const MDPROPVAL_NL_NUMBEREDLEVELS: i32 = 2i32;
04454e1e 3374#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3375pub const MDPROPVAL_NL_SCHEMAONLY: i32 = 4i32;
04454e1e 3376#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3377pub const MDPROPVAL_NME_ALLDIMENSIONS: i32 = 0i32;
04454e1e 3378#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3379pub const MDPROPVAL_NME_MEASURESONLY: i32 = 1i32;
04454e1e 3380#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3381pub const MDPROPVAL_RR_NORANGEROWSET: i32 = 1i32;
04454e1e 3382#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3383pub const MDPROPVAL_RR_READONLY: i32 = 2i32;
04454e1e 3384#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3385pub const MDPROPVAL_RR_UPDATE: i32 = 4i32;
04454e1e 3386#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3387pub const MDPROPVAL_VISUAL_MODE_DEFAULT: i32 = 0i32;
04454e1e 3388#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3389pub const MDPROPVAL_VISUAL_MODE_VISUAL: i32 = 1i32;
04454e1e 3390#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3391pub const MDPROPVAL_VISUAL_MODE_VISUAL_OFF: i32 = 2i32;
04454e1e 3392#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3393pub const MDPROP_CELL: u32 = 2u32;
04454e1e 3394#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3395pub const MDPROP_MEMBER: u32 = 1u32;
04454e1e 3396#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3397pub const MDTREEOP_ANCESTORS: u32 = 32u32;
04454e1e 3398#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3399pub const MDTREEOP_CHILDREN: u32 = 1u32;
04454e1e 3400#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3401pub const MDTREEOP_DESCENDANTS: u32 = 16u32;
04454e1e 3402#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3403pub const MDTREEOP_PARENT: u32 = 4u32;
04454e1e 3404#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3405pub const MDTREEOP_SELF: u32 = 8u32;
04454e1e 3406#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3407pub const MDTREEOP_SIBLINGS: u32 = 2u32;
04454e1e 3408#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3409pub const MD_DIMTYPE_MEASURE: u32 = 2u32;
04454e1e 3410#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3411pub const MD_DIMTYPE_OTHER: u32 = 3u32;
04454e1e 3412#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3413pub const MD_DIMTYPE_TIME: u32 = 1u32;
04454e1e 3414#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3415pub const MD_DIMTYPE_UNKNOWN: u32 = 0u32;
04454e1e 3416#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3417pub const MD_E_BADCOORDINATE: ::windows_sys::core::HRESULT = -2147217822i32;
04454e1e 3418#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3419pub const MD_E_BADTUPLE: ::windows_sys::core::HRESULT = -2147217823i32;
04454e1e 3420#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3421pub const MD_E_INVALIDAXIS: ::windows_sys::core::HRESULT = -2147217821i32;
04454e1e 3422#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3423pub const MD_E_INVALIDCELLRANGE: ::windows_sys::core::HRESULT = -2147217820i32;
04454e1e 3424#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3425pub const MINFATALERR: u32 = 20u32;
04454e1e 3426#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647
FG
3427pub const MIN_USER_DATATYPE: u32 = 256u32;
3428pub const MSDAINITIALIZE: ::windows_sys::core::GUID = ::windows_sys::core::GUID { data1: 570871216, data2: 6593, data3: 4561, data4: [137, 224, 0, 192, 79, 215, 168, 41] };
3429pub const MSDAORA: ::windows_sys::core::GUID = ::windows_sys::core::GUID { data1: 3905703102, data2: 65023, data3: 4560, data4: [184, 101, 0, 160, 201, 8, 28, 29] };
3430pub const MSDAORA8: ::windows_sys::core::GUID = ::windows_sys::core::GUID { data1: 2131141491, data2: 56682, data3: 17371, data4: [180, 224, 31, 193, 33, 229, 230, 43] };
3431pub const MSDAORA8_ERROR: ::windows_sys::core::GUID = ::windows_sys::core::GUID { data1: 2131141492, data2: 56682, data3: 17371, data4: [180, 224, 31, 193, 33, 229, 230, 43] };
3432pub const MSDAORA_ERROR: ::windows_sys::core::GUID = ::windows_sys::core::GUID { data1: 3905703103, data2: 65023, data3: 4560, data4: [184, 101, 0, 160, 201, 8, 28, 29] };
04454e1e 3433#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3434pub const MSG_CI_CORRUPT_INDEX_COMPONENT: ::windows_sys::core::HRESULT = 1073745962i32;
04454e1e 3435#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3436pub const MSG_CI_CREATE_SEVER_ITEM_FAILED: ::windows_sys::core::HRESULT = -2147479480i32;
04454e1e 3437#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3438pub const MSG_CI_MASTER_MERGE_ABORTED: ::windows_sys::core::HRESULT = 1073745928i32;
04454e1e 3439#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3440pub const MSG_CI_MASTER_MERGE_ABORTED_LOW_DISK: ::windows_sys::core::HRESULT = 1073745987i32;
04454e1e 3441#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3442pub const MSG_CI_MASTER_MERGE_CANT_RESTART: ::windows_sys::core::HRESULT = -1073737718i32;
04454e1e 3443#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3444pub const MSG_CI_MASTER_MERGE_CANT_START: ::windows_sys::core::HRESULT = -1073737719i32;
04454e1e 3445#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3446pub const MSG_CI_MASTER_MERGE_COMPLETED: ::windows_sys::core::HRESULT = 1073745927i32;
04454e1e 3447#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3448pub const MSG_CI_MASTER_MERGE_REASON_EXPECTED_DOCS: ::windows_sys::core::HRESULT = 1073745990i32;
04454e1e 3449#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3450pub const MSG_CI_MASTER_MERGE_REASON_EXTERNAL: ::windows_sys::core::HRESULT = 1073745988i32;
04454e1e 3451#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3452pub const MSG_CI_MASTER_MERGE_REASON_INDEX_LIMIT: ::windows_sys::core::HRESULT = 1073745989i32;
04454e1e 3453#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3454pub const MSG_CI_MASTER_MERGE_REASON_NUMBER: ::windows_sys::core::HRESULT = 1073745991i32;
04454e1e 3455#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3456pub const MSG_CI_MASTER_MERGE_RESTARTED: ::windows_sys::core::HRESULT = 1073745945i32;
04454e1e 3457#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3458pub const MSG_CI_MASTER_MERGE_STARTED: ::windows_sys::core::HRESULT = 1073745926i32;
04454e1e 3459#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3460pub const MSG_TEST_MESSAGE: i32 = 1074008064i32;
04454e1e 3461#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3462pub const MSS_E_APPALREADYEXISTS: i32 = -2147213054i32;
04454e1e 3463#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3464pub const MSS_E_APPNOTFOUND: i32 = -2147213055i32;
04454e1e 3465#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3466pub const MSS_E_CATALOGALREADYEXISTS: i32 = -2147213050i32;
04454e1e 3467#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3468pub const MSS_E_CATALOGNOTFOUND: i32 = -2147213053i32;
04454e1e 3469#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3470pub const MSS_E_CATALOGSTOPPING: i32 = -2147213052i32;
04454e1e 3471#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3472pub const MSS_E_INVALIDAPPNAME: i32 = -2147213056i32;
04454e1e 3473#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3474pub const MSS_E_UNICODEFILEHEADERMISSING: i32 = -2147213051i32;
04454e1e 3475#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3476pub const MS_PERSIST_PROGID: &str = "MSPersist";
04454e1e 3477#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3478pub const NET_E_DISCONNECTED: i32 = -2147220733i32;
04454e1e 3479#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3480pub const NET_E_GENERAL: i32 = -2147220736i32;
04454e1e 3481#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3482pub const NET_E_INVALIDPARAMS: i32 = -2147220728i32;
04454e1e 3483#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3484pub const NET_E_OPERATIONINPROGRESS: i32 = -2147220727i32;
04454e1e 3485#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3486pub const NLADMIN_E_BUILD_CATALOG_NOT_INITIALIZED: i32 = -2147215100i32;
04454e1e 3487#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3488pub const NLADMIN_E_DUPLICATE_CATALOG: i32 = -2147215103i32;
04454e1e 3489#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3490pub const NLADMIN_E_FAILED_TO_GIVE_ACCOUNT_PRIVILEGE: i32 = -2147215101i32;
04454e1e 3491#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3492pub const NLADMIN_S_NOT_ALL_BUILD_CATALOGS_INITIALIZED: i32 = 268546i32;
04454e1e 3493#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3494pub const NOTESPH_E_ATTACHMENTS: i32 = -2147211770i32;
04454e1e 3495#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3496pub const NOTESPH_E_DB_ACCESS_DENIED: i32 = -2147211768i32;
04454e1e 3497#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3498pub const NOTESPH_E_FAIL: i32 = -2147211759i32;
04454e1e 3499#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3500pub const NOTESPH_E_ITEM_NOT_FOUND: i32 = -2147211772i32;
04454e1e 3501#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3502pub const NOTESPH_E_NOTESSETUP_ID_MAPPING_ERROR: i32 = -2147211767i32;
04454e1e 3503#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3504pub const NOTESPH_E_NO_NTID: i32 = -2147211769i32;
04454e1e 3505#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3506pub const NOTESPH_E_SERVER_CONFIG: i32 = -2147211771i32;
04454e1e 3507#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3508pub const NOTESPH_E_UNEXPECTED_STATE: i32 = -2147211775i32;
04454e1e 3509#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3510pub const NOTESPH_E_UNSUPPORTED_CONTENT_FIELD_TYPE: i32 = -2147211773i32;
04454e1e 3511#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3512pub const NOTESPH_S_IGNORE_ID: i32 = 271874i32;
04454e1e 3513#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3514pub const NOTESPH_S_LISTKNOWNFIELDS: i32 = 271888i32;
04454e1e 3515#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647
FG
3516pub const NOT_N_PARSE_ERROR: ::windows_sys::core::HRESULT = 526638i32;
3517pub const NegationCondition: ::windows_sys::core::GUID = ::windows_sys::core::GUID { data1: 2380908364, data2: 24666, data3: 19149, data4: [190, 227, 43, 34, 42, 162, 210, 61] };
04454e1e 3518#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3519pub const OCC_INVALID: u32 = 4294967295u32;
04454e1e 3520#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3521pub const ODBCVER: u32 = 896u32;
04454e1e 3522#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3523pub const ODBC_ADD_DSN: u32 = 1u32;
04454e1e 3524#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3525pub const ODBC_ADD_SYS_DSN: u32 = 4u32;
04454e1e 3526#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3527pub const ODBC_BOTH_DSN: u32 = 0u32;
04454e1e 3528#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3529pub const ODBC_CONFIG_DRIVER: u32 = 3u32;
04454e1e 3530#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3531pub const ODBC_CONFIG_DRIVER_MAX: u32 = 100u32;
04454e1e 3532#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3533pub const ODBC_CONFIG_DSN: u32 = 2u32;
04454e1e 3534#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3535pub const ODBC_CONFIG_SYS_DSN: u32 = 5u32;
04454e1e 3536#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3537pub const ODBC_ERROR_COMPONENT_NOT_FOUND: u32 = 6u32;
04454e1e 3538#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3539pub const ODBC_ERROR_CREATE_DSN_FAILED: u32 = 18u32;
04454e1e 3540#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3541pub const ODBC_ERROR_GENERAL_ERR: u32 = 1u32;
04454e1e 3542#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3543pub const ODBC_ERROR_INVALID_BUFF_LEN: u32 = 2u32;
04454e1e 3544#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3545pub const ODBC_ERROR_INVALID_DSN: u32 = 9u32;
04454e1e 3546#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3547pub const ODBC_ERROR_INVALID_HWND: u32 = 3u32;
04454e1e 3548#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3549pub const ODBC_ERROR_INVALID_INF: u32 = 10u32;
04454e1e 3550#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3551pub const ODBC_ERROR_INVALID_KEYWORD_VALUE: u32 = 8u32;
04454e1e 3552#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3553pub const ODBC_ERROR_INVALID_LOG_FILE: u32 = 15u32;
04454e1e 3554#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3555pub const ODBC_ERROR_INVALID_NAME: u32 = 7u32;
04454e1e 3556#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3557pub const ODBC_ERROR_INVALID_PARAM_SEQUENCE: u32 = 14u32;
04454e1e 3558#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3559pub const ODBC_ERROR_INVALID_PATH: u32 = 12u32;
04454e1e 3560#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3561pub const ODBC_ERROR_INVALID_REQUEST_TYPE: u32 = 5u32;
04454e1e 3562#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3563pub const ODBC_ERROR_INVALID_STR: u32 = 4u32;
04454e1e 3564#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3565pub const ODBC_ERROR_LOAD_LIB_FAILED: u32 = 13u32;
04454e1e 3566#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3567pub const ODBC_ERROR_MAX: u32 = 23u32;
04454e1e 3568#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3569pub const ODBC_ERROR_NOTRANINFO: u32 = 23u32;
04454e1e 3570#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3571pub const ODBC_ERROR_OUTPUT_STRING_TRUNCATED: u32 = 22u32;
04454e1e 3572#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3573pub const ODBC_ERROR_OUT_OF_MEM: u32 = 21u32;
04454e1e 3574#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3575pub const ODBC_ERROR_REMOVE_DSN_FAILED: u32 = 20u32;
04454e1e 3576#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3577pub const ODBC_ERROR_REQUEST_FAILED: u32 = 11u32;
04454e1e 3578#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3579pub const ODBC_ERROR_USAGE_UPDATE_FAILED: u32 = 17u32;
04454e1e 3580#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3581pub const ODBC_ERROR_USER_CANCELED: u32 = 16u32;
04454e1e 3582#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3583pub const ODBC_ERROR_WRITING_SYSINFO_FAILED: u32 = 19u32;
04454e1e 3584#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3585pub const ODBC_INSTALL_COMPLETE: u32 = 2u32;
04454e1e 3586#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3587pub const ODBC_INSTALL_DRIVER: u32 = 1u32;
04454e1e 3588#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3589pub const ODBC_INSTALL_INQUIRY: u32 = 1u32;
04454e1e 3590#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3591pub const ODBC_REMOVE_DEFAULT_DSN: u32 = 7u32;
04454e1e 3592#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3593pub const ODBC_REMOVE_DRIVER: u32 = 2u32;
04454e1e 3594#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3595pub const ODBC_REMOVE_DSN: u32 = 3u32;
04454e1e 3596#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3597pub const ODBC_REMOVE_SYS_DSN: u32 = 6u32;
04454e1e 3598#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3599pub const ODBC_SYSTEM_DSN: u32 = 2u32;
04454e1e 3600#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3601pub const ODBC_USER_DSN: u32 = 1u32;
04454e1e 3602#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3603pub const ODBC_VS_FLAG_RETCODE: i32 = 4i32;
04454e1e 3604#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3605pub const ODBC_VS_FLAG_STOP: i32 = 8i32;
04454e1e 3606#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3607pub const ODBC_VS_FLAG_UNICODE_ARG: i32 = 1i32;
04454e1e 3608#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3609pub const ODBC_VS_FLAG_UNICODE_COR: i32 = 2i32;
04454e1e 3610#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3611pub const OLEDBVER: u32 = 624u32;
04454e1e 3612#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3613pub const OLEDB_BINDER_CUSTOM_ERROR: i32 = -2147212032i32;
04454e1e 3614#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647
FG
3615pub const OSP_IndexLabel: u32 = 0u32;
3616pub const PDPO: ::windows_sys::core::GUID = ::windows_sys::core::GUID { data1: 3434409056, data2: 47580, data3: 4561, data4: [172, 128, 0, 160, 201, 3, 72, 115] };
04454e1e 3617#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3618pub const PEOPLE_IMPORT_E_CANONICALURL_TOOLONG: i32 = -2147205110i32;
04454e1e 3619#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3620pub const PEOPLE_IMPORT_E_DATATYPENOTSUPPORTED: i32 = -2147205115i32;
04454e1e 3621#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3622pub const PEOPLE_IMPORT_E_DBCONNFAIL: i32 = -2147205120i32;
04454e1e 3623#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3624pub const PEOPLE_IMPORT_E_DC_NOT_AVAILABLE: i32 = -2147205108i32;
04454e1e 3625#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3626pub const PEOPLE_IMPORT_E_DIRSYNC_NOTREFRESHED: i32 = -2147205103i32;
04454e1e 3627#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3628pub const PEOPLE_IMPORT_E_DIRSYNC_ZERO_COOKIE: i32 = -2147205112i32;
04454e1e 3629#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3630pub const PEOPLE_IMPORT_E_DOMAIN_DISCOVER_FAILED: i32 = -2147205107i32;
04454e1e 3631#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3632pub const PEOPLE_IMPORT_E_DOMAIN_REMOVED: i32 = -2147205105i32;
04454e1e 3633#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3634pub const PEOPLE_IMPORT_E_ENUM_ACCESSDENIED: i32 = -2147205104i32;
04454e1e 3635#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3636pub const PEOPLE_IMPORT_E_FAILTOGETDSDEF: i32 = -2147205118i32;
04454e1e 3637#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3638pub const PEOPLE_IMPORT_E_FAILTOGETDSMAPPING: i32 = -2147205116i32;
04454e1e 3639#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3640pub const PEOPLE_IMPORT_E_FAILTOGETLCID: i32 = -2147205106i32;
04454e1e 3641#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3642pub const PEOPLE_IMPORT_E_LDAPPATH_TOOLONG: i32 = -2147205111i32;
04454e1e 3643#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3644pub const PEOPLE_IMPORT_E_NOCASTINGSUPPORTED: i32 = -2147205114i32;
04454e1e 3645#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3646pub const PEOPLE_IMPORT_E_UPDATE_DIRSYNC_COOKIE: i32 = -2147205113i32;
04454e1e 3647#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3648pub const PEOPLE_IMPORT_E_USERNAME_NOTRESOLVED: i32 = -2147205109i32;
04454e1e 3649#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3650pub const PEOPLE_IMPORT_NODSDEFINED: i32 = -2147205119i32;
04454e1e 3651#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3652pub const PEOPLE_IMPORT_NOMAPPINGDEFINED: i32 = -2147205117i32;
04454e1e 3653#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3654pub const PRAll: u32 = 256u32;
04454e1e 3655#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3656pub const PRAllBits: u32 = 7u32;
04454e1e 3657#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3658pub const PRAny: u32 = 512u32;
04454e1e 3659#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3660pub const PROGID_MSPersist_Version_W: &str = "MSPersist.1";
04454e1e 3661#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3662pub const PROGID_MSPersist_W: &str = "MSPersist";
04454e1e 3663#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3664pub const PROPID_DBBMK_BOOKMARK: u32 = 2u32;
04454e1e 3665#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3666pub const PROPID_DBBMK_CHAPTER: u32 = 3u32;
04454e1e 3667#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3668pub const PROPID_DBSELF_SELF: u32 = 2u32;
04454e1e 3669#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3670pub const PRRE: u32 = 6u32;
04454e1e 3671#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3672pub const PRSomeBits: u32 = 8u32;
04454e1e 3673#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3674pub const PRTH_E_CANT_TRANSFORM_DENIED_ACE: i32 = -2147216881i32;
04454e1e 3675#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3676pub const PRTH_E_CANT_TRANSFORM_EXTERNAL_ACL: i32 = -2147216882i32;
04454e1e 3677#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3678pub const PRTH_E_DATABASE_OPEN_ERROR: i32 = -2147216875i32;
04454e1e 3679#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3680pub const PRTH_E_HTTPS_CERTIFICATE_ERROR: i32 = -2147216861i32;
04454e1e 3681#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3682pub const PRTH_E_HTTPS_REQUIRE_CERTIFICATE: i32 = -2147216860i32;
04454e1e 3683#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3684pub const PRTH_E_INIT_FAILED: i32 = -2147216872i32;
04454e1e 3685#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3686pub const PRTH_E_INTERNAL_ERROR: i32 = -2147216892i32;
04454e1e 3687#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3688pub const PRTH_E_LOAD_FAILED: i32 = -2147216873i32;
04454e1e 3689#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3690pub const PRTH_E_MIME_EXCLUDED: i32 = -2147216883i32;
04454e1e 3691#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3692pub const PRTH_E_NO_PROPERTY: i32 = -2147216877i32;
04454e1e 3693#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3694pub const PRTH_E_OPLOCK_BROKEN: i32 = -2147216874i32;
04454e1e 3695#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3696pub const PRTH_E_RETRY: i32 = -2147216885i32;
04454e1e 3697#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3698pub const PRTH_E_TRUNCATED: i32 = -2147216870i32;
04454e1e 3699#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3700pub const PRTH_E_VOLUME_MOUNT_POINT: i32 = -2147216871i32;
04454e1e 3701#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3702pub const PRTH_E_WININET: i32 = -2147216886i32;
04454e1e 3703#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3704pub const PRTH_S_MAX_DOWNLOAD: i32 = 266764i32;
04454e1e 3705#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3706pub const PRTH_S_MAX_GROWTH: i32 = 266761i32;
04454e1e 3707#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3708pub const PRTH_S_TRY_IMPERSONATING: i32 = 266789i32;
04454e1e 3709#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3710pub const PRTH_S_USE_ROSEBUD: i32 = 266772i32;
04454e1e 3711#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3712pub const PWPROP_OSPVALUE: u32 = 2u32;
04454e1e 3713#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3714pub const QRY_E_COLUMNNOTSEARCHABLE: i32 = -2147219700i32;
04454e1e 3715#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3716pub const QRY_E_COLUMNNOTSORTABLE: i32 = -2147219701i32;
04454e1e 3717#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3718pub const QRY_E_ENGINEFAILED: i32 = -2147219693i32;
04454e1e 3719#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3720pub const QRY_E_INFIXWILDCARD: i32 = -2147219696i32;
04454e1e 3721#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3722pub const QRY_E_INVALIDCATALOG: i32 = -2147219687i32;
04454e1e 3723#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3724pub const QRY_E_INVALIDCOLUMN: i32 = -2147219699i32;
04454e1e 3725#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3726pub const QRY_E_INVALIDINTERVAL: i32 = -2147219682i32;
04454e1e 3727#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3728pub const QRY_E_INVALIDPATH: i32 = -2147219684i32;
04454e1e 3729#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3730pub const QRY_E_INVALIDSCOPES: i32 = -2147219688i32;
04454e1e 3731#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3732pub const QRY_E_LMNOTINITIALIZED: i32 = -2147219683i32;
04454e1e 3733#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3734pub const QRY_E_NOCOLUMNS: i32 = -2147219689i32;
04454e1e 3735#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3736pub const QRY_E_NODATASOURCES: i32 = -2147219703i32;
04454e1e 3737#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3738pub const QRY_E_NOLOGMANAGER: i32 = -2147219681i32;
04454e1e 3739#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3740pub const QRY_E_NULLQUERY: i32 = -2147219691i32;
04454e1e 3741#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3742pub const QRY_E_PREFIXWILDCARD: i32 = -2147219697i32;
04454e1e 3743#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3744pub const QRY_E_QUERYCORRUPT: i32 = -2147219698i32;
04454e1e 3745#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3746pub const QRY_E_QUERYSYNTAX: i32 = -2147219711i32;
04454e1e 3747#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3748pub const QRY_E_SCOPECARDINALIDY: i32 = -2147219686i32;
04454e1e 3749#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3750pub const QRY_E_SEARCHTOOBIG: i32 = -2147219692i32;
04454e1e 3751#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3752pub const QRY_E_STARTHITTOBIG: i32 = -2147219705i32;
04454e1e 3753#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3754pub const QRY_E_TIMEOUT: i32 = -2147219702i32;
04454e1e 3755#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3756pub const QRY_E_TOOMANYCOLUMNS: i32 = -2147219707i32;
04454e1e 3757#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3758pub const QRY_E_TOOMANYDATABASES: i32 = -2147219706i32;
04454e1e 3759#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3760pub const QRY_E_TOOMANYQUERYTERMS: i32 = -2147219704i32;
04454e1e 3761#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3762pub const QRY_E_TYPEMISMATCH: i32 = -2147219710i32;
04454e1e 3763#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3764pub const QRY_E_UNEXPECTED: i32 = -2147219685i32;
04454e1e 3765#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3766pub const QRY_E_UNHANDLEDTYPE: i32 = -2147219709i32;
04454e1e 3767#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3768pub const QRY_E_WILDCARDPREFIXLENGTH: i32 = -2147219695i32;
04454e1e 3769#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3770pub const QRY_S_INEXACTRESULTS: i32 = 263958i32;
04454e1e 3771#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3772pub const QRY_S_NOROWSFOUND: i32 = 263940i32;
04454e1e 3773#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3774pub const QRY_S_TERMIGNORED: i32 = 263954i32;
04454e1e 3775#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3776pub const QUERY_E_AGGREGATE_NOT_SUPPORTED: ::windows_sys::core::HRESULT = -2147215847i32;
04454e1e 3777#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3778pub const QUERY_E_ALLNOISE_AND_NO_RELDOC: ::windows_sys::core::HRESULT = -2147215859i32;
04454e1e 3779#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3780pub const QUERY_E_ALLNOISE_AND_NO_RELPROP: ::windows_sys::core::HRESULT = -2147215857i32;
04454e1e 3781#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3782pub const QUERY_E_DUPLICATE_RANGE_NAME: ::windows_sys::core::HRESULT = -2147215845i32;
04454e1e 3783#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3784pub const QUERY_E_INCORRECT_VERSION: ::windows_sys::core::HRESULT = -2147215852i32;
04454e1e 3785#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3786pub const QUERY_E_INVALIDCOALESCE: ::windows_sys::core::HRESULT = -2147215849i32;
04454e1e 3787#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3788pub const QUERY_E_INVALIDSCOPE_COALESCE: ::windows_sys::core::HRESULT = -2147215851i32;
04454e1e 3789#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3790pub const QUERY_E_INVALIDSORT_COALESCE: ::windows_sys::core::HRESULT = -2147215850i32;
04454e1e 3791#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3792pub const QUERY_E_INVALID_DOCUMENT_IDENTIFIER: ::windows_sys::core::HRESULT = -2147215853i32;
04454e1e 3793#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3794pub const QUERY_E_NO_RELDOC: ::windows_sys::core::HRESULT = -2147215858i32;
04454e1e 3795#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3796pub const QUERY_E_NO_RELPROP: ::windows_sys::core::HRESULT = -2147215856i32;
04454e1e 3797#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3798pub const QUERY_E_RELDOC_SYNTAX_NOT_SUPPORTED: ::windows_sys::core::HRESULT = -2147215854i32;
04454e1e 3799#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3800pub const QUERY_E_REPEATED_RELDOC: ::windows_sys::core::HRESULT = -2147215855i32;
04454e1e 3801#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3802pub const QUERY_E_TOP_LEVEL_IN_GROUP: ::windows_sys::core::HRESULT = -2147215846i32;
04454e1e 3803#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3804pub const QUERY_E_UPGRADEINPROGRESS: ::windows_sys::core::HRESULT = -2147215848i32;
04454e1e 3805#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3806pub const QUERY_SORTDEFAULT: u32 = 4u32;
04454e1e 3807#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3808pub const QUERY_SORTXASCEND: u32 = 2u32;
04454e1e 3809#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3810pub const QUERY_SORTXDESCEND: u32 = 3u32;
04454e1e 3811#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647
FG
3812pub const QUERY_VALIDBITS: u32 = 3u32;
3813pub const QueryParser: ::windows_sys::core::GUID = ::windows_sys::core::GUID { data1: 3073347544, data2: 4011, data3: 19929, data4: [189, 191, 36, 90, 108, 225, 72, 91] };
3814pub const QueryParserManager: ::windows_sys::core::GUID = ::windows_sys::core::GUID { data1: 1351136154, data2: 10676, data3: 19869, data4: [130, 69, 78, 226, 137, 34, 47, 102] };
04454e1e 3815#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3816pub const REXSPH_E_DUPLICATE_PROPERTY: i32 = -2147207927i32;
04454e1e 3817#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3818pub const REXSPH_E_INVALID_CALL: i32 = -2147207936i32;
04454e1e 3819#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3820pub const REXSPH_E_MULTIPLE_REDIRECT: i32 = -2147207933i32;
04454e1e 3821#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3822pub const REXSPH_E_NO_PROPERTY_ON_ROW: i32 = -2147207932i32;
04454e1e 3823#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3824pub const REXSPH_E_REDIRECT_ON_SECURITY_UPDATE: i32 = -2147207934i32;
04454e1e 3825#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3826pub const REXSPH_E_TYPE_MISMATCH_ON_READ: i32 = -2147207931i32;
04454e1e 3827#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3828pub const REXSPH_E_UNEXPECTED_DATA_STATUS: i32 = -2147207930i32;
04454e1e 3829#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3830pub const REXSPH_E_UNEXPECTED_FILTER_STATE: i32 = -2147207928i32;
04454e1e 3831#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3832pub const REXSPH_E_UNKNOWN_DATA_TYPE: i32 = -2147207929i32;
04454e1e 3833#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3834pub const REXSPH_S_REDIRECTED: i32 = 275713i32;
04454e1e 3835#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3836pub const RS_COMPLETED: u32 = 2147483648u32;
04454e1e 3837#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3838pub const RS_MAYBOTHERUSER: u32 = 131072u32;
04454e1e 3839#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3840pub const RS_READY: u32 = 1u32;
04454e1e 3841#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3842pub const RS_SUSPENDED: u32 = 2u32;
04454e1e 3843#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3844pub const RS_SUSPENDONIDLE: u32 = 65536u32;
04454e1e 3845#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3846pub const RS_UPDATING: u32 = 4u32;
04454e1e 3847#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3848pub const RTAnd: u32 = 1u32;
04454e1e 3849#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3850pub const RTContent: u32 = 4u32;
04454e1e 3851#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3852pub const RTNatLanguage: u32 = 8u32;
04454e1e 3853#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3854pub const RTNone: u32 = 0u32;
04454e1e 3855#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3856pub const RTNot: u32 = 3u32;
04454e1e 3857#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3858pub const RTOr: u32 = 2u32;
04454e1e 3859#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3860pub const RTProperty: u32 = 5u32;
04454e1e 3861#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3862pub const RTProximity: u32 = 6u32;
04454e1e 3863#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647
FG
3864pub const RTVector: u32 = 7u32;
3865pub const RootBinder: ::windows_sys::core::GUID = ::windows_sys::core::GUID { data1: 4279572514, data2: 45247, data3: 4561, data4: [168, 13, 0, 0, 0, 0, 0, 0] };
04454e1e 3866#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3867pub const SCHEMA_E_ADDSTOPWORDS: i32 = -2147218420i32;
04454e1e 3868#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3869pub const SCHEMA_E_BADATTRIBUTE: i32 = -2147218412i32;
04454e1e 3870#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3871pub const SCHEMA_E_BADCOLUMNNAME: i32 = -2147218414i32;
04454e1e 3872#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3873pub const SCHEMA_E_BADFILENAME: i32 = -2147218411i32;
04454e1e 3874#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3875pub const SCHEMA_E_BADPROPPID: i32 = -2147218413i32;
04454e1e 3876#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3877pub const SCHEMA_E_BADPROPSPEC: i32 = -2147218417i32;
04454e1e 3878#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3879pub const SCHEMA_E_CANNOTCREATEFILE: i32 = -2147218426i32;
04454e1e 3880#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3881pub const SCHEMA_E_CANNOTCREATENOISEWORDFILE: i32 = -2147218421i32;
04454e1e 3882#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3883pub const SCHEMA_E_CANNOTWRITEFILE: i32 = -2147218425i32;
04454e1e 3884#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3885pub const SCHEMA_E_DUPLICATENOISE: i32 = -2147218409i32;
04454e1e 3886#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3887pub const SCHEMA_E_EMPTYFILE: i32 = -2147218424i32;
04454e1e 3888#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3889pub const SCHEMA_E_FILECHANGED: i32 = -2147218415i32;
04454e1e 3890#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3891pub const SCHEMA_E_FILENOTFOUND: i32 = -2147218430i32;
04454e1e 3892#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3893pub const SCHEMA_E_INVALIDDATATYPE: i32 = -2147218422i32;
04454e1e 3894#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3895pub const SCHEMA_E_INVALIDFILETYPE: i32 = -2147218423i32;
04454e1e 3896#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3897pub const SCHEMA_E_INVALIDVALUE: i32 = -2147218418i32;
04454e1e 3898#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3899pub const SCHEMA_E_LOAD_SPECIAL: i32 = -2147218431i32;
04454e1e 3900#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3901pub const SCHEMA_E_NAMEEXISTS: i32 = -2147218419i32;
04454e1e 3902#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3903pub const SCHEMA_E_NESTEDTAG: i32 = -2147218429i32;
04454e1e 3904#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3905pub const SCHEMA_E_NOMORECOLUMNS: i32 = -2147218416i32;
04454e1e 3906#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3907pub const SCHEMA_E_PROPEXISTS: i32 = -2147218410i32;
04454e1e 3908#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3909pub const SCHEMA_E_UNEXPECTEDTAG: i32 = -2147218428i32;
04454e1e 3910#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3911pub const SCHEMA_E_VERSIONMISMATCH: i32 = -2147218427i32;
04454e1e 3912#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3913pub const SCRIPTPI_E_ALREADY_COMPLETED: i32 = -2147213307i32;
04454e1e 3914#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3915pub const SCRIPTPI_E_CANNOT_ALTER_CHUNK: i32 = -2147213308i32;
04454e1e 3916#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3917pub const SCRIPTPI_E_CHUNK_NOT_TEXT: i32 = -2147213312i32;
04454e1e 3918#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3919pub const SCRIPTPI_E_CHUNK_NOT_VALUE: i32 = -2147213309i32;
04454e1e 3920#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3921pub const SCRIPTPI_E_PID_NOT_NAME: i32 = -2147213311i32;
04454e1e 3922#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3923pub const SCRIPTPI_E_PID_NOT_NUMERIC: i32 = -2147213310i32;
04454e1e 3924#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3925pub const SEC_E_ACCESSDENIED: i32 = -2147216129i32;
04454e1e 3926#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3927pub const SEC_E_BADTRUSTEEID: ::windows_sys::core::HRESULT = -2147217814i32;
04454e1e 3928#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3929pub const SEC_E_INITFAILED: i32 = -2147216383i32;
04454e1e 3930#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3931pub const SEC_E_INVALIDACCESSENTRY: ::windows_sys::core::HRESULT = -2147217807i32;
04454e1e 3932#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3933pub const SEC_E_INVALIDACCESSENTRYLIST: ::windows_sys::core::HRESULT = -2147217809i32;
04454e1e 3934#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3935pub const SEC_E_INVALIDCONTEXT: i32 = -2147216381i32;
04454e1e 3936#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3937pub const SEC_E_INVALIDOBJECT: ::windows_sys::core::HRESULT = -2147217811i32;
04454e1e 3938#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3939pub const SEC_E_INVALIDOWNER: ::windows_sys::core::HRESULT = -2147217808i32;
04454e1e 3940#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3941pub const SEC_E_NOMEMBERSHIPSUPPORT: ::windows_sys::core::HRESULT = -2147217812i32;
04454e1e 3942#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3943pub const SEC_E_NOOWNER: ::windows_sys::core::HRESULT = -2147217810i32;
04454e1e 3944#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3945pub const SEC_E_NOTINITIALIZED: i32 = -2147216382i32;
04454e1e 3946#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3947pub const SEC_E_NOTRUSTEEID: ::windows_sys::core::HRESULT = -2147217813i32;
04454e1e 3948#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3949pub const SEC_E_PERMISSIONDENIED: i32 = -2147217911i32;
04454e1e 3950#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3951pub const SI_TEMPORARY: u32 = 2147483648u32;
04454e1e 3952#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3953pub const SPS_WS_ERROR: i32 = -2147211753i32;
04454e1e 3954#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3955pub const SQLAOPANY: u32 = 83u32;
04454e1e 3956#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3957pub const SQLAOPAVG: u32 = 79u32;
04454e1e 3958#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3959pub const SQLAOPCNT: u32 = 75u32;
04454e1e 3960#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3961pub const SQLAOPMAX: u32 = 82u32;
04454e1e 3962#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3963pub const SQLAOPMIN: u32 = 81u32;
04454e1e 3964#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3965pub const SQLAOPNOOP: u32 = 86u32;
04454e1e 3966#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3967pub const SQLAOPSTDEV: u32 = 48u32;
04454e1e 3968#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3969pub const SQLAOPSTDEVP: u32 = 49u32;
04454e1e 3970#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3971pub const SQLAOPSUM: u32 = 77u32;
04454e1e 3972#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3973pub const SQLAOPVAR: u32 = 50u32;
04454e1e 3974#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3975pub const SQLAOPVARP: u32 = 51u32;
04454e1e 3976#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3977pub const SQLBIGBINARY: u32 = 173u32;
04454e1e 3978#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3979pub const SQLBIGCHAR: u32 = 175u32;
04454e1e 3980#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3981pub const SQLBIGVARBINARY: u32 = 165u32;
04454e1e 3982#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3983pub const SQLBIGVARCHAR: u32 = 167u32;
04454e1e 3984#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3985pub const SQLBINARY: u32 = 45u32;
04454e1e 3986#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3987pub const SQLBIT: u32 = 50u32;
04454e1e 3988#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3989pub const SQLBITN: u32 = 104u32;
04454e1e 3990#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3991pub const SQLCHARACTER: u32 = 47u32;
04454e1e 3992#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3993pub const SQLDATETIM4: u32 = 58u32;
04454e1e 3994#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3995pub const SQLDATETIME: u32 = 61u32;
04454e1e 3996#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3997pub const SQLDATETIMN: u32 = 111u32;
04454e1e 3998#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 3999pub const SQLDECIMAL: u32 = 106u32;
04454e1e 4000#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4001pub const SQLDECIMALN: u32 = 106u32;
04454e1e 4002#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4003pub const SQLFLT4: u32 = 59u32;
04454e1e 4004#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4005pub const SQLFLT8: u32 = 62u32;
04454e1e 4006#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4007pub const SQLFLTN: u32 = 109u32;
04454e1e 4008#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4009pub const SQLIMAGE: u32 = 34u32;
04454e1e 4010#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4011pub const SQLINT1: u32 = 48u32;
04454e1e 4012#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4013pub const SQLINT2: u32 = 52u32;
04454e1e 4014#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4015pub const SQLINT4: u32 = 56u32;
04454e1e 4016#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4017pub const SQLINT8: u32 = 127u32;
04454e1e 4018#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4019pub const SQLINTN: u32 = 38u32;
04454e1e 4020#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4021pub const SQLMONEY: u32 = 60u32;
04454e1e 4022#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4023pub const SQLMONEY4: u32 = 122u32;
04454e1e 4024#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4025pub const SQLMONEYN: u32 = 110u32;
04454e1e 4026#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4027pub const SQLNCHAR: u32 = 239u32;
04454e1e 4028#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4029pub const SQLNTEXT: u32 = 99u32;
04454e1e 4030#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4031pub const SQLNUMERIC: u32 = 108u32;
04454e1e 4032#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4033pub const SQLNUMERICN: u32 = 108u32;
04454e1e 4034#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4035pub const SQLNVARCHAR: u32 = 231u32;
04454e1e 4036#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4037pub const SQLTEXT: u32 = 35u32;
04454e1e 4038#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4039pub const SQLUNIQUEID: u32 = 36u32;
04454e1e 4040#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4041pub const SQLVARBINARY: u32 = 37u32;
04454e1e 4042#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4043pub const SQLVARCHAR: u32 = 39u32;
04454e1e 4044#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4045pub const SQLVARIANT: u32 = 98u32;
04454e1e 4046#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4047pub const SQL_AA_FALSE: i32 = 0i32;
04454e1e 4048#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4049pub const SQL_AA_TRUE: i32 = 1i32;
04454e1e 4050#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4051pub const SQL_ACCESSIBLE_PROCEDURES: u32 = 20u32;
04454e1e 4052#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4053pub const SQL_ACCESSIBLE_TABLES: u32 = 19u32;
04454e1e 4054#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4055pub const SQL_ACCESS_MODE: u32 = 101u32;
04454e1e 4056#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4057pub const SQL_ACTIVE_CONNECTIONS: u32 = 0u32;
04454e1e 4058#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4059pub const SQL_ACTIVE_ENVIRONMENTS: u32 = 116u32;
04454e1e 4060#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4061pub const SQL_ACTIVE_STATEMENTS: u32 = 1u32;
04454e1e 4062#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4063pub const SQL_ADD: u32 = 4u32;
04454e1e 4064#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4065pub const SQL_AD_ADD_CONSTRAINT_DEFERRABLE: i32 = 128i32;
04454e1e 4066#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4067pub const SQL_AD_ADD_CONSTRAINT_INITIALLY_DEFERRED: i32 = 32i32;
04454e1e 4068#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4069pub const SQL_AD_ADD_CONSTRAINT_INITIALLY_IMMEDIATE: i32 = 64i32;
04454e1e 4070#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4071pub const SQL_AD_ADD_CONSTRAINT_NON_DEFERRABLE: i32 = 256i32;
04454e1e 4072#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4073pub const SQL_AD_ADD_DOMAIN_CONSTRAINT: i32 = 2i32;
04454e1e 4074#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4075pub const SQL_AD_ADD_DOMAIN_DEFAULT: i32 = 8i32;
04454e1e 4076#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4077pub const SQL_AD_CONSTRAINT_NAME_DEFINITION: i32 = 1i32;
04454e1e 4078#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4079pub const SQL_AD_DEFAULT: i32 = 1i32;
04454e1e 4080#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4081pub const SQL_AD_DROP_DOMAIN_CONSTRAINT: i32 = 4i32;
04454e1e 4082#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4083pub const SQL_AD_DROP_DOMAIN_DEFAULT: i32 = 16i32;
04454e1e 4084#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4085pub const SQL_AD_OFF: i32 = 0i32;
04454e1e 4086#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4087pub const SQL_AD_ON: i32 = 1i32;
04454e1e 4088#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4089pub const SQL_AF_ALL: i32 = 64i32;
04454e1e 4090#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4091pub const SQL_AF_AVG: i32 = 1i32;
04454e1e 4092#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4093pub const SQL_AF_COUNT: i32 = 2i32;
04454e1e 4094#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4095pub const SQL_AF_DISTINCT: i32 = 32i32;
04454e1e 4096#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4097pub const SQL_AF_MAX: i32 = 4i32;
04454e1e 4098#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4099pub const SQL_AF_MIN: i32 = 8i32;
04454e1e 4100#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4101pub const SQL_AF_SUM: i32 = 16i32;
04454e1e 4102#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4103pub const SQL_AGGREGATE_FUNCTIONS: u32 = 169u32;
04454e1e 4104#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4105pub const SQL_ALL_CATALOGS: &str = "%";
04454e1e 4106#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4107pub const SQL_ALL_EXCEPT_LIKE: u32 = 2u32;
04454e1e 4108#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4109pub const SQL_ALL_SCHEMAS: &str = "%";
04454e1e 4110#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4111pub const SQL_ALL_TABLE_TYPES: &str = "%";
04454e1e 4112#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4113pub const SQL_ALL_TYPES: u32 = 0u32;
04454e1e 4114#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4115pub const SQL_ALTER_DOMAIN: u32 = 117u32;
04454e1e 4116#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4117pub const SQL_ALTER_TABLE: u32 = 86u32;
04454e1e 4118#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4119pub const SQL_AM_CONNECTION: u32 = 1u32;
04454e1e 4120#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4121pub const SQL_AM_NONE: u32 = 0u32;
04454e1e 4122#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4123pub const SQL_AM_STATEMENT: u32 = 2u32;
04454e1e 4124#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4125pub const SQL_AO_DEFAULT: i32 = 0i32;
04454e1e 4126#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4127pub const SQL_AO_OFF: i32 = 0i32;
04454e1e 4128#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4129pub const SQL_AO_ON: i32 = 1i32;
04454e1e 4130#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4131pub const SQL_APD_TYPE: i32 = -100i32;
04454e1e 4132#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4133pub const SQL_API_ALL_FUNCTIONS: u32 = 0u32;
04454e1e 4134#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4135pub const SQL_API_LOADBYORDINAL: u32 = 199u32;
04454e1e 4136#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4137pub const SQL_API_ODBC3_ALL_FUNCTIONS: u32 = 999u32;
04454e1e 4138#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4139pub const SQL_API_ODBC3_ALL_FUNCTIONS_SIZE: u32 = 250u32;
04454e1e 4140#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4141pub const SQL_API_SQLALLOCCONNECT: u32 = 1u32;
04454e1e 4142#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4143pub const SQL_API_SQLALLOCENV: u32 = 2u32;
04454e1e 4144#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4145pub const SQL_API_SQLALLOCHANDLE: u32 = 1001u32;
04454e1e 4146#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4147pub const SQL_API_SQLALLOCHANDLESTD: u32 = 73u32;
04454e1e 4148#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4149pub const SQL_API_SQLALLOCSTMT: u32 = 3u32;
04454e1e 4150#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4151pub const SQL_API_SQLBINDCOL: u32 = 4u32;
04454e1e 4152#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4153pub const SQL_API_SQLBINDPARAM: u32 = 1002u32;
04454e1e 4154#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4155pub const SQL_API_SQLBINDPARAMETER: u32 = 72u32;
04454e1e 4156#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4157pub const SQL_API_SQLBROWSECONNECT: u32 = 55u32;
04454e1e 4158#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4159pub const SQL_API_SQLBULKOPERATIONS: u32 = 24u32;
04454e1e 4160#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4161pub const SQL_API_SQLCANCEL: u32 = 5u32;
04454e1e 4162#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4163pub const SQL_API_SQLCANCELHANDLE: u32 = 1550u32;
04454e1e 4164#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4165pub const SQL_API_SQLCLOSECURSOR: u32 = 1003u32;
04454e1e 4166#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4167pub const SQL_API_SQLCOLATTRIBUTE: u32 = 6u32;
04454e1e 4168#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4169pub const SQL_API_SQLCOLATTRIBUTES: u32 = 6u32;
04454e1e 4170#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4171pub const SQL_API_SQLCOLUMNPRIVILEGES: u32 = 56u32;
04454e1e 4172#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4173pub const SQL_API_SQLCOLUMNS: u32 = 40u32;
04454e1e 4174#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4175pub const SQL_API_SQLCOMPLETEASYNC: u32 = 1551u32;
04454e1e 4176#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4177pub const SQL_API_SQLCONNECT: u32 = 7u32;
04454e1e 4178#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4179pub const SQL_API_SQLCOPYDESC: u32 = 1004u32;
04454e1e 4180#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4181pub const SQL_API_SQLDATASOURCES: u32 = 57u32;
04454e1e 4182#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4183pub const SQL_API_SQLDESCRIBECOL: u32 = 8u32;
04454e1e 4184#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4185pub const SQL_API_SQLDESCRIBEPARAM: u32 = 58u32;
04454e1e 4186#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4187pub const SQL_API_SQLDISCONNECT: u32 = 9u32;
04454e1e 4188#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4189pub const SQL_API_SQLDRIVERCONNECT: u32 = 41u32;
04454e1e 4190#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4191pub const SQL_API_SQLDRIVERS: u32 = 71u32;
04454e1e 4192#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4193pub const SQL_API_SQLENDTRAN: u32 = 1005u32;
04454e1e 4194#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4195pub const SQL_API_SQLERROR: u32 = 10u32;
04454e1e 4196#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4197pub const SQL_API_SQLEXECDIRECT: u32 = 11u32;
04454e1e 4198#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4199pub const SQL_API_SQLEXECUTE: u32 = 12u32;
04454e1e 4200#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4201pub const SQL_API_SQLEXTENDEDFETCH: u32 = 59u32;
04454e1e 4202#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4203pub const SQL_API_SQLFETCH: u32 = 13u32;
04454e1e 4204#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4205pub const SQL_API_SQLFETCHSCROLL: u32 = 1021u32;
04454e1e 4206#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4207pub const SQL_API_SQLFOREIGNKEYS: u32 = 60u32;
04454e1e 4208#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4209pub const SQL_API_SQLFREECONNECT: u32 = 14u32;
04454e1e 4210#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4211pub const SQL_API_SQLFREEENV: u32 = 15u32;
04454e1e 4212#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4213pub const SQL_API_SQLFREEHANDLE: u32 = 1006u32;
04454e1e 4214#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4215pub const SQL_API_SQLFREESTMT: u32 = 16u32;
04454e1e 4216#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4217pub const SQL_API_SQLGETCONNECTATTR: u32 = 1007u32;
04454e1e 4218#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4219pub const SQL_API_SQLGETCONNECTOPTION: u32 = 42u32;
04454e1e 4220#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4221pub const SQL_API_SQLGETCURSORNAME: u32 = 17u32;
04454e1e 4222#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4223pub const SQL_API_SQLGETDATA: u32 = 43u32;
04454e1e 4224#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4225pub const SQL_API_SQLGETDESCFIELD: u32 = 1008u32;
04454e1e 4226#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4227pub const SQL_API_SQLGETDESCREC: u32 = 1009u32;
04454e1e 4228#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4229pub const SQL_API_SQLGETDIAGFIELD: u32 = 1010u32;
04454e1e 4230#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4231pub const SQL_API_SQLGETDIAGREC: u32 = 1011u32;
04454e1e 4232#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4233pub const SQL_API_SQLGETENVATTR: u32 = 1012u32;
04454e1e 4234#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4235pub const SQL_API_SQLGETFUNCTIONS: u32 = 44u32;
04454e1e 4236#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4237pub const SQL_API_SQLGETINFO: u32 = 45u32;
04454e1e 4238#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4239pub const SQL_API_SQLGETSTMTATTR: u32 = 1014u32;
04454e1e 4240#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4241pub const SQL_API_SQLGETSTMTOPTION: u32 = 46u32;
04454e1e 4242#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4243pub const SQL_API_SQLGETTYPEINFO: u32 = 47u32;
04454e1e 4244#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4245pub const SQL_API_SQLMORERESULTS: u32 = 61u32;
04454e1e 4246#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4247pub const SQL_API_SQLNATIVESQL: u32 = 62u32;
04454e1e 4248#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4249pub const SQL_API_SQLNUMPARAMS: u32 = 63u32;
04454e1e 4250#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4251pub const SQL_API_SQLNUMRESULTCOLS: u32 = 18u32;
04454e1e 4252#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4253pub const SQL_API_SQLPARAMDATA: u32 = 48u32;
04454e1e 4254#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4255pub const SQL_API_SQLPARAMOPTIONS: u32 = 64u32;
04454e1e 4256#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4257pub const SQL_API_SQLPREPARE: u32 = 19u32;
04454e1e 4258#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4259pub const SQL_API_SQLPRIMARYKEYS: u32 = 65u32;
04454e1e 4260#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4261pub const SQL_API_SQLPRIVATEDRIVERS: u32 = 79u32;
04454e1e 4262#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4263pub const SQL_API_SQLPROCEDURECOLUMNS: u32 = 66u32;
04454e1e 4264#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4265pub const SQL_API_SQLPROCEDURES: u32 = 67u32;
04454e1e 4266#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4267pub const SQL_API_SQLPUTDATA: u32 = 49u32;
04454e1e 4268#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4269pub const SQL_API_SQLROWCOUNT: u32 = 20u32;
04454e1e 4270#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4271pub const SQL_API_SQLSETCONNECTATTR: u32 = 1016u32;
04454e1e 4272#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4273pub const SQL_API_SQLSETCONNECTOPTION: u32 = 50u32;
04454e1e 4274#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4275pub const SQL_API_SQLSETCURSORNAME: u32 = 21u32;
04454e1e 4276#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4277pub const SQL_API_SQLSETDESCFIELD: u32 = 1017u32;
04454e1e 4278#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4279pub const SQL_API_SQLSETDESCREC: u32 = 1018u32;
04454e1e 4280#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4281pub const SQL_API_SQLSETENVATTR: u32 = 1019u32;
04454e1e 4282#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4283pub const SQL_API_SQLSETPARAM: u32 = 22u32;
04454e1e 4284#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4285pub const SQL_API_SQLSETPOS: u32 = 68u32;
04454e1e 4286#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4287pub const SQL_API_SQLSETSCROLLOPTIONS: u32 = 69u32;
04454e1e 4288#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4289pub const SQL_API_SQLSETSTMTATTR: u32 = 1020u32;
04454e1e 4290#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4291pub const SQL_API_SQLSETSTMTOPTION: u32 = 51u32;
04454e1e 4292#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4293pub const SQL_API_SQLSPECIALCOLUMNS: u32 = 52u32;
04454e1e 4294#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4295pub const SQL_API_SQLSTATISTICS: u32 = 53u32;
04454e1e 4296#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4297pub const SQL_API_SQLTABLEPRIVILEGES: u32 = 70u32;
04454e1e 4298#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4299pub const SQL_API_SQLTABLES: u32 = 54u32;
04454e1e 4300#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4301pub const SQL_API_SQLTRANSACT: u32 = 23u32;
04454e1e 4302#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4303pub const SQL_ARD_TYPE: i32 = -99i32;
04454e1e 4304#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4305pub const SQL_ASYNC_DBC_CAPABLE: i32 = 1i32;
04454e1e 4306#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4307pub const SQL_ASYNC_DBC_ENABLE_DEFAULT: u32 = 0u32;
04454e1e 4308#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4309pub const SQL_ASYNC_DBC_ENABLE_OFF: u32 = 0u32;
04454e1e 4310#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4311pub const SQL_ASYNC_DBC_ENABLE_ON: u32 = 1u32;
04454e1e 4312#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4313pub const SQL_ASYNC_DBC_FUNCTIONS: u32 = 10023u32;
04454e1e 4314#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4315pub const SQL_ASYNC_DBC_NOT_CAPABLE: i32 = 0i32;
04454e1e 4316#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4317pub const SQL_ASYNC_ENABLE: u32 = 4u32;
04454e1e 4318#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4319pub const SQL_ASYNC_ENABLE_DEFAULT: u32 = 0u32;
04454e1e 4320#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4321pub const SQL_ASYNC_ENABLE_OFF: u32 = 0u32;
04454e1e 4322#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4323pub const SQL_ASYNC_ENABLE_ON: u32 = 1u32;
04454e1e 4324#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4325pub const SQL_ASYNC_MODE: u32 = 10021u32;
04454e1e 4326#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4327pub const SQL_ASYNC_NOTIFICATION: u32 = 10025u32;
04454e1e 4328#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4329pub const SQL_ASYNC_NOTIFICATION_CAPABLE: i32 = 1i32;
04454e1e 4330#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4331pub const SQL_ASYNC_NOTIFICATION_NOT_CAPABLE: i32 = 0i32;
04454e1e 4332#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4333pub const SQL_ATTR_ACCESS_MODE: u32 = 101u32;
04454e1e 4334#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4335pub const SQL_ATTR_ANSI_APP: u32 = 115u32;
04454e1e 4336#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4337pub const SQL_ATTR_APPLICATION_KEY: u32 = 203u32;
04454e1e 4338#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4339pub const SQL_ATTR_APP_PARAM_DESC: u32 = 10011u32;
04454e1e 4340#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4341pub const SQL_ATTR_APP_ROW_DESC: u32 = 10010u32;
04454e1e 4342#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4343pub const SQL_ATTR_ASYNC_DBC_EVENT: u32 = 119u32;
04454e1e 4344#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4345pub const SQL_ATTR_ASYNC_DBC_FUNCTIONS_ENABLE: u32 = 117u32;
04454e1e 4346#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4347pub const SQL_ATTR_ASYNC_DBC_NOTIFICATION_CALLBACK: u32 = 120u32;
04454e1e 4348#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4349pub const SQL_ATTR_ASYNC_DBC_NOTIFICATION_CONTEXT: u32 = 121u32;
04454e1e 4350#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4351pub const SQL_ATTR_ASYNC_ENABLE: u32 = 4u32;
04454e1e 4352#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4353pub const SQL_ATTR_ASYNC_STMT_EVENT: u32 = 29u32;
04454e1e 4354#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4355pub const SQL_ATTR_ASYNC_STMT_NOTIFICATION_CALLBACK: u32 = 30u32;
04454e1e 4356#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4357pub const SQL_ATTR_ASYNC_STMT_NOTIFICATION_CONTEXT: u32 = 31u32;
04454e1e 4358#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4359pub const SQL_ATTR_AUTOCOMMIT: u32 = 102u32;
04454e1e 4360#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4361pub const SQL_ATTR_AUTO_IPD: u32 = 10001u32;
04454e1e 4362#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4363pub const SQL_ATTR_CONCURRENCY: u32 = 7u32;
04454e1e 4364#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4365pub const SQL_ATTR_CONNECTION_DEAD: u32 = 1209u32;
04454e1e 4366#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4367pub const SQL_ATTR_CONNECTION_POOLING: u32 = 201u32;
04454e1e 4368#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4369pub const SQL_ATTR_CONNECTION_TIMEOUT: u32 = 113u32;
04454e1e 4370#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4371pub const SQL_ATTR_CP_MATCH: u32 = 202u32;
04454e1e 4372#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4373pub const SQL_ATTR_CURRENT_CATALOG: u32 = 109u32;
04454e1e 4374#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4375pub const SQL_ATTR_CURSOR_SCROLLABLE: i32 = -1i32;
04454e1e 4376#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4377pub const SQL_ATTR_CURSOR_SENSITIVITY: i32 = -2i32;
04454e1e 4378#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4379pub const SQL_ATTR_CURSOR_TYPE: u32 = 6u32;
04454e1e 4380#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4381pub const SQL_ATTR_DBC_INFO_TOKEN: u32 = 118u32;
04454e1e 4382#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4383pub const SQL_ATTR_DISCONNECT_BEHAVIOR: u32 = 114u32;
04454e1e 4384#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4385pub const SQL_ATTR_ENABLE_AUTO_IPD: u32 = 15u32;
04454e1e 4386#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4387pub const SQL_ATTR_ENLIST_IN_DTC: u32 = 1207u32;
04454e1e 4388#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4389pub const SQL_ATTR_ENLIST_IN_XA: u32 = 1208u32;
04454e1e 4390#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4391pub const SQL_ATTR_FETCH_BOOKMARK_PTR: u32 = 16u32;
04454e1e 4392#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4393pub const SQL_ATTR_IMP_PARAM_DESC: u32 = 10013u32;
04454e1e 4394#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4395pub const SQL_ATTR_IMP_ROW_DESC: u32 = 10012u32;
04454e1e 4396#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4397pub const SQL_ATTR_KEYSET_SIZE: u32 = 8u32;
04454e1e 4398#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4399pub const SQL_ATTR_LOGIN_TIMEOUT: u32 = 103u32;
04454e1e 4400#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4401pub const SQL_ATTR_MAX_LENGTH: u32 = 3u32;
04454e1e 4402#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4403pub const SQL_ATTR_MAX_ROWS: u32 = 1u32;
04454e1e 4404#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4405pub const SQL_ATTR_METADATA_ID: u32 = 10014u32;
04454e1e 4406#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4407pub const SQL_ATTR_NOSCAN: u32 = 2u32;
04454e1e 4408#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4409pub const SQL_ATTR_ODBC_CURSORS: u32 = 110u32;
04454e1e 4410#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4411pub const SQL_ATTR_ODBC_VERSION: u32 = 200u32;
04454e1e 4412#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4413pub const SQL_ATTR_OUTPUT_NTS: u32 = 10001u32;
04454e1e 4414#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4415pub const SQL_ATTR_PACKET_SIZE: u32 = 112u32;
04454e1e 4416#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4417pub const SQL_ATTR_PARAMSET_SIZE: u32 = 22u32;
04454e1e 4418#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4419pub const SQL_ATTR_PARAMS_PROCESSED_PTR: u32 = 21u32;
04454e1e 4420#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4421pub const SQL_ATTR_PARAM_BIND_OFFSET_PTR: u32 = 17u32;
04454e1e 4422#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4423pub const SQL_ATTR_PARAM_BIND_TYPE: u32 = 18u32;
04454e1e 4424#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4425pub const SQL_ATTR_PARAM_OPERATION_PTR: u32 = 19u32;
04454e1e 4426#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4427pub const SQL_ATTR_PARAM_STATUS_PTR: u32 = 20u32;
04454e1e 4428#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4429pub const SQL_ATTR_QUERY_TIMEOUT: u32 = 0u32;
04454e1e 4430#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4431pub const SQL_ATTR_QUIET_MODE: u32 = 111u32;
04454e1e 4432#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4433pub const SQL_ATTR_READONLY: u32 = 0u32;
04454e1e 4434#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4435pub const SQL_ATTR_READWRITE_UNKNOWN: u32 = 2u32;
04454e1e 4436#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4437pub const SQL_ATTR_RESET_CONNECTION: u32 = 116u32;
04454e1e 4438#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4439pub const SQL_ATTR_RETRIEVE_DATA: u32 = 11u32;
04454e1e 4440#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4441pub const SQL_ATTR_ROWS_FETCHED_PTR: u32 = 26u32;
04454e1e 4442#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4443pub const SQL_ATTR_ROW_ARRAY_SIZE: u32 = 27u32;
04454e1e 4444#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4445pub const SQL_ATTR_ROW_BIND_OFFSET_PTR: u32 = 23u32;
04454e1e 4446#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4447pub const SQL_ATTR_ROW_BIND_TYPE: u32 = 5u32;
04454e1e 4448#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4449pub const SQL_ATTR_ROW_NUMBER: u32 = 14u32;
04454e1e 4450#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4451pub const SQL_ATTR_ROW_OPERATION_PTR: u32 = 24u32;
04454e1e 4452#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4453pub const SQL_ATTR_ROW_STATUS_PTR: u32 = 25u32;
04454e1e 4454#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4455pub const SQL_ATTR_SIMULATE_CURSOR: u32 = 10u32;
04454e1e 4456#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4457pub const SQL_ATTR_TRACE: u32 = 104u32;
04454e1e 4458#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4459pub const SQL_ATTR_TRACEFILE: u32 = 105u32;
04454e1e 4460#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4461pub const SQL_ATTR_TRANSLATE_LIB: u32 = 106u32;
04454e1e 4462#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4463pub const SQL_ATTR_TRANSLATE_OPTION: u32 = 107u32;
04454e1e 4464#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4465pub const SQL_ATTR_TXN_ISOLATION: u32 = 108u32;
04454e1e 4466#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4467pub const SQL_ATTR_USE_BOOKMARKS: u32 = 12u32;
04454e1e 4468#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4469pub const SQL_ATTR_WRITE: u32 = 1u32;
04454e1e 4470#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4471pub const SQL_AT_ADD_COLUMN: i32 = 1i32;
04454e1e 4472#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4473pub const SQL_AT_ADD_COLUMN_COLLATION: i32 = 128i32;
04454e1e 4474#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4475pub const SQL_AT_ADD_COLUMN_DEFAULT: i32 = 64i32;
04454e1e 4476#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4477pub const SQL_AT_ADD_COLUMN_SINGLE: i32 = 32i32;
04454e1e 4478#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4479pub const SQL_AT_ADD_CONSTRAINT: i32 = 8i32;
04454e1e 4480#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4481pub const SQL_AT_ADD_TABLE_CONSTRAINT: i32 = 4096i32;
04454e1e 4482#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4483pub const SQL_AT_CONSTRAINT_DEFERRABLE: i32 = 262144i32;
04454e1e 4484#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4485pub const SQL_AT_CONSTRAINT_INITIALLY_DEFERRED: i32 = 65536i32;
04454e1e 4486#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4487pub const SQL_AT_CONSTRAINT_INITIALLY_IMMEDIATE: i32 = 131072i32;
04454e1e 4488#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4489pub const SQL_AT_CONSTRAINT_NAME_DEFINITION: i32 = 32768i32;
04454e1e 4490#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4491pub const SQL_AT_CONSTRAINT_NON_DEFERRABLE: i32 = 524288i32;
04454e1e 4492#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4493pub const SQL_AT_DROP_COLUMN: i32 = 2i32;
04454e1e 4494#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4495pub const SQL_AT_DROP_COLUMN_CASCADE: i32 = 1024i32;
04454e1e 4496#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4497pub const SQL_AT_DROP_COLUMN_DEFAULT: i32 = 512i32;
04454e1e 4498#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4499pub const SQL_AT_DROP_COLUMN_RESTRICT: i32 = 2048i32;
04454e1e 4500#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4501pub const SQL_AT_DROP_TABLE_CONSTRAINT_CASCADE: i32 = 8192i32;
04454e1e 4502#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4503pub const SQL_AT_DROP_TABLE_CONSTRAINT_RESTRICT: i32 = 16384i32;
04454e1e 4504#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4505pub const SQL_AT_SET_COLUMN_DEFAULT: i32 = 256i32;
04454e1e 4506#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4507pub const SQL_AUTOCOMMIT: u32 = 102u32;
04454e1e 4508#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4509pub const SQL_AUTOCOMMIT_DEFAULT: u32 = 1u32;
04454e1e 4510#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4511pub const SQL_AUTOCOMMIT_OFF: u32 = 0u32;
04454e1e 4512#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4513pub const SQL_AUTOCOMMIT_ON: u32 = 1u32;
04454e1e 4514#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4515pub const SQL_BATCH_ROW_COUNT: u32 = 120u32;
04454e1e 4516#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4517pub const SQL_BATCH_SUPPORT: u32 = 121u32;
04454e1e 4518#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4519pub const SQL_BCP_DEFAULT: i32 = 0i32;
04454e1e 4520#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4521pub const SQL_BCP_OFF: i32 = 0i32;
04454e1e 4522#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4523pub const SQL_BCP_ON: i32 = 1i32;
04454e1e 4524#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4525pub const SQL_BEST_ROWID: u32 = 1u32;
04454e1e 4526#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4527pub const SQL_BIGINT: i32 = -5i32;
04454e1e 4528#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4529pub const SQL_BINARY: i32 = -2i32;
04454e1e 4530#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4531pub const SQL_BIND_BY_COLUMN: u32 = 0u32;
04454e1e 4532#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4533pub const SQL_BIND_TYPE: u32 = 5u32;
04454e1e 4534#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4535pub const SQL_BIND_TYPE_DEFAULT: u32 = 0u32;
04454e1e 4536#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4537pub const SQL_BIT: i32 = -7i32;
04454e1e 4538#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4539pub const SQL_BOOKMARK_PERSISTENCE: u32 = 82u32;
04454e1e 4540#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4541pub const SQL_BP_CLOSE: i32 = 1i32;
04454e1e 4542#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4543pub const SQL_BP_DELETE: i32 = 2i32;
04454e1e 4544#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4545pub const SQL_BP_DROP: i32 = 4i32;
04454e1e 4546#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4547pub const SQL_BP_OTHER_HSTMT: i32 = 32i32;
04454e1e 4548#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4549pub const SQL_BP_SCROLL: i32 = 64i32;
04454e1e 4550#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4551pub const SQL_BP_TRANSACTION: i32 = 8i32;
04454e1e 4552#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4553pub const SQL_BP_UPDATE: i32 = 16i32;
04454e1e 4554#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4555pub const SQL_BRC_EXPLICIT: u32 = 2u32;
04454e1e 4556#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4557pub const SQL_BRC_PROCEDURES: u32 = 1u32;
04454e1e 4558#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4559pub const SQL_BRC_ROLLED_UP: u32 = 4u32;
04454e1e 4560#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4561pub const SQL_BS_ROW_COUNT_EXPLICIT: i32 = 2i32;
04454e1e 4562#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4563pub const SQL_BS_ROW_COUNT_PROC: i32 = 8i32;
04454e1e 4564#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4565pub const SQL_BS_SELECT_EXPLICIT: i32 = 1i32;
04454e1e 4566#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4567pub const SQL_BS_SELECT_PROC: i32 = 4i32;
04454e1e 4568#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4569pub const SQL_CA1_ABSOLUTE: i32 = 2i32;
04454e1e 4570#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4571pub const SQL_CA1_BOOKMARK: i32 = 8i32;
04454e1e 4572#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4573pub const SQL_CA1_BULK_ADD: i32 = 65536i32;
04454e1e 4574#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4575pub const SQL_CA1_BULK_DELETE_BY_BOOKMARK: i32 = 262144i32;
04454e1e 4576#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4577pub const SQL_CA1_BULK_FETCH_BY_BOOKMARK: i32 = 524288i32;
04454e1e 4578#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4579pub const SQL_CA1_BULK_UPDATE_BY_BOOKMARK: i32 = 131072i32;
04454e1e 4580#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4581pub const SQL_CA1_LOCK_EXCLUSIVE: i32 = 128i32;
04454e1e 4582#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4583pub const SQL_CA1_LOCK_NO_CHANGE: i32 = 64i32;
04454e1e 4584#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4585pub const SQL_CA1_LOCK_UNLOCK: i32 = 256i32;
04454e1e 4586#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4587pub const SQL_CA1_NEXT: i32 = 1i32;
04454e1e 4588#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4589pub const SQL_CA1_POSITIONED_DELETE: i32 = 16384i32;
04454e1e 4590#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4591pub const SQL_CA1_POSITIONED_UPDATE: i32 = 8192i32;
04454e1e 4592#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4593pub const SQL_CA1_POS_DELETE: i32 = 2048i32;
04454e1e 4594#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4595pub const SQL_CA1_POS_POSITION: i32 = 512i32;
04454e1e 4596#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4597pub const SQL_CA1_POS_REFRESH: i32 = 4096i32;
04454e1e 4598#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4599pub const SQL_CA1_POS_UPDATE: i32 = 1024i32;
04454e1e 4600#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4601pub const SQL_CA1_RELATIVE: i32 = 4i32;
04454e1e 4602#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4603pub const SQL_CA1_SELECT_FOR_UPDATE: i32 = 32768i32;
04454e1e 4604#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4605pub const SQL_CA2_CRC_APPROXIMATE: i32 = 8192i32;
04454e1e 4606#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4607pub const SQL_CA2_CRC_EXACT: i32 = 4096i32;
04454e1e 4608#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4609pub const SQL_CA2_LOCK_CONCURRENCY: i32 = 2i32;
04454e1e 4610#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4611pub const SQL_CA2_MAX_ROWS_CATALOG: i32 = 2048i32;
04454e1e 4612#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4613pub const SQL_CA2_MAX_ROWS_DELETE: i32 = 512i32;
04454e1e 4614#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4615pub const SQL_CA2_MAX_ROWS_INSERT: i32 = 256i32;
04454e1e 4616#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4617pub const SQL_CA2_MAX_ROWS_SELECT: i32 = 128i32;
04454e1e 4618#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4619pub const SQL_CA2_MAX_ROWS_UPDATE: i32 = 1024i32;
04454e1e 4620#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4621pub const SQL_CA2_OPT_ROWVER_CONCURRENCY: i32 = 4i32;
04454e1e 4622#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4623pub const SQL_CA2_OPT_VALUES_CONCURRENCY: i32 = 8i32;
04454e1e 4624#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4625pub const SQL_CA2_READ_ONLY_CONCURRENCY: i32 = 1i32;
04454e1e 4626#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4627pub const SQL_CA2_SENSITIVITY_ADDITIONS: i32 = 16i32;
04454e1e 4628#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4629pub const SQL_CA2_SENSITIVITY_DELETIONS: i32 = 32i32;
04454e1e 4630#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4631pub const SQL_CA2_SENSITIVITY_UPDATES: i32 = 64i32;
04454e1e 4632#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4633pub const SQL_CA2_SIMULATE_NON_UNIQUE: i32 = 16384i32;
04454e1e 4634#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4635pub const SQL_CA2_SIMULATE_TRY_UNIQUE: i32 = 32768i32;
04454e1e 4636#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4637pub const SQL_CA2_SIMULATE_UNIQUE: i32 = 65536i32;
04454e1e 4638#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4639pub const SQL_CACHE_DATA_NO: i32 = 0i32;
04454e1e 4640#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4641pub const SQL_CACHE_DATA_YES: i32 = 1i32;
04454e1e 4642#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4643pub const SQL_CASCADE: u32 = 0u32;
04454e1e 4644#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4645pub const SQL_CATALOG_LOCATION: u32 = 114u32;
04454e1e 4646#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4647pub const SQL_CATALOG_NAME: u32 = 10003u32;
04454e1e 4648#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4649pub const SQL_CATALOG_NAME_SEPARATOR: u32 = 41u32;
04454e1e 4650#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4651pub const SQL_CATALOG_TERM: u32 = 42u32;
04454e1e 4652#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4653pub const SQL_CATALOG_USAGE: u32 = 92u32;
04454e1e 4654#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4655pub const SQL_CA_CONSTRAINT_DEFERRABLE: i32 = 64i32;
04454e1e 4656#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4657pub const SQL_CA_CONSTRAINT_INITIALLY_DEFERRED: i32 = 16i32;
04454e1e 4658#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4659pub const SQL_CA_CONSTRAINT_INITIALLY_IMMEDIATE: i32 = 32i32;
04454e1e 4660#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4661pub const SQL_CA_CONSTRAINT_NON_DEFERRABLE: i32 = 128i32;
04454e1e 4662#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4663pub const SQL_CA_CREATE_ASSERTION: i32 = 1i32;
04454e1e 4664#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4665pub const SQL_CA_SS_BASE: u32 = 1200u32;
04454e1e 4666#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4667pub const SQL_CA_SS_COLUMN_COLLATION: u32 = 1214u32;
04454e1e 4668#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4669pub const SQL_CA_SS_COLUMN_HIDDEN: u32 = 1211u32;
04454e1e 4670#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4671pub const SQL_CA_SS_COLUMN_ID: u32 = 1208u32;
04454e1e 4672#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4673pub const SQL_CA_SS_COLUMN_KEY: u32 = 1212u32;
04454e1e 4674#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4675pub const SQL_CA_SS_COLUMN_OP: u32 = 1209u32;
04454e1e 4676#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4677pub const SQL_CA_SS_COLUMN_ORDER: u32 = 1203u32;
04454e1e 4678#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4679pub const SQL_CA_SS_COLUMN_SIZE: u32 = 1210u32;
04454e1e 4680#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4681pub const SQL_CA_SS_COLUMN_SSTYPE: u32 = 1200u32;
04454e1e 4682#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4683pub const SQL_CA_SS_COLUMN_UTYPE: u32 = 1201u32;
04454e1e 4684#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4685pub const SQL_CA_SS_COLUMN_VARYLEN: u32 = 1204u32;
04454e1e 4686#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4687pub const SQL_CA_SS_COMPUTE_BYLIST: u32 = 1207u32;
04454e1e 4688#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4689pub const SQL_CA_SS_COMPUTE_ID: u32 = 1206u32;
04454e1e 4690#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4691pub const SQL_CA_SS_MAX_USED: u32 = 1218u32;
04454e1e 4692#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4693pub const SQL_CA_SS_NUM_COMPUTES: u32 = 1205u32;
04454e1e 4694#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4695pub const SQL_CA_SS_NUM_ORDERS: u32 = 1202u32;
04454e1e 4696#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4697pub const SQL_CA_SS_VARIANT_SERVER_TYPE: u32 = 1217u32;
04454e1e 4698#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4699pub const SQL_CA_SS_VARIANT_SQL_TYPE: u32 = 1216u32;
04454e1e 4700#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4701pub const SQL_CA_SS_VARIANT_TYPE: u32 = 1215u32;
04454e1e 4702#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4703pub const SQL_CB_CLOSE: u32 = 1u32;
04454e1e 4704#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4705pub const SQL_CB_DELETE: u32 = 0u32;
04454e1e 4706#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4707pub const SQL_CB_NON_NULL: u32 = 1u32;
04454e1e 4708#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4709pub const SQL_CB_NULL: u32 = 0u32;
04454e1e 4710#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4711pub const SQL_CB_PRESERVE: u32 = 2u32;
04454e1e 4712#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4713pub const SQL_CCOL_CREATE_COLLATION: i32 = 1i32;
04454e1e 4714#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4715pub const SQL_CCS_COLLATE_CLAUSE: i32 = 2i32;
04454e1e 4716#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4717pub const SQL_CCS_CREATE_CHARACTER_SET: i32 = 1i32;
04454e1e 4718#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4719pub const SQL_CCS_LIMITED_COLLATION: i32 = 4i32;
04454e1e 4720#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4721pub const SQL_CC_CLOSE: u32 = 1u32;
04454e1e 4722#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4723pub const SQL_CC_DELETE: u32 = 0u32;
04454e1e 4724#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4725pub const SQL_CC_PRESERVE: u32 = 2u32;
04454e1e 4726#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4727pub const SQL_CDO_COLLATION: i32 = 8i32;
04454e1e 4728#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4729pub const SQL_CDO_CONSTRAINT: i32 = 4i32;
04454e1e 4730#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4731pub const SQL_CDO_CONSTRAINT_DEFERRABLE: i32 = 128i32;
04454e1e 4732#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4733pub const SQL_CDO_CONSTRAINT_INITIALLY_DEFERRED: i32 = 32i32;
04454e1e 4734#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4735pub const SQL_CDO_CONSTRAINT_INITIALLY_IMMEDIATE: i32 = 64i32;
04454e1e 4736#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4737pub const SQL_CDO_CONSTRAINT_NAME_DEFINITION: i32 = 16i32;
04454e1e 4738#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4739pub const SQL_CDO_CONSTRAINT_NON_DEFERRABLE: i32 = 256i32;
04454e1e 4740#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4741pub const SQL_CDO_CREATE_DOMAIN: i32 = 1i32;
04454e1e 4742#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4743pub const SQL_CDO_DEFAULT: i32 = 2i32;
04454e1e 4744#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4745pub const SQL_CD_FALSE: i32 = 0i32;
04454e1e 4746#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4747pub const SQL_CD_TRUE: i32 = 1i32;
04454e1e 4748#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4749pub const SQL_CHAR: u32 = 1u32;
04454e1e 4750#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4751pub const SQL_CLOSE: u32 = 0u32;
04454e1e 4752#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4753pub const SQL_CL_END: u32 = 2u32;
04454e1e 4754#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4755pub const SQL_CL_START: u32 = 1u32;
04454e1e 4756#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4757pub const SQL_CN_ANY: u32 = 2u32;
04454e1e 4758#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4759pub const SQL_CN_DEFAULT: i32 = 1i32;
04454e1e 4760#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4761pub const SQL_CN_DIFFERENT: u32 = 1u32;
04454e1e 4762#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4763pub const SQL_CN_NONE: u32 = 0u32;
04454e1e 4764#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4765pub const SQL_CN_OFF: i32 = 0i32;
04454e1e 4766#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4767pub const SQL_CN_ON: i32 = 1i32;
04454e1e 4768#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4769pub const SQL_CODE_DATE: u32 = 1u32;
04454e1e 4770#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4771pub const SQL_CODE_DAY: u32 = 3u32;
04454e1e 4772#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4773pub const SQL_CODE_DAY_TO_HOUR: u32 = 8u32;
04454e1e 4774#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4775pub const SQL_CODE_DAY_TO_MINUTE: u32 = 9u32;
04454e1e 4776#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4777pub const SQL_CODE_DAY_TO_SECOND: u32 = 10u32;
04454e1e 4778#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4779pub const SQL_CODE_HOUR: u32 = 4u32;
04454e1e 4780#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4781pub const SQL_CODE_HOUR_TO_MINUTE: u32 = 11u32;
04454e1e 4782#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4783pub const SQL_CODE_HOUR_TO_SECOND: u32 = 12u32;
04454e1e 4784#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4785pub const SQL_CODE_MINUTE: u32 = 5u32;
04454e1e 4786#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4787pub const SQL_CODE_MINUTE_TO_SECOND: u32 = 13u32;
04454e1e 4788#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4789pub const SQL_CODE_MONTH: u32 = 2u32;
04454e1e 4790#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4791pub const SQL_CODE_SECOND: u32 = 6u32;
04454e1e 4792#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4793pub const SQL_CODE_TIME: u32 = 2u32;
04454e1e 4794#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4795pub const SQL_CODE_TIMESTAMP: u32 = 3u32;
04454e1e 4796#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4797pub const SQL_CODE_YEAR: u32 = 1u32;
04454e1e 4798#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4799pub const SQL_CODE_YEAR_TO_MONTH: u32 = 7u32;
04454e1e 4800#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4801pub const SQL_COLATT_OPT_MAX: u32 = 18u32;
04454e1e 4802#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4803pub const SQL_COLATT_OPT_MIN: u32 = 0u32;
04454e1e 4804#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4805pub const SQL_COLLATION_SEQ: u32 = 10004u32;
04454e1e 4806#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4807pub const SQL_COLUMN_ALIAS: u32 = 87u32;
04454e1e 4808#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4809pub const SQL_COLUMN_AUTO_INCREMENT: u32 = 11u32;
04454e1e 4810#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4811pub const SQL_COLUMN_CASE_SENSITIVE: u32 = 12u32;
04454e1e 4812#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4813pub const SQL_COLUMN_COUNT: u32 = 0u32;
04454e1e 4814#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4815pub const SQL_COLUMN_DISPLAY_SIZE: u32 = 6u32;
04454e1e 4816#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4817pub const SQL_COLUMN_DRIVER_START: u32 = 1000u32;
04454e1e 4818#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4819pub const SQL_COLUMN_IGNORE: i32 = -6i32;
04454e1e 4820#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4821pub const SQL_COLUMN_LABEL: u32 = 18u32;
04454e1e 4822#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4823pub const SQL_COLUMN_LENGTH: u32 = 3u32;
04454e1e 4824#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4825pub const SQL_COLUMN_MONEY: u32 = 9u32;
04454e1e 4826#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4827pub const SQL_COLUMN_NAME: u32 = 1u32;
04454e1e 4828#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4829pub const SQL_COLUMN_NULLABLE: u32 = 7u32;
04454e1e 4830#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4831pub const SQL_COLUMN_NUMBER_UNKNOWN: i32 = -2i32;
04454e1e 4832#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4833pub const SQL_COLUMN_OWNER_NAME: u32 = 16u32;
04454e1e 4834#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4835pub const SQL_COLUMN_PRECISION: u32 = 4u32;
04454e1e 4836#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4837pub const SQL_COLUMN_QUALIFIER_NAME: u32 = 17u32;
04454e1e 4838#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4839pub const SQL_COLUMN_SCALE: u32 = 5u32;
04454e1e 4840#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4841pub const SQL_COLUMN_SEARCHABLE: u32 = 13u32;
04454e1e 4842#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4843pub const SQL_COLUMN_TABLE_NAME: u32 = 15u32;
04454e1e 4844#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4845pub const SQL_COLUMN_TYPE: u32 = 2u32;
04454e1e 4846#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4847pub const SQL_COLUMN_TYPE_NAME: u32 = 14u32;
04454e1e 4848#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4849pub const SQL_COLUMN_UNSIGNED: u32 = 8u32;
04454e1e 4850#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4851pub const SQL_COLUMN_UPDATABLE: u32 = 10u32;
04454e1e 4852#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4853pub const SQL_COMMIT: u32 = 0u32;
04454e1e 4854#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4855pub const SQL_CONCAT_NULL_BEHAVIOR: u32 = 22u32;
04454e1e 4856#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4857pub const SQL_CONCURRENCY: u32 = 7u32;
04454e1e 4858#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4859pub const SQL_CONCUR_DEFAULT: u32 = 1u32;
04454e1e 4860#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4861pub const SQL_CONCUR_LOCK: u32 = 2u32;
04454e1e 4862#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4863pub const SQL_CONCUR_READ_ONLY: u32 = 1u32;
04454e1e 4864#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4865pub const SQL_CONCUR_ROWVER: u32 = 3u32;
04454e1e 4866#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4867pub const SQL_CONCUR_TIMESTAMP: u32 = 3u32;
04454e1e 4868#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4869pub const SQL_CONCUR_VALUES: u32 = 4u32;
04454e1e 4870#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4871pub const SQL_CONNECT_OPT_DRVR_START: u32 = 1000u32;
04454e1e 4872#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4873pub const SQL_CONN_OPT_MAX: u32 = 112u32;
04454e1e 4874#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4875pub const SQL_CONN_OPT_MIN: u32 = 101u32;
04454e1e 4876#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4877pub const SQL_CONN_POOL_RATING_BEST: u32 = 100u32;
04454e1e 4878#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4879pub const SQL_CONN_POOL_RATING_GOOD_ENOUGH: u32 = 99u32;
04454e1e 4880#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4881pub const SQL_CONN_POOL_RATING_USELESS: u32 = 0u32;
04454e1e 4882#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4883pub const SQL_CONVERT_BIGINT: u32 = 53u32;
04454e1e 4884#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4885pub const SQL_CONVERT_BINARY: u32 = 54u32;
04454e1e 4886#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4887pub const SQL_CONVERT_BIT: u32 = 55u32;
04454e1e 4888#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4889pub const SQL_CONVERT_CHAR: u32 = 56u32;
04454e1e 4890#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4891pub const SQL_CONVERT_DATE: u32 = 57u32;
04454e1e 4892#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4893pub const SQL_CONVERT_DECIMAL: u32 = 58u32;
04454e1e 4894#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4895pub const SQL_CONVERT_DOUBLE: u32 = 59u32;
04454e1e 4896#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4897pub const SQL_CONVERT_FLOAT: u32 = 60u32;
04454e1e 4898#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4899pub const SQL_CONVERT_FUNCTIONS: u32 = 48u32;
04454e1e 4900#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4901pub const SQL_CONVERT_GUID: u32 = 173u32;
04454e1e 4902#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4903pub const SQL_CONVERT_INTEGER: u32 = 61u32;
04454e1e 4904#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4905pub const SQL_CONVERT_INTERVAL_DAY_TIME: u32 = 123u32;
04454e1e 4906#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4907pub const SQL_CONVERT_INTERVAL_YEAR_MONTH: u32 = 124u32;
04454e1e 4908#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4909pub const SQL_CONVERT_LONGVARBINARY: u32 = 71u32;
04454e1e 4910#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4911pub const SQL_CONVERT_LONGVARCHAR: u32 = 62u32;
04454e1e 4912#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4913pub const SQL_CONVERT_NUMERIC: u32 = 63u32;
04454e1e 4914#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4915pub const SQL_CONVERT_REAL: u32 = 64u32;
04454e1e 4916#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4917pub const SQL_CONVERT_SMALLINT: u32 = 65u32;
04454e1e 4918#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4919pub const SQL_CONVERT_TIME: u32 = 66u32;
04454e1e 4920#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4921pub const SQL_CONVERT_TIMESTAMP: u32 = 67u32;
04454e1e 4922#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4923pub const SQL_CONVERT_TINYINT: u32 = 68u32;
04454e1e 4924#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4925pub const SQL_CONVERT_VARBINARY: u32 = 69u32;
04454e1e 4926#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4927pub const SQL_CONVERT_VARCHAR: u32 = 70u32;
04454e1e 4928#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4929pub const SQL_CONVERT_WCHAR: u32 = 122u32;
04454e1e 4930#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4931pub const SQL_CONVERT_WLONGVARCHAR: u32 = 125u32;
04454e1e 4932#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4933pub const SQL_CONVERT_WVARCHAR: u32 = 126u32;
04454e1e 4934#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4935pub const SQL_COPT_SS_ANSI_NPW: u32 = 1218u32;
04454e1e 4936#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4937pub const SQL_COPT_SS_ANSI_OEM: u32 = 1206u32;
04454e1e 4938#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4939pub const SQL_COPT_SS_ATTACHDBFILENAME: u32 = 1221u32;
04454e1e 4940#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4941pub const SQL_COPT_SS_BASE: u32 = 1200u32;
04454e1e 4942#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4943pub const SQL_COPT_SS_BASE_EX: u32 = 1240u32;
04454e1e 4944#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4945pub const SQL_COPT_SS_BCP: u32 = 1219u32;
04454e1e 4946#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4947pub const SQL_COPT_SS_BROWSE_CACHE_DATA: u32 = 1245u32;
04454e1e 4948#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4949pub const SQL_COPT_SS_BROWSE_CONNECT: u32 = 1241u32;
04454e1e 4950#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4951pub const SQL_COPT_SS_BROWSE_SERVER: u32 = 1242u32;
04454e1e 4952#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4953pub const SQL_COPT_SS_CONCAT_NULL: u32 = 1222u32;
04454e1e 4954#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4955pub const SQL_COPT_SS_CONNECTION_DEAD: u32 = 1244u32;
04454e1e 4956#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4957pub const SQL_COPT_SS_ENCRYPT: u32 = 1223u32;
04454e1e 4958#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4959pub const SQL_COPT_SS_EX_MAX_USED: u32 = 1246u32;
04454e1e 4960#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4961pub const SQL_COPT_SS_FALLBACK_CONNECT: u32 = 1210u32;
04454e1e 4962#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4963pub const SQL_COPT_SS_INTEGRATED_SECURITY: u32 = 1203u32;
04454e1e 4964#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4965pub const SQL_COPT_SS_MAX_USED: u32 = 1223u32;
04454e1e 4966#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4967pub const SQL_COPT_SS_PERF_DATA: u32 = 1211u32;
04454e1e 4968#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4969pub const SQL_COPT_SS_PERF_DATA_LOG: u32 = 1212u32;
04454e1e 4970#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4971pub const SQL_COPT_SS_PERF_DATA_LOG_NOW: u32 = 1216u32;
04454e1e 4972#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4973pub const SQL_COPT_SS_PERF_QUERY: u32 = 1215u32;
04454e1e 4974#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4975pub const SQL_COPT_SS_PERF_QUERY_INTERVAL: u32 = 1213u32;
04454e1e 4976#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4977pub const SQL_COPT_SS_PERF_QUERY_LOG: u32 = 1214u32;
04454e1e 4978#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4979pub const SQL_COPT_SS_PRESERVE_CURSORS: u32 = 1204u32;
04454e1e 4980#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4981pub const SQL_COPT_SS_QUOTED_IDENT: u32 = 1217u32;
04454e1e 4982#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4983pub const SQL_COPT_SS_REMOTE_PWD: u32 = 1201u32;
04454e1e 4984#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4985pub const SQL_COPT_SS_RESET_CONNECTION: u32 = 1246u32;
04454e1e 4986#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4987pub const SQL_COPT_SS_TRANSLATE: u32 = 1220u32;
04454e1e 4988#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4989pub const SQL_COPT_SS_USER_DATA: u32 = 1205u32;
04454e1e 4990#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4991pub const SQL_COPT_SS_USE_PROC_FOR_PREP: u32 = 1202u32;
04454e1e 4992#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4993pub const SQL_COPT_SS_WARN_ON_CP_ERROR: u32 = 1243u32;
04454e1e 4994#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4995pub const SQL_CORRELATION_NAME: u32 = 74u32;
04454e1e 4996#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4997pub const SQL_CO_AF: i32 = 2i32;
04454e1e 4998#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 4999pub const SQL_CO_DEFAULT: i32 = 0i32;
04454e1e 5000#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5001pub const SQL_CO_FFO: i32 = 1i32;
04454e1e 5002#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5003pub const SQL_CO_FIREHOSE_AF: i32 = 4i32;
04454e1e 5004#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5005pub const SQL_CO_OFF: i32 = 0i32;
04454e1e 5006#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5007pub const SQL_CP_DEFAULT: u32 = 0u32;
04454e1e 5008#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5009pub const SQL_CP_DRIVER_AWARE: u32 = 3u32;
04454e1e 5010#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5011pub const SQL_CP_MATCH_DEFAULT: u32 = 0u32;
04454e1e 5012#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5013pub const SQL_CP_OFF: u32 = 0u32;
04454e1e 5014#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5015pub const SQL_CP_ONE_PER_DRIVER: u32 = 1u32;
04454e1e 5016#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5017pub const SQL_CP_ONE_PER_HENV: u32 = 2u32;
04454e1e 5018#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5019pub const SQL_CP_RELAXED_MATCH: u32 = 1u32;
04454e1e 5020#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5021pub const SQL_CP_STRICT_MATCH: u32 = 0u32;
04454e1e 5022#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5023pub const SQL_CREATE_ASSERTION: u32 = 127u32;
04454e1e 5024#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5025pub const SQL_CREATE_CHARACTER_SET: u32 = 128u32;
04454e1e 5026#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5027pub const SQL_CREATE_COLLATION: u32 = 129u32;
04454e1e 5028#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5029pub const SQL_CREATE_DOMAIN: u32 = 130u32;
04454e1e 5030#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5031pub const SQL_CREATE_SCHEMA: u32 = 131u32;
04454e1e 5032#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5033pub const SQL_CREATE_TABLE: u32 = 132u32;
04454e1e 5034#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5035pub const SQL_CREATE_TRANSLATION: u32 = 133u32;
04454e1e 5036#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5037pub const SQL_CREATE_VIEW: u32 = 134u32;
04454e1e 5038#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5039pub const SQL_CR_CLOSE: u32 = 1u32;
04454e1e 5040#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5041pub const SQL_CR_DELETE: u32 = 0u32;
04454e1e 5042#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5043pub const SQL_CR_PRESERVE: u32 = 2u32;
04454e1e 5044#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5045pub const SQL_CS_AUTHORIZATION: i32 = 2i32;
04454e1e 5046#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5047pub const SQL_CS_CREATE_SCHEMA: i32 = 1i32;
04454e1e 5048#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5049pub const SQL_CS_DEFAULT_CHARACTER_SET: i32 = 4i32;
04454e1e 5050#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5051pub const SQL_CTR_CREATE_TRANSLATION: i32 = 1i32;
04454e1e 5052#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5053pub const SQL_CT_COLUMN_COLLATION: i32 = 2048i32;
04454e1e 5054#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5055pub const SQL_CT_COLUMN_CONSTRAINT: i32 = 512i32;
04454e1e 5056#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5057pub const SQL_CT_COLUMN_DEFAULT: i32 = 1024i32;
04454e1e 5058#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5059pub const SQL_CT_COMMIT_DELETE: i32 = 4i32;
04454e1e 5060#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5061pub const SQL_CT_COMMIT_PRESERVE: i32 = 2i32;
04454e1e 5062#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5063pub const SQL_CT_CONSTRAINT_DEFERRABLE: i32 = 128i32;
04454e1e 5064#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5065pub const SQL_CT_CONSTRAINT_INITIALLY_DEFERRED: i32 = 32i32;
04454e1e 5066#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5067pub const SQL_CT_CONSTRAINT_INITIALLY_IMMEDIATE: i32 = 64i32;
04454e1e 5068#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5069pub const SQL_CT_CONSTRAINT_NAME_DEFINITION: i32 = 8192i32;
04454e1e 5070#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5071pub const SQL_CT_CONSTRAINT_NON_DEFERRABLE: i32 = 256i32;
04454e1e 5072#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5073pub const SQL_CT_CREATE_TABLE: i32 = 1i32;
04454e1e 5074#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5075pub const SQL_CT_GLOBAL_TEMPORARY: i32 = 8i32;
04454e1e 5076#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5077pub const SQL_CT_LOCAL_TEMPORARY: i32 = 16i32;
04454e1e 5078#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5079pub const SQL_CT_TABLE_CONSTRAINT: i32 = 4096i32;
04454e1e 5080#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5081pub const SQL_CURRENT_QUALIFIER: u32 = 109u32;
04454e1e 5082#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5083pub const SQL_CURSOR_COMMIT_BEHAVIOR: u32 = 23u32;
04454e1e 5084#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5085pub const SQL_CURSOR_DYNAMIC: u32 = 2u32;
04454e1e 5086#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5087pub const SQL_CURSOR_FAST_FORWARD_ONLY: u32 = 8u32;
04454e1e 5088#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5089pub const SQL_CURSOR_FORWARD_ONLY: u32 = 0u32;
04454e1e 5090#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5091pub const SQL_CURSOR_KEYSET_DRIVEN: u32 = 1u32;
04454e1e 5092#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5093pub const SQL_CURSOR_ROLLBACK_BEHAVIOR: u32 = 24u32;
04454e1e 5094#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5095pub const SQL_CURSOR_SENSITIVITY: u32 = 10001u32;
04454e1e 5096#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5097pub const SQL_CURSOR_STATIC: u32 = 3u32;
04454e1e 5098#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5099pub const SQL_CURSOR_TYPE: u32 = 6u32;
04454e1e 5100#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5101pub const SQL_CURSOR_TYPE_DEFAULT: u32 = 0u32;
04454e1e 5102#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5103pub const SQL_CUR_DEFAULT: u32 = 2u32;
04454e1e 5104#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5105pub const SQL_CUR_USE_DRIVER: u32 = 2u32;
04454e1e 5106#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5107pub const SQL_CUR_USE_IF_NEEDED: u32 = 0u32;
04454e1e 5108#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5109pub const SQL_CUR_USE_ODBC: u32 = 1u32;
04454e1e 5110#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5111pub const SQL_CU_DML_STATEMENTS: i32 = 1i32;
04454e1e 5112#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5113pub const SQL_CU_INDEX_DEFINITION: i32 = 8i32;
04454e1e 5114#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5115pub const SQL_CU_PRIVILEGE_DEFINITION: i32 = 16i32;
04454e1e 5116#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5117pub const SQL_CU_PROCEDURE_INVOCATION: i32 = 2i32;
04454e1e 5118#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5119pub const SQL_CU_TABLE_DEFINITION: i32 = 4i32;
04454e1e 5120#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5121pub const SQL_CVT_BIGINT: i32 = 16384i32;
04454e1e 5122#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5123pub const SQL_CVT_BINARY: i32 = 1024i32;
04454e1e 5124#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5125pub const SQL_CVT_BIT: i32 = 4096i32;
04454e1e 5126#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5127pub const SQL_CVT_CHAR: i32 = 1i32;
04454e1e 5128#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5129pub const SQL_CVT_DATE: i32 = 32768i32;
04454e1e 5130#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5131pub const SQL_CVT_DECIMAL: i32 = 4i32;
04454e1e 5132#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5133pub const SQL_CVT_DOUBLE: i32 = 128i32;
04454e1e 5134#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5135pub const SQL_CVT_FLOAT: i32 = 32i32;
04454e1e 5136#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5137pub const SQL_CVT_GUID: i32 = 16777216i32;
04454e1e 5138#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5139pub const SQL_CVT_INTEGER: i32 = 8i32;
04454e1e 5140#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5141pub const SQL_CVT_INTERVAL_DAY_TIME: i32 = 1048576i32;
04454e1e 5142#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5143pub const SQL_CVT_INTERVAL_YEAR_MONTH: i32 = 524288i32;
04454e1e 5144#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5145pub const SQL_CVT_LONGVARBINARY: i32 = 262144i32;
04454e1e 5146#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5147pub const SQL_CVT_LONGVARCHAR: i32 = 512i32;
04454e1e 5148#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5149pub const SQL_CVT_NUMERIC: i32 = 2i32;
04454e1e 5150#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5151pub const SQL_CVT_REAL: i32 = 64i32;
04454e1e 5152#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5153pub const SQL_CVT_SMALLINT: i32 = 16i32;
04454e1e 5154#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5155pub const SQL_CVT_TIME: i32 = 65536i32;
04454e1e 5156#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5157pub const SQL_CVT_TIMESTAMP: i32 = 131072i32;
04454e1e 5158#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5159pub const SQL_CVT_TINYINT: i32 = 8192i32;
04454e1e 5160#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5161pub const SQL_CVT_VARBINARY: i32 = 2048i32;
04454e1e 5162#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5163pub const SQL_CVT_VARCHAR: i32 = 256i32;
04454e1e 5164#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5165pub const SQL_CVT_WCHAR: i32 = 2097152i32;
04454e1e 5166#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5167pub const SQL_CVT_WLONGVARCHAR: i32 = 4194304i32;
04454e1e 5168#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5169pub const SQL_CVT_WVARCHAR: i32 = 8388608i32;
04454e1e 5170#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5171pub const SQL_CV_CASCADED: i32 = 4i32;
04454e1e 5172#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5173pub const SQL_CV_CHECK_OPTION: i32 = 2i32;
04454e1e 5174#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5175pub const SQL_CV_CREATE_VIEW: i32 = 1i32;
04454e1e 5176#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5177pub const SQL_CV_LOCAL: i32 = 8i32;
04454e1e 5178#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5179pub const SQL_C_BINARY: i32 = -2i32;
04454e1e 5180#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5181pub const SQL_C_BIT: i32 = -7i32;
04454e1e 5182#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5183pub const SQL_C_CHAR: u32 = 1u32;
04454e1e 5184#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5185pub const SQL_C_DATE: u32 = 9u32;
04454e1e 5186#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5187pub const SQL_C_DEFAULT: u32 = 99u32;
04454e1e 5188#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5189pub const SQL_C_DOUBLE: u32 = 8u32;
04454e1e 5190#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5191pub const SQL_C_FLOAT: u32 = 7u32;
04454e1e 5192#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5193pub const SQL_C_GUID: i32 = -11i32;
04454e1e 5194#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5195pub const SQL_C_INTERVAL_DAY: i32 = -83i32;
04454e1e 5196#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5197pub const SQL_C_INTERVAL_DAY_TO_HOUR: i32 = -87i32;
04454e1e 5198#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5199pub const SQL_C_INTERVAL_DAY_TO_MINUTE: i32 = -88i32;
04454e1e 5200#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5201pub const SQL_C_INTERVAL_DAY_TO_SECOND: i32 = -89i32;
04454e1e 5202#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5203pub const SQL_C_INTERVAL_HOUR: i32 = -84i32;
04454e1e 5204#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5205pub const SQL_C_INTERVAL_HOUR_TO_MINUTE: i32 = -90i32;
04454e1e 5206#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5207pub const SQL_C_INTERVAL_HOUR_TO_SECOND: i32 = -91i32;
04454e1e 5208#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5209pub const SQL_C_INTERVAL_MINUTE: i32 = -85i32;
04454e1e 5210#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5211pub const SQL_C_INTERVAL_MINUTE_TO_SECOND: i32 = -92i32;
04454e1e 5212#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5213pub const SQL_C_INTERVAL_MONTH: i32 = -81i32;
04454e1e 5214#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5215pub const SQL_C_INTERVAL_SECOND: i32 = -86i32;
04454e1e 5216#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5217pub const SQL_C_INTERVAL_YEAR: i32 = -80i32;
04454e1e 5218#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5219pub const SQL_C_INTERVAL_YEAR_TO_MONTH: i32 = -82i32;
04454e1e 5220#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5221pub const SQL_C_LONG: u32 = 4u32;
04454e1e 5222#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5223pub const SQL_C_NUMERIC: u32 = 2u32;
04454e1e 5224#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5225pub const SQL_C_SHORT: u32 = 5u32;
04454e1e 5226#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5227pub const SQL_C_TCHAR: i32 = -8i32;
04454e1e 5228#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5229pub const SQL_C_TIME: u32 = 10u32;
04454e1e 5230#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5231pub const SQL_C_TIMESTAMP: u32 = 11u32;
04454e1e 5232#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5233pub const SQL_C_TINYINT: i32 = -6i32;
04454e1e 5234#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5235pub const SQL_C_TYPE_DATE: u32 = 91u32;
04454e1e 5236#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5237pub const SQL_C_TYPE_TIME: u32 = 92u32;
04454e1e 5238#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5239pub const SQL_C_TYPE_TIMESTAMP: u32 = 93u32;
04454e1e 5240#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5241pub const SQL_C_VARBOOKMARK: i32 = -2i32;
04454e1e 5242#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5243pub const SQL_C_WCHAR: i32 = -8i32;
04454e1e 5244#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5245pub const SQL_DATABASE_NAME: u32 = 16u32;
04454e1e 5246#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5247pub const SQL_DATA_AT_EXEC: i32 = -2i32;
04454e1e 5248#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5249pub const SQL_DATA_SOURCE_NAME: u32 = 2u32;
04454e1e 5250#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5251pub const SQL_DATA_SOURCE_READ_ONLY: u32 = 25u32;
04454e1e 5252#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5253pub const SQL_DATE: u32 = 9u32;
04454e1e 5254#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5255pub const SQL_DATETIME: u32 = 9u32;
04454e1e 5256#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5257pub const SQL_DATETIME_LITERALS: u32 = 119u32;
04454e1e 5258#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5259pub const SQL_DATE_LEN: u32 = 10u32;
04454e1e 5260#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5261pub const SQL_DAY: u32 = 3u32;
04454e1e 5262#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5263pub const SQL_DAY_TO_HOUR: u32 = 8u32;
04454e1e 5264#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5265pub const SQL_DAY_TO_MINUTE: u32 = 9u32;
04454e1e 5266#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5267pub const SQL_DAY_TO_SECOND: u32 = 10u32;
04454e1e 5268#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5269pub const SQL_DA_DROP_ASSERTION: i32 = 1i32;
04454e1e 5270#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5271pub const SQL_DBMS_NAME: u32 = 17u32;
04454e1e 5272#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5273pub const SQL_DBMS_VER: u32 = 18u32;
04454e1e 5274#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5275pub const SQL_DB_DEFAULT: u32 = 0u32;
04454e1e 5276#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5277pub const SQL_DB_DISCONNECT: u32 = 1u32;
04454e1e 5278#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5279pub const SQL_DB_RETURN_TO_POOL: u32 = 0u32;
04454e1e 5280#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5281pub const SQL_DCS_DROP_CHARACTER_SET: i32 = 1i32;
04454e1e 5282#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5283pub const SQL_DC_DROP_COLLATION: i32 = 1i32;
04454e1e 5284#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5285pub const SQL_DDL_INDEX: u32 = 170u32;
04454e1e 5286#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5287pub const SQL_DD_CASCADE: i32 = 4i32;
04454e1e 5288#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5289pub const SQL_DD_DROP_DOMAIN: i32 = 1i32;
04454e1e 5290#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5291pub const SQL_DD_RESTRICT: i32 = 2i32;
04454e1e 5292#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5293pub const SQL_DECIMAL: u32 = 3u32;
04454e1e 5294#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5295pub const SQL_DEFAULT: u32 = 99u32;
04454e1e 5296#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5297pub const SQL_DEFAULT_PARAM: i32 = -5i32;
04454e1e 5298#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5299pub const SQL_DEFAULT_TXN_ISOLATION: u32 = 26u32;
04454e1e 5300#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5301pub const SQL_DELETE: u32 = 3u32;
04454e1e 5302#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5303pub const SQL_DELETE_BY_BOOKMARK: u32 = 6u32;
04454e1e 5304#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5305pub const SQL_DESCRIBE_PARAMETER: u32 = 10002u32;
04454e1e 5306#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5307pub const SQL_DESC_ALLOC_AUTO: u32 = 1u32;
04454e1e 5308#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5309pub const SQL_DESC_ALLOC_TYPE: u32 = 1099u32;
04454e1e 5310#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5311pub const SQL_DESC_ALLOC_USER: u32 = 2u32;
04454e1e 5312#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5313pub const SQL_DESC_ARRAY_SIZE: u32 = 20u32;
04454e1e 5314#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5315pub const SQL_DESC_ARRAY_STATUS_PTR: u32 = 21u32;
04454e1e 5316#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5317pub const SQL_DESC_BASE_COLUMN_NAME: u32 = 22u32;
04454e1e 5318#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5319pub const SQL_DESC_BASE_TABLE_NAME: u32 = 23u32;
04454e1e 5320#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5321pub const SQL_DESC_BIND_OFFSET_PTR: u32 = 24u32;
04454e1e 5322#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5323pub const SQL_DESC_BIND_TYPE: u32 = 25u32;
04454e1e 5324#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5325pub const SQL_DESC_COUNT: u32 = 1001u32;
04454e1e 5326#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5327pub const SQL_DESC_DATA_PTR: u32 = 1010u32;
04454e1e 5328#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5329pub const SQL_DESC_DATETIME_INTERVAL_CODE: u32 = 1007u32;
04454e1e 5330#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5331pub const SQL_DESC_DATETIME_INTERVAL_PRECISION: u32 = 26u32;
04454e1e 5332#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5333pub const SQL_DESC_INDICATOR_PTR: u32 = 1009u32;
04454e1e 5334#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5335pub const SQL_DESC_LENGTH: u32 = 1003u32;
04454e1e 5336#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5337pub const SQL_DESC_LITERAL_PREFIX: u32 = 27u32;
04454e1e 5338#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5339pub const SQL_DESC_LITERAL_SUFFIX: u32 = 28u32;
04454e1e 5340#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5341pub const SQL_DESC_LOCAL_TYPE_NAME: u32 = 29u32;
04454e1e 5342#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5343pub const SQL_DESC_MAXIMUM_SCALE: u32 = 30u32;
04454e1e 5344#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5345pub const SQL_DESC_MINIMUM_SCALE: u32 = 31u32;
04454e1e 5346#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5347pub const SQL_DESC_NAME: u32 = 1011u32;
04454e1e 5348#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5349pub const SQL_DESC_NULLABLE: u32 = 1008u32;
04454e1e 5350#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5351pub const SQL_DESC_NUM_PREC_RADIX: u32 = 32u32;
04454e1e 5352#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5353pub const SQL_DESC_OCTET_LENGTH: u32 = 1013u32;
04454e1e 5354#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5355pub const SQL_DESC_OCTET_LENGTH_PTR: u32 = 1004u32;
04454e1e 5356#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5357pub const SQL_DESC_PARAMETER_TYPE: u32 = 33u32;
04454e1e 5358#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5359pub const SQL_DESC_PRECISION: u32 = 1005u32;
04454e1e 5360#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5361pub const SQL_DESC_ROWS_PROCESSED_PTR: u32 = 34u32;
04454e1e 5362#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5363pub const SQL_DESC_ROWVER: u32 = 35u32;
04454e1e 5364#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5365pub const SQL_DESC_SCALE: u32 = 1006u32;
04454e1e 5366#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5367pub const SQL_DESC_TYPE: u32 = 1002u32;
04454e1e 5368#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5369pub const SQL_DESC_UNNAMED: u32 = 1012u32;
04454e1e 5370#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5371pub const SQL_DIAG_ALTER_DOMAIN: u32 = 3u32;
04454e1e 5372#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5373pub const SQL_DIAG_ALTER_TABLE: u32 = 4u32;
04454e1e 5374#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5375pub const SQL_DIAG_CALL: u32 = 7u32;
04454e1e 5376#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5377pub const SQL_DIAG_CLASS_ORIGIN: u32 = 8u32;
04454e1e 5378#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5379pub const SQL_DIAG_COLUMN_NUMBER: i32 = -1247i32;
04454e1e 5380#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5381pub const SQL_DIAG_CONNECTION_NAME: u32 = 10u32;
04454e1e 5382#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5383pub const SQL_DIAG_CREATE_ASSERTION: u32 = 6u32;
04454e1e 5384#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5385pub const SQL_DIAG_CREATE_CHARACTER_SET: u32 = 8u32;
04454e1e 5386#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5387pub const SQL_DIAG_CREATE_COLLATION: u32 = 10u32;
04454e1e 5388#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5389pub const SQL_DIAG_CREATE_DOMAIN: u32 = 23u32;
04454e1e 5390#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5391pub const SQL_DIAG_CREATE_INDEX: i32 = -1i32;
04454e1e 5392#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5393pub const SQL_DIAG_CREATE_SCHEMA: u32 = 64u32;
04454e1e 5394#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5395pub const SQL_DIAG_CREATE_TABLE: u32 = 77u32;
04454e1e 5396#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5397pub const SQL_DIAG_CREATE_TRANSLATION: u32 = 79u32;
04454e1e 5398#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5399pub const SQL_DIAG_CREATE_VIEW: u32 = 84u32;
04454e1e 5400#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5401pub const SQL_DIAG_CURSOR_ROW_COUNT: i32 = -1249i32;
04454e1e 5402#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5403pub const SQL_DIAG_DELETE_WHERE: u32 = 19u32;
04454e1e 5404#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5405pub const SQL_DIAG_DFC_SS_BASE: i32 = -200i32;
04454e1e 5406#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5407pub const SQL_DIAG_DROP_ASSERTION: u32 = 24u32;
04454e1e 5408#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5409pub const SQL_DIAG_DROP_CHARACTER_SET: u32 = 25u32;
04454e1e 5410#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5411pub const SQL_DIAG_DROP_COLLATION: u32 = 26u32;
04454e1e 5412#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5413pub const SQL_DIAG_DROP_DOMAIN: u32 = 27u32;
04454e1e 5414#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5415pub const SQL_DIAG_DROP_INDEX: i32 = -2i32;
04454e1e 5416#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5417pub const SQL_DIAG_DROP_SCHEMA: u32 = 31u32;
04454e1e 5418#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5419pub const SQL_DIAG_DROP_TABLE: u32 = 32u32;
04454e1e 5420#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5421pub const SQL_DIAG_DROP_TRANSLATION: u32 = 33u32;
04454e1e 5422#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5423pub const SQL_DIAG_DROP_VIEW: u32 = 36u32;
04454e1e 5424#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5425pub const SQL_DIAG_DYNAMIC_DELETE_CURSOR: u32 = 38u32;
04454e1e 5426#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5427pub const SQL_DIAG_DYNAMIC_FUNCTION: u32 = 7u32;
04454e1e 5428#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5429pub const SQL_DIAG_DYNAMIC_FUNCTION_CODE: u32 = 12u32;
04454e1e 5430#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5431pub const SQL_DIAG_DYNAMIC_UPDATE_CURSOR: u32 = 81u32;
04454e1e 5432#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5433pub const SQL_DIAG_GRANT: u32 = 48u32;
04454e1e 5434#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5435pub const SQL_DIAG_INSERT: u32 = 50u32;
04454e1e 5436#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5437pub const SQL_DIAG_MESSAGE_TEXT: u32 = 6u32;
04454e1e 5438#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5439pub const SQL_DIAG_NATIVE: u32 = 5u32;
04454e1e 5440#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5441pub const SQL_DIAG_NUMBER: u32 = 2u32;
04454e1e 5442#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5443pub const SQL_DIAG_RETURNCODE: u32 = 1u32;
04454e1e 5444#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5445pub const SQL_DIAG_REVOKE: u32 = 59u32;
04454e1e 5446#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5447pub const SQL_DIAG_ROW_COUNT: u32 = 3u32;
04454e1e 5448#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5449pub const SQL_DIAG_ROW_NUMBER: i32 = -1248i32;
04454e1e 5450#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5451pub const SQL_DIAG_SELECT_CURSOR: u32 = 85u32;
04454e1e 5452#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5453pub const SQL_DIAG_SERVER_NAME: u32 = 11u32;
04454e1e 5454#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5455pub const SQL_DIAG_SQLSTATE: u32 = 4u32;
04454e1e 5456#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5457pub const SQL_DIAG_SS_BASE: i32 = -1150i32;
04454e1e 5458#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5459pub const SQL_DIAG_SS_MSGSTATE: i32 = -1150i32;
04454e1e 5460#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5461pub const SQL_DIAG_SUBCLASS_ORIGIN: u32 = 9u32;
04454e1e 5462#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5463pub const SQL_DIAG_UNKNOWN_STATEMENT: u32 = 0u32;
04454e1e 5464#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5465pub const SQL_DIAG_UPDATE_WHERE: u32 = 82u32;
04454e1e 5466#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5467pub const SQL_DI_CREATE_INDEX: i32 = 1i32;
04454e1e 5468#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5469pub const SQL_DI_DROP_INDEX: i32 = 2i32;
04454e1e 5470#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5471pub const SQL_DL_SQL92_DATE: i32 = 1i32;
04454e1e 5472#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5473pub const SQL_DL_SQL92_INTERVAL_DAY: i32 = 32i32;
04454e1e 5474#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5475pub const SQL_DL_SQL92_INTERVAL_DAY_TO_HOUR: i32 = 1024i32;
04454e1e 5476#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5477pub const SQL_DL_SQL92_INTERVAL_DAY_TO_MINUTE: i32 = 2048i32;
04454e1e 5478#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5479pub const SQL_DL_SQL92_INTERVAL_DAY_TO_SECOND: i32 = 4096i32;
04454e1e 5480#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5481pub const SQL_DL_SQL92_INTERVAL_HOUR: i32 = 64i32;
04454e1e 5482#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5483pub const SQL_DL_SQL92_INTERVAL_HOUR_TO_MINUTE: i32 = 8192i32;
04454e1e 5484#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5485pub const SQL_DL_SQL92_INTERVAL_HOUR_TO_SECOND: i32 = 16384i32;
04454e1e 5486#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5487pub const SQL_DL_SQL92_INTERVAL_MINUTE: i32 = 128i32;
04454e1e 5488#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5489pub const SQL_DL_SQL92_INTERVAL_MINUTE_TO_SECOND: i32 = 32768i32;
04454e1e 5490#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5491pub const SQL_DL_SQL92_INTERVAL_MONTH: i32 = 16i32;
04454e1e 5492#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5493pub const SQL_DL_SQL92_INTERVAL_SECOND: i32 = 256i32;
04454e1e 5494#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5495pub const SQL_DL_SQL92_INTERVAL_YEAR: i32 = 8i32;
04454e1e 5496#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5497pub const SQL_DL_SQL92_INTERVAL_YEAR_TO_MONTH: i32 = 512i32;
04454e1e 5498#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5499pub const SQL_DL_SQL92_TIME: i32 = 2i32;
04454e1e 5500#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5501pub const SQL_DL_SQL92_TIMESTAMP: i32 = 4i32;
04454e1e 5502#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5503pub const SQL_DM_VER: u32 = 171u32;
04454e1e 5504#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5505pub const SQL_DOUBLE: u32 = 8u32;
04454e1e 5506#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5507pub const SQL_DP_OFF: i32 = 0i32;
04454e1e 5508#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5509pub const SQL_DP_ON: i32 = 1i32;
04454e1e 5510#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5511pub const SQL_DRIVER_AWARE_POOLING_CAPABLE: i32 = 1i32;
04454e1e 5512#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5513pub const SQL_DRIVER_AWARE_POOLING_NOT_CAPABLE: i32 = 0i32;
04454e1e 5514#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5515pub const SQL_DRIVER_AWARE_POOLING_SUPPORTED: u32 = 10024u32;
04454e1e 5516#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5517pub const SQL_DRIVER_COMPLETE: u32 = 1u32;
04454e1e 5518#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5519pub const SQL_DRIVER_COMPLETE_REQUIRED: u32 = 3u32;
04454e1e 5520#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5521pub const SQL_DRIVER_CONN_ATTR_BASE: u32 = 16384u32;
04454e1e 5522#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5523pub const SQL_DRIVER_C_TYPE_BASE: u32 = 16384u32;
04454e1e 5524#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5525pub const SQL_DRIVER_DESC_FIELD_BASE: u32 = 16384u32;
04454e1e 5526#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5527pub const SQL_DRIVER_DIAG_FIELD_BASE: u32 = 16384u32;
04454e1e 5528#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5529pub const SQL_DRIVER_HDBC: u32 = 3u32;
04454e1e 5530#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5531pub const SQL_DRIVER_HDESC: u32 = 135u32;
04454e1e 5532#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5533pub const SQL_DRIVER_HENV: u32 = 4u32;
04454e1e 5534#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5535pub const SQL_DRIVER_HLIB: u32 = 76u32;
04454e1e 5536#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5537pub const SQL_DRIVER_HSTMT: u32 = 5u32;
04454e1e 5538#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5539pub const SQL_DRIVER_INFO_TYPE_BASE: u32 = 16384u32;
04454e1e 5540#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5541pub const SQL_DRIVER_NAME: u32 = 6u32;
04454e1e 5542#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5543pub const SQL_DRIVER_NOPROMPT: u32 = 0u32;
04454e1e 5544#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5545pub const SQL_DRIVER_ODBC_VER: u32 = 77u32;
04454e1e 5546#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5547pub const SQL_DRIVER_PROMPT: u32 = 2u32;
04454e1e 5548#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5549pub const SQL_DRIVER_SQL_TYPE_BASE: u32 = 16384u32;
04454e1e 5550#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5551pub const SQL_DRIVER_STMT_ATTR_BASE: u32 = 16384u32;
04454e1e 5552#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5553pub const SQL_DRIVER_VER: u32 = 7u32;
04454e1e 5554#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5555pub const SQL_DROP: u32 = 1u32;
04454e1e 5556#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5557pub const SQL_DROP_ASSERTION: u32 = 136u32;
04454e1e 5558#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5559pub const SQL_DROP_CHARACTER_SET: u32 = 137u32;
04454e1e 5560#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5561pub const SQL_DROP_COLLATION: u32 = 138u32;
04454e1e 5562#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5563pub const SQL_DROP_DOMAIN: u32 = 139u32;
04454e1e 5564#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5565pub const SQL_DROP_SCHEMA: u32 = 140u32;
04454e1e 5566#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5567pub const SQL_DROP_TABLE: u32 = 141u32;
04454e1e 5568#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5569pub const SQL_DROP_TRANSLATION: u32 = 142u32;
04454e1e 5570#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5571pub const SQL_DROP_VIEW: u32 = 143u32;
04454e1e 5572#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5573pub const SQL_DS_CASCADE: i32 = 4i32;
04454e1e 5574#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5575pub const SQL_DS_DROP_SCHEMA: i32 = 1i32;
04454e1e 5576#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5577pub const SQL_DS_RESTRICT: i32 = 2i32;
04454e1e 5578#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5579pub const SQL_DTC_DONE: i32 = 0i32;
04454e1e 5580#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5581pub const SQL_DTC_ENLIST_EXPENSIVE: i32 = 1i32;
04454e1e 5582#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5583pub const SQL_DTC_TRANSITION_COST: u32 = 1750u32;
04454e1e 5584#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5585pub const SQL_DTC_UNENLIST_EXPENSIVE: i32 = 2i32;
04454e1e 5586#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5587pub const SQL_DTR_DROP_TRANSLATION: i32 = 1i32;
04454e1e 5588#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5589pub const SQL_DT_CASCADE: i32 = 4i32;
04454e1e 5590#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5591pub const SQL_DT_DROP_TABLE: i32 = 1i32;
04454e1e 5592#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5593pub const SQL_DT_RESTRICT: i32 = 2i32;
04454e1e 5594#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5595pub const SQL_DV_CASCADE: i32 = 4i32;
04454e1e 5596#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5597pub const SQL_DV_DROP_VIEW: i32 = 1i32;
04454e1e 5598#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5599pub const SQL_DV_RESTRICT: i32 = 2i32;
04454e1e 5600#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5601pub const SQL_DYNAMIC_CURSOR_ATTRIBUTES1: u32 = 144u32;
04454e1e 5602#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5603pub const SQL_DYNAMIC_CURSOR_ATTRIBUTES2: u32 = 145u32;
04454e1e 5604#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5605pub const SQL_ENSURE: u32 = 1u32;
04454e1e 5606#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5607pub const SQL_ENTIRE_ROWSET: u32 = 0u32;
04454e1e 5608#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5609pub const SQL_EN_OFF: i32 = 0i32;
04454e1e 5610#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5611pub const SQL_EN_ON: i32 = 1i32;
04454e1e 5612#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5613pub const SQL_ERROR: i32 = -1i32;
04454e1e 5614#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5615pub const SQL_EXPRESSIONS_IN_ORDERBY: u32 = 27u32;
04454e1e 5616#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5617pub const SQL_EXT_API_LAST: u32 = 72u32;
04454e1e 5618#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5619pub const SQL_EXT_API_START: u32 = 40u32;
04454e1e 5620#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5621pub const SQL_FALSE: u32 = 0u32;
04454e1e 5622#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5623pub const SQL_FAST_CONNECT: u32 = 1200u32;
04454e1e 5624#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5625pub const SQL_FB_DEFAULT: i32 = 0i32;
04454e1e 5626#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5627pub const SQL_FB_OFF: i32 = 0i32;
04454e1e 5628#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5629pub const SQL_FB_ON: i32 = 1i32;
04454e1e 5630#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5631pub const SQL_FC_DEFAULT: i32 = 0i32;
04454e1e 5632#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5633pub const SQL_FC_OFF: i32 = 0i32;
04454e1e 5634#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5635pub const SQL_FC_ON: i32 = 1i32;
04454e1e 5636#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5637pub const SQL_FD_FETCH_ABSOLUTE: i32 = 16i32;
04454e1e 5638#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5639pub const SQL_FD_FETCH_BOOKMARK: i32 = 128i32;
04454e1e 5640#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5641pub const SQL_FD_FETCH_FIRST: i32 = 2i32;
04454e1e 5642#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5643pub const SQL_FD_FETCH_LAST: i32 = 4i32;
04454e1e 5644#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5645pub const SQL_FD_FETCH_NEXT: i32 = 1i32;
04454e1e 5646#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5647pub const SQL_FD_FETCH_PREV: i32 = 8i32;
04454e1e 5648#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5649pub const SQL_FD_FETCH_PRIOR: i32 = 8i32;
04454e1e 5650#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5651pub const SQL_FD_FETCH_RELATIVE: i32 = 32i32;
04454e1e 5652#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5653pub const SQL_FD_FETCH_RESUME: i32 = 64i32;
04454e1e 5654#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5655pub const SQL_FETCH_ABSOLUTE: u32 = 5u32;
04454e1e 5656#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5657pub const SQL_FETCH_BOOKMARK: u32 = 8u32;
04454e1e 5658#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5659pub const SQL_FETCH_BY_BOOKMARK: u32 = 7u32;
04454e1e 5660#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5661pub const SQL_FETCH_DIRECTION: u32 = 8u32;
04454e1e 5662#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5663pub const SQL_FETCH_FIRST: u32 = 2u32;
04454e1e 5664#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5665pub const SQL_FETCH_FIRST_SYSTEM: u32 = 32u32;
04454e1e 5666#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5667pub const SQL_FETCH_FIRST_USER: u32 = 31u32;
04454e1e 5668#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5669pub const SQL_FETCH_LAST: u32 = 3u32;
04454e1e 5670#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5671pub const SQL_FETCH_NEXT: u32 = 1u32;
04454e1e 5672#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5673pub const SQL_FETCH_PREV: u32 = 4u32;
04454e1e 5674#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5675pub const SQL_FETCH_PRIOR: u32 = 4u32;
04454e1e 5676#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5677pub const SQL_FETCH_RELATIVE: u32 = 6u32;
04454e1e 5678#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5679pub const SQL_FETCH_RESUME: u32 = 7u32;
04454e1e 5680#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5681pub const SQL_FILE_CATALOG: u32 = 2u32;
04454e1e 5682#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5683pub const SQL_FILE_NOT_SUPPORTED: u32 = 0u32;
04454e1e 5684#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5685pub const SQL_FILE_QUALIFIER: u32 = 2u32;
04454e1e 5686#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5687pub const SQL_FILE_TABLE: u32 = 1u32;
04454e1e 5688#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5689pub const SQL_FILE_USAGE: u32 = 84u32;
04454e1e 5690#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5691pub const SQL_FLOAT: u32 = 6u32;
04454e1e 5692#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5693pub const SQL_FN_CVT_CAST: i32 = 2i32;
04454e1e 5694#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5695pub const SQL_FN_CVT_CONVERT: i32 = 1i32;
04454e1e 5696#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5697pub const SQL_FN_NUM_ABS: i32 = 1i32;
04454e1e 5698#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5699pub const SQL_FN_NUM_ACOS: i32 = 2i32;
04454e1e 5700#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5701pub const SQL_FN_NUM_ASIN: i32 = 4i32;
04454e1e 5702#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5703pub const SQL_FN_NUM_ATAN: i32 = 8i32;
04454e1e 5704#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5705pub const SQL_FN_NUM_ATAN2: i32 = 16i32;
04454e1e 5706#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5707pub const SQL_FN_NUM_CEILING: i32 = 32i32;
04454e1e 5708#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5709pub const SQL_FN_NUM_COS: i32 = 64i32;
04454e1e 5710#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5711pub const SQL_FN_NUM_COT: i32 = 128i32;
04454e1e 5712#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5713pub const SQL_FN_NUM_DEGREES: i32 = 262144i32;
04454e1e 5714#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5715pub const SQL_FN_NUM_EXP: i32 = 256i32;
04454e1e 5716#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5717pub const SQL_FN_NUM_FLOOR: i32 = 512i32;
04454e1e 5718#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5719pub const SQL_FN_NUM_LOG: i32 = 1024i32;
04454e1e 5720#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5721pub const SQL_FN_NUM_LOG10: i32 = 524288i32;
04454e1e 5722#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5723pub const SQL_FN_NUM_MOD: i32 = 2048i32;
04454e1e 5724#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5725pub const SQL_FN_NUM_PI: i32 = 65536i32;
04454e1e 5726#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5727pub const SQL_FN_NUM_POWER: i32 = 1048576i32;
04454e1e 5728#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5729pub const SQL_FN_NUM_RADIANS: i32 = 2097152i32;
04454e1e 5730#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5731pub const SQL_FN_NUM_RAND: i32 = 131072i32;
04454e1e 5732#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5733pub const SQL_FN_NUM_ROUND: i32 = 4194304i32;
04454e1e 5734#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5735pub const SQL_FN_NUM_SIGN: i32 = 4096i32;
04454e1e 5736#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5737pub const SQL_FN_NUM_SIN: i32 = 8192i32;
04454e1e 5738#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5739pub const SQL_FN_NUM_SQRT: i32 = 16384i32;
04454e1e 5740#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5741pub const SQL_FN_NUM_TAN: i32 = 32768i32;
04454e1e 5742#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5743pub const SQL_FN_NUM_TRUNCATE: i32 = 8388608i32;
04454e1e 5744#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5745pub const SQL_FN_STR_ASCII: i32 = 8192i32;
04454e1e 5746#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5747pub const SQL_FN_STR_BIT_LENGTH: i32 = 524288i32;
04454e1e 5748#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5749pub const SQL_FN_STR_CHAR: i32 = 16384i32;
04454e1e 5750#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5751pub const SQL_FN_STR_CHARACTER_LENGTH: i32 = 2097152i32;
04454e1e 5752#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5753pub const SQL_FN_STR_CHAR_LENGTH: i32 = 1048576i32;
04454e1e 5754#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5755pub const SQL_FN_STR_CONCAT: i32 = 1i32;
04454e1e 5756#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5757pub const SQL_FN_STR_DIFFERENCE: i32 = 32768i32;
04454e1e 5758#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5759pub const SQL_FN_STR_INSERT: i32 = 2i32;
04454e1e 5760#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5761pub const SQL_FN_STR_LCASE: i32 = 64i32;
04454e1e 5762#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5763pub const SQL_FN_STR_LEFT: i32 = 4i32;
04454e1e 5764#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5765pub const SQL_FN_STR_LENGTH: i32 = 16i32;
04454e1e 5766#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5767pub const SQL_FN_STR_LOCATE: i32 = 32i32;
04454e1e 5768#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5769pub const SQL_FN_STR_LOCATE_2: i32 = 65536i32;
04454e1e 5770#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5771pub const SQL_FN_STR_LTRIM: i32 = 8i32;
04454e1e 5772#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5773pub const SQL_FN_STR_OCTET_LENGTH: i32 = 4194304i32;
04454e1e 5774#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5775pub const SQL_FN_STR_POSITION: i32 = 8388608i32;
04454e1e 5776#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5777pub const SQL_FN_STR_REPEAT: i32 = 128i32;
04454e1e 5778#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5779pub const SQL_FN_STR_REPLACE: i32 = 256i32;
04454e1e 5780#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5781pub const SQL_FN_STR_RIGHT: i32 = 512i32;
04454e1e 5782#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5783pub const SQL_FN_STR_RTRIM: i32 = 1024i32;
04454e1e 5784#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5785pub const SQL_FN_STR_SOUNDEX: i32 = 131072i32;
04454e1e 5786#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5787pub const SQL_FN_STR_SPACE: i32 = 262144i32;
04454e1e 5788#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5789pub const SQL_FN_STR_SUBSTRING: i32 = 2048i32;
04454e1e 5790#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5791pub const SQL_FN_STR_UCASE: i32 = 4096i32;
04454e1e 5792#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5793pub const SQL_FN_SYS_DBNAME: i32 = 2i32;
04454e1e 5794#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5795pub const SQL_FN_SYS_IFNULL: i32 = 4i32;
04454e1e 5796#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5797pub const SQL_FN_SYS_USERNAME: i32 = 1i32;
04454e1e 5798#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5799pub const SQL_FN_TD_CURDATE: i32 = 2i32;
04454e1e 5800#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5801pub const SQL_FN_TD_CURRENT_DATE: i32 = 131072i32;
04454e1e 5802#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5803pub const SQL_FN_TD_CURRENT_TIME: i32 = 262144i32;
04454e1e 5804#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5805pub const SQL_FN_TD_CURRENT_TIMESTAMP: i32 = 524288i32;
04454e1e 5806#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5807pub const SQL_FN_TD_CURTIME: i32 = 512i32;
04454e1e 5808#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5809pub const SQL_FN_TD_DAYNAME: i32 = 32768i32;
04454e1e 5810#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5811pub const SQL_FN_TD_DAYOFMONTH: i32 = 4i32;
04454e1e 5812#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5813pub const SQL_FN_TD_DAYOFWEEK: i32 = 8i32;
04454e1e 5814#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5815pub const SQL_FN_TD_DAYOFYEAR: i32 = 16i32;
04454e1e 5816#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5817pub const SQL_FN_TD_EXTRACT: i32 = 1048576i32;
04454e1e 5818#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5819pub const SQL_FN_TD_HOUR: i32 = 1024i32;
04454e1e 5820#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5821pub const SQL_FN_TD_MINUTE: i32 = 2048i32;
04454e1e 5822#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5823pub const SQL_FN_TD_MONTH: i32 = 32i32;
04454e1e 5824#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5825pub const SQL_FN_TD_MONTHNAME: i32 = 65536i32;
04454e1e 5826#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5827pub const SQL_FN_TD_NOW: i32 = 1i32;
04454e1e 5828#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5829pub const SQL_FN_TD_QUARTER: i32 = 64i32;
04454e1e 5830#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5831pub const SQL_FN_TD_SECOND: i32 = 4096i32;
04454e1e 5832#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5833pub const SQL_FN_TD_TIMESTAMPADD: i32 = 8192i32;
04454e1e 5834#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5835pub const SQL_FN_TD_TIMESTAMPDIFF: i32 = 16384i32;
04454e1e 5836#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5837pub const SQL_FN_TD_WEEK: i32 = 128i32;
04454e1e 5838#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5839pub const SQL_FN_TD_YEAR: i32 = 256i32;
04454e1e 5840#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5841pub const SQL_FN_TSI_DAY: i32 = 16i32;
04454e1e 5842#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5843pub const SQL_FN_TSI_FRAC_SECOND: i32 = 1i32;
04454e1e 5844#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5845pub const SQL_FN_TSI_HOUR: i32 = 8i32;
04454e1e 5846#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5847pub const SQL_FN_TSI_MINUTE: i32 = 4i32;
04454e1e 5848#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5849pub const SQL_FN_TSI_MONTH: i32 = 64i32;
04454e1e 5850#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5851pub const SQL_FN_TSI_QUARTER: i32 = 128i32;
04454e1e 5852#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5853pub const SQL_FN_TSI_SECOND: i32 = 2i32;
04454e1e 5854#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5855pub const SQL_FN_TSI_WEEK: i32 = 32i32;
04454e1e 5856#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5857pub const SQL_FN_TSI_YEAR: i32 = 256i32;
04454e1e 5858#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5859pub const SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES1: u32 = 146u32;
04454e1e 5860#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5861pub const SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES2: u32 = 147u32;
04454e1e 5862#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5863pub const SQL_GB_COLLATE: u32 = 4u32;
04454e1e 5864#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5865pub const SQL_GB_GROUP_BY_CONTAINS_SELECT: u32 = 2u32;
04454e1e 5866#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5867pub const SQL_GB_GROUP_BY_EQUALS_SELECT: u32 = 1u32;
04454e1e 5868#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5869pub const SQL_GB_NOT_SUPPORTED: u32 = 0u32;
04454e1e 5870#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5871pub const SQL_GB_NO_RELATION: u32 = 3u32;
04454e1e 5872#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5873pub const SQL_GD_ANY_COLUMN: i32 = 1i32;
04454e1e 5874#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5875pub const SQL_GD_ANY_ORDER: i32 = 2i32;
04454e1e 5876#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5877pub const SQL_GD_BLOCK: i32 = 4i32;
04454e1e 5878#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5879pub const SQL_GD_BOUND: i32 = 8i32;
04454e1e 5880#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5881pub const SQL_GD_OUTPUT_PARAMS: i32 = 16i32;
04454e1e 5882#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5883pub const SQL_GETDATA_EXTENSIONS: u32 = 81u32;
04454e1e 5884#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5885pub const SQL_GET_BOOKMARK: u32 = 13u32;
04454e1e 5886#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5887pub const SQL_GROUP_BY: u32 = 88u32;
04454e1e 5888#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5889pub const SQL_GUID: i32 = -11i32;
04454e1e 5890#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5891pub const SQL_HANDLE_DBC: u32 = 2u32;
04454e1e 5892#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5893pub const SQL_HANDLE_DBC_INFO_TOKEN: u32 = 6u32;
04454e1e 5894#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5895pub const SQL_HANDLE_DESC: u32 = 4u32;
04454e1e 5896#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5897pub const SQL_HANDLE_ENV: u32 = 1u32;
04454e1e 5898#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5899pub const SQL_HANDLE_SENV: u32 = 5u32;
04454e1e 5900#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5901pub const SQL_HANDLE_STMT: u32 = 3u32;
04454e1e 5902#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5903pub const SQL_HC_DEFAULT: i32 = 0i32;
04454e1e 5904#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5905pub const SQL_HC_OFF: i32 = 0i32;
04454e1e 5906#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5907pub const SQL_HC_ON: i32 = 1i32;
04454e1e 5908#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5909pub const SQL_HOUR: u32 = 4u32;
04454e1e 5910#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5911pub const SQL_HOUR_TO_MINUTE: u32 = 11u32;
04454e1e 5912#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5913pub const SQL_HOUR_TO_SECOND: u32 = 12u32;
04454e1e 5914#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5915pub const SQL_IC_LOWER: u32 = 2u32;
04454e1e 5916#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5917pub const SQL_IC_MIXED: u32 = 4u32;
04454e1e 5918#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5919pub const SQL_IC_SENSITIVE: u32 = 3u32;
04454e1e 5920#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5921pub const SQL_IC_UPPER: u32 = 1u32;
04454e1e 5922#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5923pub const SQL_IDENTIFIER_CASE: u32 = 28u32;
04454e1e 5924#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5925pub const SQL_IDENTIFIER_QUOTE_CHAR: u32 = 29u32;
04454e1e 5926#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5927pub const SQL_IGNORE: i32 = -6i32;
04454e1e 5928#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5929pub const SQL_IK_ASC: i32 = 1i32;
04454e1e 5930#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5931pub const SQL_IK_DESC: i32 = 2i32;
04454e1e 5932#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5933pub const SQL_IK_NONE: i32 = 0i32;
04454e1e 5934#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5935pub const SQL_INDEX_ALL: u32 = 1u32;
04454e1e 5936#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5937pub const SQL_INDEX_CLUSTERED: u32 = 1u32;
04454e1e 5938#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5939pub const SQL_INDEX_HASHED: u32 = 2u32;
04454e1e 5940#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5941pub const SQL_INDEX_KEYWORDS: u32 = 148u32;
04454e1e 5942#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5943pub const SQL_INDEX_OTHER: u32 = 3u32;
04454e1e 5944#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5945pub const SQL_INDEX_UNIQUE: u32 = 0u32;
04454e1e 5946#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5947pub const SQL_INFO_DRIVER_START: u32 = 1000u32;
04454e1e 5948#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5949pub const SQL_INFO_FIRST: u32 = 0u32;
04454e1e 5950#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5951pub const SQL_INFO_LAST: u32 = 114u32;
04454e1e 5952#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5953pub const SQL_INFO_SCHEMA_VIEWS: u32 = 149u32;
04454e1e 5954#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5955pub const SQL_INFO_SS_FIRST: u32 = 1199u32;
04454e1e 5956#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5957pub const SQL_INFO_SS_MAX_USED: u32 = 1200u32;
04454e1e 5958#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5959pub const SQL_INFO_SS_NETLIB_NAME: u32 = 1199u32;
04454e1e 5960#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5961pub const SQL_INFO_SS_NETLIB_NAMEA: u32 = 1200u32;
04454e1e 5962#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5963pub const SQL_INFO_SS_NETLIB_NAMEW: u32 = 1199u32;
04454e1e 5964#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5965pub const SQL_INITIALLY_DEFERRED: u32 = 5u32;
04454e1e 5966#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5967pub const SQL_INITIALLY_IMMEDIATE: u32 = 6u32;
04454e1e 5968#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5969pub const SQL_INSENSITIVE: u32 = 1u32;
04454e1e 5970#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5971pub const SQL_INSERT_STATEMENT: u32 = 172u32;
04454e1e 5972#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5973pub const SQL_INTEGER: u32 = 4u32;
04454e1e 5974#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5975pub const SQL_INTEGRATED_SECURITY: u32 = 1203u32;
04454e1e 5976#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5977pub const SQL_INTEGRITY: u32 = 73u32;
04454e1e 5978#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5979pub const SQL_INTERVAL: u32 = 10u32;
04454e1e 5980#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5981pub const SQL_INTERVAL_DAY: i32 = -83i32;
04454e1e 5982#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5983pub const SQL_INTERVAL_DAY_TO_HOUR: i32 = -87i32;
04454e1e 5984#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5985pub const SQL_INTERVAL_DAY_TO_MINUTE: i32 = -88i32;
04454e1e 5986#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5987pub const SQL_INTERVAL_DAY_TO_SECOND: i32 = -89i32;
04454e1e 5988#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5989pub const SQL_INTERVAL_HOUR: i32 = -84i32;
04454e1e 5990#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5991pub const SQL_INTERVAL_HOUR_TO_MINUTE: i32 = -90i32;
04454e1e 5992#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5993pub const SQL_INTERVAL_HOUR_TO_SECOND: i32 = -91i32;
04454e1e 5994#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5995pub const SQL_INTERVAL_MINUTE: i32 = -85i32;
04454e1e 5996#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5997pub const SQL_INTERVAL_MINUTE_TO_SECOND: i32 = -92i32;
04454e1e 5998#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 5999pub const SQL_INTERVAL_MONTH: i32 = -81i32;
04454e1e 6000#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6001pub const SQL_INTERVAL_SECOND: i32 = -86i32;
04454e1e 6002#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6003pub const SQL_INTERVAL_YEAR: i32 = -80i32;
04454e1e 6004#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6005pub const SQL_INTERVAL_YEAR_TO_MONTH: i32 = -82i32;
04454e1e 6006#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6007pub const SQL_INVALID_HANDLE: i32 = -2i32;
04454e1e 6008#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6009pub const SQL_ISV_ASSERTIONS: i32 = 1i32;
04454e1e 6010#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6011pub const SQL_ISV_CHARACTER_SETS: i32 = 2i32;
04454e1e 6012#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6013pub const SQL_ISV_CHECK_CONSTRAINTS: i32 = 4i32;
04454e1e 6014#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6015pub const SQL_ISV_COLLATIONS: i32 = 8i32;
04454e1e 6016#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6017pub const SQL_ISV_COLUMNS: i32 = 64i32;
04454e1e 6018#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6019pub const SQL_ISV_COLUMN_DOMAIN_USAGE: i32 = 16i32;
04454e1e 6020#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6021pub const SQL_ISV_COLUMN_PRIVILEGES: i32 = 32i32;
04454e1e 6022#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6023pub const SQL_ISV_CONSTRAINT_COLUMN_USAGE: i32 = 128i32;
04454e1e 6024#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6025pub const SQL_ISV_CONSTRAINT_TABLE_USAGE: i32 = 256i32;
04454e1e 6026#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6027pub const SQL_ISV_DOMAINS: i32 = 1024i32;
04454e1e 6028#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6029pub const SQL_ISV_DOMAIN_CONSTRAINTS: i32 = 512i32;
04454e1e 6030#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6031pub const SQL_ISV_KEY_COLUMN_USAGE: i32 = 2048i32;
04454e1e 6032#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6033pub const SQL_ISV_REFERENTIAL_CONSTRAINTS: i32 = 4096i32;
04454e1e 6034#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6035pub const SQL_ISV_SCHEMATA: i32 = 8192i32;
04454e1e 6036#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6037pub const SQL_ISV_SQL_LANGUAGES: i32 = 16384i32;
04454e1e 6038#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6039pub const SQL_ISV_TABLES: i32 = 131072i32;
04454e1e 6040#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6041pub const SQL_ISV_TABLE_CONSTRAINTS: i32 = 32768i32;
04454e1e 6042#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6043pub const SQL_ISV_TABLE_PRIVILEGES: i32 = 65536i32;
04454e1e 6044#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6045pub const SQL_ISV_TRANSLATIONS: i32 = 262144i32;
04454e1e 6046#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6047pub const SQL_ISV_USAGE_PRIVILEGES: i32 = 524288i32;
04454e1e 6048#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6049pub const SQL_ISV_VIEWS: i32 = 4194304i32;
04454e1e 6050#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6051pub const SQL_ISV_VIEW_COLUMN_USAGE: i32 = 1048576i32;
04454e1e 6052#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6053pub const SQL_ISV_VIEW_TABLE_USAGE: i32 = 2097152i32;
04454e1e 6054#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6055pub const SQL_IS_DEFAULT: i32 = 0i32;
04454e1e 6056#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6057pub const SQL_IS_INSERT_LITERALS: i32 = 1i32;
04454e1e 6058#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6059pub const SQL_IS_INSERT_SEARCHED: i32 = 2i32;
04454e1e 6060#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6061pub const SQL_IS_INTEGER: i32 = -6i32;
04454e1e 6062#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6063pub const SQL_IS_OFF: i32 = 0i32;
04454e1e 6064#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6065pub const SQL_IS_ON: i32 = 1i32;
04454e1e 6066#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6067pub const SQL_IS_POINTER: i32 = -4i32;
04454e1e 6068#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6069pub const SQL_IS_SELECT_INTO: i32 = 4i32;
04454e1e 6070#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6071pub const SQL_IS_SMALLINT: i32 = -8i32;
04454e1e 6072#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6073pub const SQL_IS_UINTEGER: i32 = -5i32;
04454e1e 6074#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6075pub const SQL_IS_USMALLINT: i32 = -7i32;
04454e1e 6076#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6077pub const SQL_KEYSET_CURSOR_ATTRIBUTES1: u32 = 150u32;
04454e1e 6078#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6079pub const SQL_KEYSET_CURSOR_ATTRIBUTES2: u32 = 151u32;
04454e1e 6080#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6081pub const SQL_KEYSET_SIZE: u32 = 8u32;
04454e1e 6082#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6083pub const SQL_KEYSET_SIZE_DEFAULT: u32 = 0u32;
04454e1e 6084#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6085pub const SQL_KEYWORDS: u32 = 89u32;
04454e1e 6086#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6087pub const SQL_LCK_EXCLUSIVE: i32 = 2i32;
04454e1e 6088#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6089pub const SQL_LCK_NO_CHANGE: i32 = 1i32;
04454e1e 6090#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6091pub const SQL_LCK_UNLOCK: i32 = 4i32;
04454e1e 6092#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6093pub const SQL_LEN_BINARY_ATTR_OFFSET: i32 = -100i32;
04454e1e 6094#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6095pub const SQL_LEN_DATA_AT_EXEC_OFFSET: i32 = -100i32;
04454e1e 6096#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6097pub const SQL_LIKE_ESCAPE_CLAUSE: u32 = 113u32;
04454e1e 6098#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6099pub const SQL_LIKE_ONLY: u32 = 1u32;
04454e1e 6100#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6101pub const SQL_LOCK_EXCLUSIVE: u32 = 1u32;
04454e1e 6102#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6103pub const SQL_LOCK_NO_CHANGE: u32 = 0u32;
04454e1e 6104#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6105pub const SQL_LOCK_TYPES: u32 = 78u32;
04454e1e 6106#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6107pub const SQL_LOCK_UNLOCK: u32 = 2u32;
04454e1e 6108#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6109pub const SQL_LOGIN_TIMEOUT: u32 = 103u32;
04454e1e 6110#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6111pub const SQL_LOGIN_TIMEOUT_DEFAULT: u32 = 15u32;
04454e1e 6112#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6113pub const SQL_LONGVARBINARY: i32 = -4i32;
04454e1e 6114#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6115pub const SQL_LONGVARCHAR: i32 = -1i32;
04454e1e 6116#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6117pub const SQL_MAXIMUM_CATALOG_NAME_LENGTH: u32 = 34u32;
04454e1e 6118#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6119pub const SQL_MAXIMUM_COLUMNS_IN_GROUP_BY: u32 = 97u32;
04454e1e 6120#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6121pub const SQL_MAXIMUM_COLUMNS_IN_INDEX: u32 = 98u32;
04454e1e 6122#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6123pub const SQL_MAXIMUM_COLUMNS_IN_ORDER_BY: u32 = 99u32;
04454e1e 6124#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6125pub const SQL_MAXIMUM_COLUMNS_IN_SELECT: u32 = 100u32;
04454e1e 6126#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6127pub const SQL_MAXIMUM_COLUMN_NAME_LENGTH: u32 = 30u32;
04454e1e 6128#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6129pub const SQL_MAXIMUM_CONCURRENT_ACTIVITIES: u32 = 1u32;
04454e1e 6130#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6131pub const SQL_MAXIMUM_CURSOR_NAME_LENGTH: u32 = 31u32;
04454e1e 6132#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6133pub const SQL_MAXIMUM_DRIVER_CONNECTIONS: u32 = 0u32;
04454e1e 6134#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6135pub const SQL_MAXIMUM_IDENTIFIER_LENGTH: u32 = 10005u32;
04454e1e 6136#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6137pub const SQL_MAXIMUM_INDEX_SIZE: u32 = 102u32;
04454e1e 6138#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6139pub const SQL_MAXIMUM_ROW_SIZE: u32 = 104u32;
04454e1e 6140#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6141pub const SQL_MAXIMUM_SCHEMA_NAME_LENGTH: u32 = 32u32;
04454e1e 6142#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6143pub const SQL_MAXIMUM_STATEMENT_LENGTH: u32 = 105u32;
04454e1e 6144#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6145pub const SQL_MAXIMUM_TABLES_IN_SELECT: u32 = 106u32;
04454e1e 6146#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6147pub const SQL_MAXIMUM_USER_NAME_LENGTH: u32 = 107u32;
04454e1e 6148#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6149pub const SQL_MAX_ASYNC_CONCURRENT_STATEMENTS: u32 = 10022u32;
04454e1e 6150#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6151pub const SQL_MAX_BINARY_LITERAL_LEN: u32 = 112u32;
04454e1e 6152#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6153pub const SQL_MAX_CATALOG_NAME_LEN: u32 = 34u32;
04454e1e 6154#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6155pub const SQL_MAX_CHAR_LITERAL_LEN: u32 = 108u32;
04454e1e 6156#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6157pub const SQL_MAX_COLUMNS_IN_GROUP_BY: u32 = 97u32;
04454e1e 6158#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6159pub const SQL_MAX_COLUMNS_IN_INDEX: u32 = 98u32;
04454e1e 6160#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6161pub const SQL_MAX_COLUMNS_IN_ORDER_BY: u32 = 99u32;
04454e1e 6162#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6163pub const SQL_MAX_COLUMNS_IN_SELECT: u32 = 100u32;
04454e1e 6164#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6165pub const SQL_MAX_COLUMNS_IN_TABLE: u32 = 101u32;
04454e1e 6166#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6167pub const SQL_MAX_COLUMN_NAME_LEN: u32 = 30u32;
04454e1e 6168#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6169pub const SQL_MAX_CONCURRENT_ACTIVITIES: u32 = 1u32;
04454e1e 6170#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6171pub const SQL_MAX_CURSOR_NAME_LEN: u32 = 31u32;
04454e1e 6172#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6173pub const SQL_MAX_DRIVER_CONNECTIONS: u32 = 0u32;
04454e1e 6174#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6175pub const SQL_MAX_DSN_LENGTH: u32 = 32u32;
04454e1e 6176#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6177pub const SQL_MAX_IDENTIFIER_LEN: u32 = 10005u32;
04454e1e 6178#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6179pub const SQL_MAX_INDEX_SIZE: u32 = 102u32;
04454e1e 6180#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6181pub const SQL_MAX_LENGTH: u32 = 3u32;
04454e1e 6182#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6183pub const SQL_MAX_LENGTH_DEFAULT: u32 = 0u32;
04454e1e 6184#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6185pub const SQL_MAX_MESSAGE_LENGTH: u32 = 512u32;
04454e1e 6186#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6187pub const SQL_MAX_NUMERIC_LEN: u32 = 16u32;
04454e1e 6188#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6189pub const SQL_MAX_OPTION_STRING_LENGTH: u32 = 256u32;
04454e1e 6190#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6191pub const SQL_MAX_OWNER_NAME_LEN: u32 = 32u32;
04454e1e 6192#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6193pub const SQL_MAX_PROCEDURE_NAME_LEN: u32 = 33u32;
04454e1e 6194#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6195pub const SQL_MAX_QUALIFIER_NAME_LEN: u32 = 34u32;
04454e1e 6196#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6197pub const SQL_MAX_ROWS: u32 = 1u32;
04454e1e 6198#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6199pub const SQL_MAX_ROWS_DEFAULT: u32 = 0u32;
04454e1e 6200#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6201pub const SQL_MAX_ROW_SIZE: u32 = 104u32;
04454e1e 6202#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6203pub const SQL_MAX_ROW_SIZE_INCLUDES_LONG: u32 = 103u32;
04454e1e 6204#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6205pub const SQL_MAX_SCHEMA_NAME_LEN: u32 = 32u32;
04454e1e 6206#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6207pub const SQL_MAX_SQLSERVERNAME: u32 = 128u32;
04454e1e 6208#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6209pub const SQL_MAX_STATEMENT_LEN: u32 = 105u32;
04454e1e 6210#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6211pub const SQL_MAX_TABLES_IN_SELECT: u32 = 106u32;
04454e1e 6212#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6213pub const SQL_MAX_TABLE_NAME_LEN: u32 = 35u32;
04454e1e 6214#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6215pub const SQL_MAX_USER_NAME_LEN: u32 = 107u32;
04454e1e 6216#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6217pub const SQL_MINUTE: u32 = 5u32;
04454e1e 6218#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6219pub const SQL_MINUTE_TO_SECOND: u32 = 13u32;
04454e1e 6220#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6221pub const SQL_MODE_DEFAULT: u32 = 0u32;
04454e1e 6222#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6223pub const SQL_MODE_READ_ONLY: u32 = 1u32;
04454e1e 6224#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6225pub const SQL_MODE_READ_WRITE: u32 = 0u32;
04454e1e 6226#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6227pub const SQL_MONTH: u32 = 2u32;
04454e1e 6228#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6229pub const SQL_MORE_INFO_NO: i32 = 0i32;
04454e1e 6230#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6231pub const SQL_MORE_INFO_YES: i32 = 1i32;
04454e1e 6232#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6233pub const SQL_MULTIPLE_ACTIVE_TXN: u32 = 37u32;
04454e1e 6234#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6235pub const SQL_MULT_RESULT_SETS: u32 = 36u32;
04454e1e 6236#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6237pub const SQL_NAMED: u32 = 0u32;
04454e1e 6238#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6239pub const SQL_NB_DEFAULT: i32 = 0i32;
04454e1e 6240#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6241pub const SQL_NB_OFF: i32 = 0i32;
04454e1e 6242#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6243pub const SQL_NB_ON: i32 = 1i32;
04454e1e 6244#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6245pub const SQL_NC_END: u32 = 4u32;
04454e1e 6246#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6247pub const SQL_NC_HIGH: u32 = 0u32;
04454e1e 6248#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6249pub const SQL_NC_LOW: u32 = 1u32;
04454e1e 6250#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6251pub const SQL_NC_OFF: i32 = 0i32;
04454e1e 6252#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6253pub const SQL_NC_ON: i32 = 1i32;
04454e1e 6254#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6255pub const SQL_NC_START: u32 = 2u32;
04454e1e 6256#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6257pub const SQL_NEED_DATA: u32 = 99u32;
04454e1e 6258#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6259pub const SQL_NEED_LONG_DATA_LEN: u32 = 111u32;
04454e1e 6260#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6261pub const SQL_NNC_NON_NULL: u32 = 1u32;
04454e1e 6262#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6263pub const SQL_NNC_NULL: u32 = 0u32;
04454e1e 6264#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6265pub const SQL_NONSCROLLABLE: u32 = 0u32;
04454e1e 6266#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6267pub const SQL_NON_NULLABLE_COLUMNS: u32 = 75u32;
04454e1e 6268#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6269pub const SQL_NOSCAN: u32 = 2u32;
04454e1e 6270#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6271pub const SQL_NOSCAN_DEFAULT: u32 = 0u32;
04454e1e 6272#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6273pub const SQL_NOSCAN_OFF: u32 = 0u32;
04454e1e 6274#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6275pub const SQL_NOSCAN_ON: u32 = 1u32;
04454e1e 6276#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6277pub const SQL_NOT_DEFERRABLE: u32 = 7u32;
04454e1e 6278#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6279pub const SQL_NO_ACTION: u32 = 3u32;
04454e1e 6280#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6281pub const SQL_NO_COLUMN_NUMBER: i32 = -1i32;
04454e1e 6282#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6283pub const SQL_NO_DATA: u32 = 100u32;
04454e1e 6284#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6285pub const SQL_NO_DATA_FOUND: u32 = 100u32;
04454e1e 6286#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6287pub const SQL_NO_NULLS: u32 = 0u32;
04454e1e 6288#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6289pub const SQL_NO_ROW_NUMBER: i32 = -1i32;
04454e1e 6290#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6291pub const SQL_NO_TOTAL: i32 = -4i32;
04454e1e 6292#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6293pub const SQL_NTS: i32 = -3i32;
04454e1e 6294#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6295pub const SQL_NTSL: i32 = -3i32;
04454e1e 6296#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6297pub const SQL_NULLABLE: u32 = 1u32;
04454e1e 6298#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6299pub const SQL_NULLABLE_UNKNOWN: u32 = 2u32;
04454e1e 6300#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6301pub const SQL_NULL_COLLATION: u32 = 85u32;
04454e1e 6302#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6303pub const SQL_NULL_DATA: i32 = -1i32;
04454e1e 6304#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6305pub const SQL_NULL_HANDLE: i32 = 0i32;
04454e1e 6306#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6307pub const SQL_NULL_HDBC: u32 = 0u32;
04454e1e 6308#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6309pub const SQL_NULL_HDESC: u32 = 0u32;
04454e1e 6310#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6311pub const SQL_NULL_HENV: u32 = 0u32;
04454e1e 6312#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6313pub const SQL_NULL_HSTMT: u32 = 0u32;
04454e1e 6314#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6315pub const SQL_NUMERIC: u32 = 2u32;
04454e1e 6316#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6317pub const SQL_NUMERIC_FUNCTIONS: u32 = 49u32;
04454e1e 6318#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6319pub const SQL_NUM_FUNCTIONS: u32 = 23u32;
04454e1e 6320#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6321pub const SQL_OAC_LEVEL1: u32 = 1u32;
04454e1e 6322#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6323pub const SQL_OAC_LEVEL2: u32 = 2u32;
04454e1e 6324#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6325pub const SQL_OAC_NONE: u32 = 0u32;
04454e1e 6326#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6327pub const SQL_ODBC_API_CONFORMANCE: u32 = 9u32;
04454e1e 6328#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6329pub const SQL_ODBC_CURSORS: u32 = 110u32;
04454e1e 6330#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6331pub const SQL_ODBC_INTERFACE_CONFORMANCE: u32 = 152u32;
04454e1e 6332#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6333pub const SQL_ODBC_KEYWORDS : & str = "ABSOLUTE,ACTION,ADA,ADD,ALL,ALLOCATE,ALTER,AND,ANY,ARE,AS,ASC,ASSERTION,AT,AUTHORIZATION,AVG,BEGIN,BETWEEN,BIT,BIT_LENGTH,BOTH,BY,CASCADE,CASCADED,CASE,CAST,CATALOG,CHAR,CHAR_LENGTH,CHARACTER,CHARACTER_LENGTH,CHECK,CLOSE,COALESCE,COLLATE,COLLATION,COLUMN,COMMIT,CONNECT,CONNECTION,CONSTRAINT,CONSTRAINTS,CONTINUE,CONVERT,CORRESPONDING,COUNT,CREATE,CROSS,CURRENT,CURRENT_DATE,CURRENT_TIME,CURRENT_TIMESTAMP,CURRENT_USER,CURSOR,DATE,DAY,DEALLOCATE,DEC,DECIMAL,DECLARE,DEFAULT,DEFERRABLE,DEFERRED,DELETE,DESC,DESCRIBE,DESCRIPTOR,DIAGNOSTICS,DISCONNECT,DISTINCT,DOMAIN,DOUBLE,DROP,ELSE,END,END-EXEC,ESCAPE,EXCEPT,EXCEPTION,EXEC,EXECUTE,EXISTS,EXTERNAL,EXTRACT,FALSE,FETCH,FIRST,FLOAT,FOR,FOREIGN,FORTRAN,FOUND,FROM,FULL,GET,GLOBAL,GO,GOTO,GRANT,GROUP,HAVING,HOUR,IDENTITY,IMMEDIATE,IN,INCLUDE,INDEX,INDICATOR,INITIALLY,INNER,INPUT,INSENSITIVE,INSERT,INT,INTEGER,INTERSECT,INTERVAL,INTO,IS,ISOLATION,JOIN,KEY,LANGUAGE,LAST,LEADING,LEFT,LEVEL,LIKE,LOCAL,LOWER,MATCH,MAX,MIN,MINUTE,MODULE,MONTH,NAMES,NATIONAL,NATURAL,NCHAR,NEXT,NO,NONE,NOT,NULL,NULLIF,NUMERIC,OCTET_LENGTH,OF,ON,ONLY,OPEN,OPTION,OR,ORDER,OUTER,OUTPUT,OVERLAPS,PAD,PARTIAL,PASCAL,PLI,POSITION,PRECISION,PREPARE,PRESERVE,PRIMARY,PRIOR,PRIVILEGES,PROCEDURE,PUBLIC,READ,REAL,REFERENCES,RELATIVE,RESTRICT,REVOKE,RIGHT,ROLLBACK,ROWSSCHEMA,SCROLL,SECOND,SECTION,SELECT,SESSION,SESSION_USER,SET,SIZE,SMALLINT,SOME,SPACE,SQL,SQLCA,SQLCODE,SQLERROR,SQLSTATE,SQLWARNING,SUBSTRING,SUM,SYSTEM_USER,TABLE,TEMPORARY,THEN,TIME,TIMESTAMP,TIMEZONE_HOUR,TIMEZONE_MINUTE,TO,TRAILING,TRANSACTION,TRANSLATE,TRANSLATION,TRIM,TRUE,UNION,UNIQUE,UNKNOWN,UPDATE,UPPER,USAGE,USER,USING,VALUE,VALUES,VARCHAR,VARYING,VIEW,WHEN,WHENEVER,WHERE,WITH,WORK,WRITE,YEAR,ZONE" ;
04454e1e 6334#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6335pub const SQL_ODBC_SAG_CLI_CONFORMANCE: u32 = 12u32;
04454e1e 6336#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6337pub const SQL_ODBC_SQL_CONFORMANCE: u32 = 15u32;
04454e1e 6338#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6339pub const SQL_ODBC_SQL_OPT_IEF: u32 = 73u32;
04454e1e 6340#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6341pub const SQL_ODBC_VER: u32 = 10u32;
04454e1e 6342#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6343pub const SQL_OIC_CORE: u32 = 1u32;
04454e1e 6344#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6345pub const SQL_OIC_LEVEL1: u32 = 2u32;
04454e1e 6346#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6347pub const SQL_OIC_LEVEL2: u32 = 3u32;
04454e1e 6348#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6349pub const SQL_OJ_ALL_COMPARISON_OPS: i32 = 64i32;
04454e1e 6350#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6351pub const SQL_OJ_CAPABILITIES: u32 = 115u32;
04454e1e 6352#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6353pub const SQL_OJ_FULL: i32 = 4i32;
04454e1e 6354#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6355pub const SQL_OJ_INNER: i32 = 32i32;
04454e1e 6356#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6357pub const SQL_OJ_LEFT: i32 = 1i32;
04454e1e 6358#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6359pub const SQL_OJ_NESTED: i32 = 8i32;
04454e1e 6360#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6361pub const SQL_OJ_NOT_ORDERED: i32 = 16i32;
04454e1e 6362#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6363pub const SQL_OJ_RIGHT: i32 = 2i32;
04454e1e 6364#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6365pub const SQL_OPT_TRACE: u32 = 104u32;
04454e1e 6366#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6367pub const SQL_OPT_TRACEFILE: u32 = 105u32;
04454e1e 6368#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6369pub const SQL_OPT_TRACE_DEFAULT: u32 = 0u32;
04454e1e 6370#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6371pub const SQL_OPT_TRACE_FILE_DEFAULT: &str = "\\SQL.LOG";
04454e1e 6372#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6373pub const SQL_OPT_TRACE_OFF: u32 = 0u32;
04454e1e 6374#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6375pub const SQL_OPT_TRACE_ON: u32 = 1u32;
04454e1e 6376#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6377pub const SQL_ORDER_BY_COLUMNS_IN_SELECT: u32 = 90u32;
04454e1e 6378#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6379pub const SQL_OSCC_COMPLIANT: u32 = 1u32;
04454e1e 6380#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6381pub const SQL_OSCC_NOT_COMPLIANT: u32 = 0u32;
04454e1e 6382#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6383pub const SQL_OSC_CORE: u32 = 1u32;
04454e1e 6384#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6385pub const SQL_OSC_EXTENDED: u32 = 2u32;
04454e1e 6386#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6387pub const SQL_OSC_MINIMUM: u32 = 0u32;
04454e1e 6388#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6389pub const SQL_OUTER_JOINS: u32 = 38u32;
04454e1e 6390#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6391pub const SQL_OUTER_JOIN_CAPABILITIES: u32 = 115u32;
04454e1e 6392#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6393pub const SQL_OU_DML_STATEMENTS: i32 = 1i32;
04454e1e 6394#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6395pub const SQL_OU_INDEX_DEFINITION: i32 = 8i32;
04454e1e 6396#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6397pub const SQL_OU_PRIVILEGE_DEFINITION: i32 = 16i32;
04454e1e 6398#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6399pub const SQL_OU_PROCEDURE_INVOCATION: i32 = 2i32;
04454e1e 6400#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6401pub const SQL_OU_TABLE_DEFINITION: i32 = 4i32;
04454e1e 6402#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6403pub const SQL_OV_ODBC2: u32 = 2u32;
04454e1e 6404#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6405pub const SQL_OV_ODBC3: u32 = 3u32;
04454e1e 6406#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6407pub const SQL_OV_ODBC3_80: u32 = 380u32;
04454e1e 6408#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6409pub const SQL_OWNER_TERM: u32 = 39u32;
04454e1e 6410#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6411pub const SQL_OWNER_USAGE: u32 = 91u32;
04454e1e 6412#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6413pub const SQL_PACKET_SIZE: u32 = 112u32;
04454e1e 6414#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6415pub const SQL_PARAM_ARRAY_ROW_COUNTS: u32 = 153u32;
04454e1e 6416#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6417pub const SQL_PARAM_ARRAY_SELECTS: u32 = 154u32;
04454e1e 6418#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6419pub const SQL_PARAM_BIND_BY_COLUMN: u32 = 0u32;
04454e1e 6420#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6421pub const SQL_PARAM_BIND_TYPE_DEFAULT: u32 = 0u32;
04454e1e 6422#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6423pub const SQL_PARAM_DATA_AVAILABLE: u32 = 101u32;
04454e1e 6424#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6425pub const SQL_PARAM_DIAG_UNAVAILABLE: u32 = 1u32;
04454e1e 6426#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6427pub const SQL_PARAM_ERROR: u32 = 5u32;
04454e1e 6428#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6429pub const SQL_PARAM_IGNORE: u32 = 1u32;
04454e1e 6430#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6431pub const SQL_PARAM_INPUT: u32 = 1u32;
04454e1e 6432#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6433pub const SQL_PARAM_INPUT_OUTPUT: u32 = 2u32;
04454e1e 6434#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6435pub const SQL_PARAM_INPUT_OUTPUT_STREAM: u32 = 8u32;
04454e1e 6436#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6437pub const SQL_PARAM_OUTPUT: u32 = 4u32;
04454e1e 6438#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6439pub const SQL_PARAM_OUTPUT_STREAM: u32 = 16u32;
04454e1e 6440#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6441pub const SQL_PARAM_PROCEED: u32 = 0u32;
04454e1e 6442#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6443pub const SQL_PARAM_SUCCESS: u32 = 0u32;
04454e1e 6444#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6445pub const SQL_PARAM_SUCCESS_WITH_INFO: u32 = 6u32;
04454e1e 6446#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6447pub const SQL_PARAM_TYPE_UNKNOWN: u32 = 0u32;
04454e1e 6448#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6449pub const SQL_PARAM_UNUSED: u32 = 7u32;
04454e1e 6450#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6451pub const SQL_PARC_BATCH: u32 = 1u32;
04454e1e 6452#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6453pub const SQL_PARC_NO_BATCH: u32 = 2u32;
04454e1e 6454#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6455pub const SQL_PAS_BATCH: u32 = 1u32;
04454e1e 6456#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6457pub const SQL_PAS_NO_BATCH: u32 = 2u32;
04454e1e 6458#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6459pub const SQL_PAS_NO_SELECT: u32 = 3u32;
04454e1e 6460#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6461pub const SQL_PC_DEFAULT: i32 = 0i32;
04454e1e 6462#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6463pub const SQL_PC_NON_PSEUDO: u32 = 1u32;
04454e1e 6464#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6465pub const SQL_PC_NOT_PSEUDO: u32 = 1u32;
04454e1e 6466#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6467pub const SQL_PC_OFF: i32 = 0i32;
04454e1e 6468#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6469pub const SQL_PC_ON: i32 = 1i32;
04454e1e 6470#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6471pub const SQL_PC_PSEUDO: u32 = 2u32;
04454e1e 6472#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6473pub const SQL_PC_UNKNOWN: u32 = 0u32;
04454e1e 6474#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6475pub const SQL_PERF_START: u32 = 1u32;
04454e1e 6476#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6477pub const SQL_PERF_STOP: u32 = 2u32;
04454e1e 6478#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6479pub const SQL_POSITION: u32 = 0u32;
04454e1e 6480#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6481pub const SQL_POSITIONED_STATEMENTS: u32 = 80u32;
04454e1e 6482#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6483pub const SQL_POS_ADD: i32 = 16i32;
04454e1e 6484#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6485pub const SQL_POS_DELETE: i32 = 8i32;
04454e1e 6486#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6487pub const SQL_POS_OPERATIONS: u32 = 79u32;
04454e1e 6488#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6489pub const SQL_POS_POSITION: i32 = 1i32;
04454e1e 6490#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6491pub const SQL_POS_REFRESH: i32 = 2i32;
04454e1e 6492#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6493pub const SQL_POS_UPDATE: i32 = 4i32;
04454e1e 6494#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6495pub const SQL_PRED_BASIC: u32 = 2u32;
04454e1e 6496#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6497pub const SQL_PRED_CHAR: u32 = 1u32;
04454e1e 6498#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6499pub const SQL_PRED_NONE: u32 = 0u32;
04454e1e 6500#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6501pub const SQL_PRED_SEARCHABLE: u32 = 3u32;
04454e1e 6502#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6503pub const SQL_PRESERVE_CURSORS: u32 = 1204u32;
04454e1e 6504#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6505pub const SQL_PROCEDURES: u32 = 21u32;
04454e1e 6506#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6507pub const SQL_PROCEDURE_TERM: u32 = 40u32;
04454e1e 6508#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6509pub const SQL_PS_POSITIONED_DELETE: i32 = 1i32;
04454e1e 6510#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6511pub const SQL_PS_POSITIONED_UPDATE: i32 = 2i32;
04454e1e 6512#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6513pub const SQL_PS_SELECT_FOR_UPDATE: i32 = 4i32;
04454e1e 6514#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6515pub const SQL_PT_FUNCTION: u32 = 2u32;
04454e1e 6516#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6517pub const SQL_PT_PROCEDURE: u32 = 1u32;
04454e1e 6518#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6519pub const SQL_PT_UNKNOWN: u32 = 0u32;
04454e1e 6520#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6521pub const SQL_QI_DEFAULT: i32 = 1i32;
04454e1e 6522#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6523pub const SQL_QI_OFF: i32 = 0i32;
04454e1e 6524#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6525pub const SQL_QI_ON: i32 = 1i32;
04454e1e 6526#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6527pub const SQL_QL_END: u32 = 2u32;
04454e1e 6528#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6529pub const SQL_QL_START: u32 = 1u32;
04454e1e 6530#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6531pub const SQL_QUALIFIER_LOCATION: u32 = 114u32;
04454e1e 6532#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6533pub const SQL_QUALIFIER_NAME_SEPARATOR: u32 = 41u32;
04454e1e 6534#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6535pub const SQL_QUALIFIER_TERM: u32 = 42u32;
04454e1e 6536#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6537pub const SQL_QUALIFIER_USAGE: u32 = 92u32;
04454e1e 6538#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6539pub const SQL_QUERY_TIMEOUT: u32 = 0u32;
04454e1e 6540#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6541pub const SQL_QUERY_TIMEOUT_DEFAULT: u32 = 0u32;
04454e1e 6542#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6543pub const SQL_QUICK: u32 = 0u32;
04454e1e 6544#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6545pub const SQL_QUIET_MODE: u32 = 111u32;
04454e1e 6546#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6547pub const SQL_QUOTED_IDENTIFIER_CASE: u32 = 93u32;
04454e1e 6548#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6549pub const SQL_QU_DML_STATEMENTS: i32 = 1i32;
04454e1e 6550#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6551pub const SQL_QU_INDEX_DEFINITION: i32 = 8i32;
04454e1e 6552#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6553pub const SQL_QU_PRIVILEGE_DEFINITION: i32 = 16i32;
04454e1e 6554#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6555pub const SQL_QU_PROCEDURE_INVOCATION: i32 = 2i32;
04454e1e 6556#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6557pub const SQL_QU_TABLE_DEFINITION: i32 = 4i32;
04454e1e 6558#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6559pub const SQL_RD_DEFAULT: u32 = 1u32;
04454e1e 6560#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6561pub const SQL_RD_OFF: u32 = 0u32;
04454e1e 6562#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6563pub const SQL_RD_ON: u32 = 1u32;
04454e1e 6564#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6565pub const SQL_REAL: u32 = 7u32;
04454e1e 6566#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6567pub const SQL_REFRESH: u32 = 1u32;
04454e1e 6568#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6569pub const SQL_REMOTE_PWD: u32 = 1201u32;
04454e1e 6570#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6571pub const SQL_RESET_CONNECTION_YES: u32 = 1u32;
04454e1e 6572#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6573pub const SQL_RESET_PARAMS: u32 = 3u32;
04454e1e 6574#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6575pub const SQL_RESET_YES: i32 = 1i32;
04454e1e 6576#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6577pub const SQL_RESTRICT: u32 = 1u32;
04454e1e 6578#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6579pub const SQL_RESULT_COL: u32 = 3u32;
04454e1e 6580#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6581pub const SQL_RETRIEVE_DATA: u32 = 11u32;
04454e1e 6582#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6583pub const SQL_RETURN_VALUE: u32 = 5u32;
04454e1e 6584#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6585pub const SQL_RE_DEFAULT: i32 = 0i32;
04454e1e 6586#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6587pub const SQL_RE_OFF: i32 = 0i32;
04454e1e 6588#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6589pub const SQL_RE_ON: i32 = 1i32;
04454e1e 6590#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6591pub const SQL_ROLLBACK: u32 = 1u32;
04454e1e 6592#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6593pub const SQL_ROWSET_SIZE: u32 = 9u32;
04454e1e 6594#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6595pub const SQL_ROWSET_SIZE_DEFAULT: u32 = 1u32;
04454e1e 6596#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6597pub const SQL_ROWVER: u32 = 2u32;
04454e1e 6598#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6599pub const SQL_ROW_ADDED: u32 = 4u32;
04454e1e 6600#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6601pub const SQL_ROW_DELETED: u32 = 1u32;
04454e1e 6602#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6603pub const SQL_ROW_ERROR: u32 = 5u32;
04454e1e 6604#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6605pub const SQL_ROW_IDENTIFIER: u32 = 1u32;
04454e1e 6606#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6607pub const SQL_ROW_IGNORE: u32 = 1u32;
04454e1e 6608#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6609pub const SQL_ROW_NOROW: u32 = 3u32;
04454e1e 6610#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6611pub const SQL_ROW_NUMBER: u32 = 14u32;
04454e1e 6612#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6613pub const SQL_ROW_NUMBER_UNKNOWN: i32 = -2i32;
04454e1e 6614#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6615pub const SQL_ROW_PROCEED: u32 = 0u32;
04454e1e 6616#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6617pub const SQL_ROW_SUCCESS: u32 = 0u32;
04454e1e 6618#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6619pub const SQL_ROW_SUCCESS_WITH_INFO: u32 = 6u32;
04454e1e 6620#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6621pub const SQL_ROW_UPDATED: u32 = 2u32;
04454e1e 6622#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6623pub const SQL_ROW_UPDATES: u32 = 11u32;
04454e1e 6624#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6625pub const SQL_SCCO_LOCK: i32 = 2i32;
04454e1e 6626#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6627pub const SQL_SCCO_OPT_ROWVER: i32 = 4i32;
04454e1e 6628#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6629pub const SQL_SCCO_OPT_TIMESTAMP: i32 = 4i32;
04454e1e 6630#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6631pub const SQL_SCCO_OPT_VALUES: i32 = 8i32;
04454e1e 6632#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6633pub const SQL_SCCO_READ_ONLY: i32 = 1i32;
04454e1e 6634#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6635pub const SQL_SCC_ISO92_CLI: i32 = 2i32;
04454e1e 6636#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6637pub const SQL_SCC_XOPEN_CLI_VERSION1: i32 = 1i32;
04454e1e 6638#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6639pub const SQL_SCHEMA_TERM: u32 = 39u32;
04454e1e 6640#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6641pub const SQL_SCHEMA_USAGE: u32 = 91u32;
04454e1e 6642#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6643pub const SQL_SCOPE_CURROW: u32 = 0u32;
04454e1e 6644#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6645pub const SQL_SCOPE_SESSION: u32 = 2u32;
04454e1e 6646#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6647pub const SQL_SCOPE_TRANSACTION: u32 = 1u32;
04454e1e 6648#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6649pub const SQL_SCROLLABLE: u32 = 1u32;
04454e1e 6650#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6651pub const SQL_SCROLL_CONCURRENCY: u32 = 43u32;
04454e1e 6652#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6653pub const SQL_SCROLL_DYNAMIC: i32 = -2i32;
04454e1e 6654#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6655pub const SQL_SCROLL_FORWARD_ONLY: i32 = 0i32;
04454e1e 6656#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6657pub const SQL_SCROLL_KEYSET_DRIVEN: i32 = -1i32;
04454e1e 6658#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6659pub const SQL_SCROLL_OPTIONS: u32 = 44u32;
04454e1e 6660#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6661pub const SQL_SCROLL_STATIC: i32 = -3i32;
04454e1e 6662#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6663pub const SQL_SC_FIPS127_2_TRANSITIONAL: i32 = 2i32;
04454e1e 6664#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6665pub const SQL_SC_NON_UNIQUE: u32 = 0u32;
04454e1e 6666#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6667pub const SQL_SC_SQL92_ENTRY: i32 = 1i32;
04454e1e 6668#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6669pub const SQL_SC_SQL92_FULL: i32 = 8i32;
04454e1e 6670#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6671pub const SQL_SC_SQL92_INTERMEDIATE: i32 = 4i32;
04454e1e 6672#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6673pub const SQL_SC_TRY_UNIQUE: u32 = 1u32;
04454e1e 6674#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6675pub const SQL_SC_UNIQUE: u32 = 2u32;
04454e1e 6676#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6677pub const SQL_SDF_CURRENT_DATE: i32 = 1i32;
04454e1e 6678#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6679pub const SQL_SDF_CURRENT_TIME: i32 = 2i32;
04454e1e 6680#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6681pub const SQL_SDF_CURRENT_TIMESTAMP: i32 = 4i32;
04454e1e 6682#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6683pub const SQL_SEARCHABLE: u32 = 3u32;
04454e1e 6684#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6685pub const SQL_SEARCH_PATTERN_ESCAPE: u32 = 14u32;
04454e1e 6686#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6687pub const SQL_SECOND: u32 = 6u32;
04454e1e 6688#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6689pub const SQL_SENSITIVE: u32 = 2u32;
04454e1e 6690#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6691pub const SQL_SERVER_NAME: u32 = 13u32;
04454e1e 6692#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6693pub const SQL_SETPARAM_VALUE_MAX: i32 = -1i32;
04454e1e 6694#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6695pub const SQL_SETPOS_MAX_LOCK_VALUE: u32 = 2u32;
04454e1e 6696#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6697pub const SQL_SETPOS_MAX_OPTION_VALUE: u32 = 4u32;
04454e1e 6698#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6699pub const SQL_SET_DEFAULT: u32 = 4u32;
04454e1e 6700#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6701pub const SQL_SET_NULL: u32 = 2u32;
04454e1e 6702#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6703pub const SQL_SFKD_CASCADE: i32 = 1i32;
04454e1e 6704#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6705pub const SQL_SFKD_NO_ACTION: i32 = 2i32;
04454e1e 6706#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6707pub const SQL_SFKD_SET_DEFAULT: i32 = 4i32;
04454e1e 6708#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6709pub const SQL_SFKD_SET_NULL: i32 = 8i32;
04454e1e 6710#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6711pub const SQL_SFKU_CASCADE: i32 = 1i32;
04454e1e 6712#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6713pub const SQL_SFKU_NO_ACTION: i32 = 2i32;
04454e1e 6714#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6715pub const SQL_SFKU_SET_DEFAULT: i32 = 4i32;
04454e1e 6716#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6717pub const SQL_SFKU_SET_NULL: i32 = 8i32;
04454e1e 6718#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6719pub const SQL_SG_DELETE_TABLE: i32 = 32i32;
04454e1e 6720#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6721pub const SQL_SG_INSERT_COLUMN: i32 = 128i32;
04454e1e 6722#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6723pub const SQL_SG_INSERT_TABLE: i32 = 64i32;
04454e1e 6724#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6725pub const SQL_SG_REFERENCES_COLUMN: i32 = 512i32;
04454e1e 6726#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6727pub const SQL_SG_REFERENCES_TABLE: i32 = 256i32;
04454e1e 6728#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6729pub const SQL_SG_SELECT_TABLE: i32 = 1024i32;
04454e1e 6730#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6731pub const SQL_SG_UPDATE_COLUMN: i32 = 4096i32;
04454e1e 6732#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6733pub const SQL_SG_UPDATE_TABLE: i32 = 2048i32;
04454e1e 6734#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6735pub const SQL_SG_USAGE_ON_CHARACTER_SET: i32 = 2i32;
04454e1e 6736#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6737pub const SQL_SG_USAGE_ON_COLLATION: i32 = 4i32;
04454e1e 6738#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6739pub const SQL_SG_USAGE_ON_DOMAIN: i32 = 1i32;
04454e1e 6740#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6741pub const SQL_SG_USAGE_ON_TRANSLATION: i32 = 8i32;
04454e1e 6742#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6743pub const SQL_SG_WITH_GRANT_OPTION: i32 = 16i32;
04454e1e 6744#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6745pub const SQL_SIGNED_OFFSET: i32 = -20i32;
04454e1e 6746#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6747pub const SQL_SIMULATE_CURSOR: u32 = 10u32;
04454e1e 6748#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6749pub const SQL_SMALLINT: u32 = 5u32;
04454e1e 6750#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6751pub const SQL_SNVF_BIT_LENGTH: i32 = 1i32;
04454e1e 6752#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6753pub const SQL_SNVF_CHARACTER_LENGTH: i32 = 4i32;
04454e1e 6754#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6755pub const SQL_SNVF_CHAR_LENGTH: i32 = 2i32;
04454e1e 6756#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6757pub const SQL_SNVF_EXTRACT: i32 = 8i32;
04454e1e 6758#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6759pub const SQL_SNVF_OCTET_LENGTH: i32 = 16i32;
04454e1e 6760#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6761pub const SQL_SNVF_POSITION: i32 = 32i32;
04454e1e 6762#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6763pub const SQL_SOPT_SS_BASE: u32 = 1225u32;
04454e1e 6764#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6765pub const SQL_SOPT_SS_CURRENT_COMMAND: u32 = 1226u32;
04454e1e 6766#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6767pub const SQL_SOPT_SS_CURSOR_OPTIONS: u32 = 1230u32;
04454e1e 6768#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6769pub const SQL_SOPT_SS_DEFER_PREPARE: u32 = 1232u32;
04454e1e 6770#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6771pub const SQL_SOPT_SS_HIDDEN_COLUMNS: u32 = 1227u32;
04454e1e 6772#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6773pub const SQL_SOPT_SS_MAX_USED: u32 = 1232u32;
04454e1e 6774#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6775pub const SQL_SOPT_SS_NOBROWSETABLE: u32 = 1228u32;
04454e1e 6776#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6777pub const SQL_SOPT_SS_NOCOUNT_STATUS: u32 = 1231u32;
04454e1e 6778#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6779pub const SQL_SOPT_SS_REGIONALIZE: u32 = 1229u32;
04454e1e 6780#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6781pub const SQL_SOPT_SS_TEXTPTR_LOGGING: u32 = 1225u32;
04454e1e 6782#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6783pub const SQL_SO_DYNAMIC: i32 = 4i32;
04454e1e 6784#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6785pub const SQL_SO_FORWARD_ONLY: i32 = 1i32;
04454e1e 6786#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6787pub const SQL_SO_KEYSET_DRIVEN: i32 = 2i32;
04454e1e 6788#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6789pub const SQL_SO_MIXED: i32 = 8i32;
04454e1e 6790#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6791pub const SQL_SO_STATIC: i32 = 16i32;
04454e1e 6792#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6793pub const SQL_SPECIAL_CHARACTERS: u32 = 94u32;
04454e1e 6794#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6795pub const SQL_SPEC_MAJOR: u32 = 3u32;
04454e1e 6796#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6797pub const SQL_SPEC_MINOR: u32 = 80u32;
04454e1e 6798#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6799pub const SQL_SPEC_STRING: &str = "03.80";
04454e1e 6800#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6801pub const SQL_SP_BETWEEN: i32 = 2048i32;
04454e1e 6802#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6803pub const SQL_SP_COMPARISON: i32 = 4096i32;
04454e1e 6804#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6805pub const SQL_SP_EXISTS: i32 = 1i32;
04454e1e 6806#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6807pub const SQL_SP_IN: i32 = 1024i32;
04454e1e 6808#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6809pub const SQL_SP_ISNOTNULL: i32 = 2i32;
04454e1e 6810#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6811pub const SQL_SP_ISNULL: i32 = 4i32;
04454e1e 6812#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6813pub const SQL_SP_LIKE: i32 = 512i32;
04454e1e 6814#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6815pub const SQL_SP_MATCH_FULL: i32 = 8i32;
04454e1e 6816#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6817pub const SQL_SP_MATCH_PARTIAL: i32 = 16i32;
04454e1e 6818#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6819pub const SQL_SP_MATCH_UNIQUE_FULL: i32 = 32i32;
04454e1e 6820#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6821pub const SQL_SP_MATCH_UNIQUE_PARTIAL: i32 = 64i32;
04454e1e 6822#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6823pub const SQL_SP_OVERLAPS: i32 = 128i32;
04454e1e 6824#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6825pub const SQL_SP_QUANTIFIED_COMPARISON: i32 = 8192i32;
04454e1e 6826#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6827pub const SQL_SP_UNIQUE: i32 = 256i32;
04454e1e 6828#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6829pub const SQL_SQL92_DATETIME_FUNCTIONS: u32 = 155u32;
04454e1e 6830#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6831pub const SQL_SQL92_FOREIGN_KEY_DELETE_RULE: u32 = 156u32;
04454e1e 6832#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6833pub const SQL_SQL92_FOREIGN_KEY_UPDATE_RULE: u32 = 157u32;
04454e1e 6834#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6835pub const SQL_SQL92_GRANT: u32 = 158u32;
04454e1e 6836#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6837pub const SQL_SQL92_NUMERIC_VALUE_FUNCTIONS: u32 = 159u32;
04454e1e 6838#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6839pub const SQL_SQL92_PREDICATES: u32 = 160u32;
04454e1e 6840#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6841pub const SQL_SQL92_RELATIONAL_JOIN_OPERATORS: u32 = 161u32;
04454e1e 6842#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6843pub const SQL_SQL92_REVOKE: u32 = 162u32;
04454e1e 6844#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6845pub const SQL_SQL92_ROW_VALUE_CONSTRUCTOR: u32 = 163u32;
04454e1e 6846#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6847pub const SQL_SQL92_STRING_FUNCTIONS: u32 = 164u32;
04454e1e 6848#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6849pub const SQL_SQL92_VALUE_EXPRESSIONS: u32 = 165u32;
04454e1e 6850#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6851pub const SQL_SQLSTATE_SIZE: u32 = 5u32;
04454e1e 6852#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6853pub const SQL_SQLSTATE_SIZEW: u32 = 10u32;
04454e1e 6854#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6855pub const SQL_SQL_CONFORMANCE: u32 = 118u32;
04454e1e 6856#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6857pub const SQL_SQ_COMPARISON: i32 = 1i32;
04454e1e 6858#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6859pub const SQL_SQ_CORRELATED_SUBQUERIES: i32 = 16i32;
04454e1e 6860#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6861pub const SQL_SQ_EXISTS: i32 = 2i32;
04454e1e 6862#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6863pub const SQL_SQ_IN: i32 = 4i32;
04454e1e 6864#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6865pub const SQL_SQ_QUANTIFIED: i32 = 8i32;
04454e1e 6866#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6867pub const SQL_SRJO_CORRESPONDING_CLAUSE: i32 = 1i32;
04454e1e 6868#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6869pub const SQL_SRJO_CROSS_JOIN: i32 = 2i32;
04454e1e 6870#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6871pub const SQL_SRJO_EXCEPT_JOIN: i32 = 4i32;
04454e1e 6872#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6873pub const SQL_SRJO_FULL_OUTER_JOIN: i32 = 8i32;
04454e1e 6874#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6875pub const SQL_SRJO_INNER_JOIN: i32 = 16i32;
04454e1e 6876#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6877pub const SQL_SRJO_INTERSECT_JOIN: i32 = 32i32;
04454e1e 6878#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6879pub const SQL_SRJO_LEFT_OUTER_JOIN: i32 = 64i32;
04454e1e 6880#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6881pub const SQL_SRJO_NATURAL_JOIN: i32 = 128i32;
04454e1e 6882#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6883pub const SQL_SRJO_RIGHT_OUTER_JOIN: i32 = 256i32;
04454e1e 6884#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6885pub const SQL_SRJO_UNION_JOIN: i32 = 512i32;
04454e1e 6886#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6887pub const SQL_SRVC_DEFAULT: i32 = 4i32;
04454e1e 6888#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6889pub const SQL_SRVC_NULL: i32 = 2i32;
04454e1e 6890#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6891pub const SQL_SRVC_ROW_SUBQUERY: i32 = 8i32;
04454e1e 6892#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6893pub const SQL_SRVC_VALUE_EXPRESSION: i32 = 1i32;
04454e1e 6894#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6895pub const SQL_SR_CASCADE: i32 = 32i32;
04454e1e 6896#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6897pub const SQL_SR_DELETE_TABLE: i32 = 128i32;
04454e1e 6898#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6899pub const SQL_SR_GRANT_OPTION_FOR: i32 = 16i32;
04454e1e 6900#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6901pub const SQL_SR_INSERT_COLUMN: i32 = 512i32;
04454e1e 6902#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6903pub const SQL_SR_INSERT_TABLE: i32 = 256i32;
04454e1e 6904#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6905pub const SQL_SR_REFERENCES_COLUMN: i32 = 2048i32;
04454e1e 6906#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6907pub const SQL_SR_REFERENCES_TABLE: i32 = 1024i32;
04454e1e 6908#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6909pub const SQL_SR_RESTRICT: i32 = 64i32;
04454e1e 6910#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6911pub const SQL_SR_SELECT_TABLE: i32 = 4096i32;
04454e1e 6912#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6913pub const SQL_SR_UPDATE_COLUMN: i32 = 16384i32;
04454e1e 6914#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6915pub const SQL_SR_UPDATE_TABLE: i32 = 8192i32;
04454e1e 6916#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6917pub const SQL_SR_USAGE_ON_CHARACTER_SET: i32 = 2i32;
04454e1e 6918#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6919pub const SQL_SR_USAGE_ON_COLLATION: i32 = 4i32;
04454e1e 6920#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6921pub const SQL_SR_USAGE_ON_DOMAIN: i32 = 1i32;
04454e1e 6922#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6923pub const SQL_SR_USAGE_ON_TRANSLATION: i32 = 8i32;
04454e1e 6924#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6925pub const SQL_SSF_CONVERT: i32 = 1i32;
04454e1e 6926#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6927pub const SQL_SSF_LOWER: i32 = 2i32;
04454e1e 6928#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6929pub const SQL_SSF_SUBSTRING: i32 = 8i32;
04454e1e 6930#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6931pub const SQL_SSF_TRANSLATE: i32 = 16i32;
04454e1e 6932#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6933pub const SQL_SSF_TRIM_BOTH: i32 = 32i32;
04454e1e 6934#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6935pub const SQL_SSF_TRIM_LEADING: i32 = 64i32;
04454e1e 6936#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6937pub const SQL_SSF_TRIM_TRAILING: i32 = 128i32;
04454e1e 6938#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6939pub const SQL_SSF_UPPER: i32 = 4i32;
04454e1e 6940#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6941pub const SQL_SS_ADDITIONS: i32 = 1i32;
04454e1e 6942#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6943pub const SQL_SS_DELETIONS: i32 = 2i32;
04454e1e 6944#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6945pub const SQL_SS_DL_DEFAULT: &str = "STATS.LOG";
04454e1e 6946#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6947pub const SQL_SS_QI_DEFAULT: u32 = 30000u32;
04454e1e 6948#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6949pub const SQL_SS_QL_DEFAULT: &str = "QUERY.LOG";
04454e1e 6950#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6951pub const SQL_SS_UPDATES: i32 = 4i32;
04454e1e 6952#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6953pub const SQL_SS_VARIANT: i32 = -150i32;
04454e1e 6954#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6955pub const SQL_STANDARD_CLI_CONFORMANCE: u32 = 166u32;
04454e1e 6956#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6957pub const SQL_STATIC_CURSOR_ATTRIBUTES1: u32 = 167u32;
04454e1e 6958#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6959pub const SQL_STATIC_CURSOR_ATTRIBUTES2: u32 = 168u32;
04454e1e 6960#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6961pub const SQL_STATIC_SENSITIVITY: u32 = 83u32;
04454e1e 6962#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6963pub const SQL_STILL_EXECUTING: u32 = 2u32;
04454e1e 6964#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6965pub const SQL_STMT_OPT_MAX: u32 = 14u32;
04454e1e 6966#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6967pub const SQL_STMT_OPT_MIN: u32 = 0u32;
04454e1e 6968#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6969pub const SQL_STRING_FUNCTIONS: u32 = 50u32;
04454e1e 6970#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6971pub const SQL_SUBQUERIES: u32 = 95u32;
04454e1e 6972#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6973pub const SQL_SUCCESS: u32 = 0u32;
04454e1e 6974#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6975pub const SQL_SUCCESS_WITH_INFO: u32 = 1u32;
04454e1e 6976#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6977pub const SQL_SU_DML_STATEMENTS: i32 = 1i32;
04454e1e 6978#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6979pub const SQL_SU_INDEX_DEFINITION: i32 = 8i32;
04454e1e 6980#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6981pub const SQL_SU_PRIVILEGE_DEFINITION: i32 = 16i32;
04454e1e 6982#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6983pub const SQL_SU_PROCEDURE_INVOCATION: i32 = 2i32;
04454e1e 6984#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6985pub const SQL_SU_TABLE_DEFINITION: i32 = 4i32;
04454e1e 6986#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6987pub const SQL_SVE_CASE: i32 = 1i32;
04454e1e 6988#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6989pub const SQL_SVE_CAST: i32 = 2i32;
04454e1e 6990#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6991pub const SQL_SVE_COALESCE: i32 = 4i32;
04454e1e 6992#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6993pub const SQL_SVE_NULLIF: i32 = 8i32;
04454e1e 6994#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6995pub const SQL_SYSTEM_FUNCTIONS: u32 = 51u32;
04454e1e 6996#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6997pub const SQL_TABLE_STAT: u32 = 0u32;
04454e1e 6998#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 6999pub const SQL_TABLE_TERM: u32 = 45u32;
04454e1e 7000#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7001pub const SQL_TC_ALL: u32 = 2u32;
04454e1e 7002#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7003pub const SQL_TC_DDL_COMMIT: u32 = 3u32;
04454e1e 7004#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7005pub const SQL_TC_DDL_IGNORE: u32 = 4u32;
04454e1e 7006#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7007pub const SQL_TC_DML: u32 = 1u32;
04454e1e 7008#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7009pub const SQL_TC_NONE: u32 = 0u32;
04454e1e 7010#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7011pub const SQL_TEXTPTR_LOGGING: u32 = 1225u32;
04454e1e 7012#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7013pub const SQL_TIME: u32 = 10u32;
04454e1e 7014#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7015pub const SQL_TIMEDATE_ADD_INTERVALS: u32 = 109u32;
04454e1e 7016#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7017pub const SQL_TIMEDATE_DIFF_INTERVALS: u32 = 110u32;
04454e1e 7018#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7019pub const SQL_TIMEDATE_FUNCTIONS: u32 = 52u32;
04454e1e 7020#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7021pub const SQL_TIMESTAMP: u32 = 11u32;
04454e1e 7022#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7023pub const SQL_TIMESTAMP_LEN: u32 = 19u32;
04454e1e 7024#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7025pub const SQL_TIME_LEN: u32 = 8u32;
04454e1e 7026#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7027pub const SQL_TINYINT: i32 = -6i32;
04454e1e 7028#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7029pub const SQL_TL_DEFAULT: i32 = 1i32;
04454e1e 7030#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7031pub const SQL_TL_OFF: i32 = 0i32;
04454e1e 7032#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7033pub const SQL_TL_ON: i32 = 1i32;
04454e1e 7034#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7035pub const SQL_TRANSACTION_CAPABLE: u32 = 46u32;
04454e1e 7036#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7037pub const SQL_TRANSACTION_ISOLATION_OPTION: u32 = 72u32;
04454e1e 7038#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7039pub const SQL_TRANSACTION_READ_COMMITTED: i32 = 2i32;
04454e1e 7040#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7041pub const SQL_TRANSACTION_READ_UNCOMMITTED: i32 = 1i32;
04454e1e 7042#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7043pub const SQL_TRANSACTION_REPEATABLE_READ: i32 = 4i32;
04454e1e 7044#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7045pub const SQL_TRANSACTION_SERIALIZABLE: i32 = 8i32;
04454e1e 7046#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7047pub const SQL_TRANSLATE_DLL: u32 = 106u32;
04454e1e 7048#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7049pub const SQL_TRANSLATE_OPTION: u32 = 107u32;
04454e1e 7050#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7051pub const SQL_TRUE: u32 = 1u32;
04454e1e 7052#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7053pub const SQL_TXN_CAPABLE: u32 = 46u32;
04454e1e 7054#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7055pub const SQL_TXN_ISOLATION: u32 = 108u32;
04454e1e 7056#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7057pub const SQL_TXN_ISOLATION_OPTION: u32 = 72u32;
04454e1e 7058#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7059pub const SQL_TXN_READ_COMMITTED: i32 = 2i32;
04454e1e 7060#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7061pub const SQL_TXN_READ_UNCOMMITTED: i32 = 1i32;
04454e1e 7062#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7063pub const SQL_TXN_REPEATABLE_READ: i32 = 4i32;
04454e1e 7064#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7065pub const SQL_TXN_SERIALIZABLE: i32 = 8i32;
04454e1e 7066#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7067pub const SQL_TXN_VERSIONING: i32 = 16i32;
04454e1e 7068#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7069pub const SQL_TYPE_DATE: u32 = 91u32;
04454e1e 7070#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7071pub const SQL_TYPE_DRIVER_END: i32 = -97i32;
04454e1e 7072#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7073pub const SQL_TYPE_DRIVER_START: i32 = -80i32;
04454e1e 7074#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7075pub const SQL_TYPE_MAX: u32 = 12u32;
04454e1e 7076#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7077pub const SQL_TYPE_MIN: i32 = -7i32;
04454e1e 7078#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7079pub const SQL_TYPE_NULL: u32 = 0u32;
04454e1e 7080#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7081pub const SQL_TYPE_TIME: u32 = 92u32;
04454e1e 7082#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7083pub const SQL_TYPE_TIMESTAMP: u32 = 93u32;
04454e1e 7084#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7085pub const SQL_UB_DEFAULT: u32 = 0u32;
04454e1e 7086#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7087pub const SQL_UB_FIXED: u32 = 1u32;
04454e1e 7088#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7089pub const SQL_UB_OFF: u32 = 0u32;
04454e1e 7090#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7091pub const SQL_UB_ON: u32 = 1u32;
04454e1e 7092#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7093pub const SQL_UB_VARIABLE: u32 = 2u32;
04454e1e 7094#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7095pub const SQL_UNBIND: u32 = 2u32;
04454e1e 7096#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7097pub const SQL_UNICODE: i32 = -95i32;
04454e1e 7098#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7099pub const SQL_UNICODE_CHAR: i32 = -95i32;
04454e1e 7100#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7101pub const SQL_UNICODE_LONGVARCHAR: i32 = -97i32;
04454e1e 7102#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7103pub const SQL_UNICODE_VARCHAR: i32 = -96i32;
04454e1e 7104#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7105pub const SQL_UNION: u32 = 96u32;
04454e1e 7106#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7107pub const SQL_UNION_STATEMENT: u32 = 96u32;
04454e1e 7108#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7109pub const SQL_UNKNOWN_TYPE: u32 = 0u32;
04454e1e 7110#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7111pub const SQL_UNNAMED: u32 = 1u32;
04454e1e 7112#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7113pub const SQL_UNSEARCHABLE: u32 = 0u32;
04454e1e 7114#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7115pub const SQL_UNSIGNED_OFFSET: i32 = -22i32;
04454e1e 7116#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7117pub const SQL_UNSPECIFIED: u32 = 0u32;
04454e1e 7118#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7119pub const SQL_UPDATE: u32 = 2u32;
04454e1e 7120#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7121pub const SQL_UPDATE_BY_BOOKMARK: u32 = 5u32;
04454e1e 7122#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7123pub const SQL_UP_DEFAULT: i32 = 1i32;
04454e1e 7124#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7125pub const SQL_UP_OFF: i32 = 0i32;
04454e1e 7126#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7127pub const SQL_UP_ON: i32 = 1i32;
04454e1e 7128#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7129pub const SQL_UP_ON_DROP: i32 = 2i32;
04454e1e 7130#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7131pub const SQL_USER_NAME: u32 = 47u32;
04454e1e 7132#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7133pub const SQL_USE_BOOKMARKS: u32 = 12u32;
04454e1e 7134#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7135pub const SQL_USE_PROCEDURE_FOR_PREPARE: u32 = 1202u32;
04454e1e 7136#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7137pub const SQL_US_UNION: i32 = 1i32;
04454e1e 7138#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7139pub const SQL_US_UNION_ALL: i32 = 2i32;
04454e1e 7140#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7141pub const SQL_U_UNION: i32 = 1i32;
04454e1e 7142#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7143pub const SQL_U_UNION_ALL: i32 = 2i32;
04454e1e 7144#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7145pub const SQL_VARBINARY: i32 = -3i32;
04454e1e 7146#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7147pub const SQL_VARCHAR: u32 = 12u32;
04454e1e 7148#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7149pub const SQL_VARLEN_DATA: i32 = -10i32;
04454e1e 7150#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7151pub const SQL_WARN_NO: i32 = 0i32;
04454e1e 7152#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7153pub const SQL_WARN_YES: i32 = 1i32;
04454e1e 7154#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7155pub const SQL_WCHAR: i32 = -8i32;
04454e1e 7156#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7157pub const SQL_WLONGVARCHAR: i32 = -10i32;
04454e1e 7158#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7159pub const SQL_WVARCHAR: i32 = -9i32;
04454e1e 7160#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7161pub const SQL_XL_DEFAULT: i32 = 1i32;
04454e1e 7162#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7163pub const SQL_XL_OFF: i32 = 0i32;
04454e1e 7164#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7165pub const SQL_XL_ON: i32 = 1i32;
04454e1e 7166#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7167pub const SQL_XOPEN_CLI_YEAR: u32 = 10000u32;
04454e1e 7168#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7169pub const SQL_YEAR: u32 = 1u32;
04454e1e 7170#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7171pub const SQL_YEAR_TO_MONTH: u32 = 7u32;
04454e1e 7172#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7173pub const SQLudtBINARY: u32 = 3u32;
04454e1e 7174#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7175pub const SQLudtBIT: u32 = 16u32;
04454e1e 7176#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7177pub const SQLudtBITN: u32 = 0u32;
04454e1e 7178#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7179pub const SQLudtCHAR: u32 = 1u32;
04454e1e 7180#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7181pub const SQLudtDATETIM4: u32 = 22u32;
04454e1e 7182#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7183pub const SQLudtDATETIME: u32 = 12u32;
04454e1e 7184#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7185pub const SQLudtDATETIMN: u32 = 15u32;
04454e1e 7186#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7187pub const SQLudtDECML: u32 = 24u32;
04454e1e 7188#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7189pub const SQLudtDECMLN: u32 = 26u32;
04454e1e 7190#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7191pub const SQLudtFLT4: u32 = 23u32;
04454e1e 7192#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7193pub const SQLudtFLT8: u32 = 8u32;
04454e1e 7194#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7195pub const SQLudtFLTN: u32 = 14u32;
04454e1e 7196#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7197pub const SQLudtIMAGE: u32 = 20u32;
04454e1e 7198#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7199pub const SQLudtINT1: u32 = 5u32;
04454e1e 7200#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7201pub const SQLudtINT2: u32 = 6u32;
04454e1e 7202#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7203pub const SQLudtINT4: u32 = 7u32;
04454e1e 7204#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7205pub const SQLudtINTN: u32 = 13u32;
04454e1e 7206#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7207pub const SQLudtMONEY: u32 = 11u32;
04454e1e 7208#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7209pub const SQLudtMONEY4: u32 = 21u32;
04454e1e 7210#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7211pub const SQLudtMONEYN: u32 = 17u32;
04454e1e 7212#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7213pub const SQLudtNUM: u32 = 10u32;
04454e1e 7214#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7215pub const SQLudtNUMN: u32 = 25u32;
04454e1e 7216#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7217pub const SQLudtSYSNAME: u32 = 18u32;
04454e1e 7218#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7219pub const SQLudtTEXT: u32 = 19u32;
04454e1e 7220#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7221pub const SQLudtTIMESTAMP: u32 = 80u32;
04454e1e 7222#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7223pub const SQLudtUNIQUEIDENTIFIER: u32 = 0u32;
04454e1e 7224#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7225pub const SQLudtVARBINARY: u32 = 4u32;
04454e1e 7226#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7227pub const SQLudtVARCHAR: u32 = 2u32;
04454e1e 7228#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7229pub const SRCH_SCHEMA_CACHE_E_UNEXPECTED: i32 = -2147208447i32;
04454e1e 7230#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7231pub const SSPROPVAL_COMMANDTYPE_BULKLOAD: u32 = 22u32;
04454e1e 7232#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7233pub const SSPROPVAL_COMMANDTYPE_REGULAR: u32 = 21u32;
04454e1e 7234#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7235pub const SSPROPVAL_USEPROCFORPREP_OFF: u32 = 0u32;
04454e1e 7236#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7237pub const SSPROPVAL_USEPROCFORPREP_ON: u32 = 1u32;
04454e1e 7238#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7239pub const SSPROPVAL_USEPROCFORPREP_ON_DROP: u32 = 2u32;
04454e1e 7240#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7241pub const SSPROP_ALLOWNATIVEVARIANT: u32 = 3u32;
04454e1e 7242#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7243pub const SSPROP_AUTH_REPL_SERVER_NAME: u32 = 14u32;
04454e1e 7244#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7245pub const SSPROP_CHARACTERSET: u32 = 5u32;
04454e1e 7246#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7247pub const SSPROP_COLUMNLEVELCOLLATION: u32 = 4u32;
04454e1e 7248#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7249pub const SSPROP_COL_COLLATIONNAME: u32 = 14u32;
04454e1e 7250#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7251pub const SSPROP_CURRENTCOLLATION: u32 = 7u32;
04454e1e 7252#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7253pub const SSPROP_CURSORAUTOFETCH: u32 = 12u32;
04454e1e 7254#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7255pub const SSPROP_DEFERPREPARE: u32 = 13u32;
04454e1e 7256#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7257pub const SSPROP_ENABLEFASTLOAD: u32 = 2u32;
04454e1e 7258#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7259pub const SSPROP_FASTLOADKEEPIDENTITY: u32 = 11u32;
04454e1e 7260#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7261pub const SSPROP_FASTLOADKEEPNULLS: u32 = 10u32;
04454e1e 7262#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7263pub const SSPROP_FASTLOADOPTIONS: u32 = 9u32;
04454e1e 7264#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7265pub const SSPROP_INIT_APPNAME: u32 = 10u32;
04454e1e 7266#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7267pub const SSPROP_INIT_AUTOTRANSLATE: u32 = 8u32;
04454e1e 7268#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7269pub const SSPROP_INIT_CURRENTLANGUAGE: u32 = 4u32;
04454e1e 7270#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7271pub const SSPROP_INIT_ENCRYPT: u32 = 13u32;
04454e1e 7272#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7273pub const SSPROP_INIT_FILENAME: u32 = 12u32;
04454e1e 7274#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7275pub const SSPROP_INIT_NETWORKADDRESS: u32 = 5u32;
04454e1e 7276#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7277pub const SSPROP_INIT_NETWORKLIBRARY: u32 = 6u32;
04454e1e 7278#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7279pub const SSPROP_INIT_PACKETSIZE: u32 = 9u32;
04454e1e 7280#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7281pub const SSPROP_INIT_TAGCOLUMNCOLLATION: u32 = 15u32;
04454e1e 7282#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7283pub const SSPROP_INIT_USEPROCFORPREP: u32 = 7u32;
04454e1e 7284#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7285pub const SSPROP_INIT_WSID: u32 = 11u32;
04454e1e 7286#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7287pub const SSPROP_IRowsetFastLoad: u32 = 14u32;
04454e1e 7288#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7289pub const SSPROP_MAXBLOBLENGTH: u32 = 8u32;
04454e1e 7290#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7291pub const SSPROP_QUOTEDCATALOGNAMES: u32 = 2u32;
04454e1e 7292#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7293pub const SSPROP_SORTORDER: u32 = 6u32;
04454e1e 7294#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7295pub const SSPROP_SQLXMLXPROGID: u32 = 4u32;
04454e1e 7296#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7297pub const SSPROP_STREAM_BASEPATH: u32 = 17u32;
04454e1e 7298#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7299pub const SSPROP_STREAM_COMMANDTYPE: u32 = 18u32;
04454e1e 7300#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7301pub const SSPROP_STREAM_CONTENTTYPE: u32 = 23u32;
04454e1e 7302#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7303pub const SSPROP_STREAM_FLAGS: u32 = 20u32;
04454e1e 7304#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7305pub const SSPROP_STREAM_MAPPINGSCHEMA: u32 = 15u32;
04454e1e 7306#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7307pub const SSPROP_STREAM_XMLROOT: u32 = 19u32;
04454e1e 7308#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7309pub const SSPROP_STREAM_XSL: u32 = 16u32;
04454e1e 7310#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7311pub const SSPROP_UNICODECOMPARISONSTYLE: u32 = 3u32;
04454e1e 7312#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7313pub const SSPROP_UNICODELCID: u32 = 2u32;
04454e1e 7314#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7315pub const STD_BOOKMARKLENGTH: u32 = 1u32;
04454e1e 7316#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7317pub const STGM_COLLECTION: i32 = 8192i32;
04454e1e 7318#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7319pub const STGM_OPEN: i32 = -2147483648i32;
04454e1e 7320#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7321pub const STGM_OUTPUT: i32 = 32768i32;
04454e1e 7322#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7323pub const STGM_RECURSIVE: i32 = 16777216i32;
04454e1e 7324#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7325pub const STGM_STRICTOPEN: i32 = 1073741824i32;
04454e1e 7326#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7327pub const STREAM_FLAGS_DISALLOW_ABSOLUTE_PATH: u32 = 2u32;
04454e1e 7328#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7329pub const STREAM_FLAGS_DISALLOW_QUERY: u32 = 4u32;
04454e1e 7330#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7331pub const STREAM_FLAGS_DISALLOW_UPDATEGRAMS: u32 = 64u32;
04454e1e 7332#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7333pub const STREAM_FLAGS_DISALLOW_URL: u32 = 1u32;
04454e1e 7334#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7335pub const STREAM_FLAGS_DONTCACHEMAPPINGSCHEMA: u32 = 8u32;
04454e1e 7336#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7337pub const STREAM_FLAGS_DONTCACHETEMPLATE: u32 = 16u32;
04454e1e 7338#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7339pub const STREAM_FLAGS_DONTCACHEXSL: u32 = 32u32;
04454e1e 7340#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7341pub const STREAM_FLAGS_RESERVED: u32 = 4294901760u32;
04454e1e 7342#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7343pub const STS_ABORTXMLPARSE: i32 = -2147211756i32;
04454e1e 7344#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7345pub const STS_WS_ERROR: i32 = -2147211754i32;
04454e1e 7346#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7347pub const SUBSINFO_ALLFLAGS: u32 = 61311u32;
04454e1e 7348#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7349pub const SUBSMGRENUM_MASK: u32 = 1u32;
04454e1e 7350#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7351pub const SUBSMGRENUM_TEMP: u32 = 1u32;
04454e1e 7352#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7353pub const SUBSMGRUPDATE_MASK: u32 = 1u32;
04454e1e 7354#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7355pub const SUBSMGRUPDATE_MINIMIZE: u32 = 1u32;
04454e1e 7356#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7357pub const SUCCEED: u32 = 1u32;
04454e1e 7358#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7359pub const SUCCEED_ABORT: u32 = 2u32;
04454e1e 7360#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647
FG
7361pub const SUCCEED_ASYNC: u32 = 3u32;
7362pub const SubscriptionMgr: ::windows_sys::core::GUID = ::windows_sys::core::GUID { data1: 2881368528, data2: 28078, data3: 4560, data4: [190, 202, 0, 192, 79, 217, 64, 190] };
04454e1e 7363#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7364pub const TRACE_ON: i32 = 1i32;
04454e1e 7365#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7366pub const TRACE_VERSION: u32 = 1000u32;
04454e1e 7367#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7368pub const TRACE_VS_EVENT_ON: i32 = 2i32;
04454e1e 7369#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7370pub const XML_E_BADSXQL: i32 = -2147212799i32;
04454e1e 7371#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7372pub const XML_E_NODEFAULTNS: i32 = -2147212800i32;
04454e1e 7373#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7374pub const _MAPI_E_ACCOUNT_DISABLED: i32 = -2147221212i32;
04454e1e 7375#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7376pub const _MAPI_E_BAD_CHARWIDTH: i32 = -2147221245i32;
04454e1e 7377#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7378pub const _MAPI_E_BAD_COLUMN: i32 = -2147221224i32;
04454e1e 7379#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7380pub const _MAPI_E_BUSY: i32 = -2147221237i32;
04454e1e 7381#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7382pub const _MAPI_E_COMPUTED: i32 = -2147221222i32;
04454e1e 7383#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7384pub const _MAPI_E_CORRUPT_DATA: i32 = -2147221221i32;
04454e1e 7385#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7386pub const _MAPI_E_DISK_ERROR: i32 = -2147221226i32;
04454e1e 7387#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7388pub const _MAPI_E_END_OF_SESSION: i32 = -2147220992i32;
04454e1e 7389#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7390pub const _MAPI_E_EXTENDED_ERROR: i32 = -2147221223i32;
04454e1e 7391#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7392pub const _MAPI_E_FAILONEPROVIDER: i32 = -2147221219i32;
04454e1e 7393#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7394pub const _MAPI_E_INVALID_ACCESS_TIME: i32 = -2147221213i32;
04454e1e 7395#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7396pub const _MAPI_E_INVALID_ENTRYID: i32 = -2147221241i32;
04454e1e 7397#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7398pub const _MAPI_E_INVALID_OBJECT: i32 = -2147221240i32;
04454e1e 7399#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7400pub const _MAPI_E_INVALID_WORKSTATION_ACCOUNT: i32 = -2147221214i32;
04454e1e 7401#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7402pub const _MAPI_E_LOGON_FAILED: i32 = -2147221231i32;
04454e1e 7403#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7404pub const _MAPI_E_MISSING_REQUIRED_COLUMN: i32 = -2147220990i32;
04454e1e 7405#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7406pub const _MAPI_E_NETWORK_ERROR: i32 = -2147221227i32;
04454e1e 7407#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7408pub const _MAPI_E_NOT_ENOUGH_DISK: i32 = -2147221235i32;
04454e1e 7409#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7410pub const _MAPI_E_NOT_ENOUGH_RESOURCES: i32 = -2147221234i32;
04454e1e 7411#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7412pub const _MAPI_E_NOT_FOUND: i32 = -2147221233i32;
04454e1e 7413#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7414pub const _MAPI_E_NO_SUPPORT: i32 = -2147221246i32;
04454e1e 7415#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7416pub const _MAPI_E_OBJECT_CHANGED: i32 = -2147221239i32;
04454e1e 7417#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7418pub const _MAPI_E_OBJECT_DELETED: i32 = -2147221238i32;
04454e1e 7419#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7420pub const _MAPI_E_PASSWORD_CHANGE_REQUIRED: i32 = -2147221216i32;
04454e1e 7421#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7422pub const _MAPI_E_PASSWORD_EXPIRED: i32 = -2147221215i32;
04454e1e 7423#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7424pub const _MAPI_E_SESSION_LIMIT: i32 = -2147221230i32;
04454e1e 7425#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7426pub const _MAPI_E_STRING_TOO_LONG: i32 = -2147221243i32;
04454e1e 7427#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7428pub const _MAPI_E_TOO_COMPLEX: i32 = -2147221225i32;
04454e1e 7429#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7430pub const _MAPI_E_UNABLE_TO_ABORT: i32 = -2147221228i32;
04454e1e 7431#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7432pub const _MAPI_E_UNCONFIGURED: i32 = -2147221220i32;
04454e1e 7433#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7434pub const _MAPI_E_UNKNOWN_CPID: i32 = -2147221218i32;
04454e1e 7435#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7436pub const _MAPI_E_UNKNOWN_ENTRYID: i32 = -2147220991i32;
04454e1e 7437#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7438pub const _MAPI_E_UNKNOWN_FLAGS: i32 = -2147221242i32;
04454e1e 7439#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7440pub const _MAPI_E_UNKNOWN_LCID: i32 = -2147221217i32;
04454e1e 7441#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7442pub const _MAPI_E_USER_CANCEL: i32 = -2147221229i32;
04454e1e 7443#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7444pub const _MAPI_E_VERSION: i32 = -2147221232i32;
04454e1e 7445#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7446pub const _MAPI_W_NO_SERVICE: i32 = 262659i32;
04454e1e 7447#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7448pub type ACCESS_MASKENUM = i32;
04454e1e 7449#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7450pub const PERM_EXCLUSIVE: ACCESS_MASKENUM = 512i32;
04454e1e 7451#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7452pub const PERM_READDESIGN: ACCESS_MASKENUM = 1024i32;
04454e1e 7453#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7454pub const PERM_WRITEDESIGN: ACCESS_MASKENUM = 2048i32;
04454e1e 7455#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7456pub const PERM_WITHGRANT: ACCESS_MASKENUM = 4096i32;
04454e1e 7457#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7458pub const PERM_REFERENCE: ACCESS_MASKENUM = 8192i32;
04454e1e 7459#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7460pub const PERM_CREATE: ACCESS_MASKENUM = 16384i32;
04454e1e 7461#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7462pub const PERM_INSERT: ACCESS_MASKENUM = 32768i32;
04454e1e 7463#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7464pub const PERM_DELETE: ACCESS_MASKENUM = 65536i32;
04454e1e 7465#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7466pub const PERM_READCONTROL: ACCESS_MASKENUM = 131072i32;
04454e1e 7467#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7468pub const PERM_WRITEPERMISSIONS: ACCESS_MASKENUM = 262144i32;
04454e1e 7469#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7470pub const PERM_WRITEOWNER: ACCESS_MASKENUM = 524288i32;
04454e1e 7471#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7472pub const PERM_MAXIMUM_ALLOWED: ACCESS_MASKENUM = 33554432i32;
04454e1e 7473#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7474pub const PERM_ALL: ACCESS_MASKENUM = 268435456i32;
04454e1e 7475#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7476pub const PERM_EXECUTE: ACCESS_MASKENUM = 536870912i32;
04454e1e 7477#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7478pub const PERM_READ: ACCESS_MASKENUM = -2147483648i32;
04454e1e 7479#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7480pub const PERM_UPDATE: ACCESS_MASKENUM = 1073741824i32;
04454e1e 7481#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7482pub const PERM_DROP: ACCESS_MASKENUM = 256i32;
04454e1e 7483#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7484pub type AUTH_TYPE = i32;
04454e1e 7485#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7486pub const eAUTH_TYPE_ANONYMOUS: AUTH_TYPE = 0i32;
04454e1e 7487#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7488pub const eAUTH_TYPE_NTLM: AUTH_TYPE = 1i32;
04454e1e 7489#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7490pub const eAUTH_TYPE_BASIC: AUTH_TYPE = 2i32;
04454e1e 7491#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7492pub type CASE_REQUIREMENT = i32;
04454e1e 7493#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7494pub const CASE_REQUIREMENT_ANY: CASE_REQUIREMENT = 0i32;
04454e1e 7495#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7496pub const CASE_REQUIREMENT_UPPER_IF_AQS: CASE_REQUIREMENT = 1i32;
04454e1e 7497#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7498pub type CHANNEL_AGENT_FLAGS = i32;
04454e1e 7499#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7500pub const CHANNEL_AGENT_DYNAMIC_SCHEDULE: CHANNEL_AGENT_FLAGS = 1i32;
04454e1e 7501#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7502pub const CHANNEL_AGENT_PRECACHE_SOME: CHANNEL_AGENT_FLAGS = 2i32;
04454e1e 7503#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7504pub const CHANNEL_AGENT_PRECACHE_ALL: CHANNEL_AGENT_FLAGS = 4i32;
04454e1e 7505#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7506pub const CHANNEL_AGENT_PRECACHE_SCRNSAVER: CHANNEL_AGENT_FLAGS = 8i32;
04454e1e 7507#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7508pub type CLUSION_REASON = i32;
04454e1e 7509#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7510pub const CLUSIONREASON_UNKNOWNSCOPE: CLUSION_REASON = 0i32;
04454e1e 7511#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7512pub const CLUSIONREASON_DEFAULT: CLUSION_REASON = 1i32;
04454e1e 7513#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7514pub const CLUSIONREASON_USER: CLUSION_REASON = 2i32;
04454e1e 7515#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7516pub const CLUSIONREASON_GROUPPOLICY: CLUSION_REASON = 3i32;
04454e1e 7517#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7518pub type CONDITION_CREATION_OPTIONS = u32;
04454e1e 7519#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7520pub const CONDITION_CREATION_DEFAULT: CONDITION_CREATION_OPTIONS = 0u32;
04454e1e 7521#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7522pub const CONDITION_CREATION_NONE: CONDITION_CREATION_OPTIONS = 0u32;
04454e1e 7523#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7524pub const CONDITION_CREATION_SIMPLIFY: CONDITION_CREATION_OPTIONS = 1u32;
04454e1e 7525#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7526pub const CONDITION_CREATION_VECTOR_AND: CONDITION_CREATION_OPTIONS = 2u32;
04454e1e 7527#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7528pub const CONDITION_CREATION_VECTOR_OR: CONDITION_CREATION_OPTIONS = 4u32;
04454e1e 7529#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7530pub const CONDITION_CREATION_VECTOR_LEAF: CONDITION_CREATION_OPTIONS = 8u32;
04454e1e 7531#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7532pub const CONDITION_CREATION_USE_CONTENT_LOCALE: CONDITION_CREATION_OPTIONS = 16u32;
04454e1e 7533#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7534pub type CREATESUBSCRIPTIONFLAGS = i32;
04454e1e 7535#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7536pub const CREATESUBS_ADDTOFAVORITES: CREATESUBSCRIPTIONFLAGS = 1i32;
04454e1e 7537#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7538pub const CREATESUBS_FROMFAVORITES: CREATESUBSCRIPTIONFLAGS = 2i32;
04454e1e 7539#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7540pub const CREATESUBS_NOUI: CREATESUBSCRIPTIONFLAGS = 4i32;
04454e1e 7541#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7542pub const CREATESUBS_NOSAVE: CREATESUBSCRIPTIONFLAGS = 8i32;
04454e1e 7543#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7544pub const CREATESUBS_SOFTWAREUPDATE: CREATESUBSCRIPTIONFLAGS = 16i32;
04454e1e 7545#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7546pub type CatalogPausedReason = i32;
04454e1e 7547#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7548pub const CATALOG_PAUSED_REASON_NONE: CatalogPausedReason = 0i32;
04454e1e 7549#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7550pub const CATALOG_PAUSED_REASON_HIGH_IO: CatalogPausedReason = 1i32;
04454e1e 7551#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7552pub const CATALOG_PAUSED_REASON_HIGH_CPU: CatalogPausedReason = 2i32;
04454e1e 7553#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7554pub const CATALOG_PAUSED_REASON_HIGH_NTF_RATE: CatalogPausedReason = 3i32;
04454e1e 7555#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7556pub const CATALOG_PAUSED_REASON_LOW_BATTERY: CatalogPausedReason = 4i32;
04454e1e 7557#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7558pub const CATALOG_PAUSED_REASON_LOW_MEMORY: CatalogPausedReason = 5i32;
04454e1e 7559#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7560pub const CATALOG_PAUSED_REASON_LOW_DISK: CatalogPausedReason = 6i32;
04454e1e 7561#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7562pub const CATALOG_PAUSED_REASON_DELAYED_RECOVERY: CatalogPausedReason = 7i32;
04454e1e 7563#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7564pub const CATALOG_PAUSED_REASON_USER_ACTIVE: CatalogPausedReason = 8i32;
04454e1e 7565#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7566pub const CATALOG_PAUSED_REASON_EXTERNAL: CatalogPausedReason = 9i32;
04454e1e 7567#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7568pub const CATALOG_PAUSED_REASON_UPGRADING: CatalogPausedReason = 10i32;
04454e1e 7569#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7570pub type CatalogStatus = i32;
04454e1e 7571#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7572pub const CATALOG_STATUS_IDLE: CatalogStatus = 0i32;
04454e1e 7573#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7574pub const CATALOG_STATUS_PAUSED: CatalogStatus = 1i32;
04454e1e 7575#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7576pub const CATALOG_STATUS_RECOVERING: CatalogStatus = 2i32;
04454e1e 7577#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7578pub const CATALOG_STATUS_FULL_CRAWL: CatalogStatus = 3i32;
04454e1e 7579#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7580pub const CATALOG_STATUS_INCREMENTAL_CRAWL: CatalogStatus = 4i32;
04454e1e 7581#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7582pub const CATALOG_STATUS_PROCESSING_NOTIFICATIONS: CatalogStatus = 5i32;
04454e1e 7583#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7584pub const CATALOG_STATUS_SHUTTING_DOWN: CatalogStatus = 6i32;
04454e1e 7585#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7586pub type DBACCESSORFLAGSENUM = i32;
04454e1e 7587#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7588pub const DBACCESSOR_INVALID: DBACCESSORFLAGSENUM = 0i32;
04454e1e 7589#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7590pub const DBACCESSOR_PASSBYREF: DBACCESSORFLAGSENUM = 1i32;
04454e1e 7591#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7592pub const DBACCESSOR_ROWDATA: DBACCESSORFLAGSENUM = 2i32;
04454e1e 7593#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7594pub const DBACCESSOR_PARAMETERDATA: DBACCESSORFLAGSENUM = 4i32;
04454e1e 7595#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7596pub const DBACCESSOR_OPTIMIZED: DBACCESSORFLAGSENUM = 8i32;
04454e1e 7597#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7598pub const DBACCESSOR_INHERITED: DBACCESSORFLAGSENUM = 16i32;
04454e1e 7599#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7600pub type DBASYNCHOPENUM = i32;
04454e1e 7601#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7602pub const DBASYNCHOP_OPEN: DBASYNCHOPENUM = 0i32;
04454e1e 7603#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7604pub type DBASYNCHPHASEENUM = i32;
04454e1e 7605#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7606pub const DBASYNCHPHASE_INITIALIZATION: DBASYNCHPHASEENUM = 0i32;
04454e1e 7607#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7608pub const DBASYNCHPHASE_POPULATION: DBASYNCHPHASEENUM = 1i32;
04454e1e 7609#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7610pub const DBASYNCHPHASE_COMPLETE: DBASYNCHPHASEENUM = 2i32;
04454e1e 7611#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7612pub const DBASYNCHPHASE_CANCELED: DBASYNCHPHASEENUM = 3i32;
04454e1e 7613#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7614pub type DBBINDFLAGENUM = i32;
04454e1e 7615#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7616pub const DBBINDFLAG_HTML: DBBINDFLAGENUM = 1i32;
04454e1e 7617#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7618pub type DBBINDSTATUSENUM = i32;
04454e1e 7619#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7620pub const DBBINDSTATUS_OK: DBBINDSTATUSENUM = 0i32;
04454e1e 7621#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7622pub const DBBINDSTATUS_BADORDINAL: DBBINDSTATUSENUM = 1i32;
04454e1e 7623#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7624pub const DBBINDSTATUS_UNSUPPORTEDCONVERSION: DBBINDSTATUSENUM = 2i32;
04454e1e 7625#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7626pub const DBBINDSTATUS_BADBINDINFO: DBBINDSTATUSENUM = 3i32;
04454e1e 7627#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7628pub const DBBINDSTATUS_BADSTORAGEFLAGS: DBBINDSTATUSENUM = 4i32;
04454e1e 7629#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7630pub const DBBINDSTATUS_NOINTERFACE: DBBINDSTATUSENUM = 5i32;
04454e1e 7631#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7632pub const DBBINDSTATUS_MULTIPLESTORAGE: DBBINDSTATUSENUM = 6i32;
04454e1e 7633#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7634pub type DBBINDURLFLAGENUM = i32;
04454e1e 7635#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7636pub const DBBINDURLFLAG_READ: DBBINDURLFLAGENUM = 1i32;
04454e1e 7637#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7638pub const DBBINDURLFLAG_WRITE: DBBINDURLFLAGENUM = 2i32;
04454e1e 7639#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7640pub const DBBINDURLFLAG_READWRITE: DBBINDURLFLAGENUM = 3i32;
04454e1e 7641#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7642pub const DBBINDURLFLAG_SHARE_DENY_READ: DBBINDURLFLAGENUM = 4i32;
04454e1e 7643#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7644pub const DBBINDURLFLAG_SHARE_DENY_WRITE: DBBINDURLFLAGENUM = 8i32;
04454e1e 7645#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7646pub const DBBINDURLFLAG_SHARE_EXCLUSIVE: DBBINDURLFLAGENUM = 12i32;
04454e1e 7647#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7648pub const DBBINDURLFLAG_SHARE_DENY_NONE: DBBINDURLFLAGENUM = 16i32;
04454e1e 7649#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7650pub const DBBINDURLFLAG_ASYNCHRONOUS: DBBINDURLFLAGENUM = 4096i32;
04454e1e 7651#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7652pub const DBBINDURLFLAG_COLLECTION: DBBINDURLFLAGENUM = 8192i32;
04454e1e 7653#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7654pub const DBBINDURLFLAG_DELAYFETCHSTREAM: DBBINDURLFLAGENUM = 16384i32;
04454e1e 7655#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7656pub const DBBINDURLFLAG_DELAYFETCHCOLUMNS: DBBINDURLFLAGENUM = 32768i32;
04454e1e 7657#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7658pub const DBBINDURLFLAG_RECURSIVE: DBBINDURLFLAGENUM = 4194304i32;
04454e1e 7659#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7660pub const DBBINDURLFLAG_OUTPUT: DBBINDURLFLAGENUM = 8388608i32;
04454e1e 7661#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7662pub const DBBINDURLFLAG_WAITFORINIT: DBBINDURLFLAGENUM = 16777216i32;
04454e1e 7663#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7664pub const DBBINDURLFLAG_OPENIFEXISTS: DBBINDURLFLAGENUM = 33554432i32;
04454e1e 7665#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7666pub const DBBINDURLFLAG_OVERWRITE: DBBINDURLFLAGENUM = 67108864i32;
04454e1e 7667#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7668pub const DBBINDURLFLAG_ISSTRUCTUREDDOCUMENT: DBBINDURLFLAGENUM = 134217728i32;
04454e1e 7669#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7670pub type DBBINDURLSTATUSENUM = i32;
04454e1e 7671#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7672pub const DBBINDURLSTATUS_S_OK: DBBINDURLSTATUSENUM = 0i32;
04454e1e 7673#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7674pub const DBBINDURLSTATUS_S_DENYNOTSUPPORTED: DBBINDURLSTATUSENUM = 1i32;
04454e1e 7675#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7676pub const DBBINDURLSTATUS_S_DENYTYPENOTSUPPORTED: DBBINDURLSTATUSENUM = 4i32;
04454e1e 7677#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7678pub const DBBINDURLSTATUS_S_REDIRECTED: DBBINDURLSTATUSENUM = 8i32;
04454e1e 7679#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7680pub type DBBOOKMARK = i32;
04454e1e 7681#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7682pub const DBBMK_INVALID: DBBOOKMARK = 0i32;
04454e1e 7683#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7684pub const DBBMK_FIRST: DBBOOKMARK = 1i32;
04454e1e 7685#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7686pub const DBBMK_LAST: DBBOOKMARK = 2i32;
04454e1e 7687#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7688pub type DBCOLUMNDESCFLAGSENUM = i32;
04454e1e 7689#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7690pub const DBCOLUMNDESCFLAGS_TYPENAME: DBCOLUMNDESCFLAGSENUM = 1i32;
04454e1e 7691#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7692pub const DBCOLUMNDESCFLAGS_ITYPEINFO: DBCOLUMNDESCFLAGSENUM = 2i32;
04454e1e 7693#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7694pub const DBCOLUMNDESCFLAGS_PROPERTIES: DBCOLUMNDESCFLAGSENUM = 4i32;
04454e1e 7695#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7696pub const DBCOLUMNDESCFLAGS_CLSID: DBCOLUMNDESCFLAGSENUM = 8i32;
04454e1e 7697#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7698pub const DBCOLUMNDESCFLAGS_COLSIZE: DBCOLUMNDESCFLAGSENUM = 16i32;
04454e1e 7699#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7700pub const DBCOLUMNDESCFLAGS_DBCID: DBCOLUMNDESCFLAGSENUM = 32i32;
04454e1e 7701#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7702pub const DBCOLUMNDESCFLAGS_WTYPE: DBCOLUMNDESCFLAGSENUM = 64i32;
04454e1e 7703#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7704pub const DBCOLUMNDESCFLAGS_PRECISION: DBCOLUMNDESCFLAGSENUM = 128i32;
04454e1e 7705#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7706pub const DBCOLUMNDESCFLAGS_SCALE: DBCOLUMNDESCFLAGSENUM = 256i32;
04454e1e 7707#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7708pub type DBCOLUMNFLAGS15ENUM = i32;
04454e1e 7709#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7710pub const DBCOLUMNFLAGS_ISCHAPTER: DBCOLUMNFLAGS15ENUM = 8192i32;
04454e1e 7711#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7712pub type DBCOLUMNFLAGSENUM = i32;
04454e1e 7713#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7714pub const DBCOLUMNFLAGS_ISBOOKMARK: DBCOLUMNFLAGSENUM = 1i32;
04454e1e 7715#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7716pub const DBCOLUMNFLAGS_MAYDEFER: DBCOLUMNFLAGSENUM = 2i32;
04454e1e 7717#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7718pub const DBCOLUMNFLAGS_WRITE: DBCOLUMNFLAGSENUM = 4i32;
04454e1e 7719#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7720pub const DBCOLUMNFLAGS_WRITEUNKNOWN: DBCOLUMNFLAGSENUM = 8i32;
04454e1e 7721#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7722pub const DBCOLUMNFLAGS_ISFIXEDLENGTH: DBCOLUMNFLAGSENUM = 16i32;
04454e1e 7723#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7724pub const DBCOLUMNFLAGS_ISNULLABLE: DBCOLUMNFLAGSENUM = 32i32;
04454e1e 7725#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7726pub const DBCOLUMNFLAGS_MAYBENULL: DBCOLUMNFLAGSENUM = 64i32;
04454e1e 7727#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7728pub const DBCOLUMNFLAGS_ISLONG: DBCOLUMNFLAGSENUM = 128i32;
04454e1e 7729#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7730pub const DBCOLUMNFLAGS_ISROWID: DBCOLUMNFLAGSENUM = 256i32;
04454e1e 7731#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7732pub const DBCOLUMNFLAGS_ISROWVER: DBCOLUMNFLAGSENUM = 512i32;
04454e1e 7733#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7734pub const DBCOLUMNFLAGS_CACHEDEFERRED: DBCOLUMNFLAGSENUM = 4096i32;
04454e1e 7735#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7736pub type DBCOLUMNFLAGSENUM20 = i32;
04454e1e 7737#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7738pub const DBCOLUMNFLAGS_SCALEISNEGATIVE: DBCOLUMNFLAGSENUM20 = 16384i32;
04454e1e 7739#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7740pub const DBCOLUMNFLAGS_RESERVED: DBCOLUMNFLAGSENUM20 = 32768i32;
04454e1e 7741#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7742pub type DBCOLUMNFLAGSENUM21 = i32;
04454e1e 7743#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7744pub const DBCOLUMNFLAGS_ISROWURL: DBCOLUMNFLAGSENUM21 = 65536i32;
04454e1e 7745#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7746pub const DBCOLUMNFLAGS_ISDEFAULTSTREAM: DBCOLUMNFLAGSENUM21 = 131072i32;
04454e1e 7747#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7748pub const DBCOLUMNFLAGS_ISCOLLECTION: DBCOLUMNFLAGSENUM21 = 262144i32;
04454e1e 7749#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7750pub type DBCOLUMNFLAGSENUM26 = i32;
04454e1e 7751#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7752pub const DBCOLUMNFLAGS_ISSTREAM: DBCOLUMNFLAGSENUM26 = 524288i32;
04454e1e 7753#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7754pub const DBCOLUMNFLAGS_ISROWSET: DBCOLUMNFLAGSENUM26 = 1048576i32;
04454e1e 7755#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7756pub const DBCOLUMNFLAGS_ISROW: DBCOLUMNFLAGSENUM26 = 2097152i32;
04454e1e 7757#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7758pub const DBCOLUMNFLAGS_ROWSPECIFICCOLUMN: DBCOLUMNFLAGSENUM26 = 4194304i32;
04454e1e 7759#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7760pub type DBCOMMANDPERSISTFLAGENUM = i32;
04454e1e 7761#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7762pub const DBCOMMANDPERSISTFLAG_NOSAVE: DBCOMMANDPERSISTFLAGENUM = 1i32;
04454e1e 7763#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7764pub type DBCOMMANDPERSISTFLAGENUM21 = i32;
04454e1e 7765#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7766pub const DBCOMMANDPERSISTFLAG_DEFAULT: DBCOMMANDPERSISTFLAGENUM21 = 0i32;
04454e1e 7767#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7768pub const DBCOMMANDPERSISTFLAG_PERSISTVIEW: DBCOMMANDPERSISTFLAGENUM21 = 2i32;
04454e1e 7769#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7770pub const DBCOMMANDPERSISTFLAG_PERSISTPROCEDURE: DBCOMMANDPERSISTFLAGENUM21 = 4i32;
04454e1e 7771#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7772pub type DBCOMPAREENUM = i32;
04454e1e 7773#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7774pub const DBCOMPARE_LT: DBCOMPAREENUM = 0i32;
04454e1e 7775#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7776pub const DBCOMPARE_EQ: DBCOMPAREENUM = 1i32;
04454e1e 7777#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7778pub const DBCOMPARE_GT: DBCOMPAREENUM = 2i32;
04454e1e 7779#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7780pub const DBCOMPARE_NE: DBCOMPAREENUM = 3i32;
04454e1e 7781#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7782pub const DBCOMPARE_NOTCOMPARABLE: DBCOMPAREENUM = 4i32;
04454e1e 7783#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7784pub type DBCOMPAREOPSENUM = i32;
04454e1e 7785#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7786pub const DBCOMPAREOPS_LT: DBCOMPAREOPSENUM = 0i32;
04454e1e 7787#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7788pub const DBCOMPAREOPS_LE: DBCOMPAREOPSENUM = 1i32;
04454e1e 7789#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7790pub const DBCOMPAREOPS_EQ: DBCOMPAREOPSENUM = 2i32;
04454e1e 7791#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7792pub const DBCOMPAREOPS_GE: DBCOMPAREOPSENUM = 3i32;
04454e1e 7793#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7794pub const DBCOMPAREOPS_GT: DBCOMPAREOPSENUM = 4i32;
04454e1e 7795#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7796pub const DBCOMPAREOPS_BEGINSWITH: DBCOMPAREOPSENUM = 5i32;
04454e1e 7797#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7798pub const DBCOMPAREOPS_CONTAINS: DBCOMPAREOPSENUM = 6i32;
04454e1e 7799#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7800pub const DBCOMPAREOPS_NE: DBCOMPAREOPSENUM = 7i32;
04454e1e 7801#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7802pub const DBCOMPAREOPS_IGNORE: DBCOMPAREOPSENUM = 8i32;
04454e1e 7803#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7804pub const DBCOMPAREOPS_CASESENSITIVE: DBCOMPAREOPSENUM = 4096i32;
04454e1e 7805#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7806pub const DBCOMPAREOPS_CASEINSENSITIVE: DBCOMPAREOPSENUM = 8192i32;
04454e1e 7807#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7808pub type DBCOMPAREOPSENUM20 = i32;
04454e1e 7809#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7810pub const DBCOMPAREOPS_NOTBEGINSWITH: DBCOMPAREOPSENUM20 = 9i32;
04454e1e 7811#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7812pub const DBCOMPAREOPS_NOTCONTAINS: DBCOMPAREOPSENUM20 = 10i32;
04454e1e 7813#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7814pub type DBCONSTRAINTTYPEENUM = i32;
04454e1e 7815#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7816pub const DBCONSTRAINTTYPE_UNIQUE: DBCONSTRAINTTYPEENUM = 0i32;
04454e1e 7817#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7818pub const DBCONSTRAINTTYPE_FOREIGNKEY: DBCONSTRAINTTYPEENUM = 1i32;
04454e1e 7819#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7820pub const DBCONSTRAINTTYPE_PRIMARYKEY: DBCONSTRAINTTYPEENUM = 2i32;
04454e1e 7821#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7822pub const DBCONSTRAINTTYPE_CHECK: DBCONSTRAINTTYPEENUM = 3i32;
04454e1e 7823#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7824pub type DBCONVERTFLAGSENUM = i32;
04454e1e 7825#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7826pub const DBCONVERTFLAGS_COLUMN: DBCONVERTFLAGSENUM = 0i32;
04454e1e 7827#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7828pub const DBCONVERTFLAGS_PARAMETER: DBCONVERTFLAGSENUM = 1i32;
04454e1e 7829#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7830pub type DBCONVERTFLAGSENUM20 = i32;
04454e1e 7831#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7832pub const DBCONVERTFLAGS_ISLONG: DBCONVERTFLAGSENUM20 = 2i32;
04454e1e 7833#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7834pub const DBCONVERTFLAGS_ISFIXEDLENGTH: DBCONVERTFLAGSENUM20 = 4i32;
04454e1e 7835#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7836pub const DBCONVERTFLAGS_FROMVARIANT: DBCONVERTFLAGSENUM20 = 8i32;
04454e1e 7837#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7838pub type DBCOPYFLAGSENUM = i32;
04454e1e 7839#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7840pub const DBCOPY_ASYNC: DBCOPYFLAGSENUM = 256i32;
04454e1e 7841#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7842pub const DBCOPY_REPLACE_EXISTING: DBCOPYFLAGSENUM = 512i32;
04454e1e 7843#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7844pub const DBCOPY_ALLOW_EMULATION: DBCOPYFLAGSENUM = 1024i32;
04454e1e 7845#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7846pub const DBCOPY_NON_RECURSIVE: DBCOPYFLAGSENUM = 2048i32;
04454e1e 7847#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7848pub const DBCOPY_ATOMIC: DBCOPYFLAGSENUM = 4096i32;
04454e1e 7849#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7850pub type DBCOSTUNITENUM = i32;
04454e1e 7851#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7852pub const DBUNIT_INVALID: DBCOSTUNITENUM = 0i32;
04454e1e 7853#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7854pub const DBUNIT_WEIGHT: DBCOSTUNITENUM = 1i32;
04454e1e 7855#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7856pub const DBUNIT_PERCENT: DBCOSTUNITENUM = 2i32;
04454e1e 7857#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7858pub const DBUNIT_MAXIMUM: DBCOSTUNITENUM = 4i32;
04454e1e 7859#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7860pub const DBUNIT_MINIMUM: DBCOSTUNITENUM = 8i32;
04454e1e 7861#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7862pub const DBUNIT_MICRO_SECOND: DBCOSTUNITENUM = 16i32;
04454e1e 7863#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7864pub const DBUNIT_MILLI_SECOND: DBCOSTUNITENUM = 32i32;
04454e1e 7865#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7866pub const DBUNIT_SECOND: DBCOSTUNITENUM = 64i32;
04454e1e 7867#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7868pub const DBUNIT_MINUTE: DBCOSTUNITENUM = 128i32;
04454e1e 7869#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7870pub const DBUNIT_HOUR: DBCOSTUNITENUM = 256i32;
04454e1e 7871#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7872pub const DBUNIT_BYTE: DBCOSTUNITENUM = 512i32;
04454e1e 7873#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7874pub const DBUNIT_KILO_BYTE: DBCOSTUNITENUM = 1024i32;
04454e1e 7875#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7876pub const DBUNIT_MEGA_BYTE: DBCOSTUNITENUM = 2048i32;
04454e1e 7877#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7878pub const DBUNIT_GIGA_BYTE: DBCOSTUNITENUM = 4096i32;
04454e1e 7879#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7880pub const DBUNIT_NUM_MSGS: DBCOSTUNITENUM = 8192i32;
04454e1e 7881#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7882pub const DBUNIT_NUM_LOCKS: DBCOSTUNITENUM = 16384i32;
04454e1e 7883#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7884pub const DBUNIT_NUM_ROWS: DBCOSTUNITENUM = 32768i32;
04454e1e 7885#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7886pub const DBUNIT_OTHER: DBCOSTUNITENUM = 65536i32;
04454e1e 7887#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7888pub type DBDATACONVERTENUM = i32;
04454e1e 7889#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7890pub const DBDATACONVERT_DEFAULT: DBDATACONVERTENUM = 0i32;
04454e1e 7891#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7892pub const DBDATACONVERT_SETDATABEHAVIOR: DBDATACONVERTENUM = 1i32;
04454e1e 7893#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7894pub const DBDATACONVERT_LENGTHFROMNTS: DBDATACONVERTENUM = 2i32;
04454e1e 7895#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7896pub const DBDATACONVERT_DSTISFIXEDLENGTH: DBDATACONVERTENUM = 4i32;
04454e1e 7897#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7898pub const DBDATACONVERT_DECIMALSCALE: DBDATACONVERTENUM = 8i32;
04454e1e 7899#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7900pub type DBDEFERRABILITYENUM = i32;
04454e1e 7901#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7902pub const DBDEFERRABILITY_DEFERRED: DBDEFERRABILITYENUM = 1i32;
04454e1e 7903#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7904pub const DBDEFERRABILITY_DEFERRABLE: DBDEFERRABILITYENUM = 2i32;
04454e1e 7905#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7906pub type DBDELETEFLAGSENUM = i32;
04454e1e 7907#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7908pub const DBDELETE_ASYNC: DBDELETEFLAGSENUM = 256i32;
04454e1e 7909#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7910pub const DBDELETE_ATOMIC: DBDELETEFLAGSENUM = 4096i32;
04454e1e 7911#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7912pub type DBEVENTPHASEENUM = i32;
04454e1e 7913#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7914pub const DBEVENTPHASE_OKTODO: DBEVENTPHASEENUM = 0i32;
04454e1e 7915#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7916pub const DBEVENTPHASE_ABOUTTODO: DBEVENTPHASEENUM = 1i32;
04454e1e 7917#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7918pub const DBEVENTPHASE_SYNCHAFTER: DBEVENTPHASEENUM = 2i32;
04454e1e 7919#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7920pub const DBEVENTPHASE_FAILEDTODO: DBEVENTPHASEENUM = 3i32;
04454e1e 7921#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7922pub const DBEVENTPHASE_DIDEVENT: DBEVENTPHASEENUM = 4i32;
04454e1e 7923#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7924pub type DBEXECLIMITSENUM = i32;
04454e1e 7925#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7926pub const DBEXECLIMITS_ABORT: DBEXECLIMITSENUM = 1i32;
04454e1e 7927#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7928pub const DBEXECLIMITS_STOP: DBEXECLIMITSENUM = 2i32;
04454e1e 7929#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7930pub const DBEXECLIMITS_SUSPEND: DBEXECLIMITSENUM = 3i32;
04454e1e 7931#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7932pub type DBINDEX_COL_ORDERENUM = i32;
04454e1e 7933#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7934pub const DBINDEX_COL_ORDER_ASC: DBINDEX_COL_ORDERENUM = 0i32;
04454e1e 7935#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7936pub const DBINDEX_COL_ORDER_DESC: DBINDEX_COL_ORDERENUM = 1i32;
04454e1e 7937#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7938pub type DBLITERALENUM = i32;
04454e1e 7939#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7940pub const DBLITERAL_INVALID: DBLITERALENUM = 0i32;
04454e1e 7941#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7942pub const DBLITERAL_BINARY_LITERAL: DBLITERALENUM = 1i32;
04454e1e 7943#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7944pub const DBLITERAL_CATALOG_NAME: DBLITERALENUM = 2i32;
04454e1e 7945#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7946pub const DBLITERAL_CATALOG_SEPARATOR: DBLITERALENUM = 3i32;
04454e1e 7947#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7948pub const DBLITERAL_CHAR_LITERAL: DBLITERALENUM = 4i32;
04454e1e 7949#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7950pub const DBLITERAL_COLUMN_ALIAS: DBLITERALENUM = 5i32;
04454e1e 7951#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7952pub const DBLITERAL_COLUMN_NAME: DBLITERALENUM = 6i32;
04454e1e 7953#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7954pub const DBLITERAL_CORRELATION_NAME: DBLITERALENUM = 7i32;
04454e1e 7955#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7956pub const DBLITERAL_CURSOR_NAME: DBLITERALENUM = 8i32;
04454e1e 7957#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7958pub const DBLITERAL_ESCAPE_PERCENT: DBLITERALENUM = 9i32;
04454e1e 7959#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7960pub const DBLITERAL_ESCAPE_UNDERSCORE: DBLITERALENUM = 10i32;
04454e1e 7961#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7962pub const DBLITERAL_INDEX_NAME: DBLITERALENUM = 11i32;
04454e1e 7963#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7964pub const DBLITERAL_LIKE_PERCENT: DBLITERALENUM = 12i32;
04454e1e 7965#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7966pub const DBLITERAL_LIKE_UNDERSCORE: DBLITERALENUM = 13i32;
04454e1e 7967#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7968pub const DBLITERAL_PROCEDURE_NAME: DBLITERALENUM = 14i32;
04454e1e 7969#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7970pub const DBLITERAL_QUOTE: DBLITERALENUM = 15i32;
04454e1e 7971#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7972pub const DBLITERAL_SCHEMA_NAME: DBLITERALENUM = 16i32;
04454e1e 7973#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7974pub const DBLITERAL_TABLE_NAME: DBLITERALENUM = 17i32;
04454e1e 7975#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7976pub const DBLITERAL_TEXT_COMMAND: DBLITERALENUM = 18i32;
04454e1e 7977#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7978pub const DBLITERAL_USER_NAME: DBLITERALENUM = 19i32;
04454e1e 7979#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7980pub const DBLITERAL_VIEW_NAME: DBLITERALENUM = 20i32;
04454e1e 7981#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7982pub type DBLITERALENUM20 = i32;
04454e1e 7983#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7984pub const DBLITERAL_CUBE_NAME: DBLITERALENUM20 = 21i32;
04454e1e 7985#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7986pub const DBLITERAL_DIMENSION_NAME: DBLITERALENUM20 = 22i32;
04454e1e 7987#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7988pub const DBLITERAL_HIERARCHY_NAME: DBLITERALENUM20 = 23i32;
04454e1e 7989#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7990pub const DBLITERAL_LEVEL_NAME: DBLITERALENUM20 = 24i32;
04454e1e 7991#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7992pub const DBLITERAL_MEMBER_NAME: DBLITERALENUM20 = 25i32;
04454e1e 7993#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7994pub const DBLITERAL_PROPERTY_NAME: DBLITERALENUM20 = 26i32;
04454e1e 7995#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7996pub const DBLITERAL_SCHEMA_SEPARATOR: DBLITERALENUM20 = 27i32;
04454e1e 7997#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 7998pub const DBLITERAL_QUOTE_SUFFIX: DBLITERALENUM20 = 28i32;
04454e1e 7999#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8000pub type DBLITERALENUM21 = i32;
04454e1e 8001#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8002pub const DBLITERAL_ESCAPE_PERCENT_SUFFIX: DBLITERALENUM21 = 29i32;
04454e1e 8003#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8004pub const DBLITERAL_ESCAPE_UNDERSCORE_SUFFIX: DBLITERALENUM21 = 30i32;
04454e1e 8005#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8006pub type DBMATCHTYPEENUM = i32;
04454e1e 8007#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8008pub const DBMATCHTYPE_FULL: DBMATCHTYPEENUM = 0i32;
04454e1e 8009#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8010pub const DBMATCHTYPE_NONE: DBMATCHTYPEENUM = 1i32;
04454e1e 8011#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8012pub const DBMATCHTYPE_PARTIAL: DBMATCHTYPEENUM = 2i32;
04454e1e 8013#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8014pub type DBMEMOWNERENUM = i32;
04454e1e 8015#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8016pub const DBMEMOWNER_CLIENTOWNED: DBMEMOWNERENUM = 0i32;
04454e1e 8017#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8018pub const DBMEMOWNER_PROVIDEROWNED: DBMEMOWNERENUM = 1i32;
04454e1e 8019#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8020pub type DBMOVEFLAGSENUM = i32;
04454e1e 8021#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8022pub const DBMOVE_REPLACE_EXISTING: DBMOVEFLAGSENUM = 1i32;
04454e1e 8023#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8024pub const DBMOVE_ASYNC: DBMOVEFLAGSENUM = 256i32;
04454e1e 8025#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8026pub const DBMOVE_DONT_UPDATE_LINKS: DBMOVEFLAGSENUM = 512i32;
04454e1e 8027#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8028pub const DBMOVE_ALLOW_EMULATION: DBMOVEFLAGSENUM = 1024i32;
04454e1e 8029#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8030pub const DBMOVE_ATOMIC: DBMOVEFLAGSENUM = 4096i32;
04454e1e 8031#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8032pub type DBPARAMFLAGSENUM = i32;
04454e1e 8033#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8034pub const DBPARAMFLAGS_ISINPUT: DBPARAMFLAGSENUM = 1i32;
04454e1e 8035#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8036pub const DBPARAMFLAGS_ISOUTPUT: DBPARAMFLAGSENUM = 2i32;
04454e1e 8037#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8038pub const DBPARAMFLAGS_ISSIGNED: DBPARAMFLAGSENUM = 16i32;
04454e1e 8039#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8040pub const DBPARAMFLAGS_ISNULLABLE: DBPARAMFLAGSENUM = 64i32;
04454e1e 8041#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8042pub const DBPARAMFLAGS_ISLONG: DBPARAMFLAGSENUM = 128i32;
04454e1e 8043#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8044pub type DBPARAMFLAGSENUM20 = i32;
04454e1e 8045#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8046pub const DBPARAMFLAGS_SCALEISNEGATIVE: DBPARAMFLAGSENUM20 = 256i32;
04454e1e 8047#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8048pub type DBPARAMIOENUM = i32;
04454e1e 8049#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8050pub const DBPARAMIO_NOTPARAM: DBPARAMIOENUM = 0i32;
04454e1e 8051#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8052pub const DBPARAMIO_INPUT: DBPARAMIOENUM = 1i32;
04454e1e 8053#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8054pub const DBPARAMIO_OUTPUT: DBPARAMIOENUM = 2i32;
04454e1e 8055#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8056pub type DBPARTENUM = i32;
04454e1e 8057#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8058pub const DBPART_INVALID: DBPARTENUM = 0i32;
04454e1e 8059#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8060pub const DBPART_VALUE: DBPARTENUM = 1i32;
04454e1e 8061#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8062pub const DBPART_LENGTH: DBPARTENUM = 2i32;
04454e1e 8063#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8064pub const DBPART_STATUS: DBPARTENUM = 4i32;
04454e1e 8065#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8066pub type DBPENDINGSTATUSENUM = i32;
04454e1e 8067#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8068pub const DBPENDINGSTATUS_NEW: DBPENDINGSTATUSENUM = 1i32;
04454e1e 8069#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8070pub const DBPENDINGSTATUS_CHANGED: DBPENDINGSTATUSENUM = 2i32;
04454e1e 8071#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8072pub const DBPENDINGSTATUS_DELETED: DBPENDINGSTATUSENUM = 4i32;
04454e1e 8073#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8074pub const DBPENDINGSTATUS_UNCHANGED: DBPENDINGSTATUSENUM = 8i32;
04454e1e 8075#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8076pub const DBPENDINGSTATUS_INVALIDROW: DBPENDINGSTATUSENUM = 16i32;
04454e1e 8077#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8078pub type DBPOSITIONFLAGSENUM = i32;
04454e1e 8079#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8080pub const DBPOSITION_OK: DBPOSITIONFLAGSENUM = 0i32;
04454e1e 8081#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8082pub const DBPOSITION_NOROW: DBPOSITIONFLAGSENUM = 1i32;
04454e1e 8083#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8084pub const DBPOSITION_BOF: DBPOSITIONFLAGSENUM = 2i32;
04454e1e 8085#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8086pub const DBPOSITION_EOF: DBPOSITIONFLAGSENUM = 3i32;
04454e1e 8087#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8088pub type DBPROMPTOPTIONSENUM = i32;
04454e1e 8089#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8090pub const DBPROMPTOPTIONS_NONE: DBPROMPTOPTIONSENUM = 0i32;
04454e1e 8091#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8092pub const DBPROMPTOPTIONS_WIZARDSHEET: DBPROMPTOPTIONSENUM = 1i32;
04454e1e 8093#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8094pub const DBPROMPTOPTIONS_PROPERTYSHEET: DBPROMPTOPTIONSENUM = 2i32;
04454e1e 8095#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8096pub const DBPROMPTOPTIONS_BROWSEONLY: DBPROMPTOPTIONSENUM = 8i32;
04454e1e 8097#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8098pub const DBPROMPTOPTIONS_DISABLE_PROVIDER_SELECTION: DBPROMPTOPTIONSENUM = 16i32;
04454e1e 8099#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8100pub const DBPROMPTOPTIONS_DISABLESAVEPASSWORD: DBPROMPTOPTIONSENUM = 32i32;
04454e1e 8101#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8102pub type DBPROPENUM = i32;
04454e1e 8103#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8104pub const DBPROP_ABORTPRESERVE: DBPROPENUM = 2i32;
04454e1e 8105#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8106pub const DBPROP_ACTIVESESSIONS: DBPROPENUM = 3i32;
04454e1e 8107#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8108pub const DBPROP_APPENDONLY: DBPROPENUM = 187i32;
04454e1e 8109#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8110pub const DBPROP_ASYNCTXNABORT: DBPROPENUM = 168i32;
04454e1e 8111#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8112pub const DBPROP_ASYNCTXNCOMMIT: DBPROPENUM = 4i32;
04454e1e 8113#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8114pub const DBPROP_AUTH_CACHE_AUTHINFO: DBPROPENUM = 5i32;
04454e1e 8115#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8116pub const DBPROP_AUTH_ENCRYPT_PASSWORD: DBPROPENUM = 6i32;
04454e1e 8117#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8118pub const DBPROP_AUTH_INTEGRATED: DBPROPENUM = 7i32;
04454e1e 8119#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8120pub const DBPROP_AUTH_MASK_PASSWORD: DBPROPENUM = 8i32;
04454e1e 8121#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8122pub const DBPROP_AUTH_PASSWORD: DBPROPENUM = 9i32;
04454e1e 8123#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8124pub const DBPROP_AUTH_PERSIST_ENCRYPTED: DBPROPENUM = 10i32;
04454e1e 8125#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8126pub const DBPROP_AUTH_PERSIST_SENSITIVE_AUTHINFO: DBPROPENUM = 11i32;
04454e1e 8127#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8128pub const DBPROP_AUTH_USERID: DBPROPENUM = 12i32;
04454e1e 8129#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8130pub const DBPROP_BLOCKINGSTORAGEOBJECTS: DBPROPENUM = 13i32;
04454e1e 8131#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8132pub const DBPROP_BOOKMARKS: DBPROPENUM = 14i32;
04454e1e 8133#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8134pub const DBPROP_BOOKMARKSKIPPED: DBPROPENUM = 15i32;
04454e1e 8135#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8136pub const DBPROP_BOOKMARKTYPE: DBPROPENUM = 16i32;
04454e1e 8137#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8138pub const DBPROP_BYREFACCESSORS: DBPROPENUM = 120i32;
04454e1e 8139#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8140pub const DBPROP_CACHEDEFERRED: DBPROPENUM = 17i32;
04454e1e 8141#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8142pub const DBPROP_CANFETCHBACKWARDS: DBPROPENUM = 18i32;
04454e1e 8143#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8144pub const DBPROP_CANHOLDROWS: DBPROPENUM = 19i32;
04454e1e 8145#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8146pub const DBPROP_CANSCROLLBACKWARDS: DBPROPENUM = 21i32;
04454e1e 8147#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8148pub const DBPROP_CATALOGLOCATION: DBPROPENUM = 22i32;
04454e1e 8149#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8150pub const DBPROP_CATALOGTERM: DBPROPENUM = 23i32;
04454e1e 8151#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8152pub const DBPROP_CATALOGUSAGE: DBPROPENUM = 24i32;
04454e1e 8153#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8154pub const DBPROP_CHANGEINSERTEDROWS: DBPROPENUM = 188i32;
04454e1e 8155#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8156pub const DBPROP_COL_AUTOINCREMENT: DBPROPENUM = 26i32;
04454e1e 8157#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8158pub const DBPROP_COL_DEFAULT: DBPROPENUM = 27i32;
04454e1e 8159#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8160pub const DBPROP_COL_DESCRIPTION: DBPROPENUM = 28i32;
04454e1e 8161#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8162pub const DBPROP_COL_FIXEDLENGTH: DBPROPENUM = 167i32;
04454e1e 8163#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8164pub const DBPROP_COL_NULLABLE: DBPROPENUM = 29i32;
04454e1e 8165#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8166pub const DBPROP_COL_PRIMARYKEY: DBPROPENUM = 30i32;
04454e1e 8167#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8168pub const DBPROP_COL_UNIQUE: DBPROPENUM = 31i32;
04454e1e 8169#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8170pub const DBPROP_COLUMNDEFINITION: DBPROPENUM = 32i32;
04454e1e 8171#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8172pub const DBPROP_COLUMNRESTRICT: DBPROPENUM = 33i32;
04454e1e 8173#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8174pub const DBPROP_COMMANDTIMEOUT: DBPROPENUM = 34i32;
04454e1e 8175#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8176pub const DBPROP_COMMITPRESERVE: DBPROPENUM = 35i32;
04454e1e 8177#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8178pub const DBPROP_CONCATNULLBEHAVIOR: DBPROPENUM = 36i32;
04454e1e 8179#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8180pub const DBPROP_CURRENTCATALOG: DBPROPENUM = 37i32;
04454e1e 8181#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8182pub const DBPROP_DATASOURCENAME: DBPROPENUM = 38i32;
04454e1e 8183#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8184pub const DBPROP_DATASOURCEREADONLY: DBPROPENUM = 39i32;
04454e1e 8185#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8186pub const DBPROP_DBMSNAME: DBPROPENUM = 40i32;
04454e1e 8187#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8188pub const DBPROP_DBMSVER: DBPROPENUM = 41i32;
04454e1e 8189#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8190pub const DBPROP_DEFERRED: DBPROPENUM = 42i32;
04454e1e 8191#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8192pub const DBPROP_DELAYSTORAGEOBJECTS: DBPROPENUM = 43i32;
04454e1e 8193#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8194pub const DBPROP_DSOTHREADMODEL: DBPROPENUM = 169i32;
04454e1e 8195#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8196pub const DBPROP_GROUPBY: DBPROPENUM = 44i32;
04454e1e 8197#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8198pub const DBPROP_HETEROGENEOUSTABLES: DBPROPENUM = 45i32;
04454e1e 8199#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8200pub const DBPROP_IAccessor: DBPROPENUM = 121i32;
04454e1e 8201#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8202pub const DBPROP_IColumnsInfo: DBPROPENUM = 122i32;
04454e1e 8203#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8204pub const DBPROP_IColumnsRowset: DBPROPENUM = 123i32;
04454e1e 8205#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8206pub const DBPROP_IConnectionPointContainer: DBPROPENUM = 124i32;
04454e1e 8207#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8208pub const DBPROP_IConvertType: DBPROPENUM = 194i32;
04454e1e 8209#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8210pub const DBPROP_IRowset: DBPROPENUM = 126i32;
04454e1e 8211#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8212pub const DBPROP_IRowsetChange: DBPROPENUM = 127i32;
04454e1e 8213#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8214pub const DBPROP_IRowsetIdentity: DBPROPENUM = 128i32;
04454e1e 8215#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8216pub const DBPROP_IRowsetIndex: DBPROPENUM = 159i32;
04454e1e 8217#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8218pub const DBPROP_IRowsetInfo: DBPROPENUM = 129i32;
04454e1e 8219#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8220pub const DBPROP_IRowsetLocate: DBPROPENUM = 130i32;
04454e1e 8221#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8222pub const DBPROP_IRowsetResynch: DBPROPENUM = 132i32;
04454e1e 8223#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8224pub const DBPROP_IRowsetScroll: DBPROPENUM = 133i32;
04454e1e 8225#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8226pub const DBPROP_IRowsetUpdate: DBPROPENUM = 134i32;
04454e1e 8227#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8228pub const DBPROP_ISupportErrorInfo: DBPROPENUM = 135i32;
04454e1e 8229#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8230pub const DBPROP_ILockBytes: DBPROPENUM = 136i32;
04454e1e 8231#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8232pub const DBPROP_ISequentialStream: DBPROPENUM = 137i32;
04454e1e 8233#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8234pub const DBPROP_IStorage: DBPROPENUM = 138i32;
04454e1e 8235#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8236pub const DBPROP_IStream: DBPROPENUM = 139i32;
04454e1e 8237#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8238pub const DBPROP_IDENTIFIERCASE: DBPROPENUM = 46i32;
04454e1e 8239#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8240pub const DBPROP_IMMOBILEROWS: DBPROPENUM = 47i32;
04454e1e 8241#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8242pub const DBPROP_INDEX_AUTOUPDATE: DBPROPENUM = 48i32;
04454e1e 8243#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8244pub const DBPROP_INDEX_CLUSTERED: DBPROPENUM = 49i32;
04454e1e 8245#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8246pub const DBPROP_INDEX_FILLFACTOR: DBPROPENUM = 50i32;
04454e1e 8247#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8248pub const DBPROP_INDEX_INITIALSIZE: DBPROPENUM = 51i32;
04454e1e 8249#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8250pub const DBPROP_INDEX_NULLCOLLATION: DBPROPENUM = 52i32;
04454e1e 8251#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8252pub const DBPROP_INDEX_NULLS: DBPROPENUM = 53i32;
04454e1e 8253#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8254pub const DBPROP_INDEX_PRIMARYKEY: DBPROPENUM = 54i32;
04454e1e 8255#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8256pub const DBPROP_INDEX_SORTBOOKMARKS: DBPROPENUM = 55i32;
04454e1e 8257#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8258pub const DBPROP_INDEX_TEMPINDEX: DBPROPENUM = 163i32;
04454e1e 8259#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8260pub const DBPROP_INDEX_TYPE: DBPROPENUM = 56i32;
04454e1e 8261#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8262pub const DBPROP_INDEX_UNIQUE: DBPROPENUM = 57i32;
04454e1e 8263#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8264pub const DBPROP_INIT_DATASOURCE: DBPROPENUM = 59i32;
04454e1e 8265#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8266pub const DBPROP_INIT_HWND: DBPROPENUM = 60i32;
04454e1e 8267#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8268pub const DBPROP_INIT_IMPERSONATION_LEVEL: DBPROPENUM = 61i32;
04454e1e 8269#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8270pub const DBPROP_INIT_LCID: DBPROPENUM = 186i32;
04454e1e 8271#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8272pub const DBPROP_INIT_LOCATION: DBPROPENUM = 62i32;
04454e1e 8273#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8274pub const DBPROP_INIT_MODE: DBPROPENUM = 63i32;
04454e1e 8275#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8276pub const DBPROP_INIT_PROMPT: DBPROPENUM = 64i32;
04454e1e 8277#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8278pub const DBPROP_INIT_PROTECTION_LEVEL: DBPROPENUM = 65i32;
04454e1e 8279#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8280pub const DBPROP_INIT_PROVIDERSTRING: DBPROPENUM = 160i32;
04454e1e 8281#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8282pub const DBPROP_INIT_TIMEOUT: DBPROPENUM = 66i32;
04454e1e 8283#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8284pub const DBPROP_LITERALBOOKMARKS: DBPROPENUM = 67i32;
04454e1e 8285#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8286pub const DBPROP_LITERALIDENTITY: DBPROPENUM = 68i32;
04454e1e 8287#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8288pub const DBPROP_MAXINDEXSIZE: DBPROPENUM = 70i32;
04454e1e 8289#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8290pub const DBPROP_MAXOPENROWS: DBPROPENUM = 71i32;
04454e1e 8291#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8292pub const DBPROP_MAXPENDINGROWS: DBPROPENUM = 72i32;
04454e1e 8293#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8294pub const DBPROP_MAXROWS: DBPROPENUM = 73i32;
04454e1e 8295#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8296pub const DBPROP_MAXROWSIZE: DBPROPENUM = 74i32;
04454e1e 8297#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8298pub const DBPROP_MAXROWSIZEINCLUDESBLOB: DBPROPENUM = 75i32;
04454e1e 8299#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8300pub const DBPROP_MAXTABLESINSELECT: DBPROPENUM = 76i32;
04454e1e 8301#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8302pub const DBPROP_MAYWRITECOLUMN: DBPROPENUM = 77i32;
04454e1e 8303#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8304pub const DBPROP_MEMORYUSAGE: DBPROPENUM = 78i32;
04454e1e 8305#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8306pub const DBPROP_MULTIPLEPARAMSETS: DBPROPENUM = 191i32;
04454e1e 8307#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8308pub const DBPROP_MULTIPLERESULTS: DBPROPENUM = 196i32;
04454e1e 8309#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8310pub const DBPROP_MULTIPLESTORAGEOBJECTS: DBPROPENUM = 80i32;
04454e1e 8311#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8312pub const DBPROP_MULTITABLEUPDATE: DBPROPENUM = 81i32;
04454e1e 8313#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8314pub const DBPROP_NOTIFICATIONGRANULARITY: DBPROPENUM = 198i32;
04454e1e 8315#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8316pub const DBPROP_NOTIFICATIONPHASES: DBPROPENUM = 82i32;
04454e1e 8317#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8318pub const DBPROP_NOTIFYCOLUMNSET: DBPROPENUM = 171i32;
04454e1e 8319#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8320pub const DBPROP_NOTIFYROWDELETE: DBPROPENUM = 173i32;
04454e1e 8321#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8322pub const DBPROP_NOTIFYROWFIRSTCHANGE: DBPROPENUM = 174i32;
04454e1e 8323#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8324pub const DBPROP_NOTIFYROWINSERT: DBPROPENUM = 175i32;
04454e1e 8325#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8326pub const DBPROP_NOTIFYROWRESYNCH: DBPROPENUM = 177i32;
04454e1e 8327#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8328pub const DBPROP_NOTIFYROWSETCHANGED: DBPROPENUM = 211i32;
04454e1e 8329#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8330pub const DBPROP_NOTIFYROWSETRELEASE: DBPROPENUM = 178i32;
04454e1e 8331#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8332pub const DBPROP_NOTIFYROWSETFETCHPOSITIONCHANGE: DBPROPENUM = 179i32;
04454e1e 8333#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8334pub const DBPROP_NOTIFYROWUNDOCHANGE: DBPROPENUM = 180i32;
04454e1e 8335#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8336pub const DBPROP_NOTIFYROWUNDODELETE: DBPROPENUM = 181i32;
04454e1e 8337#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8338pub const DBPROP_NOTIFYROWUNDOINSERT: DBPROPENUM = 182i32;
04454e1e 8339#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8340pub const DBPROP_NOTIFYROWUPDATE: DBPROPENUM = 183i32;
04454e1e 8341#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8342pub const DBPROP_NULLCOLLATION: DBPROPENUM = 83i32;
04454e1e 8343#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8344pub const DBPROP_OLEOBJECTS: DBPROPENUM = 84i32;
04454e1e 8345#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8346pub const DBPROP_ORDERBYCOLUMNSINSELECT: DBPROPENUM = 85i32;
04454e1e 8347#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8348pub const DBPROP_ORDEREDBOOKMARKS: DBPROPENUM = 86i32;
04454e1e 8349#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8350pub const DBPROP_OTHERINSERT: DBPROPENUM = 87i32;
04454e1e 8351#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8352pub const DBPROP_OTHERUPDATEDELETE: DBPROPENUM = 88i32;
04454e1e 8353#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8354pub const DBPROP_OUTPUTPARAMETERAVAILABILITY: DBPROPENUM = 184i32;
04454e1e 8355#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8356pub const DBPROP_OWNINSERT: DBPROPENUM = 89i32;
04454e1e 8357#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8358pub const DBPROP_OWNUPDATEDELETE: DBPROPENUM = 90i32;
04454e1e 8359#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8360pub const DBPROP_PERSISTENTIDTYPE: DBPROPENUM = 185i32;
04454e1e 8361#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8362pub const DBPROP_PREPAREABORTBEHAVIOR: DBPROPENUM = 91i32;
04454e1e 8363#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8364pub const DBPROP_PREPARECOMMITBEHAVIOR: DBPROPENUM = 92i32;
04454e1e 8365#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8366pub const DBPROP_PROCEDURETERM: DBPROPENUM = 93i32;
04454e1e 8367#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8368pub const DBPROP_PROVIDERNAME: DBPROPENUM = 96i32;
04454e1e 8369#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8370pub const DBPROP_PROVIDEROLEDBVER: DBPROPENUM = 97i32;
04454e1e 8371#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8372pub const DBPROP_PROVIDERVER: DBPROPENUM = 98i32;
04454e1e 8373#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8374pub const DBPROP_QUICKRESTART: DBPROPENUM = 99i32;
04454e1e 8375#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8376pub const DBPROP_QUOTEDIDENTIFIERCASE: DBPROPENUM = 100i32;
04454e1e 8377#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8378pub const DBPROP_REENTRANTEVENTS: DBPROPENUM = 101i32;
04454e1e 8379#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8380pub const DBPROP_REMOVEDELETED: DBPROPENUM = 102i32;
04454e1e 8381#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8382pub const DBPROP_REPORTMULTIPLECHANGES: DBPROPENUM = 103i32;
04454e1e 8383#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8384pub const DBPROP_RETURNPENDINGINSERTS: DBPROPENUM = 189i32;
04454e1e 8385#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8386pub const DBPROP_ROWRESTRICT: DBPROPENUM = 104i32;
04454e1e 8387#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8388pub const DBPROP_ROWSETCONVERSIONSONCOMMAND: DBPROPENUM = 192i32;
04454e1e 8389#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8390pub const DBPROP_ROWTHREADMODEL: DBPROPENUM = 105i32;
04454e1e 8391#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8392pub const DBPROP_SCHEMATERM: DBPROPENUM = 106i32;
04454e1e 8393#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8394pub const DBPROP_SCHEMAUSAGE: DBPROPENUM = 107i32;
04454e1e 8395#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8396pub const DBPROP_SERVERCURSOR: DBPROPENUM = 108i32;
04454e1e 8397#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8398pub const DBPROP_SESS_AUTOCOMMITISOLEVELS: DBPROPENUM = 190i32;
04454e1e 8399#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8400pub const DBPROP_SQLSUPPORT: DBPROPENUM = 109i32;
04454e1e 8401#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8402pub const DBPROP_STRONGIDENTITY: DBPROPENUM = 119i32;
04454e1e 8403#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8404pub const DBPROP_STRUCTUREDSTORAGE: DBPROPENUM = 111i32;
04454e1e 8405#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8406pub const DBPROP_SUBQUERIES: DBPROPENUM = 112i32;
04454e1e 8407#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8408pub const DBPROP_SUPPORTEDTXNDDL: DBPROPENUM = 161i32;
04454e1e 8409#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8410pub const DBPROP_SUPPORTEDTXNISOLEVELS: DBPROPENUM = 113i32;
04454e1e 8411#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8412pub const DBPROP_SUPPORTEDTXNISORETAIN: DBPROPENUM = 114i32;
04454e1e 8413#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8414pub const DBPROP_TABLETERM: DBPROPENUM = 115i32;
04454e1e 8415#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8416pub const DBPROP_TBL_TEMPTABLE: DBPROPENUM = 140i32;
04454e1e 8417#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8418pub const DBPROP_TRANSACTEDOBJECT: DBPROPENUM = 116i32;
04454e1e 8419#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8420pub const DBPROP_UPDATABILITY: DBPROPENUM = 117i32;
04454e1e 8421#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8422pub const DBPROP_USERNAME: DBPROPENUM = 118i32;
04454e1e 8423#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8424pub type DBPROPENUM15 = i32;
04454e1e 8425#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8426pub const DBPROP_FILTERCOMPAREOPS: DBPROPENUM15 = 209i32;
04454e1e 8427#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8428pub const DBPROP_FINDCOMPAREOPS: DBPROPENUM15 = 210i32;
04454e1e 8429#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8430pub const DBPROP_IChapteredRowset: DBPROPENUM15 = 202i32;
04454e1e 8431#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8432pub const DBPROP_IDBAsynchStatus: DBPROPENUM15 = 203i32;
04454e1e 8433#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8434pub const DBPROP_IRowsetFind: DBPROPENUM15 = 204i32;
04454e1e 8435#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8436pub const DBPROP_IRowsetView: DBPROPENUM15 = 212i32;
04454e1e 8437#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8438pub const DBPROP_IViewChapter: DBPROPENUM15 = 213i32;
04454e1e 8439#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8440pub const DBPROP_IViewFilter: DBPROPENUM15 = 214i32;
04454e1e 8441#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8442pub const DBPROP_IViewRowset: DBPROPENUM15 = 215i32;
04454e1e 8443#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8444pub const DBPROP_IViewSort: DBPROPENUM15 = 216i32;
04454e1e 8445#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8446pub const DBPROP_INIT_ASYNCH: DBPROPENUM15 = 200i32;
04454e1e 8447#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8448pub const DBPROP_MAXOPENCHAPTERS: DBPROPENUM15 = 199i32;
04454e1e 8449#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8450pub const DBPROP_MAXORSINFILTER: DBPROPENUM15 = 205i32;
04454e1e 8451#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8452pub const DBPROP_MAXSORTCOLUMNS: DBPROPENUM15 = 206i32;
04454e1e 8453#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8454pub const DBPROP_ROWSET_ASYNCH: DBPROPENUM15 = 201i32;
04454e1e 8455#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8456pub const DBPROP_SORTONINDEX: DBPROPENUM15 = 207i32;
04454e1e 8457#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8458pub type DBPROPENUM20 = i32;
04454e1e 8459#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8460pub const DBPROP_IMultipleResults: DBPROPENUM20 = 217i32;
04454e1e 8461#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8462pub const DBPROP_DATASOURCE_TYPE: DBPROPENUM20 = 251i32;
04454e1e 8463#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8464pub const MDPROP_AXES: DBPROPENUM20 = 252i32;
04454e1e 8465#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8466pub const MDPROP_FLATTENING_SUPPORT: DBPROPENUM20 = 253i32;
04454e1e 8467#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8468pub const MDPROP_MDX_JOINCUBES: DBPROPENUM20 = 254i32;
04454e1e 8469#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8470pub const MDPROP_NAMED_LEVELS: DBPROPENUM20 = 255i32;
04454e1e 8471#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8472pub const MDPROP_RANGEROWSET: DBPROPENUM20 = 256i32;
04454e1e 8473#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8474pub const MDPROP_MDX_SLICER: DBPROPENUM20 = 218i32;
04454e1e 8475#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8476pub const MDPROP_MDX_CUBEQUALIFICATION: DBPROPENUM20 = 219i32;
04454e1e 8477#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8478pub const MDPROP_MDX_OUTERREFERENCE: DBPROPENUM20 = 220i32;
04454e1e 8479#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8480pub const MDPROP_MDX_QUERYBYPROPERTY: DBPROPENUM20 = 221i32;
04454e1e 8481#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8482pub const MDPROP_MDX_CASESUPPORT: DBPROPENUM20 = 222i32;
04454e1e 8483#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8484pub const MDPROP_MDX_STRING_COMPOP: DBPROPENUM20 = 224i32;
04454e1e 8485#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8486pub const MDPROP_MDX_DESCFLAGS: DBPROPENUM20 = 225i32;
04454e1e 8487#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8488pub const MDPROP_MDX_SET_FUNCTIONS: DBPROPENUM20 = 226i32;
04454e1e 8489#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8490pub const MDPROP_MDX_MEMBER_FUNCTIONS: DBPROPENUM20 = 227i32;
04454e1e 8491#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8492pub const MDPROP_MDX_NUMERIC_FUNCTIONS: DBPROPENUM20 = 228i32;
04454e1e 8493#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8494pub const MDPROP_MDX_FORMULAS: DBPROPENUM20 = 229i32;
04454e1e 8495#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8496pub const MDPROP_AGGREGATECELL_UPDATE: DBPROPENUM20 = 230i32;
04454e1e 8497#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8498pub const MDPROP_MDX_AGGREGATECELL_UPDATE: DBPROPENUM20 = 230i32;
04454e1e 8499#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8500pub const MDPROP_MDX_OBJQUALIFICATION: DBPROPENUM20 = 261i32;
04454e1e 8501#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8502pub const MDPROP_MDX_NONMEASURE_EXPRESSIONS: DBPROPENUM20 = 262i32;
04454e1e 8503#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8504pub const DBPROP_ACCESSORDER: DBPROPENUM20 = 231i32;
04454e1e 8505#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8506pub const DBPROP_BOOKMARKINFO: DBPROPENUM20 = 232i32;
04454e1e 8507#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8508pub const DBPROP_INIT_CATALOG: DBPROPENUM20 = 233i32;
04454e1e 8509#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8510pub const DBPROP_ROW_BULKOPS: DBPROPENUM20 = 234i32;
04454e1e 8511#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8512pub const DBPROP_PROVIDERFRIENDLYNAME: DBPROPENUM20 = 235i32;
04454e1e 8513#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8514pub const DBPROP_LOCKMODE: DBPROPENUM20 = 236i32;
04454e1e 8515#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8516pub const DBPROP_MULTIPLECONNECTIONS: DBPROPENUM20 = 237i32;
04454e1e 8517#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8518pub const DBPROP_UNIQUEROWS: DBPROPENUM20 = 238i32;
04454e1e 8519#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8520pub const DBPROP_SERVERDATAONINSERT: DBPROPENUM20 = 239i32;
04454e1e 8521#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8522pub const DBPROP_STORAGEFLAGS: DBPROPENUM20 = 240i32;
04454e1e 8523#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8524pub const DBPROP_CONNECTIONSTATUS: DBPROPENUM20 = 244i32;
04454e1e 8525#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8526pub const DBPROP_ALTERCOLUMN: DBPROPENUM20 = 245i32;
04454e1e 8527#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8528pub const DBPROP_COLUMNLCID: DBPROPENUM20 = 246i32;
04454e1e 8529#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8530pub const DBPROP_RESETDATASOURCE: DBPROPENUM20 = 247i32;
04454e1e 8531#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8532pub const DBPROP_INIT_OLEDBSERVICES: DBPROPENUM20 = 248i32;
04454e1e 8533#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8534pub const DBPROP_IRowsetRefresh: DBPROPENUM20 = 249i32;
04454e1e 8535#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8536pub const DBPROP_SERVERNAME: DBPROPENUM20 = 250i32;
04454e1e 8537#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8538pub const DBPROP_IParentRowset: DBPROPENUM20 = 257i32;
04454e1e 8539#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8540pub const DBPROP_HIDDENCOLUMNS: DBPROPENUM20 = 258i32;
04454e1e 8541#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8542pub const DBPROP_PROVIDERMEMORY: DBPROPENUM20 = 259i32;
04454e1e 8543#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8544pub const DBPROP_CLIENTCURSOR: DBPROPENUM20 = 260i32;
04454e1e 8545#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8546pub type DBPROPENUM21 = i32;
04454e1e 8547#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8548pub const DBPROP_TRUSTEE_USERNAME: DBPROPENUM21 = 241i32;
04454e1e 8549#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8550pub const DBPROP_TRUSTEE_AUTHENTICATION: DBPROPENUM21 = 242i32;
04454e1e 8551#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8552pub const DBPROP_TRUSTEE_NEWAUTHENTICATION: DBPROPENUM21 = 243i32;
04454e1e 8553#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8554pub const DBPROP_IRow: DBPROPENUM21 = 263i32;
04454e1e 8555#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8556pub const DBPROP_IRowChange: DBPROPENUM21 = 264i32;
04454e1e 8557#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8558pub const DBPROP_IRowSchemaChange: DBPROPENUM21 = 265i32;
04454e1e 8559#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8560pub const DBPROP_IGetRow: DBPROPENUM21 = 266i32;
04454e1e 8561#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8562pub const DBPROP_IScopedOperations: DBPROPENUM21 = 267i32;
04454e1e 8563#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8564pub const DBPROP_IBindResource: DBPROPENUM21 = 268i32;
04454e1e 8565#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8566pub const DBPROP_ICreateRow: DBPROPENUM21 = 269i32;
04454e1e 8567#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8568pub const DBPROP_INIT_BINDFLAGS: DBPROPENUM21 = 270i32;
04454e1e 8569#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8570pub const DBPROP_INIT_LOCKOWNER: DBPROPENUM21 = 271i32;
04454e1e 8571#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8572pub const DBPROP_GENERATEURL: DBPROPENUM21 = 273i32;
04454e1e 8573#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8574pub const DBPROP_IDBBinderProperties: DBPROPENUM21 = 274i32;
04454e1e 8575#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8576pub const DBPROP_IColumnsInfo2: DBPROPENUM21 = 275i32;
04454e1e 8577#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8578pub const DBPROP_IRegisterProvider: DBPROPENUM21 = 276i32;
04454e1e 8579#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8580pub const DBPROP_IGetSession: DBPROPENUM21 = 277i32;
04454e1e 8581#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8582pub const DBPROP_IGetSourceRow: DBPROPENUM21 = 278i32;
04454e1e 8583#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8584pub const DBPROP_IRowsetCurrentIndex: DBPROPENUM21 = 279i32;
04454e1e 8585#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8586pub const DBPROP_OPENROWSETSUPPORT: DBPROPENUM21 = 280i32;
04454e1e 8587#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8588pub const DBPROP_COL_ISLONG: DBPROPENUM21 = 281i32;
04454e1e 8589#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8590pub type DBPROPENUM25 = i32;
04454e1e 8591#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8592pub const DBPROP_COL_SEED: DBPROPENUM25 = 282i32;
04454e1e 8593#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8594pub const DBPROP_COL_INCREMENT: DBPROPENUM25 = 283i32;
04454e1e 8595#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8596pub const DBPROP_INIT_GENERALTIMEOUT: DBPROPENUM25 = 284i32;
04454e1e 8597#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8598pub const DBPROP_COMSERVICES: DBPROPENUM25 = 285i32;
04454e1e 8599#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8600pub type DBPROPENUM25_DEPRECATED = i32;
04454e1e 8601#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8602pub const DBPROP_ICommandCost: DBPROPENUM25_DEPRECATED = 141i32;
04454e1e 8603#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8604pub const DBPROP_ICommandTree: DBPROPENUM25_DEPRECATED = 142i32;
04454e1e 8605#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8606pub const DBPROP_ICommandValidate: DBPROPENUM25_DEPRECATED = 143i32;
04454e1e 8607#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8608pub const DBPROP_IDBSchemaCommand: DBPROPENUM25_DEPRECATED = 144i32;
04454e1e 8609#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8610pub const DBPROP_IProvideMoniker: DBPROPENUM25_DEPRECATED = 125i32;
04454e1e 8611#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8612pub const DBPROP_IQuery: DBPROPENUM25_DEPRECATED = 146i32;
04454e1e 8613#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8614pub const DBPROP_IReadData: DBPROPENUM25_DEPRECATED = 147i32;
04454e1e 8615#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8616pub const DBPROP_IRowsetAsynch: DBPROPENUM25_DEPRECATED = 148i32;
04454e1e 8617#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8618pub const DBPROP_IRowsetCopyRows: DBPROPENUM25_DEPRECATED = 149i32;
04454e1e 8619#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8620pub const DBPROP_IRowsetKeys: DBPROPENUM25_DEPRECATED = 151i32;
04454e1e 8621#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8622pub const DBPROP_IRowsetNewRowAfter: DBPROPENUM25_DEPRECATED = 152i32;
04454e1e 8623#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8624pub const DBPROP_IRowsetNextRowset: DBPROPENUM25_DEPRECATED = 153i32;
04454e1e 8625#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8626pub const DBPROP_IRowsetWatchAll: DBPROPENUM25_DEPRECATED = 155i32;
04454e1e 8627#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8628pub const DBPROP_IRowsetWatchNotify: DBPROPENUM25_DEPRECATED = 156i32;
04454e1e 8629#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8630pub const DBPROP_IRowsetWatchRegion: DBPROPENUM25_DEPRECATED = 157i32;
04454e1e 8631#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8632pub const DBPROP_IRowsetWithParameters: DBPROPENUM25_DEPRECATED = 158i32;
04454e1e 8633#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8634pub type DBPROPENUM26 = i32;
04454e1e 8635#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8636pub const DBPROP_OUTPUTSTREAM: DBPROPENUM26 = 286i32;
04454e1e 8637#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8638pub const DBPROP_OUTPUTENCODING: DBPROPENUM26 = 287i32;
04454e1e 8639#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8640pub const DBPROP_TABLESTATISTICS: DBPROPENUM26 = 288i32;
04454e1e 8641#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8642pub const DBPROP_SKIPROWCOUNTRESULTS: DBPROPENUM26 = 291i32;
04454e1e 8643#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8644pub const DBPROP_IRowsetBookmark: DBPROPENUM26 = 292i32;
04454e1e 8645#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8646pub const MDPROP_VISUALMODE: DBPROPENUM26 = 293i32;
04454e1e 8647#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8648pub type DBPROPFLAGSENUM = i32;
04454e1e 8649#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8650pub const DBPROPFLAGS_NOTSUPPORTED: DBPROPFLAGSENUM = 0i32;
04454e1e 8651#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8652pub const DBPROPFLAGS_COLUMN: DBPROPFLAGSENUM = 1i32;
04454e1e 8653#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8654pub const DBPROPFLAGS_DATASOURCE: DBPROPFLAGSENUM = 2i32;
04454e1e 8655#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8656pub const DBPROPFLAGS_DATASOURCECREATE: DBPROPFLAGSENUM = 4i32;
04454e1e 8657#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8658pub const DBPROPFLAGS_DATASOURCEINFO: DBPROPFLAGSENUM = 8i32;
04454e1e 8659#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8660pub const DBPROPFLAGS_DBINIT: DBPROPFLAGSENUM = 16i32;
04454e1e 8661#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8662pub const DBPROPFLAGS_INDEX: DBPROPFLAGSENUM = 32i32;
04454e1e 8663#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8664pub const DBPROPFLAGS_ROWSET: DBPROPFLAGSENUM = 64i32;
04454e1e 8665#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8666pub const DBPROPFLAGS_TABLE: DBPROPFLAGSENUM = 128i32;
04454e1e 8667#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8668pub const DBPROPFLAGS_COLUMNOK: DBPROPFLAGSENUM = 256i32;
04454e1e 8669#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8670pub const DBPROPFLAGS_READ: DBPROPFLAGSENUM = 512i32;
04454e1e 8671#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8672pub const DBPROPFLAGS_WRITE: DBPROPFLAGSENUM = 1024i32;
04454e1e 8673#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8674pub const DBPROPFLAGS_REQUIRED: DBPROPFLAGSENUM = 2048i32;
04454e1e 8675#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8676pub const DBPROPFLAGS_SESSION: DBPROPFLAGSENUM = 4096i32;
04454e1e 8677#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8678pub type DBPROPFLAGSENUM21 = i32;
04454e1e 8679#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8680pub const DBPROPFLAGS_TRUSTEE: DBPROPFLAGSENUM21 = 8192i32;
04454e1e 8681#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8682pub type DBPROPFLAGSENUM25 = i32;
04454e1e 8683#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8684pub const DBPROPFLAGS_VIEW: DBPROPFLAGSENUM25 = 16384i32;
04454e1e 8685#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8686pub type DBPROPFLAGSENUM26 = i32;
04454e1e 8687#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8688pub const DBPROPFLAGS_STREAM: DBPROPFLAGSENUM26 = 32768i32;
04454e1e 8689#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8690pub type DBPROPOPTIONSENUM = i32;
04454e1e 8691#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8692pub const DBPROPOPTIONS_REQUIRED: DBPROPOPTIONSENUM = 0i32;
04454e1e 8693#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8694pub const DBPROPOPTIONS_SETIFCHEAP: DBPROPOPTIONSENUM = 1i32;
04454e1e 8695#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8696pub const DBPROPOPTIONS_OPTIONAL: DBPROPOPTIONSENUM = 1i32;
04454e1e 8697#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8698pub type DBPROPSTATUSENUM = i32;
04454e1e 8699#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8700pub const DBPROPSTATUS_OK: DBPROPSTATUSENUM = 0i32;
04454e1e 8701#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8702pub const DBPROPSTATUS_NOTSUPPORTED: DBPROPSTATUSENUM = 1i32;
04454e1e 8703#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8704pub const DBPROPSTATUS_BADVALUE: DBPROPSTATUSENUM = 2i32;
04454e1e 8705#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8706pub const DBPROPSTATUS_BADOPTION: DBPROPSTATUSENUM = 3i32;
04454e1e 8707#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8708pub const DBPROPSTATUS_BADCOLUMN: DBPROPSTATUSENUM = 4i32;
04454e1e 8709#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8710pub const DBPROPSTATUS_NOTALLSETTABLE: DBPROPSTATUSENUM = 5i32;
04454e1e 8711#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8712pub const DBPROPSTATUS_NOTSETTABLE: DBPROPSTATUSENUM = 6i32;
04454e1e 8713#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8714pub const DBPROPSTATUS_NOTSET: DBPROPSTATUSENUM = 7i32;
04454e1e 8715#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8716pub const DBPROPSTATUS_CONFLICTING: DBPROPSTATUSENUM = 8i32;
04454e1e 8717#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8718pub type DBPROPSTATUSENUM21 = i32;
04454e1e 8719#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8720pub const DBPROPSTATUS_NOTAVAILABLE: DBPROPSTATUSENUM21 = 9i32;
04454e1e 8721#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8722pub type DBRANGEENUM = i32;
04454e1e 8723#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8724pub const DBRANGE_INCLUSIVESTART: DBRANGEENUM = 0i32;
04454e1e 8725#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8726pub const DBRANGE_INCLUSIVEEND: DBRANGEENUM = 0i32;
04454e1e 8727#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8728pub const DBRANGE_EXCLUSIVESTART: DBRANGEENUM = 1i32;
04454e1e 8729#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8730pub const DBRANGE_EXCLUSIVEEND: DBRANGEENUM = 2i32;
04454e1e 8731#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8732pub const DBRANGE_EXCLUDENULLS: DBRANGEENUM = 4i32;
04454e1e 8733#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8734pub const DBRANGE_PREFIX: DBRANGEENUM = 8i32;
04454e1e 8735#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8736pub const DBRANGE_MATCH: DBRANGEENUM = 16i32;
04454e1e 8737#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8738pub type DBRANGEENUM20 = i32;
04454e1e 8739#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8740pub const DBRANGE_MATCH_N_SHIFT: DBRANGEENUM20 = 24i32;
04454e1e 8741#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8742pub const DBRANGE_MATCH_N_MASK: DBRANGEENUM20 = 255i32;
04454e1e 8743#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8744pub type DBREASONENUM = i32;
04454e1e 8745#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8746pub const DBREASON_ROWSET_FETCHPOSITIONCHANGE: DBREASONENUM = 0i32;
04454e1e 8747#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8748pub const DBREASON_ROWSET_RELEASE: DBREASONENUM = 1i32;
04454e1e 8749#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8750pub const DBREASON_COLUMN_SET: DBREASONENUM = 2i32;
04454e1e 8751#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8752pub const DBREASON_COLUMN_RECALCULATED: DBREASONENUM = 3i32;
04454e1e 8753#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8754pub const DBREASON_ROW_ACTIVATE: DBREASONENUM = 4i32;
04454e1e 8755#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8756pub const DBREASON_ROW_RELEASE: DBREASONENUM = 5i32;
04454e1e 8757#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8758pub const DBREASON_ROW_DELETE: DBREASONENUM = 6i32;
04454e1e 8759#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8760pub const DBREASON_ROW_FIRSTCHANGE: DBREASONENUM = 7i32;
04454e1e 8761#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8762pub const DBREASON_ROW_INSERT: DBREASONENUM = 8i32;
04454e1e 8763#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8764pub const DBREASON_ROW_RESYNCH: DBREASONENUM = 9i32;
04454e1e 8765#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8766pub const DBREASON_ROW_UNDOCHANGE: DBREASONENUM = 10i32;
04454e1e 8767#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8768pub const DBREASON_ROW_UNDOINSERT: DBREASONENUM = 11i32;
04454e1e 8769#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8770pub const DBREASON_ROW_UNDODELETE: DBREASONENUM = 12i32;
04454e1e 8771#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8772pub const DBREASON_ROW_UPDATE: DBREASONENUM = 13i32;
04454e1e 8773#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8774pub const DBREASON_ROWSET_CHANGED: DBREASONENUM = 14i32;
04454e1e 8775#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8776pub type DBREASONENUM15 = i32;
04454e1e 8777#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8778pub const DBREASON_ROWPOSITION_CHANGED: DBREASONENUM15 = 15i32;
04454e1e 8779#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8780pub const DBREASON_ROWPOSITION_CHAPTERCHANGED: DBREASONENUM15 = 16i32;
04454e1e 8781#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8782pub const DBREASON_ROWPOSITION_CLEARED: DBREASONENUM15 = 17i32;
04454e1e 8783#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8784pub const DBREASON_ROW_ASYNCHINSERT: DBREASONENUM15 = 18i32;
04454e1e 8785#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8786pub type DBREASONENUM25 = i32;
04454e1e 8787#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8788pub const DBREASON_ROWSET_ROWSADDED: DBREASONENUM25 = 19i32;
04454e1e 8789#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8790pub const DBREASON_ROWSET_POPULATIONCOMPLETE: DBREASONENUM25 = 20i32;
04454e1e 8791#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8792pub const DBREASON_ROWSET_POPULATIONSTOPPED: DBREASONENUM25 = 21i32;
04454e1e 8793#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8794pub type DBRESOURCEKINDENUM = i32;
04454e1e 8795#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8796pub const DBRESOURCE_INVALID: DBRESOURCEKINDENUM = 0i32;
04454e1e 8797#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8798pub const DBRESOURCE_TOTAL: DBRESOURCEKINDENUM = 1i32;
04454e1e 8799#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8800pub const DBRESOURCE_CPU: DBRESOURCEKINDENUM = 2i32;
04454e1e 8801#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8802pub const DBRESOURCE_MEMORY: DBRESOURCEKINDENUM = 3i32;
04454e1e 8803#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8804pub const DBRESOURCE_DISK: DBRESOURCEKINDENUM = 4i32;
04454e1e 8805#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8806pub const DBRESOURCE_NETWORK: DBRESOURCEKINDENUM = 5i32;
04454e1e 8807#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8808pub const DBRESOURCE_RESPONSE: DBRESOURCEKINDENUM = 6i32;
04454e1e 8809#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8810pub const DBRESOURCE_ROWS: DBRESOURCEKINDENUM = 7i32;
04454e1e 8811#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8812pub const DBRESOURCE_OTHER: DBRESOURCEKINDENUM = 8i32;
04454e1e 8813#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8814pub type DBRESULTFLAGENUM = i32;
04454e1e 8815#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8816pub const DBRESULTFLAG_DEFAULT: DBRESULTFLAGENUM = 0i32;
04454e1e 8817#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8818pub const DBRESULTFLAG_ROWSET: DBRESULTFLAGENUM = 1i32;
04454e1e 8819#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8820pub const DBRESULTFLAG_ROW: DBRESULTFLAGENUM = 2i32;
04454e1e 8821#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8822pub type DBROWCHANGEKINDENUM = i32;
04454e1e 8823#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8824pub const DBROWCHANGEKIND_INSERT: DBROWCHANGEKINDENUM = 0i32;
04454e1e 8825#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8826pub const DBROWCHANGEKIND_DELETE: DBROWCHANGEKINDENUM = 1i32;
04454e1e 8827#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8828pub const DBROWCHANGEKIND_UPDATE: DBROWCHANGEKINDENUM = 2i32;
04454e1e 8829#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8830pub const DBROWCHANGEKIND_COUNT: DBROWCHANGEKINDENUM = 3i32;
04454e1e 8831#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8832pub type DBROWSTATUSENUM = i32;
04454e1e 8833#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8834pub const DBROWSTATUS_S_OK: DBROWSTATUSENUM = 0i32;
04454e1e 8835#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8836pub const DBROWSTATUS_S_MULTIPLECHANGES: DBROWSTATUSENUM = 2i32;
04454e1e 8837#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8838pub const DBROWSTATUS_S_PENDINGCHANGES: DBROWSTATUSENUM = 3i32;
04454e1e 8839#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8840pub const DBROWSTATUS_E_CANCELED: DBROWSTATUSENUM = 4i32;
04454e1e 8841#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8842pub const DBROWSTATUS_E_CANTRELEASE: DBROWSTATUSENUM = 6i32;
04454e1e 8843#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8844pub const DBROWSTATUS_E_CONCURRENCYVIOLATION: DBROWSTATUSENUM = 7i32;
04454e1e 8845#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8846pub const DBROWSTATUS_E_DELETED: DBROWSTATUSENUM = 8i32;
04454e1e 8847#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8848pub const DBROWSTATUS_E_PENDINGINSERT: DBROWSTATUSENUM = 9i32;
04454e1e 8849#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8850pub const DBROWSTATUS_E_NEWLYINSERTED: DBROWSTATUSENUM = 10i32;
04454e1e 8851#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8852pub const DBROWSTATUS_E_INTEGRITYVIOLATION: DBROWSTATUSENUM = 11i32;
04454e1e 8853#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8854pub const DBROWSTATUS_E_INVALID: DBROWSTATUSENUM = 12i32;
04454e1e 8855#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8856pub const DBROWSTATUS_E_MAXPENDCHANGESEXCEEDED: DBROWSTATUSENUM = 13i32;
04454e1e 8857#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8858pub const DBROWSTATUS_E_OBJECTOPEN: DBROWSTATUSENUM = 14i32;
04454e1e 8859#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8860pub const DBROWSTATUS_E_OUTOFMEMORY: DBROWSTATUSENUM = 15i32;
04454e1e 8861#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8862pub const DBROWSTATUS_E_PERMISSIONDENIED: DBROWSTATUSENUM = 16i32;
04454e1e 8863#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8864pub const DBROWSTATUS_E_LIMITREACHED: DBROWSTATUSENUM = 17i32;
04454e1e 8865#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8866pub const DBROWSTATUS_E_SCHEMAVIOLATION: DBROWSTATUSENUM = 18i32;
04454e1e 8867#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8868pub const DBROWSTATUS_E_FAIL: DBROWSTATUSENUM = 19i32;
04454e1e 8869#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8870pub type DBROWSTATUSENUM20 = i32;
04454e1e 8871#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8872pub const DBROWSTATUS_S_NOCHANGE: DBROWSTATUSENUM20 = 20i32;
04454e1e 8873#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8874pub type DBSEEKENUM = i32;
04454e1e 8875#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8876pub const DBSEEK_INVALID: DBSEEKENUM = 0i32;
04454e1e 8877#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8878pub const DBSEEK_FIRSTEQ: DBSEEKENUM = 1i32;
04454e1e 8879#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8880pub const DBSEEK_LASTEQ: DBSEEKENUM = 2i32;
04454e1e 8881#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8882pub const DBSEEK_AFTEREQ: DBSEEKENUM = 4i32;
04454e1e 8883#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8884pub const DBSEEK_AFTER: DBSEEKENUM = 8i32;
04454e1e 8885#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8886pub const DBSEEK_BEFOREEQ: DBSEEKENUM = 16i32;
04454e1e 8887#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8888pub const DBSEEK_BEFORE: DBSEEKENUM = 32i32;
04454e1e 8889#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8890pub type DBSORTENUM = i32;
04454e1e 8891#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8892pub const DBSORT_ASCENDING: DBSORTENUM = 0i32;
04454e1e 8893#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8894pub const DBSORT_DESCENDING: DBSORTENUM = 1i32;
04454e1e 8895#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8896pub type DBSOURCETYPEENUM = i32;
04454e1e 8897#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8898pub const DBSOURCETYPE_DATASOURCE: DBSOURCETYPEENUM = 1i32;
04454e1e 8899#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8900pub const DBSOURCETYPE_ENUMERATOR: DBSOURCETYPEENUM = 2i32;
04454e1e 8901#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8902pub type DBSOURCETYPEENUM20 = i32;
04454e1e 8903#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8904pub const DBSOURCETYPE_DATASOURCE_TDP: DBSOURCETYPEENUM20 = 1i32;
04454e1e 8905#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8906pub const DBSOURCETYPE_DATASOURCE_MDP: DBSOURCETYPEENUM20 = 3i32;
04454e1e 8907#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8908pub type DBSOURCETYPEENUM25 = i32;
04454e1e 8909#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8910pub const DBSOURCETYPE_BINDER: DBSOURCETYPEENUM25 = 4i32;
04454e1e 8911#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8912pub type DBSTATUSENUM = i32;
04454e1e 8913#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8914pub const DBSTATUS_S_OK: DBSTATUSENUM = 0i32;
04454e1e 8915#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8916pub const DBSTATUS_E_BADACCESSOR: DBSTATUSENUM = 1i32;
04454e1e 8917#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8918pub const DBSTATUS_E_CANTCONVERTVALUE: DBSTATUSENUM = 2i32;
04454e1e 8919#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8920pub const DBSTATUS_S_ISNULL: DBSTATUSENUM = 3i32;
04454e1e 8921#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8922pub const DBSTATUS_S_TRUNCATED: DBSTATUSENUM = 4i32;
04454e1e 8923#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8924pub const DBSTATUS_E_SIGNMISMATCH: DBSTATUSENUM = 5i32;
04454e1e 8925#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8926pub const DBSTATUS_E_DATAOVERFLOW: DBSTATUSENUM = 6i32;
04454e1e 8927#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8928pub const DBSTATUS_E_CANTCREATE: DBSTATUSENUM = 7i32;
04454e1e 8929#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8930pub const DBSTATUS_E_UNAVAILABLE: DBSTATUSENUM = 8i32;
04454e1e 8931#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8932pub const DBSTATUS_E_PERMISSIONDENIED: DBSTATUSENUM = 9i32;
04454e1e 8933#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8934pub const DBSTATUS_E_INTEGRITYVIOLATION: DBSTATUSENUM = 10i32;
04454e1e 8935#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8936pub const DBSTATUS_E_SCHEMAVIOLATION: DBSTATUSENUM = 11i32;
04454e1e 8937#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8938pub const DBSTATUS_E_BADSTATUS: DBSTATUSENUM = 12i32;
04454e1e 8939#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8940pub const DBSTATUS_S_DEFAULT: DBSTATUSENUM = 13i32;
04454e1e 8941#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8942pub type DBSTATUSENUM20 = i32;
04454e1e 8943#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8944pub const MDSTATUS_S_CELLEMPTY: DBSTATUSENUM20 = 14i32;
04454e1e 8945#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8946pub const DBSTATUS_S_IGNORE: DBSTATUSENUM20 = 15i32;
04454e1e 8947#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8948pub type DBSTATUSENUM21 = i32;
04454e1e 8949#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8950pub const DBSTATUS_E_DOESNOTEXIST: DBSTATUSENUM21 = 16i32;
04454e1e 8951#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8952pub const DBSTATUS_E_INVALIDURL: DBSTATUSENUM21 = 17i32;
04454e1e 8953#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8954pub const DBSTATUS_E_RESOURCELOCKED: DBSTATUSENUM21 = 18i32;
04454e1e 8955#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8956pub const DBSTATUS_E_RESOURCEEXISTS: DBSTATUSENUM21 = 19i32;
04454e1e 8957#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8958pub const DBSTATUS_E_CANNOTCOMPLETE: DBSTATUSENUM21 = 20i32;
04454e1e 8959#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8960pub const DBSTATUS_E_VOLUMENOTFOUND: DBSTATUSENUM21 = 21i32;
04454e1e 8961#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8962pub const DBSTATUS_E_OUTOFSPACE: DBSTATUSENUM21 = 22i32;
04454e1e 8963#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8964pub const DBSTATUS_S_CANNOTDELETESOURCE: DBSTATUSENUM21 = 23i32;
04454e1e 8965#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8966pub const DBSTATUS_E_READONLY: DBSTATUSENUM21 = 24i32;
04454e1e 8967#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8968pub const DBSTATUS_E_RESOURCEOUTOFSCOPE: DBSTATUSENUM21 = 25i32;
04454e1e 8969#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8970pub const DBSTATUS_S_ALREADYEXISTS: DBSTATUSENUM21 = 26i32;
04454e1e 8971#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8972pub type DBSTATUSENUM25 = i32;
04454e1e 8973#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8974pub const DBSTATUS_E_CANCELED: DBSTATUSENUM25 = 27i32;
04454e1e 8975#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8976pub const DBSTATUS_E_NOTCOLLECTION: DBSTATUSENUM25 = 28i32;
04454e1e 8977#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8978pub type DBSTATUSENUM26 = i32;
04454e1e 8979#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8980pub const DBSTATUS_S_ROWSETCOLUMN: DBSTATUSENUM26 = 29i32;
04454e1e 8981#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8982pub type DBTABLESTATISTICSTYPE26 = i32;
04454e1e 8983#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8984pub const DBSTAT_HISTOGRAM: DBTABLESTATISTICSTYPE26 = 1i32;
04454e1e 8985#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8986pub const DBSTAT_COLUMN_CARDINALITY: DBTABLESTATISTICSTYPE26 = 2i32;
04454e1e 8987#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8988pub const DBSTAT_TUPLE_CARDINALITY: DBTABLESTATISTICSTYPE26 = 4i32;
04454e1e 8989#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8990pub type DBTYPEENUM = i32;
04454e1e 8991#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8992pub const DBTYPE_EMPTY: DBTYPEENUM = 0i32;
04454e1e 8993#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8994pub const DBTYPE_NULL: DBTYPEENUM = 1i32;
04454e1e 8995#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8996pub const DBTYPE_I2: DBTYPEENUM = 2i32;
04454e1e 8997#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 8998pub const DBTYPE_I4: DBTYPEENUM = 3i32;
04454e1e 8999#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9000pub const DBTYPE_R4: DBTYPEENUM = 4i32;
04454e1e 9001#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9002pub const DBTYPE_R8: DBTYPEENUM = 5i32;
04454e1e 9003#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9004pub const DBTYPE_CY: DBTYPEENUM = 6i32;
04454e1e 9005#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9006pub const DBTYPE_DATE: DBTYPEENUM = 7i32;
04454e1e 9007#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9008pub const DBTYPE_BSTR: DBTYPEENUM = 8i32;
04454e1e 9009#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9010pub const DBTYPE_IDISPATCH: DBTYPEENUM = 9i32;
04454e1e 9011#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9012pub const DBTYPE_ERROR: DBTYPEENUM = 10i32;
04454e1e 9013#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9014pub const DBTYPE_BOOL: DBTYPEENUM = 11i32;
04454e1e 9015#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9016pub const DBTYPE_VARIANT: DBTYPEENUM = 12i32;
04454e1e 9017#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9018pub const DBTYPE_IUNKNOWN: DBTYPEENUM = 13i32;
04454e1e 9019#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9020pub const DBTYPE_DECIMAL: DBTYPEENUM = 14i32;
04454e1e 9021#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9022pub const DBTYPE_UI1: DBTYPEENUM = 17i32;
04454e1e 9023#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9024pub const DBTYPE_ARRAY: DBTYPEENUM = 8192i32;
04454e1e 9025#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9026pub const DBTYPE_BYREF: DBTYPEENUM = 16384i32;
04454e1e 9027#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9028pub const DBTYPE_I1: DBTYPEENUM = 16i32;
04454e1e 9029#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9030pub const DBTYPE_UI2: DBTYPEENUM = 18i32;
04454e1e 9031#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9032pub const DBTYPE_UI4: DBTYPEENUM = 19i32;
04454e1e 9033#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9034pub const DBTYPE_I8: DBTYPEENUM = 20i32;
04454e1e 9035#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9036pub const DBTYPE_UI8: DBTYPEENUM = 21i32;
04454e1e 9037#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9038pub const DBTYPE_GUID: DBTYPEENUM = 72i32;
04454e1e 9039#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9040pub const DBTYPE_VECTOR: DBTYPEENUM = 4096i32;
04454e1e 9041#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9042pub const DBTYPE_RESERVED: DBTYPEENUM = 32768i32;
04454e1e 9043#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9044pub const DBTYPE_BYTES: DBTYPEENUM = 128i32;
04454e1e 9045#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9046pub const DBTYPE_STR: DBTYPEENUM = 129i32;
04454e1e 9047#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9048pub const DBTYPE_WSTR: DBTYPEENUM = 130i32;
04454e1e 9049#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9050pub const DBTYPE_NUMERIC: DBTYPEENUM = 131i32;
04454e1e 9051#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9052pub const DBTYPE_UDT: DBTYPEENUM = 132i32;
04454e1e 9053#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9054pub const DBTYPE_DBDATE: DBTYPEENUM = 133i32;
04454e1e 9055#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9056pub const DBTYPE_DBTIME: DBTYPEENUM = 134i32;
04454e1e 9057#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9058pub const DBTYPE_DBTIMESTAMP: DBTYPEENUM = 135i32;
04454e1e 9059#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9060pub type DBTYPEENUM15 = i32;
04454e1e 9061#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9062pub const DBTYPE_HCHAPTER: DBTYPEENUM15 = 136i32;
04454e1e 9063#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9064pub type DBTYPEENUM20 = i32;
04454e1e 9065#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9066pub const DBTYPE_FILETIME: DBTYPEENUM20 = 64i32;
04454e1e 9067#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9068pub const DBTYPE_PROPVARIANT: DBTYPEENUM20 = 138i32;
04454e1e 9069#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9070pub const DBTYPE_VARNUMERIC: DBTYPEENUM20 = 139i32;
04454e1e 9071#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9072pub type DBUPDELRULEENUM = i32;
04454e1e 9073#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9074pub const DBUPDELRULE_NOACTION: DBUPDELRULEENUM = 0i32;
04454e1e 9075#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9076pub const DBUPDELRULE_CASCADE: DBUPDELRULEENUM = 1i32;
04454e1e 9077#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9078pub const DBUPDELRULE_SETNULL: DBUPDELRULEENUM = 2i32;
04454e1e 9079#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9080pub const DBUPDELRULE_SETDEFAULT: DBUPDELRULEENUM = 3i32;
04454e1e 9081#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9082pub type DBWATCHMODEENUM = i32;
04454e1e 9083#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9084pub const DBWATCHMODE_ALL: DBWATCHMODEENUM = 1i32;
04454e1e 9085#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9086pub const DBWATCHMODE_EXTEND: DBWATCHMODEENUM = 2i32;
04454e1e 9087#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9088pub const DBWATCHMODE_MOVE: DBWATCHMODEENUM = 4i32;
04454e1e 9089#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9090pub const DBWATCHMODE_COUNT: DBWATCHMODEENUM = 8i32;
04454e1e 9091#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9092pub type DBWATCHNOTIFYENUM = i32;
04454e1e 9093#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9094pub const DBWATCHNOTIFY_ROWSCHANGED: DBWATCHNOTIFYENUM = 1i32;
04454e1e 9095#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9096pub const DBWATCHNOTIFY_QUERYDONE: DBWATCHNOTIFYENUM = 2i32;
04454e1e 9097#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9098pub const DBWATCHNOTIFY_QUERYREEXECUTED: DBWATCHNOTIFYENUM = 3i32;
04454e1e 9099#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9100pub type DCINFOTYPEENUM = i32;
04454e1e 9101#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9102pub const DCINFOTYPE_VERSION: DCINFOTYPEENUM = 1i32;
04454e1e 9103#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9104pub type DELIVERY_AGENT_FLAGS = i32;
04454e1e 9105#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9106pub const DELIVERY_AGENT_FLAG_NO_BROADCAST: DELIVERY_AGENT_FLAGS = 4i32;
04454e1e 9107#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9108pub const DELIVERY_AGENT_FLAG_NO_RESTRICTIONS: DELIVERY_AGENT_FLAGS = 8i32;
04454e1e 9109#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9110pub const DELIVERY_AGENT_FLAG_SILENT_DIAL: DELIVERY_AGENT_FLAGS = 16i32;
04454e1e 9111#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9112pub type EBindInfoOptions = i32;
04454e1e 9113#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9114pub const BIO_BINDER: EBindInfoOptions = 1i32;
04454e1e 9115#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9116pub type FOLLOW_FLAGS = i32;
04454e1e 9117#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9118pub const FF_INDEXCOMPLEXURLS: FOLLOW_FLAGS = 1i32;
04454e1e 9119#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9120pub const FF_SUPPRESSINDEXING: FOLLOW_FLAGS = 2i32;
04454e1e 9121#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9122pub type INTERVAL_LIMIT_KIND = i32;
04454e1e 9123#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9124pub const ILK_EXPLICIT_INCLUDED: INTERVAL_LIMIT_KIND = 0i32;
04454e1e 9125#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9126pub const ILK_EXPLICIT_EXCLUDED: INTERVAL_LIMIT_KIND = 1i32;
04454e1e 9127#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9128pub const ILK_NEGATIVE_INFINITY: INTERVAL_LIMIT_KIND = 2i32;
04454e1e 9129#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9130pub const ILK_POSITIVE_INFINITY: INTERVAL_LIMIT_KIND = 3i32;
04454e1e 9131#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9132pub type KAGREQDIAGFLAGSENUM = i32;
04454e1e 9133#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9134pub const KAGREQDIAGFLAGS_HEADER: KAGREQDIAGFLAGSENUM = 1i32;
04454e1e 9135#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9136pub const KAGREQDIAGFLAGS_RECORD: KAGREQDIAGFLAGSENUM = 2i32;
04454e1e 9137#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9138pub type LOCKMODEENUM = i32;
04454e1e 9139#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9140pub const LOCKMODE_INVALID: LOCKMODEENUM = 0i32;
04454e1e 9141#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9142pub const LOCKMODE_EXCLUSIVE: LOCKMODEENUM = 1i32;
04454e1e 9143#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9144pub const LOCKMODE_SHARED: LOCKMODEENUM = 2i32;
04454e1e 9145#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9146pub type MSDSDBINITPROPENUM = i32;
04454e1e 9147#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9148pub const DBPROP_MSDS_DBINIT_DATAPROVIDER: MSDSDBINITPROPENUM = 2i32;
04454e1e 9149#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9150pub type MSDSSESSIONPROPENUM = i32;
04454e1e 9151#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9152pub const DBPROP_MSDS_SESS_UNIQUENAMES: MSDSSESSIONPROPENUM = 2i32;
04454e1e 9153#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9154pub type NAMED_ENTITY_CERTAINTY = i32;
04454e1e 9155#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9156pub const NEC_LOW: NAMED_ENTITY_CERTAINTY = 0i32;
04454e1e 9157#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9158pub const NEC_MEDIUM: NAMED_ENTITY_CERTAINTY = 1i32;
04454e1e 9159#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9160pub const NEC_HIGH: NAMED_ENTITY_CERTAINTY = 2i32;
04454e1e 9161#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9162pub type OSPCOMP = i32;
04454e1e 9163#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9164pub const OSPCOMP_EQ: OSPCOMP = 1i32;
04454e1e 9165#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9166pub const OSPCOMP_DEFAULT: OSPCOMP = 1i32;
04454e1e 9167#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9168pub const OSPCOMP_LT: OSPCOMP = 2i32;
04454e1e 9169#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9170pub const OSPCOMP_LE: OSPCOMP = 3i32;
04454e1e 9171#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9172pub const OSPCOMP_GE: OSPCOMP = 4i32;
04454e1e 9173#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9174pub const OSPCOMP_GT: OSPCOMP = 5i32;
04454e1e 9175#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9176pub const OSPCOMP_NE: OSPCOMP = 6i32;
04454e1e 9177#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9178pub type OSPFIND = i32;
04454e1e 9179#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9180pub const OSPFIND_DEFAULT: OSPFIND = 0i32;
04454e1e 9181#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9182pub const OSPFIND_UP: OSPFIND = 1i32;
04454e1e 9183#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9184pub const OSPFIND_CASESENSITIVE: OSPFIND = 2i32;
04454e1e 9185#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9186pub const OSPFIND_UPCASESENSITIVE: OSPFIND = 3i32;
04454e1e 9187#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9188pub type OSPFORMAT = i32;
04454e1e 9189#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9190pub const OSPFORMAT_RAW: OSPFORMAT = 0i32;
04454e1e 9191#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9192pub const OSPFORMAT_DEFAULT: OSPFORMAT = 0i32;
04454e1e 9193#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9194pub const OSPFORMAT_FORMATTED: OSPFORMAT = 1i32;
04454e1e 9195#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9196pub const OSPFORMAT_HTML: OSPFORMAT = 2i32;
04454e1e 9197#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9198pub type OSPRW = i32;
04454e1e 9199#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9200pub const OSPRW_DEFAULT: OSPRW = 1i32;
04454e1e 9201#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9202pub const OSPRW_READONLY: OSPRW = 0i32;
04454e1e 9203#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9204pub const OSPRW_READWRITE: OSPRW = 1i32;
04454e1e 9205#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9206pub const OSPRW_MIXED: OSPRW = 2i32;
04454e1e 9207#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9208pub type OSPXFER = i32;
04454e1e 9209#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9210pub const OSPXFER_COMPLETE: OSPXFER = 0i32;
04454e1e 9211#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9212pub const OSPXFER_ABORT: OSPXFER = 1i32;
04454e1e 9213#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9214pub const OSPXFER_ERROR: OSPXFER = 2i32;
04454e1e 9215#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9216pub type PRIORITIZE_FLAGS = i32;
04454e1e 9217#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9218pub const PRIORITIZE_FLAG_RETRYFAILEDITEMS: PRIORITIZE_FLAGS = 1i32;
04454e1e 9219#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9220pub const PRIORITIZE_FLAG_IGNOREFAILURECOUNT: PRIORITIZE_FLAGS = 2i32;
04454e1e 9221#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9222pub type PRIORITY_LEVEL = i32;
04454e1e 9223#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9224pub const PRIORITY_LEVEL_FOREGROUND: PRIORITY_LEVEL = 0i32;
04454e1e 9225#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9226pub const PRIORITY_LEVEL_HIGH: PRIORITY_LEVEL = 1i32;
04454e1e 9227#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9228pub const PRIORITY_LEVEL_LOW: PRIORITY_LEVEL = 2i32;
04454e1e 9229#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9230pub const PRIORITY_LEVEL_DEFAULT: PRIORITY_LEVEL = 3i32;
04454e1e 9231#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647 9232pub type PROXY_ACCESS = i32;
04454e1e 9233#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647
FG
9234pub const PROXY_ACCESS_PRECONFIG: PROXY_ACCESS = 0i32;
9235#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9236pub const PROXY_ACCESS_DIRECT: PROXY_ACCESS = 1i32;
9237#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9238pub const PROXY_ACCESS_PROXY: PROXY_ACCESS = 2i32;
9239#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9240pub type QUERY_PARSER_MANAGER_OPTION = i32;
9241#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9242pub const QPMO_SCHEMA_BINARY_NAME: QUERY_PARSER_MANAGER_OPTION = 0i32;
9243#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9244pub const QPMO_PRELOCALIZED_SCHEMA_BINARY_PATH: QUERY_PARSER_MANAGER_OPTION = 1i32;
9245#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9246pub const QPMO_UNLOCALIZED_SCHEMA_BINARY_PATH: QUERY_PARSER_MANAGER_OPTION = 2i32;
9247#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9248pub const QPMO_LOCALIZED_SCHEMA_BINARY_PATH: QUERY_PARSER_MANAGER_OPTION = 3i32;
9249#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9250pub const QPMO_APPEND_LCID_TO_LOCALIZED_PATH: QUERY_PARSER_MANAGER_OPTION = 4i32;
9251#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9252pub const QPMO_LOCALIZER_SUPPORT: QUERY_PARSER_MANAGER_OPTION = 5i32;
9253#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9254pub type ROWSETEVENT_ITEMSTATE = i32;
9255#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9256pub const ROWSETEVENT_ITEMSTATE_NOTINROWSET: ROWSETEVENT_ITEMSTATE = 0i32;
9257#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9258pub const ROWSETEVENT_ITEMSTATE_INROWSET: ROWSETEVENT_ITEMSTATE = 1i32;
9259#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9260pub const ROWSETEVENT_ITEMSTATE_UNKNOWN: ROWSETEVENT_ITEMSTATE = 2i32;
9261#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9262pub type ROWSETEVENT_TYPE = i32;
9263#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9264pub const ROWSETEVENT_TYPE_DATAEXPIRED: ROWSETEVENT_TYPE = 0i32;
9265#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9266pub const ROWSETEVENT_TYPE_FOREGROUNDLOST: ROWSETEVENT_TYPE = 1i32;
9267#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9268pub const ROWSETEVENT_TYPE_SCOPESTATISTICS: ROWSETEVENT_TYPE = 2i32;
9269#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9270pub type SEARCH_INDEXING_PHASE = i32;
9271#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9272pub const SEARCH_INDEXING_PHASE_GATHERER: SEARCH_INDEXING_PHASE = 0i32;
9273#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9274pub const SEARCH_INDEXING_PHASE_QUERYABLE: SEARCH_INDEXING_PHASE = 1i32;
9275#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9276pub const SEARCH_INDEXING_PHASE_PERSISTED: SEARCH_INDEXING_PHASE = 2i32;
9277#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9278pub type SEARCH_KIND_OF_CHANGE = i32;
9279#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9280pub const SEARCH_CHANGE_ADD: SEARCH_KIND_OF_CHANGE = 0i32;
9281#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9282pub const SEARCH_CHANGE_DELETE: SEARCH_KIND_OF_CHANGE = 1i32;
9283#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9284pub const SEARCH_CHANGE_MODIFY: SEARCH_KIND_OF_CHANGE = 2i32;
9285#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9286pub const SEARCH_CHANGE_MOVE_RENAME: SEARCH_KIND_OF_CHANGE = 3i32;
9287#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9288pub const SEARCH_CHANGE_SEMANTICS_DIRECTORY: SEARCH_KIND_OF_CHANGE = 262144i32;
9289#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9290pub const SEARCH_CHANGE_SEMANTICS_SHALLOW: SEARCH_KIND_OF_CHANGE = 524288i32;
9291#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9292pub const SEARCH_CHANGE_SEMANTICS_UPDATE_SECURITY: SEARCH_KIND_OF_CHANGE = 4194304i32;
9293#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9294pub type SEARCH_NOTIFICATION_PRIORITY = i32;
9295#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9296pub const SEARCH_NORMAL_PRIORITY: SEARCH_NOTIFICATION_PRIORITY = 0i32;
9297#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9298pub const SEARCH_HIGH_PRIORITY: SEARCH_NOTIFICATION_PRIORITY = 1i32;
9299#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9300pub type SEARCH_QUERY_SYNTAX = i32;
9301#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9302pub const SEARCH_NO_QUERY_SYNTAX: SEARCH_QUERY_SYNTAX = 0i32;
9303#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9304pub const SEARCH_ADVANCED_QUERY_SYNTAX: SEARCH_QUERY_SYNTAX = 1i32;
9305#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9306pub const SEARCH_NATURAL_QUERY_SYNTAX: SEARCH_QUERY_SYNTAX = 2i32;
9307#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9308pub type SEARCH_TERM_EXPANSION = i32;
9309#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9310pub const SEARCH_TERM_NO_EXPANSION: SEARCH_TERM_EXPANSION = 0i32;
9311#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9312pub const SEARCH_TERM_PREFIX_ALL: SEARCH_TERM_EXPANSION = 1i32;
9313#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9314pub const SEARCH_TERM_STEM_ALL: SEARCH_TERM_EXPANSION = 2i32;
9315#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9316pub type SQLINTERVAL = i32;
9317#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9318pub const SQL_IS_YEAR: SQLINTERVAL = 1i32;
9319#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9320pub const SQL_IS_MONTH: SQLINTERVAL = 2i32;
9321#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9322pub const SQL_IS_DAY: SQLINTERVAL = 3i32;
9323#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9324pub const SQL_IS_HOUR: SQLINTERVAL = 4i32;
9325#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9326pub const SQL_IS_MINUTE: SQLINTERVAL = 5i32;
9327#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9328pub const SQL_IS_SECOND: SQLINTERVAL = 6i32;
9329#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9330pub const SQL_IS_YEAR_TO_MONTH: SQLINTERVAL = 7i32;
9331#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9332pub const SQL_IS_DAY_TO_HOUR: SQLINTERVAL = 8i32;
9333#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9334pub const SQL_IS_DAY_TO_MINUTE: SQLINTERVAL = 9i32;
9335#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9336pub const SQL_IS_DAY_TO_SECOND: SQLINTERVAL = 10i32;
9337#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9338pub const SQL_IS_HOUR_TO_MINUTE: SQLINTERVAL = 11i32;
9339#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9340pub const SQL_IS_HOUR_TO_SECOND: SQLINTERVAL = 12i32;
9341#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9342pub const SQL_IS_MINUTE_TO_SECOND: SQLINTERVAL = 13i32;
9343#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9344pub type SQLVARENUM = i32;
9345#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9346pub const VT_SS_EMPTY: SQLVARENUM = 0i32;
9347#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9348pub const VT_SS_NULL: SQLVARENUM = 1i32;
9349#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9350pub const VT_SS_UI1: SQLVARENUM = 17i32;
9351#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9352pub const VT_SS_I2: SQLVARENUM = 2i32;
9353#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9354pub const VT_SS_I4: SQLVARENUM = 3i32;
9355#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9356pub const VT_SS_I8: SQLVARENUM = 20i32;
9357#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9358pub const VT_SS_R4: SQLVARENUM = 4i32;
9359#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9360pub const VT_SS_R8: SQLVARENUM = 5i32;
9361#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9362pub const VT_SS_MONEY: SQLVARENUM = 6i32;
9363#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9364pub const VT_SS_SMALLMONEY: SQLVARENUM = 200i32;
9365#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9366pub const VT_SS_WSTRING: SQLVARENUM = 201i32;
9367#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9368pub const VT_SS_WVARSTRING: SQLVARENUM = 202i32;
9369#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9370pub const VT_SS_STRING: SQLVARENUM = 203i32;
9371#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9372pub const VT_SS_VARSTRING: SQLVARENUM = 204i32;
9373#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9374pub const VT_SS_BIT: SQLVARENUM = 11i32;
9375#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9376pub const VT_SS_GUID: SQLVARENUM = 72i32;
9377#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9378pub const VT_SS_NUMERIC: SQLVARENUM = 131i32;
9379#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9380pub const VT_SS_DECIMAL: SQLVARENUM = 205i32;
9381#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9382pub const VT_SS_DATETIME: SQLVARENUM = 135i32;
9383#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9384pub const VT_SS_SMALLDATETIME: SQLVARENUM = 206i32;
9385#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9386pub const VT_SS_BINARY: SQLVARENUM = 207i32;
9387#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9388pub const VT_SS_VARBINARY: SQLVARENUM = 208i32;
9389#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9390pub const VT_SS_UNKNOWN: SQLVARENUM = 209i32;
9391#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9392pub type STRUCTURED_QUERY_MULTIOPTION = i32;
9393#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9394pub const SQMO_VIRTUAL_PROPERTY: STRUCTURED_QUERY_MULTIOPTION = 0i32;
9395#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9396pub const SQMO_DEFAULT_PROPERTY: STRUCTURED_QUERY_MULTIOPTION = 1i32;
9397#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9398pub const SQMO_GENERATOR_FOR_TYPE: STRUCTURED_QUERY_MULTIOPTION = 2i32;
9399#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9400pub const SQMO_MAP_PROPERTY: STRUCTURED_QUERY_MULTIOPTION = 3i32;
9401#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9402pub type STRUCTURED_QUERY_PARSE_ERROR = i32;
9403#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9404pub const SQPE_NONE: STRUCTURED_QUERY_PARSE_ERROR = 0i32;
9405#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9406pub const SQPE_EXTRA_OPENING_PARENTHESIS: STRUCTURED_QUERY_PARSE_ERROR = 1i32;
9407#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9408pub const SQPE_EXTRA_CLOSING_PARENTHESIS: STRUCTURED_QUERY_PARSE_ERROR = 2i32;
9409#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9410pub const SQPE_IGNORED_MODIFIER: STRUCTURED_QUERY_PARSE_ERROR = 3i32;
9411#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9412pub const SQPE_IGNORED_CONNECTOR: STRUCTURED_QUERY_PARSE_ERROR = 4i32;
9413#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9414pub const SQPE_IGNORED_KEYWORD: STRUCTURED_QUERY_PARSE_ERROR = 5i32;
9415#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9416pub const SQPE_UNHANDLED: STRUCTURED_QUERY_PARSE_ERROR = 6i32;
9417#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9418pub type STRUCTURED_QUERY_RESOLVE_OPTION = u32;
9419#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9420pub const SQRO_DEFAULT: STRUCTURED_QUERY_RESOLVE_OPTION = 0u32;
9421#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9422pub const SQRO_DONT_RESOLVE_DATETIME: STRUCTURED_QUERY_RESOLVE_OPTION = 1u32;
9423#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9424pub const SQRO_ALWAYS_ONE_INTERVAL: STRUCTURED_QUERY_RESOLVE_OPTION = 2u32;
9425#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9426pub const SQRO_DONT_SIMPLIFY_CONDITION_TREES: STRUCTURED_QUERY_RESOLVE_OPTION = 4u32;
9427#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9428pub const SQRO_DONT_MAP_RELATIONS: STRUCTURED_QUERY_RESOLVE_OPTION = 8u32;
9429#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9430pub const SQRO_DONT_RESOLVE_RANGES: STRUCTURED_QUERY_RESOLVE_OPTION = 16u32;
9431#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9432pub const SQRO_DONT_REMOVE_UNRESTRICTED_KEYWORDS: STRUCTURED_QUERY_RESOLVE_OPTION = 32u32;
9433#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9434pub const SQRO_DONT_SPLIT_WORDS: STRUCTURED_QUERY_RESOLVE_OPTION = 64u32;
9435#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9436pub const SQRO_IGNORE_PHRASE_ORDER: STRUCTURED_QUERY_RESOLVE_OPTION = 128u32;
9437#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9438pub const SQRO_ADD_VALUE_TYPE_FOR_PLAIN_VALUES: STRUCTURED_QUERY_RESOLVE_OPTION = 256u32;
9439#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9440pub const SQRO_ADD_ROBUST_ITEM_NAME: STRUCTURED_QUERY_RESOLVE_OPTION = 512u32;
9441#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9442pub type STRUCTURED_QUERY_SINGLE_OPTION = i32;
9443#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9444pub const SQSO_SCHEMA: STRUCTURED_QUERY_SINGLE_OPTION = 0i32;
9445#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9446pub const SQSO_LOCALE_WORD_BREAKING: STRUCTURED_QUERY_SINGLE_OPTION = 1i32;
9447#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9448pub const SQSO_WORD_BREAKER: STRUCTURED_QUERY_SINGLE_OPTION = 2i32;
9449#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9450pub const SQSO_NATURAL_SYNTAX: STRUCTURED_QUERY_SINGLE_OPTION = 3i32;
9451#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9452pub const SQSO_AUTOMATIC_WILDCARD: STRUCTURED_QUERY_SINGLE_OPTION = 4i32;
9453#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9454pub const SQSO_TRACE_LEVEL: STRUCTURED_QUERY_SINGLE_OPTION = 5i32;
9455#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9456pub const SQSO_LANGUAGE_KEYWORDS: STRUCTURED_QUERY_SINGLE_OPTION = 6i32;
9457#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9458pub const SQSO_SYNTAX: STRUCTURED_QUERY_SINGLE_OPTION = 7i32;
9459#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9460pub const SQSO_TIME_ZONE: STRUCTURED_QUERY_SINGLE_OPTION = 8i32;
9461#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9462pub const SQSO_IMPLICIT_CONNECTOR: STRUCTURED_QUERY_SINGLE_OPTION = 9i32;
9463#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9464pub const SQSO_CONNECTOR_CASE: STRUCTURED_QUERY_SINGLE_OPTION = 10i32;
9465#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9466pub type STRUCTURED_QUERY_SYNTAX = i32;
9467#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9468pub const SQS_NO_SYNTAX: STRUCTURED_QUERY_SYNTAX = 0i32;
9469#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9470pub const SQS_ADVANCED_QUERY_SYNTAX: STRUCTURED_QUERY_SYNTAX = 1i32;
9471#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9472pub const SQS_NATURAL_QUERY_SYNTAX: STRUCTURED_QUERY_SYNTAX = 2i32;
9473#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9474pub type SUBSCRIPTIONINFOFLAGS = i32;
9475#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9476pub const SUBSINFO_SCHEDULE: SUBSCRIPTIONINFOFLAGS = 1i32;
9477#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9478pub const SUBSINFO_RECURSE: SUBSCRIPTIONINFOFLAGS = 2i32;
9479#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9480pub const SUBSINFO_WEBCRAWL: SUBSCRIPTIONINFOFLAGS = 4i32;
9481#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9482pub const SUBSINFO_MAILNOT: SUBSCRIPTIONINFOFLAGS = 8i32;
9483#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9484pub const SUBSINFO_MAXSIZEKB: SUBSCRIPTIONINFOFLAGS = 16i32;
9485#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9486pub const SUBSINFO_USER: SUBSCRIPTIONINFOFLAGS = 32i32;
9487#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9488pub const SUBSINFO_PASSWORD: SUBSCRIPTIONINFOFLAGS = 64i32;
9489#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9490pub const SUBSINFO_TASKFLAGS: SUBSCRIPTIONINFOFLAGS = 256i32;
9491#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9492pub const SUBSINFO_GLEAM: SUBSCRIPTIONINFOFLAGS = 512i32;
9493#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9494pub const SUBSINFO_CHANGESONLY: SUBSCRIPTIONINFOFLAGS = 1024i32;
9495#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9496pub const SUBSINFO_CHANNELFLAGS: SUBSCRIPTIONINFOFLAGS = 2048i32;
9497#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9498pub const SUBSINFO_FRIENDLYNAME: SUBSCRIPTIONINFOFLAGS = 8192i32;
9499#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9500pub const SUBSINFO_NEEDPASSWORD: SUBSCRIPTIONINFOFLAGS = 16384i32;
9501#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9502pub const SUBSINFO_TYPE: SUBSCRIPTIONINFOFLAGS = 32768i32;
9503#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9504pub type SUBSCRIPTIONSCHEDULE = i32;
9505#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9506pub const SUBSSCHED_AUTO: SUBSCRIPTIONSCHEDULE = 0i32;
9507#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9508pub const SUBSSCHED_DAILY: SUBSCRIPTIONSCHEDULE = 1i32;
9509#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9510pub const SUBSSCHED_WEEKLY: SUBSCRIPTIONSCHEDULE = 2i32;
9511#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9512pub const SUBSSCHED_CUSTOM: SUBSCRIPTIONSCHEDULE = 3i32;
9513#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9514pub const SUBSSCHED_MANUAL: SUBSCRIPTIONSCHEDULE = 4i32;
9515#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9516pub type SUBSCRIPTIONTYPE = i32;
9517#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9518pub const SUBSTYPE_URL: SUBSCRIPTIONTYPE = 0i32;
9519#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9520pub const SUBSTYPE_CHANNEL: SUBSCRIPTIONTYPE = 1i32;
9521#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9522pub const SUBSTYPE_DESKTOPURL: SUBSCRIPTIONTYPE = 2i32;
9523#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9524pub const SUBSTYPE_EXTERNAL: SUBSCRIPTIONTYPE = 3i32;
9525#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9526pub const SUBSTYPE_DESKTOPCHANNEL: SUBSCRIPTIONTYPE = 4i32;
9527#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9528pub type WEBCRAWL_RECURSEFLAGS = i32;
9529#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9530pub const WEBCRAWL_DONT_MAKE_STICKY: WEBCRAWL_RECURSEFLAGS = 1i32;
9531#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9532pub const WEBCRAWL_GET_IMAGES: WEBCRAWL_RECURSEFLAGS = 2i32;
9533#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9534pub const WEBCRAWL_GET_VIDEOS: WEBCRAWL_RECURSEFLAGS = 4i32;
9535#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9536pub const WEBCRAWL_GET_BGSOUNDS: WEBCRAWL_RECURSEFLAGS = 8i32;
9537#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9538pub const WEBCRAWL_GET_CONTROLS: WEBCRAWL_RECURSEFLAGS = 16i32;
9539#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9540pub const WEBCRAWL_LINKS_ELSEWHERE: WEBCRAWL_RECURSEFLAGS = 32i32;
9541#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9542pub const WEBCRAWL_IGNORE_ROBOTSTXT: WEBCRAWL_RECURSEFLAGS = 128i32;
9543#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9544pub const WEBCRAWL_ONLY_LINKS_TO_HTML: WEBCRAWL_RECURSEFLAGS = 256i32;
9545#[repr(C)]
9546#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9547pub struct AUTHENTICATION_INFO {
9548 pub dwSize: u32,
9549 pub atAuthenticationType: AUTH_TYPE,
9550 pub pcwszUser: ::windows_sys::core::PCWSTR,
9551 pub pcwszPassword: ::windows_sys::core::PCWSTR,
9552}
9553impl ::core::marker::Copy for AUTHENTICATION_INFO {}
9554impl ::core::clone::Clone for AUTHENTICATION_INFO {
9555 fn clone(&self) -> Self {
9556 *self
9557 }
9558}
9559#[repr(C)]
9560#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9561pub struct BUCKETCATEGORIZE {
9562 pub cBuckets: u32,
9563 pub Distribution: u32,
9564}
9565impl ::core::marker::Copy for BUCKETCATEGORIZE {}
9566impl ::core::clone::Clone for BUCKETCATEGORIZE {
9567 fn clone(&self) -> Self {
9568 *self
9569 }
9570}
9571#[repr(C)]
9572#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Foundation\"`, `\"Win32_Storage_IndexServer\"`, `\"Win32_System_Com_StructuredStorage\"`*"]
9573#[cfg(all(feature = "Win32_Foundation", feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com_StructuredStorage"))]
9574pub struct CATEGORIZATION {
9575 pub ulCatType: u32,
9576 pub Anonymous: CATEGORIZATION_0,
9577 pub csColumns: COLUMNSET,
9578}
9579#[cfg(all(feature = "Win32_Foundation", feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com_StructuredStorage"))]
9580impl ::core::marker::Copy for CATEGORIZATION {}
9581#[cfg(all(feature = "Win32_Foundation", feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com_StructuredStorage"))]
9582impl ::core::clone::Clone for CATEGORIZATION {
9583 fn clone(&self) -> Self {
9584 *self
9585 }
9586}
9587#[repr(C)]
9588#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Foundation\"`, `\"Win32_Storage_IndexServer\"`, `\"Win32_System_Com_StructuredStorage\"`*"]
9589#[cfg(all(feature = "Win32_Foundation", feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com_StructuredStorage"))]
9590pub union CATEGORIZATION_0 {
9591 pub cClusters: u32,
9592 pub bucket: BUCKETCATEGORIZE,
9593 pub range: RANGECATEGORIZE,
9594}
9595#[cfg(all(feature = "Win32_Foundation", feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com_StructuredStorage"))]
9596impl ::core::marker::Copy for CATEGORIZATION_0 {}
9597#[cfg(all(feature = "Win32_Foundation", feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com_StructuredStorage"))]
9598impl ::core::clone::Clone for CATEGORIZATION_0 {
9599 fn clone(&self) -> Self {
9600 *self
9601 }
9602}
9603#[repr(C)]
9604#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Foundation\"`, `\"Win32_Storage_IndexServer\"`, `\"Win32_System_Com_StructuredStorage\"`*"]
9605#[cfg(all(feature = "Win32_Foundation", feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com_StructuredStorage"))]
9606pub struct CATEGORIZATIONSET {
9607 pub cCat: u32,
9608 pub aCat: *mut CATEGORIZATION,
9609}
9610#[cfg(all(feature = "Win32_Foundation", feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com_StructuredStorage"))]
9611impl ::core::marker::Copy for CATEGORIZATIONSET {}
9612#[cfg(all(feature = "Win32_Foundation", feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com_StructuredStorage"))]
9613impl ::core::clone::Clone for CATEGORIZATIONSET {
9614 fn clone(&self) -> Self {
9615 *self
9616 }
9617}
9618#[repr(C)]
9619#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Storage_IndexServer\"`, `\"Win32_System_Com_StructuredStorage\"`*"]
9620#[cfg(all(feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com_StructuredStorage"))]
9621pub struct COLUMNSET {
9622 pub cCol: u32,
9623 pub aCol: *mut super::super::Storage::IndexServer::FULLPROPSPEC,
9624}
9625#[cfg(all(feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com_StructuredStorage"))]
9626impl ::core::marker::Copy for COLUMNSET {}
9627#[cfg(all(feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com_StructuredStorage"))]
9628impl ::core::clone::Clone for COLUMNSET {
9629 fn clone(&self) -> Self {
9630 *self
9631 }
9632}
9633#[repr(C)]
9634#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Storage_IndexServer\"`, `\"Win32_System_Com_StructuredStorage\"`*"]
9635#[cfg(all(feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com_StructuredStorage"))]
9636pub struct CONTENTRESTRICTION {
9637 pub prop: super::super::Storage::IndexServer::FULLPROPSPEC,
9638 pub pwcsPhrase: ::windows_sys::core::PWSTR,
9639 pub lcid: u32,
9640 pub ulGenerateMethod: u32,
9641}
9642#[cfg(all(feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com_StructuredStorage"))]
9643impl ::core::marker::Copy for CONTENTRESTRICTION {}
9644#[cfg(all(feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com_StructuredStorage"))]
9645impl ::core::clone::Clone for CONTENTRESTRICTION {
9646 fn clone(&self) -> Self {
9647 *self
9648 }
9649}
9650#[repr(C)]
9651#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9652pub struct DATE_STRUCT {
9653 pub year: i16,
9654 pub month: u16,
9655 pub day: u16,
9656}
9657impl ::core::marker::Copy for DATE_STRUCT {}
9658impl ::core::clone::Clone for DATE_STRUCT {
9659 fn clone(&self) -> Self {
9660 *self
9661 }
9662}
9663#[repr(C)]
9664#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9665#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
9666pub struct DBBINDEXT {
9667 pub pExtension: *mut u8,
9668 pub ulExtension: usize,
9669}
9670#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
9671impl ::core::marker::Copy for DBBINDEXT {}
9672#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
9673impl ::core::clone::Clone for DBBINDEXT {
9674 fn clone(&self) -> Self {
9675 *self
9676 }
9677}
9678#[repr(C, packed(2))]
9679#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9680#[cfg(target_arch = "x86")]
9681pub struct DBBINDEXT {
9682 pub pExtension: *mut u8,
9683 pub ulExtension: usize,
9684}
9685#[cfg(target_arch = "x86")]
9686impl ::core::marker::Copy for DBBINDEXT {}
9687#[cfg(target_arch = "x86")]
9688impl ::core::clone::Clone for DBBINDEXT {
9689 fn clone(&self) -> Self {
9690 *self
9691 }
9692}
9693#[repr(C)]
9694#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_System_Com\"`*"]
9695#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
9696#[cfg(feature = "Win32_System_Com")]
9697pub struct DBBINDING {
9698 pub iOrdinal: usize,
9699 pub obValue: usize,
9700 pub obLength: usize,
9701 pub obStatus: usize,
9702 pub pTypeInfo: super::Com::ITypeInfo,
9703 pub pObject: *mut DBOBJECT,
9704 pub pBindExt: *mut DBBINDEXT,
9705 pub dwPart: u32,
9706 pub dwMemOwner: u32,
9707 pub eParamIO: u32,
9708 pub cbMaxLen: usize,
9709 pub dwFlags: u32,
9710 pub wType: u16,
9711 pub bPrecision: u8,
9712 pub bScale: u8,
9713}
9714#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
9715#[cfg(feature = "Win32_System_Com")]
9716impl ::core::marker::Copy for DBBINDING {}
9717#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
9718#[cfg(feature = "Win32_System_Com")]
9719impl ::core::clone::Clone for DBBINDING {
9720 fn clone(&self) -> Self {
9721 *self
9722 }
9723}
9724#[repr(C, packed(2))]
9725#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_System_Com\"`*"]
9726#[cfg(target_arch = "x86")]
9727#[cfg(feature = "Win32_System_Com")]
9728pub struct DBBINDING {
9729 pub iOrdinal: usize,
9730 pub obValue: usize,
9731 pub obLength: usize,
9732 pub obStatus: usize,
9733 pub pTypeInfo: super::Com::ITypeInfo,
9734 pub pObject: *mut DBOBJECT,
9735 pub pBindExt: *mut DBBINDEXT,
9736 pub dwPart: u32,
9737 pub dwMemOwner: u32,
9738 pub eParamIO: u32,
9739 pub cbMaxLen: usize,
9740 pub dwFlags: u32,
9741 pub wType: u16,
9742 pub bPrecision: u8,
9743 pub bScale: u8,
9744}
9745#[cfg(target_arch = "x86")]
9746#[cfg(feature = "Win32_System_Com")]
9747impl ::core::marker::Copy for DBBINDING {}
9748#[cfg(target_arch = "x86")]
9749#[cfg(feature = "Win32_System_Com")]
9750impl ::core::clone::Clone for DBBINDING {
9751 fn clone(&self) -> Self {
9752 *self
9753 }
9754}
9755#[repr(C)]
9756#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Storage_IndexServer\"`*"]
9757#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
9758#[cfg(feature = "Win32_Storage_IndexServer")]
9759pub struct DBCOLUMNACCESS {
9760 pub pData: *mut ::core::ffi::c_void,
9761 pub columnid: super::super::Storage::IndexServer::DBID,
9762 pub cbDataLen: usize,
9763 pub dwStatus: u32,
9764 pub cbMaxLen: usize,
9765 pub dwReserved: usize,
9766 pub wType: u16,
9767 pub bPrecision: u8,
9768 pub bScale: u8,
9769}
9770#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
9771#[cfg(feature = "Win32_Storage_IndexServer")]
9772impl ::core::marker::Copy for DBCOLUMNACCESS {}
9773#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
9774#[cfg(feature = "Win32_Storage_IndexServer")]
9775impl ::core::clone::Clone for DBCOLUMNACCESS {
9776 fn clone(&self) -> Self {
9777 *self
9778 }
9779}
9780#[repr(C, packed(2))]
9781#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Storage_IndexServer\"`*"]
9782#[cfg(target_arch = "x86")]
9783#[cfg(feature = "Win32_Storage_IndexServer")]
9784pub struct DBCOLUMNACCESS {
9785 pub pData: *mut ::core::ffi::c_void,
9786 pub columnid: super::super::Storage::IndexServer::DBID,
9787 pub cbDataLen: usize,
9788 pub dwStatus: u32,
9789 pub cbMaxLen: usize,
9790 pub dwReserved: usize,
9791 pub wType: u16,
9792 pub bPrecision: u8,
9793 pub bScale: u8,
9794}
9795#[cfg(target_arch = "x86")]
9796#[cfg(feature = "Win32_Storage_IndexServer")]
9797impl ::core::marker::Copy for DBCOLUMNACCESS {}
9798#[cfg(target_arch = "x86")]
9799#[cfg(feature = "Win32_Storage_IndexServer")]
9800impl ::core::clone::Clone for DBCOLUMNACCESS {
9801 fn clone(&self) -> Self {
9802 *self
9803 }
9804}
9805#[repr(C)]
9806#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Foundation\"`, `\"Win32_Storage_IndexServer\"`, `\"Win32_System_Com\"`, `\"Win32_System_Ole\"`*"]
9807#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
9808#[cfg(all(feature = "Win32_Foundation", feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com", feature = "Win32_System_Ole"))]
9809pub struct DBCOLUMNDESC {
9810 pub pwszTypeName: ::windows_sys::core::PWSTR,
9811 pub pTypeInfo: super::Com::ITypeInfo,
9812 pub rgPropertySets: *mut DBPROPSET,
9813 pub pclsid: *mut ::windows_sys::core::GUID,
9814 pub cPropertySets: u32,
9815 pub ulColumnSize: usize,
9816 pub dbcid: super::super::Storage::IndexServer::DBID,
9817 pub wType: u16,
9818 pub bPrecision: u8,
9819 pub bScale: u8,
9820}
9821#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
9822#[cfg(all(feature = "Win32_Foundation", feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com", feature = "Win32_System_Ole"))]
9823impl ::core::marker::Copy for DBCOLUMNDESC {}
9824#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
9825#[cfg(all(feature = "Win32_Foundation", feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com", feature = "Win32_System_Ole"))]
9826impl ::core::clone::Clone for DBCOLUMNDESC {
9827 fn clone(&self) -> Self {
9828 *self
9829 }
9830}
9831#[repr(C, packed(2))]
9832#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Foundation\"`, `\"Win32_Storage_IndexServer\"`, `\"Win32_System_Com\"`, `\"Win32_System_Ole\"`*"]
9833#[cfg(target_arch = "x86")]
9834#[cfg(all(feature = "Win32_Foundation", feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com", feature = "Win32_System_Ole"))]
9835pub struct DBCOLUMNDESC {
9836 pub pwszTypeName: ::windows_sys::core::PWSTR,
9837 pub pTypeInfo: super::Com::ITypeInfo,
9838 pub rgPropertySets: *mut DBPROPSET,
9839 pub pclsid: *mut ::windows_sys::core::GUID,
9840 pub cPropertySets: u32,
9841 pub ulColumnSize: usize,
9842 pub dbcid: super::super::Storage::IndexServer::DBID,
9843 pub wType: u16,
9844 pub bPrecision: u8,
9845 pub bScale: u8,
9846}
9847#[cfg(target_arch = "x86")]
9848#[cfg(all(feature = "Win32_Foundation", feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com", feature = "Win32_System_Ole"))]
9849impl ::core::marker::Copy for DBCOLUMNDESC {}
9850#[cfg(target_arch = "x86")]
9851#[cfg(all(feature = "Win32_Foundation", feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com", feature = "Win32_System_Ole"))]
9852impl ::core::clone::Clone for DBCOLUMNDESC {
9853 fn clone(&self) -> Self {
9854 *self
9855 }
9856}
9857#[repr(C)]
9858#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Storage_IndexServer\"`, `\"Win32_System_Com\"`*"]
9859#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
9860#[cfg(all(feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com"))]
9861pub struct DBCOLUMNINFO {
9862 pub pwszName: ::windows_sys::core::PWSTR,
9863 pub pTypeInfo: super::Com::ITypeInfo,
9864 pub iOrdinal: usize,
9865 pub dwFlags: u32,
9866 pub ulColumnSize: usize,
9867 pub wType: u16,
9868 pub bPrecision: u8,
9869 pub bScale: u8,
9870 pub columnid: super::super::Storage::IndexServer::DBID,
9871}
9872#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
9873#[cfg(all(feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com"))]
9874impl ::core::marker::Copy for DBCOLUMNINFO {}
9875#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
9876#[cfg(all(feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com"))]
9877impl ::core::clone::Clone for DBCOLUMNINFO {
9878 fn clone(&self) -> Self {
9879 *self
9880 }
9881}
9882#[repr(C, packed(2))]
9883#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Storage_IndexServer\"`, `\"Win32_System_Com\"`*"]
9884#[cfg(target_arch = "x86")]
9885#[cfg(all(feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com"))]
9886pub struct DBCOLUMNINFO {
9887 pub pwszName: ::windows_sys::core::PWSTR,
9888 pub pTypeInfo: super::Com::ITypeInfo,
9889 pub iOrdinal: usize,
9890 pub dwFlags: u32,
9891 pub ulColumnSize: usize,
9892 pub wType: u16,
9893 pub bPrecision: u8,
9894 pub bScale: u8,
9895 pub columnid: super::super::Storage::IndexServer::DBID,
9896}
9897#[cfg(target_arch = "x86")]
9898#[cfg(all(feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com"))]
9899impl ::core::marker::Copy for DBCOLUMNINFO {}
9900#[cfg(target_arch = "x86")]
9901#[cfg(all(feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com"))]
9902impl ::core::clone::Clone for DBCOLUMNINFO {
9903 fn clone(&self) -> Self {
9904 *self
9905 }
9906}
9907#[repr(C)]
9908#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Foundation\"`, `\"Win32_Storage_IndexServer\"`, `\"Win32_System_Com\"`, `\"Win32_System_Ole\"`*"]
9909#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
9910#[cfg(all(feature = "Win32_Foundation", feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com", feature = "Win32_System_Ole"))]
9911pub struct DBCONSTRAINTDESC {
9912 pub pConstraintID: *mut super::super::Storage::IndexServer::DBID,
9913 pub ConstraintType: u32,
9914 pub cColumns: usize,
9915 pub rgColumnList: *mut super::super::Storage::IndexServer::DBID,
9916 pub pReferencedTableID: *mut super::super::Storage::IndexServer::DBID,
9917 pub cForeignKeyColumns: usize,
9918 pub rgForeignKeyColumnList: *mut super::super::Storage::IndexServer::DBID,
9919 pub pwszConstraintText: ::windows_sys::core::PWSTR,
9920 pub UpdateRule: u32,
9921 pub DeleteRule: u32,
9922 pub MatchType: u32,
9923 pub Deferrability: u32,
9924 pub cReserved: usize,
9925 pub rgReserved: *mut DBPROPSET,
9926}
9927#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
9928#[cfg(all(feature = "Win32_Foundation", feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com", feature = "Win32_System_Ole"))]
9929impl ::core::marker::Copy for DBCONSTRAINTDESC {}
9930#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
9931#[cfg(all(feature = "Win32_Foundation", feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com", feature = "Win32_System_Ole"))]
9932impl ::core::clone::Clone for DBCONSTRAINTDESC {
9933 fn clone(&self) -> Self {
9934 *self
9935 }
9936}
9937#[repr(C, packed(2))]
9938#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Foundation\"`, `\"Win32_Storage_IndexServer\"`, `\"Win32_System_Com\"`, `\"Win32_System_Ole\"`*"]
9939#[cfg(target_arch = "x86")]
9940#[cfg(all(feature = "Win32_Foundation", feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com", feature = "Win32_System_Ole"))]
9941pub struct DBCONSTRAINTDESC {
9942 pub pConstraintID: *mut super::super::Storage::IndexServer::DBID,
9943 pub ConstraintType: u32,
9944 pub cColumns: usize,
9945 pub rgColumnList: *mut super::super::Storage::IndexServer::DBID,
9946 pub pReferencedTableID: *mut super::super::Storage::IndexServer::DBID,
9947 pub cForeignKeyColumns: usize,
9948 pub rgForeignKeyColumnList: *mut super::super::Storage::IndexServer::DBID,
9949 pub pwszConstraintText: ::windows_sys::core::PWSTR,
9950 pub UpdateRule: u32,
9951 pub DeleteRule: u32,
9952 pub MatchType: u32,
9953 pub Deferrability: u32,
9954 pub cReserved: usize,
9955 pub rgReserved: *mut DBPROPSET,
9956}
9957#[cfg(target_arch = "x86")]
9958#[cfg(all(feature = "Win32_Foundation", feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com", feature = "Win32_System_Ole"))]
9959impl ::core::marker::Copy for DBCONSTRAINTDESC {}
9960#[cfg(target_arch = "x86")]
9961#[cfg(all(feature = "Win32_Foundation", feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com", feature = "Win32_System_Ole"))]
9962impl ::core::clone::Clone for DBCONSTRAINTDESC {
9963 fn clone(&self) -> Self {
9964 *self
9965 }
9966}
9967#[repr(C)]
9968#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9969#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
9970pub struct DBCOST {
9971 pub eKind: u32,
9972 pub dwUnits: u32,
9973 pub lValue: i32,
9974}
9975#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
9976impl ::core::marker::Copy for DBCOST {}
9977#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
9978impl ::core::clone::Clone for DBCOST {
9979 fn clone(&self) -> Self {
9980 *self
9981 }
9982}
9983#[repr(C, packed(2))]
9984#[doc = "*Required features: `\"Win32_System_Search\"`*"]
9985#[cfg(target_arch = "x86")]
9986pub struct DBCOST {
9987 pub eKind: u32,
9988 pub dwUnits: u32,
9989 pub lValue: i32,
9990}
9991#[cfg(target_arch = "x86")]
9992impl ::core::marker::Copy for DBCOST {}
9993#[cfg(target_arch = "x86")]
9994impl ::core::clone::Clone for DBCOST {
9995 fn clone(&self) -> Self {
9996 *self
9997 }
9998}
9999#[repr(C)]
10000#[doc = "*Required features: `\"Win32_System_Search\"`*"]
10001pub struct DBDATE {
10002 pub year: i16,
10003 pub month: u16,
10004 pub day: u16,
10005}
10006impl ::core::marker::Copy for DBDATE {}
10007impl ::core::clone::Clone for DBDATE {
10008 fn clone(&self) -> Self {
10009 *self
10010 }
10011}
10012#[repr(C)]
10013#[doc = "*Required features: `\"Win32_System_Search\"`*"]
10014pub struct DBDATETIM4 {
10015 pub numdays: u16,
10016 pub nummins: u16,
10017}
10018impl ::core::marker::Copy for DBDATETIM4 {}
10019impl ::core::clone::Clone for DBDATETIM4 {
10020 fn clone(&self) -> Self {
10021 *self
10022 }
10023}
10024#[repr(C)]
10025#[doc = "*Required features: `\"Win32_System_Search\"`*"]
10026pub struct DBDATETIME {
10027 pub dtdays: i32,
10028 pub dttime: u32,
10029}
10030impl ::core::marker::Copy for DBDATETIME {}
10031impl ::core::clone::Clone for DBDATETIME {
10032 fn clone(&self) -> Self {
10033 *self
10034 }
10035}
10036#[repr(C)]
10037#[doc = "*Required features: `\"Win32_System_Search\"`*"]
10038#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10039pub struct DBFAILUREINFO {
10040 pub hRow: usize,
10041 pub iColumn: usize,
10042 pub failure: ::windows_sys::core::HRESULT,
10043}
10044#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10045impl ::core::marker::Copy for DBFAILUREINFO {}
10046#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10047impl ::core::clone::Clone for DBFAILUREINFO {
10048 fn clone(&self) -> Self {
10049 *self
10050 }
10051}
10052#[repr(C, packed(2))]
10053#[doc = "*Required features: `\"Win32_System_Search\"`*"]
10054#[cfg(target_arch = "x86")]
10055pub struct DBFAILUREINFO {
10056 pub hRow: usize,
10057 pub iColumn: usize,
10058 pub failure: ::windows_sys::core::HRESULT,
10059}
10060#[cfg(target_arch = "x86")]
10061impl ::core::marker::Copy for DBFAILUREINFO {}
10062#[cfg(target_arch = "x86")]
10063impl ::core::clone::Clone for DBFAILUREINFO {
10064 fn clone(&self) -> Self {
10065 *self
10066 }
10067}
10068#[repr(C)]
10069#[doc = "*Required features: `\"Win32_System_Search\"`*"]
10070#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10071pub struct DBIMPLICITSESSION {
10072 pub pUnkOuter: ::windows_sys::core::IUnknown,
10073 pub piid: *mut ::windows_sys::core::GUID,
10074 pub pSession: ::windows_sys::core::IUnknown,
10075}
10076#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10077impl ::core::marker::Copy for DBIMPLICITSESSION {}
10078#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10079impl ::core::clone::Clone for DBIMPLICITSESSION {
10080 fn clone(&self) -> Self {
10081 *self
10082 }
10083}
10084#[repr(C, packed(2))]
10085#[doc = "*Required features: `\"Win32_System_Search\"`*"]
10086#[cfg(target_arch = "x86")]
10087pub struct DBIMPLICITSESSION {
10088 pub pUnkOuter: ::windows_sys::core::IUnknown,
10089 pub piid: *mut ::windows_sys::core::GUID,
10090 pub pSession: ::windows_sys::core::IUnknown,
10091}
10092#[cfg(target_arch = "x86")]
10093impl ::core::marker::Copy for DBIMPLICITSESSION {}
10094#[cfg(target_arch = "x86")]
10095impl ::core::clone::Clone for DBIMPLICITSESSION {
10096 fn clone(&self) -> Self {
10097 *self
10098 }
10099}
10100#[repr(C)]
10101#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Storage_IndexServer\"`*"]
10102#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10103#[cfg(feature = "Win32_Storage_IndexServer")]
10104pub struct DBINDEXCOLUMNDESC {
10105 pub pColumnID: *mut super::super::Storage::IndexServer::DBID,
10106 pub eIndexColOrder: u32,
10107}
10108#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10109#[cfg(feature = "Win32_Storage_IndexServer")]
10110impl ::core::marker::Copy for DBINDEXCOLUMNDESC {}
10111#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10112#[cfg(feature = "Win32_Storage_IndexServer")]
10113impl ::core::clone::Clone for DBINDEXCOLUMNDESC {
10114 fn clone(&self) -> Self {
10115 *self
10116 }
10117}
10118#[repr(C, packed(2))]
10119#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Storage_IndexServer\"`*"]
10120#[cfg(target_arch = "x86")]
10121#[cfg(feature = "Win32_Storage_IndexServer")]
10122pub struct DBINDEXCOLUMNDESC {
10123 pub pColumnID: *mut super::super::Storage::IndexServer::DBID,
10124 pub eIndexColOrder: u32,
10125}
10126#[cfg(target_arch = "x86")]
10127#[cfg(feature = "Win32_Storage_IndexServer")]
10128impl ::core::marker::Copy for DBINDEXCOLUMNDESC {}
10129#[cfg(target_arch = "x86")]
10130#[cfg(feature = "Win32_Storage_IndexServer")]
10131impl ::core::clone::Clone for DBINDEXCOLUMNDESC {
10132 fn clone(&self) -> Self {
10133 *self
10134 }
10135}
10136#[repr(C)]
10137#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Foundation\"`*"]
10138#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10139#[cfg(feature = "Win32_Foundation")]
10140pub struct DBLITERALINFO {
10141 pub pwszLiteralValue: ::windows_sys::core::PWSTR,
10142 pub pwszInvalidChars: ::windows_sys::core::PWSTR,
10143 pub pwszInvalidStartingChars: ::windows_sys::core::PWSTR,
10144 pub lt: u32,
10145 pub fSupported: super::super::Foundation::BOOL,
10146 pub cchMaxLen: u32,
10147}
10148#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10149#[cfg(feature = "Win32_Foundation")]
10150impl ::core::marker::Copy for DBLITERALINFO {}
10151#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10152#[cfg(feature = "Win32_Foundation")]
10153impl ::core::clone::Clone for DBLITERALINFO {
10154 fn clone(&self) -> Self {
10155 *self
10156 }
10157}
10158#[repr(C, packed(2))]
10159#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Foundation\"`*"]
10160#[cfg(target_arch = "x86")]
10161#[cfg(feature = "Win32_Foundation")]
10162pub struct DBLITERALINFO {
10163 pub pwszLiteralValue: ::windows_sys::core::PWSTR,
10164 pub pwszInvalidChars: ::windows_sys::core::PWSTR,
10165 pub pwszInvalidStartingChars: ::windows_sys::core::PWSTR,
10166 pub lt: u32,
10167 pub fSupported: super::super::Foundation::BOOL,
10168 pub cchMaxLen: u32,
10169}
10170#[cfg(target_arch = "x86")]
10171#[cfg(feature = "Win32_Foundation")]
10172impl ::core::marker::Copy for DBLITERALINFO {}
10173#[cfg(target_arch = "x86")]
10174#[cfg(feature = "Win32_Foundation")]
10175impl ::core::clone::Clone for DBLITERALINFO {
10176 fn clone(&self) -> Self {
10177 *self
10178 }
10179}
10180#[repr(C)]
10181#[doc = "*Required features: `\"Win32_System_Search\"`*"]
10182pub struct DBMONEY {
10183 pub mnyhigh: i32,
10184 pub mnylow: u32,
10185}
10186impl ::core::marker::Copy for DBMONEY {}
10187impl ::core::clone::Clone for DBMONEY {
10188 fn clone(&self) -> Self {
10189 *self
10190 }
10191}
10192#[repr(C)]
10193#[doc = "*Required features: `\"Win32_System_Search\"`*"]
10194#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10195pub struct DBOBJECT {
10196 pub dwFlags: u32,
10197 pub iid: ::windows_sys::core::GUID,
10198}
10199#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10200impl ::core::marker::Copy for DBOBJECT {}
10201#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10202impl ::core::clone::Clone for DBOBJECT {
10203 fn clone(&self) -> Self {
10204 *self
10205 }
10206}
10207#[repr(C, packed(2))]
10208#[doc = "*Required features: `\"Win32_System_Search\"`*"]
10209#[cfg(target_arch = "x86")]
10210pub struct DBOBJECT {
10211 pub dwFlags: u32,
10212 pub iid: ::windows_sys::core::GUID,
10213}
10214#[cfg(target_arch = "x86")]
10215impl ::core::marker::Copy for DBOBJECT {}
10216#[cfg(target_arch = "x86")]
10217impl ::core::clone::Clone for DBOBJECT {
10218 fn clone(&self) -> Self {
10219 *self
10220 }
10221}
10222#[repr(C)]
10223#[doc = "*Required features: `\"Win32_System_Search\"`*"]
10224#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10225pub struct DBPARAMBINDINFO {
10226 pub pwszDataSourceType: ::windows_sys::core::PWSTR,
10227 pub pwszName: ::windows_sys::core::PWSTR,
10228 pub ulParamSize: usize,
10229 pub dwFlags: u32,
10230 pub bPrecision: u8,
10231 pub bScale: u8,
10232}
10233#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10234impl ::core::marker::Copy for DBPARAMBINDINFO {}
10235#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10236impl ::core::clone::Clone for DBPARAMBINDINFO {
10237 fn clone(&self) -> Self {
10238 *self
10239 }
10240}
10241#[repr(C, packed(2))]
10242#[doc = "*Required features: `\"Win32_System_Search\"`*"]
10243#[cfg(target_arch = "x86")]
10244pub struct DBPARAMBINDINFO {
10245 pub pwszDataSourceType: ::windows_sys::core::PWSTR,
10246 pub pwszName: ::windows_sys::core::PWSTR,
10247 pub ulParamSize: usize,
10248 pub dwFlags: u32,
10249 pub bPrecision: u8,
10250 pub bScale: u8,
10251}
10252#[cfg(target_arch = "x86")]
10253impl ::core::marker::Copy for DBPARAMBINDINFO {}
10254#[cfg(target_arch = "x86")]
10255impl ::core::clone::Clone for DBPARAMBINDINFO {
10256 fn clone(&self) -> Self {
10257 *self
10258 }
10259}
10260#[repr(C)]
10261#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_System_Com\"`*"]
10262#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10263#[cfg(feature = "Win32_System_Com")]
10264pub struct DBPARAMINFO {
10265 pub dwFlags: u32,
10266 pub iOrdinal: usize,
10267 pub pwszName: ::windows_sys::core::PWSTR,
10268 pub pTypeInfo: super::Com::ITypeInfo,
10269 pub ulParamSize: usize,
10270 pub wType: u16,
10271 pub bPrecision: u8,
10272 pub bScale: u8,
10273}
10274#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10275#[cfg(feature = "Win32_System_Com")]
10276impl ::core::marker::Copy for DBPARAMINFO {}
10277#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10278#[cfg(feature = "Win32_System_Com")]
10279impl ::core::clone::Clone for DBPARAMINFO {
10280 fn clone(&self) -> Self {
10281 *self
10282 }
10283}
10284#[repr(C, packed(2))]
10285#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_System_Com\"`*"]
10286#[cfg(target_arch = "x86")]
10287#[cfg(feature = "Win32_System_Com")]
10288pub struct DBPARAMINFO {
10289 pub dwFlags: u32,
10290 pub iOrdinal: usize,
10291 pub pwszName: ::windows_sys::core::PWSTR,
10292 pub pTypeInfo: super::Com::ITypeInfo,
10293 pub ulParamSize: usize,
10294 pub wType: u16,
10295 pub bPrecision: u8,
10296 pub bScale: u8,
10297}
10298#[cfg(target_arch = "x86")]
10299#[cfg(feature = "Win32_System_Com")]
10300impl ::core::marker::Copy for DBPARAMINFO {}
10301#[cfg(target_arch = "x86")]
10302#[cfg(feature = "Win32_System_Com")]
10303impl ::core::clone::Clone for DBPARAMINFO {
10304 fn clone(&self) -> Self {
10305 *self
10306 }
10307}
10308#[repr(C)]
10309#[doc = "*Required features: `\"Win32_System_Search\"`*"]
10310#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10311pub struct DBPARAMS {
10312 pub pData: *mut ::core::ffi::c_void,
10313 pub cParamSets: usize,
10314 pub hAccessor: HACCESSOR,
10315}
10316#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10317impl ::core::marker::Copy for DBPARAMS {}
10318#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10319impl ::core::clone::Clone for DBPARAMS {
10320 fn clone(&self) -> Self {
10321 *self
10322 }
10323}
10324#[repr(C, packed(2))]
10325#[doc = "*Required features: `\"Win32_System_Search\"`*"]
10326#[cfg(target_arch = "x86")]
10327pub struct DBPARAMS {
10328 pub pData: *mut ::core::ffi::c_void,
10329 pub cParamSets: usize,
10330 pub hAccessor: HACCESSOR,
10331}
10332#[cfg(target_arch = "x86")]
10333impl ::core::marker::Copy for DBPARAMS {}
10334#[cfg(target_arch = "x86")]
10335impl ::core::clone::Clone for DBPARAMS {
10336 fn clone(&self) -> Self {
10337 *self
10338 }
10339}
10340#[repr(C)]
10341#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Foundation\"`, `\"Win32_Storage_IndexServer\"`, `\"Win32_System_Com\"`, `\"Win32_System_Ole\"`*"]
10342#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10343#[cfg(all(feature = "Win32_Foundation", feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com", feature = "Win32_System_Ole"))]
10344pub struct DBPROP {
10345 pub dwPropertyID: u32,
10346 pub dwOptions: u32,
10347 pub dwStatus: u32,
10348 pub colid: super::super::Storage::IndexServer::DBID,
10349 pub vValue: super::Com::VARIANT,
10350}
10351#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10352#[cfg(all(feature = "Win32_Foundation", feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com", feature = "Win32_System_Ole"))]
10353impl ::core::marker::Copy for DBPROP {}
10354#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10355#[cfg(all(feature = "Win32_Foundation", feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com", feature = "Win32_System_Ole"))]
10356impl ::core::clone::Clone for DBPROP {
10357 fn clone(&self) -> Self {
10358 *self
10359 }
10360}
10361#[repr(C, packed(2))]
10362#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Foundation\"`, `\"Win32_Storage_IndexServer\"`, `\"Win32_System_Com\"`, `\"Win32_System_Ole\"`*"]
10363#[cfg(target_arch = "x86")]
10364#[cfg(all(feature = "Win32_Foundation", feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com", feature = "Win32_System_Ole"))]
10365pub struct DBPROP {
10366 pub dwPropertyID: u32,
10367 pub dwOptions: u32,
10368 pub dwStatus: u32,
10369 pub colid: super::super::Storage::IndexServer::DBID,
10370 pub vValue: super::Com::VARIANT,
10371}
10372#[cfg(target_arch = "x86")]
10373#[cfg(all(feature = "Win32_Foundation", feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com", feature = "Win32_System_Ole"))]
10374impl ::core::marker::Copy for DBPROP {}
10375#[cfg(target_arch = "x86")]
10376#[cfg(all(feature = "Win32_Foundation", feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com", feature = "Win32_System_Ole"))]
10377impl ::core::clone::Clone for DBPROP {
10378 fn clone(&self) -> Self {
10379 *self
10380 }
10381}
10382#[repr(C)]
10383#[doc = "*Required features: `\"Win32_System_Search\"`*"]
10384#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10385pub struct DBPROPIDSET {
10386 pub rgPropertyIDs: *mut u32,
10387 pub cPropertyIDs: u32,
10388 pub guidPropertySet: ::windows_sys::core::GUID,
10389}
10390#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10391impl ::core::marker::Copy for DBPROPIDSET {}
10392#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10393impl ::core::clone::Clone for DBPROPIDSET {
10394 fn clone(&self) -> Self {
10395 *self
10396 }
10397}
10398#[repr(C, packed(2))]
10399#[doc = "*Required features: `\"Win32_System_Search\"`*"]
10400#[cfg(target_arch = "x86")]
10401pub struct DBPROPIDSET {
10402 pub rgPropertyIDs: *mut u32,
10403 pub cPropertyIDs: u32,
10404 pub guidPropertySet: ::windows_sys::core::GUID,
10405}
10406#[cfg(target_arch = "x86")]
10407impl ::core::marker::Copy for DBPROPIDSET {}
10408#[cfg(target_arch = "x86")]
10409impl ::core::clone::Clone for DBPROPIDSET {
10410 fn clone(&self) -> Self {
10411 *self
10412 }
10413}
10414#[repr(C)]
10415#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Foundation\"`, `\"Win32_System_Com\"`, `\"Win32_System_Ole\"`*"]
10416#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10417#[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com", feature = "Win32_System_Ole"))]
10418pub struct DBPROPINFO {
10419 pub pwszDescription: ::windows_sys::core::PWSTR,
10420 pub dwPropertyID: u32,
10421 pub dwFlags: u32,
10422 pub vtType: super::Com::VARENUM,
10423 pub vValues: super::Com::VARIANT,
10424}
10425#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10426#[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com", feature = "Win32_System_Ole"))]
10427impl ::core::marker::Copy for DBPROPINFO {}
10428#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10429#[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com", feature = "Win32_System_Ole"))]
10430impl ::core::clone::Clone for DBPROPINFO {
10431 fn clone(&self) -> Self {
10432 *self
10433 }
10434}
10435#[repr(C, packed(2))]
10436#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Foundation\"`, `\"Win32_System_Com\"`, `\"Win32_System_Ole\"`*"]
10437#[cfg(target_arch = "x86")]
10438#[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com", feature = "Win32_System_Ole"))]
10439pub struct DBPROPINFO {
10440 pub pwszDescription: ::windows_sys::core::PWSTR,
10441 pub dwPropertyID: u32,
10442 pub dwFlags: u32,
10443 pub vtType: super::Com::VARENUM,
10444 pub vValues: super::Com::VARIANT,
10445}
10446#[cfg(target_arch = "x86")]
10447#[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com", feature = "Win32_System_Ole"))]
10448impl ::core::marker::Copy for DBPROPINFO {}
10449#[cfg(target_arch = "x86")]
10450#[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com", feature = "Win32_System_Ole"))]
10451impl ::core::clone::Clone for DBPROPINFO {
10452 fn clone(&self) -> Self {
10453 *self
10454 }
10455}
10456#[repr(C)]
10457#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Foundation\"`, `\"Win32_System_Com\"`, `\"Win32_System_Ole\"`*"]
10458#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10459#[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com", feature = "Win32_System_Ole"))]
10460pub struct DBPROPINFOSET {
10461 pub rgPropertyInfos: *mut DBPROPINFO,
10462 pub cPropertyInfos: u32,
10463 pub guidPropertySet: ::windows_sys::core::GUID,
10464}
10465#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10466#[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com", feature = "Win32_System_Ole"))]
10467impl ::core::marker::Copy for DBPROPINFOSET {}
10468#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10469#[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com", feature = "Win32_System_Ole"))]
10470impl ::core::clone::Clone for DBPROPINFOSET {
10471 fn clone(&self) -> Self {
10472 *self
10473 }
10474}
10475#[repr(C, packed(2))]
10476#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Foundation\"`, `\"Win32_System_Com\"`, `\"Win32_System_Ole\"`*"]
10477#[cfg(target_arch = "x86")]
10478#[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com", feature = "Win32_System_Ole"))]
10479pub struct DBPROPINFOSET {
10480 pub rgPropertyInfos: *mut DBPROPINFO,
10481 pub cPropertyInfos: u32,
10482 pub guidPropertySet: ::windows_sys::core::GUID,
10483}
10484#[cfg(target_arch = "x86")]
10485#[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com", feature = "Win32_System_Ole"))]
10486impl ::core::marker::Copy for DBPROPINFOSET {}
10487#[cfg(target_arch = "x86")]
10488#[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com", feature = "Win32_System_Ole"))]
10489impl ::core::clone::Clone for DBPROPINFOSET {
10490 fn clone(&self) -> Self {
10491 *self
10492 }
10493}
10494#[repr(C)]
10495#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Foundation\"`, `\"Win32_Storage_IndexServer\"`, `\"Win32_System_Com\"`, `\"Win32_System_Ole\"`*"]
10496#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10497#[cfg(all(feature = "Win32_Foundation", feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com", feature = "Win32_System_Ole"))]
10498pub struct DBPROPSET {
10499 pub rgProperties: *mut DBPROP,
10500 pub cProperties: u32,
10501 pub guidPropertySet: ::windows_sys::core::GUID,
10502}
10503#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10504#[cfg(all(feature = "Win32_Foundation", feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com", feature = "Win32_System_Ole"))]
10505impl ::core::marker::Copy for DBPROPSET {}
10506#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10507#[cfg(all(feature = "Win32_Foundation", feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com", feature = "Win32_System_Ole"))]
10508impl ::core::clone::Clone for DBPROPSET {
10509 fn clone(&self) -> Self {
10510 *self
10511 }
10512}
10513#[repr(C, packed(2))]
10514#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Foundation\"`, `\"Win32_Storage_IndexServer\"`, `\"Win32_System_Com\"`, `\"Win32_System_Ole\"`*"]
10515#[cfg(target_arch = "x86")]
10516#[cfg(all(feature = "Win32_Foundation", feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com", feature = "Win32_System_Ole"))]
10517pub struct DBPROPSET {
10518 pub rgProperties: *mut DBPROP,
10519 pub cProperties: u32,
10520 pub guidPropertySet: ::windows_sys::core::GUID,
10521}
10522#[cfg(target_arch = "x86")]
10523#[cfg(all(feature = "Win32_Foundation", feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com", feature = "Win32_System_Ole"))]
10524impl ::core::marker::Copy for DBPROPSET {}
10525#[cfg(target_arch = "x86")]
10526#[cfg(all(feature = "Win32_Foundation", feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com", feature = "Win32_System_Ole"))]
10527impl ::core::clone::Clone for DBPROPSET {
10528 fn clone(&self) -> Self {
10529 *self
10530 }
10531}
10532#[repr(C)]
10533#[doc = "*Required features: `\"Win32_System_Search\"`*"]
10534#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10535pub struct DBROWWATCHCHANGE {
10536 pub hRegion: usize,
10537 pub eChangeKind: u32,
10538 pub hRow: usize,
10539 pub iRow: usize,
10540}
10541#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10542impl ::core::marker::Copy for DBROWWATCHCHANGE {}
10543#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10544impl ::core::clone::Clone for DBROWWATCHCHANGE {
10545 fn clone(&self) -> Self {
10546 *self
10547 }
10548}
10549#[repr(C, packed(2))]
10550#[doc = "*Required features: `\"Win32_System_Search\"`*"]
10551#[cfg(target_arch = "x86")]
10552pub struct DBROWWATCHCHANGE {
10553 pub hRegion: usize,
10554 pub eChangeKind: u32,
10555 pub hRow: usize,
10556 pub iRow: usize,
10557}
10558#[cfg(target_arch = "x86")]
10559impl ::core::marker::Copy for DBROWWATCHCHANGE {}
10560#[cfg(target_arch = "x86")]
10561impl ::core::clone::Clone for DBROWWATCHCHANGE {
10562 fn clone(&self) -> Self {
10563 *self
10564 }
10565}
10566#[repr(C)]
10567#[doc = "*Required features: `\"Win32_System_Search\"`*"]
10568pub struct DBTIME {
10569 pub hour: u16,
10570 pub minute: u16,
10571 pub second: u16,
10572}
10573impl ::core::marker::Copy for DBTIME {}
10574impl ::core::clone::Clone for DBTIME {
10575 fn clone(&self) -> Self {
10576 *self
10577 }
10578}
10579#[repr(C)]
10580#[doc = "*Required features: `\"Win32_System_Search\"`*"]
10581#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10582pub struct DBTIMESTAMP {
10583 pub year: i16,
10584 pub month: u16,
10585 pub day: u16,
10586 pub hour: u16,
10587 pub minute: u16,
10588 pub second: u16,
10589 pub fraction: u32,
10590}
10591#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10592impl ::core::marker::Copy for DBTIMESTAMP {}
10593#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10594impl ::core::clone::Clone for DBTIMESTAMP {
10595 fn clone(&self) -> Self {
10596 *self
10597 }
10598}
10599#[repr(C, packed(2))]
10600#[doc = "*Required features: `\"Win32_System_Search\"`*"]
10601#[cfg(target_arch = "x86")]
10602pub struct DBTIMESTAMP {
10603 pub year: i16,
10604 pub month: u16,
10605 pub day: u16,
10606 pub hour: u16,
10607 pub minute: u16,
10608 pub second: u16,
10609 pub fraction: u32,
10610}
10611#[cfg(target_arch = "x86")]
10612impl ::core::marker::Copy for DBTIMESTAMP {}
10613#[cfg(target_arch = "x86")]
10614impl ::core::clone::Clone for DBTIMESTAMP {
10615 fn clone(&self) -> Self {
10616 *self
10617 }
10618}
10619#[repr(C)]
10620#[doc = "*Required features: `\"Win32_System_Search\"`*"]
10621pub struct DBVARYBIN {
10622 pub len: i16,
10623 pub array: [u8; 8001],
10624}
10625impl ::core::marker::Copy for DBVARYBIN {}
10626impl ::core::clone::Clone for DBVARYBIN {
10627 fn clone(&self) -> Self {
10628 *self
10629 }
10630}
10631#[repr(C)]
10632#[doc = "*Required features: `\"Win32_System_Search\"`*"]
10633pub struct DBVARYCHAR {
10634 pub len: i16,
10635 pub str: [i8; 8001],
10636}
10637impl ::core::marker::Copy for DBVARYCHAR {}
10638impl ::core::clone::Clone for DBVARYCHAR {
10639 fn clone(&self) -> Self {
10640 *self
10641 }
10642}
10643#[repr(C)]
10644#[doc = "*Required features: `\"Win32_System_Search\"`*"]
10645#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10646pub struct DBVECTOR {
10647 pub size: usize,
10648 pub ptr: *mut ::core::ffi::c_void,
10649}
10650#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10651impl ::core::marker::Copy for DBVECTOR {}
10652#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10653impl ::core::clone::Clone for DBVECTOR {
10654 fn clone(&self) -> Self {
10655 *self
10656 }
10657}
10658#[repr(C, packed(2))]
10659#[doc = "*Required features: `\"Win32_System_Search\"`*"]
10660#[cfg(target_arch = "x86")]
10661pub struct DBVECTOR {
10662 pub size: usize,
10663 pub ptr: *mut ::core::ffi::c_void,
10664}
10665#[cfg(target_arch = "x86")]
10666impl ::core::marker::Copy for DBVECTOR {}
10667#[cfg(target_arch = "x86")]
10668impl ::core::clone::Clone for DBVECTOR {
10669 fn clone(&self) -> Self {
10670 *self
10671 }
10672}
10673#[repr(C)]
10674#[doc = "*Required features: `\"Win32_System_Search\"`*"]
10675pub struct DB_NUMERIC {
10676 pub precision: u8,
10677 pub scale: u8,
10678 pub sign: u8,
10679 pub val: [u8; 16],
10680}
10681impl ::core::marker::Copy for DB_NUMERIC {}
10682impl ::core::clone::Clone for DB_NUMERIC {
10683 fn clone(&self) -> Self {
10684 *self
10685 }
10686}
10687#[repr(C)]
10688#[doc = "*Required features: `\"Win32_System_Search\"`*"]
10689pub struct DB_VARNUMERIC {
10690 pub precision: u8,
10691 pub scale: i8,
10692 pub sign: u8,
10693 pub val: [u8; 1],
10694}
10695impl ::core::marker::Copy for DB_VARNUMERIC {}
10696impl ::core::clone::Clone for DB_VARNUMERIC {
10697 fn clone(&self) -> Self {
10698 *self
10699 }
10700}
10701#[repr(C)]
10702#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Foundation\"`, `\"Win32_System_Com\"`, `\"Win32_System_Ole\"`*"]
10703#[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com", feature = "Win32_System_Ole"))]
10704pub struct DCINFO {
10705 pub eInfoType: u32,
10706 pub vData: super::Com::VARIANT,
10707}
10708#[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com", feature = "Win32_System_Ole"))]
10709impl ::core::marker::Copy for DCINFO {}
10710#[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com", feature = "Win32_System_Ole"))]
10711impl ::core::clone::Clone for DCINFO {
10712 fn clone(&self) -> Self {
10713 *self
10714 }
10715}
10716#[repr(C)]
10717#[doc = "*Required features: `\"Win32_System_Search\"`*"]
10718#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10719pub struct ERRORINFO {
10720 pub hrError: ::windows_sys::core::HRESULT,
10721 pub dwMinor: u32,
10722 pub clsid: ::windows_sys::core::GUID,
10723 pub iid: ::windows_sys::core::GUID,
10724 pub dispid: i32,
10725}
10726#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10727impl ::core::marker::Copy for ERRORINFO {}
10728#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10729impl ::core::clone::Clone for ERRORINFO {
10730 fn clone(&self) -> Self {
10731 *self
10732 }
10733}
10734#[repr(C, packed(2))]
10735#[doc = "*Required features: `\"Win32_System_Search\"`*"]
10736#[cfg(target_arch = "x86")]
10737pub struct ERRORINFO {
10738 pub hrError: ::windows_sys::core::HRESULT,
10739 pub dwMinor: u32,
10740 pub clsid: ::windows_sys::core::GUID,
10741 pub iid: ::windows_sys::core::GUID,
10742 pub dispid: i32,
10743}
10744#[cfg(target_arch = "x86")]
10745impl ::core::marker::Copy for ERRORINFO {}
10746#[cfg(target_arch = "x86")]
10747impl ::core::clone::Clone for ERRORINFO {
10748 fn clone(&self) -> Self {
10749 *self
10750 }
10751}
10752#[repr(C)]
10753#[doc = "*Required features: `\"Win32_System_Search\"`*"]
10754pub struct FILTERED_DATA_SOURCES {
10755 pub pwcsExtension: ::windows_sys::core::PCWSTR,
10756 pub pwcsMime: ::windows_sys::core::PCWSTR,
10757 pub pClsid: *const ::windows_sys::core::GUID,
10758 pub pwcsOverride: ::windows_sys::core::PCWSTR,
10759}
10760impl ::core::marker::Copy for FILTERED_DATA_SOURCES {}
10761impl ::core::clone::Clone for FILTERED_DATA_SOURCES {
10762 fn clone(&self) -> Self {
10763 *self
10764 }
10765}
10766pub type HACCESSOR = usize;
10767#[repr(C)]
10768#[doc = "*Required features: `\"Win32_System_Search\"`*"]
10769pub struct HITRANGE {
10770 pub iPosition: u32,
10771 pub cLength: u32,
10772}
10773impl ::core::marker::Copy for HITRANGE {}
10774impl ::core::clone::Clone for HITRANGE {
10775 fn clone(&self) -> Self {
10776 *self
10777 }
10778}
10779#[repr(C)]
10780#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Foundation\"`*"]
10781#[cfg(feature = "Win32_Foundation")]
10782pub struct INCREMENTAL_ACCESS_INFO {
10783 pub dwSize: u32,
10784 pub ftLastModifiedTime: super::super::Foundation::FILETIME,
10785}
10786#[cfg(feature = "Win32_Foundation")]
10787impl ::core::marker::Copy for INCREMENTAL_ACCESS_INFO {}
10788#[cfg(feature = "Win32_Foundation")]
10789impl ::core::clone::Clone for INCREMENTAL_ACCESS_INFO {
10790 fn clone(&self) -> Self {
10791 *self
10792 }
10793}
10794#[repr(C)]
10795pub struct IRowsetExactScroll(pub u8);
10796#[repr(C)]
10797#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Foundation\"`, `\"Win32_System_Com\"`, `\"Win32_System_Ole\"`*"]
10798#[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com", feature = "Win32_System_Ole"))]
10799pub struct ITEMPROP {
10800 pub variantValue: super::Com::VARIANT,
10801 pub pwszName: ::windows_sys::core::PWSTR,
10802}
10803#[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com", feature = "Win32_System_Ole"))]
10804impl ::core::marker::Copy for ITEMPROP {}
10805#[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com", feature = "Win32_System_Ole"))]
10806impl ::core::clone::Clone for ITEMPROP {
10807 fn clone(&self) -> Self {
10808 *self
10809 }
10810}
10811#[repr(C)]
10812#[doc = "*Required features: `\"Win32_System_Search\"`*"]
10813pub struct ITEM_INFO {
10814 pub dwSize: u32,
10815 pub pcwszFromEMail: ::windows_sys::core::PCWSTR,
10816 pub pcwszApplicationName: ::windows_sys::core::PCWSTR,
10817 pub pcwszCatalogName: ::windows_sys::core::PCWSTR,
10818 pub pcwszContentClass: ::windows_sys::core::PCWSTR,
10819}
10820impl ::core::marker::Copy for ITEM_INFO {}
10821impl ::core::clone::Clone for ITEM_INFO {
10822 fn clone(&self) -> Self {
10823 *self
10824 }
10825}
10826#[repr(C)]
10827#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Foundation\"`, `\"Win32_System_Com\"`, `\"Win32_System_Ole\"`*"]
10828#[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com", feature = "Win32_System_Ole"))]
10829pub struct KAGGETDIAG {
10830 pub ulSize: u32,
10831 pub vDiagInfo: super::Com::VARIANT,
10832 pub sDiagField: i16,
10833}
10834#[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com", feature = "Win32_System_Ole"))]
10835impl ::core::marker::Copy for KAGGETDIAG {}
10836#[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com", feature = "Win32_System_Ole"))]
10837impl ::core::clone::Clone for KAGGETDIAG {
10838 fn clone(&self) -> Self {
10839 *self
10840 }
10841}
10842#[repr(C)]
10843#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_System_Com\"`*"]
10844#[cfg(feature = "Win32_System_Com")]
10845pub struct KAGREQDIAG {
10846 pub ulDiagFlags: u32,
10847 pub vt: super::Com::VARENUM,
10848 pub sDiagField: i16,
10849}
10850#[cfg(feature = "Win32_System_Com")]
10851impl ::core::marker::Copy for KAGREQDIAG {}
10852#[cfg(feature = "Win32_System_Com")]
10853impl ::core::clone::Clone for KAGREQDIAG {
10854 fn clone(&self) -> Self {
10855 *self
10856 }
10857}
10858#[repr(C)]
10859#[doc = "*Required features: `\"Win32_System_Search\"`*"]
10860#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10861pub struct MDAXISINFO {
10862 pub cbSize: usize,
10863 pub iAxis: usize,
10864 pub cDimensions: usize,
10865 pub cCoordinates: usize,
10866 pub rgcColumns: *mut usize,
10867 pub rgpwszDimensionNames: *mut ::windows_sys::core::PWSTR,
10868}
10869#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10870impl ::core::marker::Copy for MDAXISINFO {}
10871#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
10872impl ::core::clone::Clone for MDAXISINFO {
10873 fn clone(&self) -> Self {
10874 *self
10875 }
10876}
10877#[repr(C, packed(2))]
10878#[doc = "*Required features: `\"Win32_System_Search\"`*"]
10879#[cfg(target_arch = "x86")]
10880pub struct MDAXISINFO {
10881 pub cbSize: usize,
10882 pub iAxis: usize,
10883 pub cDimensions: usize,
10884 pub cCoordinates: usize,
10885 pub rgcColumns: *mut usize,
10886 pub rgpwszDimensionNames: *mut ::windows_sys::core::PWSTR,
10887}
10888#[cfg(target_arch = "x86")]
10889impl ::core::marker::Copy for MDAXISINFO {}
10890#[cfg(target_arch = "x86")]
10891impl ::core::clone::Clone for MDAXISINFO {
10892 fn clone(&self) -> Self {
10893 *self
10894 }
10895}
10896#[repr(C)]
10897#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Storage_IndexServer\"`, `\"Win32_System_Com_StructuredStorage\"`*"]
10898#[cfg(all(feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com_StructuredStorage"))]
10899pub struct NATLANGUAGERESTRICTION {
10900 pub prop: super::super::Storage::IndexServer::FULLPROPSPEC,
10901 pub pwcsPhrase: ::windows_sys::core::PWSTR,
10902 pub lcid: u32,
10903}
10904#[cfg(all(feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com_StructuredStorage"))]
10905impl ::core::marker::Copy for NATLANGUAGERESTRICTION {}
10906#[cfg(all(feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com_StructuredStorage"))]
10907impl ::core::clone::Clone for NATLANGUAGERESTRICTION {
10908 fn clone(&self) -> Self {
10909 *self
10910 }
10911}
10912#[repr(C)]
10913#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Foundation\"`, `\"Win32_Storage_IndexServer\"`, `\"Win32_System_Com_StructuredStorage\"`*"]
10914#[cfg(all(feature = "Win32_Foundation", feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com_StructuredStorage"))]
10915pub struct NODERESTRICTION {
10916 pub cRes: u32,
10917 pub paRes: *mut *mut RESTRICTION,
10918 pub reserved: u32,
10919}
10920#[cfg(all(feature = "Win32_Foundation", feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com_StructuredStorage"))]
10921impl ::core::marker::Copy for NODERESTRICTION {}
10922#[cfg(all(feature = "Win32_Foundation", feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com_StructuredStorage"))]
10923impl ::core::clone::Clone for NODERESTRICTION {
10924 fn clone(&self) -> Self {
10925 *self
10926 }
10927}
10928#[repr(C)]
10929#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Foundation\"`, `\"Win32_Storage_IndexServer\"`, `\"Win32_System_Com_StructuredStorage\"`*"]
10930#[cfg(all(feature = "Win32_Foundation", feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com_StructuredStorage"))]
10931pub struct NOTRESTRICTION {
10932 pub pRes: *mut RESTRICTION,
10933}
10934#[cfg(all(feature = "Win32_Foundation", feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com_StructuredStorage"))]
10935impl ::core::marker::Copy for NOTRESTRICTION {}
10936#[cfg(all(feature = "Win32_Foundation", feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com_StructuredStorage"))]
10937impl ::core::clone::Clone for NOTRESTRICTION {
10938 fn clone(&self) -> Self {
10939 *self
10940 }
10941}
10942#[repr(C)]
10943#[doc = "*Required features: `\"Win32_System_Search\"`*"]
10944pub struct ODBC_VS_ARGS {
10945 pub pguidEvent: *const ::windows_sys::core::GUID,
10946 pub dwFlags: u32,
10947 pub Anonymous1: ODBC_VS_ARGS_0,
10948 pub Anonymous2: ODBC_VS_ARGS_1,
10949 pub RetCode: i16,
10950}
10951impl ::core::marker::Copy for ODBC_VS_ARGS {}
10952impl ::core::clone::Clone for ODBC_VS_ARGS {
10953 fn clone(&self) -> Self {
10954 *self
10955 }
10956}
10957#[repr(C)]
10958#[doc = "*Required features: `\"Win32_System_Search\"`*"]
10959pub union ODBC_VS_ARGS_0 {
10960 pub wszArg: ::windows_sys::core::PWSTR,
10961 pub szArg: ::windows_sys::core::PSTR,
10962}
10963impl ::core::marker::Copy for ODBC_VS_ARGS_0 {}
10964impl ::core::clone::Clone for ODBC_VS_ARGS_0 {
10965 fn clone(&self) -> Self {
10966 *self
10967 }
10968}
10969#[repr(C)]
10970#[doc = "*Required features: `\"Win32_System_Search\"`*"]
10971pub union ODBC_VS_ARGS_1 {
10972 pub wszCorrelation: ::windows_sys::core::PWSTR,
10973 pub szCorrelation: ::windows_sys::core::PSTR,
10974}
10975impl ::core::marker::Copy for ODBC_VS_ARGS_1 {}
10976impl ::core::clone::Clone for ODBC_VS_ARGS_1 {
10977 fn clone(&self) -> Self {
10978 *self
10979 }
10980}
10981#[repr(C)]
10982#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Foundation\"`, `\"Win32_Storage_IndexServer\"`, `\"Win32_System_Com_StructuredStorage\"`*"]
10983#[cfg(all(feature = "Win32_Foundation", feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com_StructuredStorage"))]
10984pub struct PROPERTYRESTRICTION {
10985 pub rel: u32,
10986 pub prop: super::super::Storage::IndexServer::FULLPROPSPEC,
10987 pub prval: super::Com::StructuredStorage::PROPVARIANT,
10988}
10989#[cfg(all(feature = "Win32_Foundation", feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com_StructuredStorage"))]
10990impl ::core::marker::Copy for PROPERTYRESTRICTION {}
10991#[cfg(all(feature = "Win32_Foundation", feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com_StructuredStorage"))]
10992impl ::core::clone::Clone for PROPERTYRESTRICTION {
10993 fn clone(&self) -> Self {
10994 *self
10995 }
10996}
10997#[repr(C)]
10998#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Foundation\"`*"]
10999#[cfg(feature = "Win32_Foundation")]
11000pub struct PROXY_INFO {
11001 pub dwSize: u32,
11002 pub pcwszUserAgent: ::windows_sys::core::PCWSTR,
11003 pub paUseProxy: PROXY_ACCESS,
11004 pub fLocalBypass: super::super::Foundation::BOOL,
11005 pub dwPortNumber: u32,
11006 pub pcwszProxyName: ::windows_sys::core::PCWSTR,
11007 pub pcwszBypassList: ::windows_sys::core::PCWSTR,
11008}
11009#[cfg(feature = "Win32_Foundation")]
11010impl ::core::marker::Copy for PROXY_INFO {}
11011#[cfg(feature = "Win32_Foundation")]
11012impl ::core::clone::Clone for PROXY_INFO {
11013 fn clone(&self) -> Self {
11014 *self
11015 }
11016}
11017#[repr(C)]
11018#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Foundation\"`, `\"Win32_System_Com_StructuredStorage\"`*"]
11019#[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com_StructuredStorage"))]
11020pub struct RANGECATEGORIZE {
11021 pub cRange: u32,
11022 pub aRangeBegin: *mut super::Com::StructuredStorage::PROPVARIANT,
11023}
11024#[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com_StructuredStorage"))]
11025impl ::core::marker::Copy for RANGECATEGORIZE {}
11026#[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com_StructuredStorage"))]
11027impl ::core::clone::Clone for RANGECATEGORIZE {
11028 fn clone(&self) -> Self {
11029 *self
11030 }
11031}
11032#[repr(C)]
11033#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Foundation\"`, `\"Win32_Storage_IndexServer\"`, `\"Win32_System_Com_StructuredStorage\"`*"]
11034#[cfg(all(feature = "Win32_Foundation", feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com_StructuredStorage"))]
11035pub struct RESTRICTION {
11036 pub rt: u32,
11037 pub weight: u32,
11038 pub res: RESTRICTION_0,
11039}
11040#[cfg(all(feature = "Win32_Foundation", feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com_StructuredStorage"))]
11041impl ::core::marker::Copy for RESTRICTION {}
11042#[cfg(all(feature = "Win32_Foundation", feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com_StructuredStorage"))]
11043impl ::core::clone::Clone for RESTRICTION {
11044 fn clone(&self) -> Self {
11045 *self
11046 }
11047}
11048#[repr(C)]
11049#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Foundation\"`, `\"Win32_Storage_IndexServer\"`, `\"Win32_System_Com_StructuredStorage\"`*"]
11050#[cfg(all(feature = "Win32_Foundation", feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com_StructuredStorage"))]
11051pub union RESTRICTION_0 {
11052 pub ar: NODERESTRICTION,
11053 pub orRestriction: NODERESTRICTION,
11054 pub pxr: NODERESTRICTION,
11055 pub vr: VECTORRESTRICTION,
11056 pub nr: NOTRESTRICTION,
11057 pub cr: CONTENTRESTRICTION,
11058 pub nlr: NATLANGUAGERESTRICTION,
11059 pub pr: PROPERTYRESTRICTION,
11060}
11061#[cfg(all(feature = "Win32_Foundation", feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com_StructuredStorage"))]
11062impl ::core::marker::Copy for RESTRICTION_0 {}
11063#[cfg(all(feature = "Win32_Foundation", feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com_StructuredStorage"))]
11064impl ::core::clone::Clone for RESTRICTION_0 {
11065 fn clone(&self) -> Self {
11066 *self
11067 }
11068}
11069#[repr(C)]
11070#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Foundation\"`, `\"Win32_System_Com_StructuredStorage\"`, `\"Win32_System_Ole\"`*"]
11071#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
11072#[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com_StructuredStorage", feature = "Win32_System_Ole"))]
11073pub struct RMTPACK {
11074 pub pISeqStream: super::Com::ISequentialStream,
11075 pub cbData: u32,
11076 pub cBSTR: u32,
11077 pub rgBSTR: *mut ::windows_sys::core::BSTR,
11078 pub cVARIANT: u32,
11079 pub rgVARIANT: *mut super::Com::VARIANT,
11080 pub cIDISPATCH: u32,
11081 pub rgIDISPATCH: *mut super::Com::IDispatch,
11082 pub cIUNKNOWN: u32,
11083 pub rgIUNKNOWN: *mut ::windows_sys::core::IUnknown,
11084 pub cPROPVARIANT: u32,
11085 pub rgPROPVARIANT: *mut super::Com::StructuredStorage::PROPVARIANT,
11086 pub cArray: u32,
11087 pub rgArray: *mut super::Com::VARIANT,
11088}
11089#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
11090#[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com_StructuredStorage", feature = "Win32_System_Ole"))]
11091impl ::core::marker::Copy for RMTPACK {}
11092#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
11093#[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com_StructuredStorage", feature = "Win32_System_Ole"))]
11094impl ::core::clone::Clone for RMTPACK {
11095 fn clone(&self) -> Self {
11096 *self
11097 }
11098}
11099#[repr(C, packed(2))]
11100#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Foundation\"`, `\"Win32_System_Com_StructuredStorage\"`, `\"Win32_System_Ole\"`*"]
11101#[cfg(target_arch = "x86")]
11102#[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com_StructuredStorage", feature = "Win32_System_Ole"))]
11103pub struct RMTPACK {
11104 pub pISeqStream: super::Com::ISequentialStream,
11105 pub cbData: u32,
11106 pub cBSTR: u32,
11107 pub rgBSTR: *mut ::windows_sys::core::BSTR,
11108 pub cVARIANT: u32,
11109 pub rgVARIANT: *mut super::Com::VARIANT,
11110 pub cIDISPATCH: u32,
11111 pub rgIDISPATCH: *mut super::Com::IDispatch,
11112 pub cIUNKNOWN: u32,
11113 pub rgIUNKNOWN: *mut ::windows_sys::core::IUnknown,
11114 pub cPROPVARIANT: u32,
11115 pub rgPROPVARIANT: *mut super::Com::StructuredStorage::PROPVARIANT,
11116 pub cArray: u32,
11117 pub rgArray: *mut super::Com::VARIANT,
11118}
11119#[cfg(target_arch = "x86")]
11120#[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com_StructuredStorage", feature = "Win32_System_Ole"))]
11121impl ::core::marker::Copy for RMTPACK {}
11122#[cfg(target_arch = "x86")]
11123#[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com_StructuredStorage", feature = "Win32_System_Ole"))]
11124impl ::core::clone::Clone for RMTPACK {
11125 fn clone(&self) -> Self {
11126 *self
11127 }
11128}
11129#[repr(C)]
11130#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Foundation\"`, `\"Win32_System_Com_StructuredStorage\"`*"]
11131#[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com_StructuredStorage"))]
11132pub struct SEARCH_COLUMN_PROPERTIES {
11133 pub Value: super::Com::StructuredStorage::PROPVARIANT,
11134 pub lcid: u32,
11135}
11136#[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com_StructuredStorage"))]
11137impl ::core::marker::Copy for SEARCH_COLUMN_PROPERTIES {}
11138#[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com_StructuredStorage"))]
11139impl ::core::clone::Clone for SEARCH_COLUMN_PROPERTIES {
11140 fn clone(&self) -> Self {
11141 *self
11142 }
11143}
11144#[repr(C)]
11145#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_System_Com\"`*"]
11146#[cfg(feature = "Win32_System_Com")]
11147pub struct SEARCH_ITEM_CHANGE {
11148 pub Change: SEARCH_KIND_OF_CHANGE,
11149 pub Priority: SEARCH_NOTIFICATION_PRIORITY,
11150 pub pUserData: *mut super::Com::BLOB,
11151 pub lpwszURL: ::windows_sys::core::PWSTR,
11152 pub lpwszOldURL: ::windows_sys::core::PWSTR,
11153}
11154#[cfg(feature = "Win32_System_Com")]
11155impl ::core::marker::Copy for SEARCH_ITEM_CHANGE {}
11156#[cfg(feature = "Win32_System_Com")]
11157impl ::core::clone::Clone for SEARCH_ITEM_CHANGE {
11158 fn clone(&self) -> Self {
11159 *self
11160 }
11161}
11162#[repr(C)]
11163#[doc = "*Required features: `\"Win32_System_Search\"`*"]
11164pub struct SEARCH_ITEM_INDEXING_STATUS {
11165 pub dwDocID: u32,
11166 pub hrIndexingStatus: ::windows_sys::core::HRESULT,
11167}
11168impl ::core::marker::Copy for SEARCH_ITEM_INDEXING_STATUS {}
11169impl ::core::clone::Clone for SEARCH_ITEM_INDEXING_STATUS {
11170 fn clone(&self) -> Self {
11171 *self
11172 }
11173}
11174#[repr(C)]
11175#[doc = "*Required features: `\"Win32_System_Search\"`*"]
11176pub struct SEARCH_ITEM_PERSISTENT_CHANGE {
11177 pub Change: SEARCH_KIND_OF_CHANGE,
11178 pub URL: ::windows_sys::core::PWSTR,
11179 pub OldURL: ::windows_sys::core::PWSTR,
11180 pub Priority: SEARCH_NOTIFICATION_PRIORITY,
11181}
11182impl ::core::marker::Copy for SEARCH_ITEM_PERSISTENT_CHANGE {}
11183impl ::core::clone::Clone for SEARCH_ITEM_PERSISTENT_CHANGE {
11184 fn clone(&self) -> Self {
11185 *self
11186 }
11187}
11188#[repr(C)]
11189#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Storage_IndexServer\"`*"]
11190#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
11191#[cfg(feature = "Win32_Storage_IndexServer")]
11192pub struct SEC_OBJECT {
11193 pub cObjects: u32,
11194 pub prgObjects: *mut SEC_OBJECT_ELEMENT,
11195}
11196#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
11197#[cfg(feature = "Win32_Storage_IndexServer")]
11198impl ::core::marker::Copy for SEC_OBJECT {}
11199#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
11200#[cfg(feature = "Win32_Storage_IndexServer")]
11201impl ::core::clone::Clone for SEC_OBJECT {
11202 fn clone(&self) -> Self {
11203 *self
11204 }
11205}
11206#[repr(C, packed(2))]
11207#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Storage_IndexServer\"`*"]
11208#[cfg(target_arch = "x86")]
11209#[cfg(feature = "Win32_Storage_IndexServer")]
11210pub struct SEC_OBJECT {
11211 pub cObjects: u32,
11212 pub prgObjects: *mut SEC_OBJECT_ELEMENT,
11213}
11214#[cfg(target_arch = "x86")]
11215#[cfg(feature = "Win32_Storage_IndexServer")]
11216impl ::core::marker::Copy for SEC_OBJECT {}
11217#[cfg(target_arch = "x86")]
11218#[cfg(feature = "Win32_Storage_IndexServer")]
11219impl ::core::clone::Clone for SEC_OBJECT {
11220 fn clone(&self) -> Self {
11221 *self
11222 }
11223}
11224#[repr(C)]
11225#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Storage_IndexServer\"`*"]
11226#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
11227#[cfg(feature = "Win32_Storage_IndexServer")]
11228pub struct SEC_OBJECT_ELEMENT {
11229 pub guidObjectType: ::windows_sys::core::GUID,
11230 pub ObjectID: super::super::Storage::IndexServer::DBID,
11231}
11232#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
11233#[cfg(feature = "Win32_Storage_IndexServer")]
11234impl ::core::marker::Copy for SEC_OBJECT_ELEMENT {}
11235#[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
11236#[cfg(feature = "Win32_Storage_IndexServer")]
11237impl ::core::clone::Clone for SEC_OBJECT_ELEMENT {
11238 fn clone(&self) -> Self {
11239 *self
11240 }
11241}
11242#[repr(C, packed(2))]
11243#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Storage_IndexServer\"`*"]
11244#[cfg(target_arch = "x86")]
11245#[cfg(feature = "Win32_Storage_IndexServer")]
11246pub struct SEC_OBJECT_ELEMENT {
11247 pub guidObjectType: ::windows_sys::core::GUID,
11248 pub ObjectID: super::super::Storage::IndexServer::DBID,
11249}
11250#[cfg(target_arch = "x86")]
11251#[cfg(feature = "Win32_Storage_IndexServer")]
11252impl ::core::marker::Copy for SEC_OBJECT_ELEMENT {}
11253#[cfg(target_arch = "x86")]
11254#[cfg(feature = "Win32_Storage_IndexServer")]
11255impl ::core::clone::Clone for SEC_OBJECT_ELEMENT {
11256 fn clone(&self) -> Self {
11257 *self
11258 }
11259}
11260#[repr(C)]
11261#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Storage_IndexServer\"`, `\"Win32_System_Com_StructuredStorage\"`*"]
11262#[cfg(all(feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com_StructuredStorage"))]
11263pub struct SORTKEY {
11264 pub propColumn: super::super::Storage::IndexServer::FULLPROPSPEC,
11265 pub dwOrder: u32,
11266 pub locale: u32,
11267}
11268#[cfg(all(feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com_StructuredStorage"))]
11269impl ::core::marker::Copy for SORTKEY {}
11270#[cfg(all(feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com_StructuredStorage"))]
11271impl ::core::clone::Clone for SORTKEY {
11272 fn clone(&self) -> Self {
11273 *self
11274 }
11275}
11276#[repr(C)]
11277#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Storage_IndexServer\"`, `\"Win32_System_Com_StructuredStorage\"`*"]
11278#[cfg(all(feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com_StructuredStorage"))]
11279pub struct SORTSET {
11280 pub cCol: u32,
11281 pub aCol: *mut SORTKEY,
11282}
11283#[cfg(all(feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com_StructuredStorage"))]
11284impl ::core::marker::Copy for SORTSET {}
11285#[cfg(all(feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com_StructuredStorage"))]
11286impl ::core::clone::Clone for SORTSET {
11287 fn clone(&self) -> Self {
11288 *self
11289 }
11290}
11291#[repr(C)]
11292#[doc = "*Required features: `\"Win32_System_Search\"`*"]
11293pub struct SQLPERF {
11294 pub TimerResolution: u32,
11295 pub SQLidu: u32,
11296 pub SQLiduRows: u32,
11297 pub SQLSelects: u32,
11298 pub SQLSelectRows: u32,
11299 pub Transactions: u32,
11300 pub SQLPrepares: u32,
11301 pub ExecDirects: u32,
11302 pub SQLExecutes: u32,
11303 pub CursorOpens: u32,
11304 pub CursorSize: u32,
11305 pub CursorUsed: u32,
11306 pub PercentCursorUsed: f64,
11307 pub AvgFetchTime: f64,
11308 pub AvgCursorSize: f64,
11309 pub AvgCursorUsed: f64,
11310 pub SQLFetchTime: u32,
11311 pub SQLFetchCount: u32,
11312 pub CurrentStmtCount: u32,
11313 pub MaxOpenStmt: u32,
11314 pub SumOpenStmt: u32,
11315 pub CurrentConnectionCount: u32,
11316 pub MaxConnectionsOpened: u32,
11317 pub SumConnectionsOpened: u32,
11318 pub SumConnectiontime: u32,
11319 pub AvgTimeOpened: f64,
11320 pub ServerRndTrips: u32,
11321 pub BuffersSent: u32,
11322 pub BuffersRec: u32,
11323 pub BytesSent: u32,
11324 pub BytesRec: u32,
11325 pub msExecutionTime: u32,
11326 pub msNetWorkServerTime: u32,
11327}
11328impl ::core::marker::Copy for SQLPERF {}
11329impl ::core::clone::Clone for SQLPERF {
11330 fn clone(&self) -> Self {
11331 *self
11332 }
11333}
11334#[repr(C)]
11335#[doc = "*Required features: `\"Win32_System_Search\"`*"]
11336pub struct SQL_DAY_SECOND_STRUCT {
11337 pub day: u32,
11338 pub hour: u32,
11339 pub minute: u32,
11340 pub second: u32,
11341 pub fraction: u32,
11342}
11343impl ::core::marker::Copy for SQL_DAY_SECOND_STRUCT {}
11344impl ::core::clone::Clone for SQL_DAY_SECOND_STRUCT {
11345 fn clone(&self) -> Self {
11346 *self
11347 }
11348}
11349#[repr(C)]
04454e1e 11350#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647
FG
11351pub struct SQL_INTERVAL_STRUCT {
11352 pub interval_type: SQLINTERVAL,
11353 pub interval_sign: i16,
11354 pub intval: SQL_INTERVAL_STRUCT_0,
11355}
11356impl ::core::marker::Copy for SQL_INTERVAL_STRUCT {}
11357impl ::core::clone::Clone for SQL_INTERVAL_STRUCT {
11358 fn clone(&self) -> Self {
11359 *self
11360 }
11361}
11362#[repr(C)]
04454e1e 11363#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647
FG
11364pub union SQL_INTERVAL_STRUCT_0 {
11365 pub year_month: SQL_YEAR_MONTH_STRUCT,
11366 pub day_second: SQL_DAY_SECOND_STRUCT,
11367}
11368impl ::core::marker::Copy for SQL_INTERVAL_STRUCT_0 {}
11369impl ::core::clone::Clone for SQL_INTERVAL_STRUCT_0 {
11370 fn clone(&self) -> Self {
11371 *self
11372 }
11373}
11374#[repr(C)]
04454e1e 11375#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647
FG
11376pub struct SQL_NUMERIC_STRUCT {
11377 pub precision: u8,
11378 pub scale: i8,
11379 pub sign: u8,
11380 pub val: [u8; 16],
11381}
11382impl ::core::marker::Copy for SQL_NUMERIC_STRUCT {}
11383impl ::core::clone::Clone for SQL_NUMERIC_STRUCT {
11384 fn clone(&self) -> Self {
11385 *self
11386 }
11387}
11388#[repr(C)]
04454e1e 11389#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647
FG
11390pub struct SQL_YEAR_MONTH_STRUCT {
11391 pub year: u32,
11392 pub month: u32,
11393}
11394impl ::core::marker::Copy for SQL_YEAR_MONTH_STRUCT {}
11395impl ::core::clone::Clone for SQL_YEAR_MONTH_STRUCT {
11396 fn clone(&self) -> Self {
11397 *self
11398 }
11399}
11400#[repr(C)]
04454e1e 11401#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647
FG
11402pub struct SSERRORINFO {
11403 pub pwszMessage: ::windows_sys::core::PWSTR,
11404 pub pwszServer: ::windows_sys::core::PWSTR,
11405 pub pwszProcedure: ::windows_sys::core::PWSTR,
11406 pub lNative: i32,
11407 pub bState: u8,
11408 pub bClass: u8,
11409 pub wLineNumber: u16,
11410}
11411impl ::core::marker::Copy for SSERRORINFO {}
11412impl ::core::clone::Clone for SSERRORINFO {
11413 fn clone(&self) -> Self {
11414 *self
11415 }
11416}
5e7ed085 11417#[repr(C)]
04454e1e
FG
11418#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_System_Com\"`*"]
11419#[cfg(feature = "Win32_System_Com")]
5e7ed085
FG
11420pub struct SSVARIANT {
11421 pub vt: u16,
11422 pub dwReserved1: u32,
11423 pub dwReserved2: u32,
11424 pub Anonymous: SSVARIANT_0,
11425}
04454e1e 11426#[cfg(feature = "Win32_System_Com")]
5e7ed085 11427impl ::core::marker::Copy for SSVARIANT {}
04454e1e 11428#[cfg(feature = "Win32_System_Com")]
5e7ed085
FG
11429impl ::core::clone::Clone for SSVARIANT {
11430 fn clone(&self) -> Self {
11431 *self
11432 }
11433}
11434#[repr(C)]
04454e1e
FG
11435#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_System_Com\"`*"]
11436#[cfg(feature = "Win32_System_Com")]
5e7ed085
FG
11437pub union SSVARIANT_0 {
11438 pub bTinyIntVal: u8,
11439 pub sShortIntVal: i16,
11440 pub lIntVal: i32,
11441 pub llBigIntVal: i64,
11442 pub fltRealVal: f32,
11443 pub dblFloatVal: f64,
11444 pub cyMoneyVal: super::Com::CY,
11445 pub NCharVal: SSVARIANT_0_3,
11446 pub CharVal: SSVARIANT_0_2,
11447 pub fBitVal: i16,
11448 pub rgbGuidVal: [u8; 16],
11449 pub numNumericVal: DB_NUMERIC,
11450 pub BinaryVal: SSVARIANT_0_1,
11451 pub tsDateTimeVal: DBTIMESTAMP,
11452 pub UnknownType: SSVARIANT_0_4,
11453 pub BLOBType: SSVARIANT_0_0,
11454}
04454e1e 11455#[cfg(feature = "Win32_System_Com")]
5e7ed085 11456impl ::core::marker::Copy for SSVARIANT_0 {}
04454e1e 11457#[cfg(feature = "Win32_System_Com")]
5e7ed085
FG
11458impl ::core::clone::Clone for SSVARIANT_0 {
11459 fn clone(&self) -> Self {
11460 *self
11461 }
11462}
11463#[repr(C)]
04454e1e
FG
11464#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_System_Com\"`*"]
11465#[cfg(feature = "Win32_System_Com")]
5e7ed085
FG
11466pub struct SSVARIANT_0_0 {
11467 pub dbobj: DBOBJECT,
11468 pub pUnk: ::windows_sys::core::IUnknown,
11469}
04454e1e 11470#[cfg(feature = "Win32_System_Com")]
5e7ed085 11471impl ::core::marker::Copy for SSVARIANT_0_0 {}
04454e1e 11472#[cfg(feature = "Win32_System_Com")]
5e7ed085
FG
11473impl ::core::clone::Clone for SSVARIANT_0_0 {
11474 fn clone(&self) -> Self {
11475 *self
11476 }
11477}
11478#[repr(C)]
04454e1e
FG
11479#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_System_Com\"`*"]
11480#[cfg(feature = "Win32_System_Com")]
5e7ed085
FG
11481pub struct SSVARIANT_0_1 {
11482 pub sActualLength: i16,
11483 pub sMaxLength: i16,
11484 pub prgbBinaryVal: *mut u8,
11485 pub dwReserved: u32,
11486}
04454e1e 11487#[cfg(feature = "Win32_System_Com")]
5e7ed085 11488impl ::core::marker::Copy for SSVARIANT_0_1 {}
04454e1e 11489#[cfg(feature = "Win32_System_Com")]
5e7ed085
FG
11490impl ::core::clone::Clone for SSVARIANT_0_1 {
11491 fn clone(&self) -> Self {
11492 *self
11493 }
11494}
11495#[repr(C)]
04454e1e
FG
11496#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_System_Com\"`*"]
11497#[cfg(feature = "Win32_System_Com")]
5e7ed085
FG
11498pub struct SSVARIANT_0_2 {
11499 pub sActualLength: i16,
11500 pub sMaxLength: i16,
04454e1e 11501 pub pchCharVal: ::windows_sys::core::PSTR,
5e7ed085
FG
11502 pub rgbReserved: [u8; 5],
11503 pub dwReserved: u32,
04454e1e 11504 pub pwchReserved: ::windows_sys::core::PWSTR,
5e7ed085 11505}
04454e1e 11506#[cfg(feature = "Win32_System_Com")]
5e7ed085 11507impl ::core::marker::Copy for SSVARIANT_0_2 {}
04454e1e 11508#[cfg(feature = "Win32_System_Com")]
5e7ed085
FG
11509impl ::core::clone::Clone for SSVARIANT_0_2 {
11510 fn clone(&self) -> Self {
11511 *self
11512 }
11513}
11514#[repr(C)]
04454e1e
FG
11515#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_System_Com\"`*"]
11516#[cfg(feature = "Win32_System_Com")]
5e7ed085
FG
11517pub struct SSVARIANT_0_3 {
11518 pub sActualLength: i16,
11519 pub sMaxLength: i16,
04454e1e 11520 pub pwchNCharVal: ::windows_sys::core::PWSTR,
5e7ed085
FG
11521 pub rgbReserved: [u8; 5],
11522 pub dwReserved: u32,
04454e1e 11523 pub pwchReserved: ::windows_sys::core::PWSTR,
5e7ed085 11524}
04454e1e 11525#[cfg(feature = "Win32_System_Com")]
5e7ed085 11526impl ::core::marker::Copy for SSVARIANT_0_3 {}
04454e1e 11527#[cfg(feature = "Win32_System_Com")]
5e7ed085
FG
11528impl ::core::clone::Clone for SSVARIANT_0_3 {
11529 fn clone(&self) -> Self {
11530 *self
11531 }
11532}
11533#[repr(C)]
04454e1e
FG
11534#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_System_Com\"`*"]
11535#[cfg(feature = "Win32_System_Com")]
5e7ed085
FG
11536pub struct SSVARIANT_0_4 {
11537 pub dwActualLength: u32,
11538 pub rgMetadata: [u8; 16],
11539 pub pUnknownData: *mut u8,
11540}
04454e1e 11541#[cfg(feature = "Win32_System_Com")]
5e7ed085 11542impl ::core::marker::Copy for SSVARIANT_0_4 {}
04454e1e 11543#[cfg(feature = "Win32_System_Com")]
5e7ed085
FG
11544impl ::core::clone::Clone for SSVARIANT_0_4 {
11545 fn clone(&self) -> Self {
11546 *self
11547 }
11548}
5e7ed085 11549#[repr(C)]
04454e1e 11550#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Foundation\"`*"]
5e7ed085
FG
11551#[cfg(feature = "Win32_Foundation")]
11552pub struct SUBSCRIPTIONINFO {
11553 pub cbSize: u32,
11554 pub fUpdateFlags: u32,
11555 pub schedule: SUBSCRIPTIONSCHEDULE,
11556 pub customGroupCookie: ::windows_sys::core::GUID,
11557 pub pTrigger: *mut ::core::ffi::c_void,
11558 pub dwRecurseLevels: u32,
11559 pub fWebcrawlerFlags: u32,
11560 pub bMailNotification: super::super::Foundation::BOOL,
11561 pub bGleam: super::super::Foundation::BOOL,
11562 pub bChangesOnly: super::super::Foundation::BOOL,
11563 pub bNeedPassword: super::super::Foundation::BOOL,
11564 pub fChannelFlags: u32,
487cf647
FG
11565 pub bstrUserName: ::windows_sys::core::BSTR,
11566 pub bstrPassword: ::windows_sys::core::BSTR,
11567 pub bstrFriendlyName: ::windows_sys::core::BSTR,
5e7ed085
FG
11568 pub dwMaxSizeKB: u32,
11569 pub subType: SUBSCRIPTIONTYPE,
11570 pub fTaskFlags: u32,
11571 pub dwReserved: u32,
11572}
11573#[cfg(feature = "Win32_Foundation")]
11574impl ::core::marker::Copy for SUBSCRIPTIONINFO {}
11575#[cfg(feature = "Win32_Foundation")]
11576impl ::core::clone::Clone for SUBSCRIPTIONINFO {
11577 fn clone(&self) -> Self {
11578 *self
11579 }
11580}
5e7ed085 11581#[repr(C)]
04454e1e 11582#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
11583pub struct SUBSCRIPTIONITEMINFO {
11584 pub cbSize: u32,
11585 pub dwFlags: u32,
11586 pub dwPriority: u32,
11587 pub ScheduleGroup: ::windows_sys::core::GUID,
11588 pub clsidAgent: ::windows_sys::core::GUID,
11589}
11590impl ::core::marker::Copy for SUBSCRIPTIONITEMINFO {}
11591impl ::core::clone::Clone for SUBSCRIPTIONITEMINFO {
11592 fn clone(&self) -> Self {
487cf647
FG
11593 *self
11594 }
11595}
5e7ed085 11596#[repr(C)]
04454e1e 11597#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
11598pub struct TEXT_SOURCE {
11599 pub pfnFillTextBuffer: PFNFILLTEXTBUFFER,
04454e1e 11600 pub awcBuffer: ::windows_sys::core::PCWSTR,
5e7ed085
FG
11601 pub iEnd: u32,
11602 pub iCur: u32,
11603}
5e7ed085 11604impl ::core::marker::Copy for TEXT_SOURCE {}
5e7ed085
FG
11605impl ::core::clone::Clone for TEXT_SOURCE {
11606 fn clone(&self) -> Self {
11607 *self
11608 }
11609}
11610#[repr(C)]
04454e1e 11611#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
11612pub struct TIMEOUT_INFO {
11613 pub dwSize: u32,
11614 pub dwConnectTimeout: u32,
11615 pub dwDataTimeout: u32,
11616}
11617impl ::core::marker::Copy for TIMEOUT_INFO {}
11618impl ::core::clone::Clone for TIMEOUT_INFO {
11619 fn clone(&self) -> Self {
11620 *self
11621 }
11622}
11623#[repr(C)]
04454e1e 11624#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
11625pub struct TIMESTAMP_STRUCT {
11626 pub year: i16,
11627 pub month: u16,
11628 pub day: u16,
11629 pub hour: u16,
11630 pub minute: u16,
11631 pub second: u16,
11632 pub fraction: u32,
11633}
11634impl ::core::marker::Copy for TIMESTAMP_STRUCT {}
11635impl ::core::clone::Clone for TIMESTAMP_STRUCT {
11636 fn clone(&self) -> Self {
11637 *self
11638 }
11639}
11640#[repr(C)]
04454e1e 11641#[doc = "*Required features: `\"Win32_System_Search\"`*"]
5e7ed085
FG
11642pub struct TIME_STRUCT {
11643 pub hour: u16,
11644 pub minute: u16,
11645 pub second: u16,
11646}
11647impl ::core::marker::Copy for TIME_STRUCT {}
11648impl ::core::clone::Clone for TIME_STRUCT {
11649 fn clone(&self) -> Self {
11650 *self
11651 }
11652}
5e7ed085 11653#[repr(C)]
04454e1e
FG
11654#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Foundation\"`, `\"Win32_Storage_IndexServer\"`, `\"Win32_System_Com_StructuredStorage\"`*"]
11655#[cfg(all(feature = "Win32_Foundation", feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com_StructuredStorage"))]
5e7ed085
FG
11656pub struct VECTORRESTRICTION {
11657 pub Node: NODERESTRICTION,
11658 pub RankMethod: u32,
11659}
04454e1e 11660#[cfg(all(feature = "Win32_Foundation", feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com_StructuredStorage"))]
5e7ed085 11661impl ::core::marker::Copy for VECTORRESTRICTION {}
04454e1e 11662#[cfg(all(feature = "Win32_Foundation", feature = "Win32_Storage_IndexServer", feature = "Win32_System_Com_StructuredStorage"))]
5e7ed085
FG
11663impl ::core::clone::Clone for VECTORRESTRICTION {
11664 fn clone(&self) -> Self {
11665 *self
11666 }
11667}
04454e1e 11668#[doc = "*Required features: `\"Win32_System_Search\"`*"]
487cf647
FG
11669pub type PFNFILLTEXTBUFFER = ::core::option::Option<unsafe extern "system" fn(ptextsource: *mut TEXT_SOURCE) -> ::windows_sys::core::HRESULT>;
11670#[doc = "*Required features: `\"Win32_System_Search\"`, `\"Win32_Foundation\"`*"]
11671#[cfg(feature = "Win32_Foundation")]
11672pub type SQL_ASYNC_NOTIFICATION_CALLBACK = ::core::option::Option<unsafe extern "system" fn(pcontext: *const ::core::ffi::c_void, flast: super::super::Foundation::BOOL) -> i16>;