angr 9.2.181__cp310-abi3-manylinux_2_28_aarch64.whl → 9.2.182__cp310-abi3-manylinux_2_28_aarch64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of angr might be problematic. Click here for more details.
- angr/__init__.py +1 -1
- angr/ailment/expression.py +2 -2
- angr/analyses/decompiler/ail_simplifier.py +77 -5
- angr/analyses/decompiler/callsite_maker.py +6 -1
- angr/analyses/decompiler/clinic.py +22 -10
- angr/analyses/decompiler/dephication/graph_vvar_mapping.py +4 -10
- angr/analyses/decompiler/ssailification/rewriting.py +82 -10
- angr/analyses/decompiler/ssailification/rewriting_engine.py +22 -11
- angr/analyses/decompiler/ssailification/ssailification.py +7 -5
- angr/analyses/s_reaching_definitions/s_rda_view.py +38 -16
- angr/analyses/s_reaching_definitions/s_reaching_definitions.py +59 -6
- angr/engines/pcode/behavior.py +6 -2
- angr/knowledge_plugins/functions/function_manager.py +1 -1
- angr/knowledge_plugins/variables/variable_manager.py +10 -19
- angr/procedures/definitions/parse_glibc.py +0 -1
- angr/procedures/definitions/parse_win32json.py +12 -3
- angr/procedures/definitions/wdk/fltmgr.json +11 -11
- angr/procedures/definitions/wdk/fwpuclnt.json +32 -32
- angr/procedures/definitions/wdk/gdi32.json +1 -1
- angr/procedures/definitions/wdk/ntoskrnl.json +61 -61
- angr/procedures/definitions/win32/_types_win32.json +1103 -1102
- angr/procedures/definitions/win32/activeds.json +2 -2
- angr/procedures/definitions/win32/advapi32.json +47 -47
- angr/procedures/definitions/win32/apphelp.json +1 -1
- angr/procedures/definitions/win32/avifil32.json +10 -10
- angr/procedures/definitions/win32/avrt.json +4 -4
- angr/procedures/definitions/win32/bluetoothapis.json +3 -3
- angr/procedures/definitions/win32/certpoleng.json +1 -1
- angr/procedures/definitions/win32/cfgmgr32.json +43 -43
- angr/procedures/definitions/win32/clusapi.json +1 -1
- angr/procedures/definitions/win32/comctl32.json +3 -3
- angr/procedures/definitions/win32/computenetwork.json +14 -14
- angr/procedures/definitions/win32/comsvcs.json +3 -3
- angr/procedures/definitions/win32/crypt32.json +5 -5
- angr/procedures/definitions/win32/d2d1.json +1 -1
- angr/procedures/definitions/win32/d3d12.json +6 -6
- angr/procedures/definitions/win32/d3dcompiler_47.json +2 -2
- angr/procedures/definitions/win32/dbgeng.json +4 -4
- angr/procedures/definitions/win32/dbghelp.json +2 -2
- angr/procedures/definitions/win32/dcomp.json +4 -4
- angr/procedures/definitions/win32/ddraw.json +6 -6
- angr/procedures/definitions/win32/diagnosticdataquery.json +1 -1
- angr/procedures/definitions/win32/dinput8.json +1 -1
- angr/procedures/definitions/win32/directml.json +2 -2
- angr/procedures/definitions/win32/dsound.json +10 -10
- angr/procedures/definitions/win32/dsparse.json +2 -2
- angr/procedures/definitions/win32/dwmapi.json +1 -1
- angr/procedures/definitions/win32/dwrite.json +1 -1
- angr/procedures/definitions/win32/dxcompiler.json +2 -2
- angr/procedures/definitions/win32/dxcore.json +1 -1
- angr/procedures/definitions/win32/dxgi.json +4 -4
- angr/procedures/definitions/win32/dxva2.json +1 -1
- angr/procedures/definitions/win32/eappprxy.json +3 -3
- angr/procedures/definitions/win32/evr.json +4 -4
- angr/procedures/definitions/win32/fwpuclnt.json +32 -32
- angr/procedures/definitions/win32/gdiplus.json +9 -9
- angr/procedures/definitions/win32/hid.json +1 -1
- angr/procedures/definitions/win32/hlink.json +7 -7
- angr/procedures/definitions/win32/ieframe.json +4 -4
- angr/procedures/definitions/win32/imgutil.json +1 -1
- angr/procedures/definitions/win32/inkobjcore.json +4 -4
- angr/procedures/definitions/win32/iphlpapi.json +8 -8
- angr/procedures/definitions/win32/kernel32.json +5 -5
- angr/procedures/definitions/win32/ksproxy_ax.json +2 -2
- angr/procedures/definitions/win32/ktmw32.json +10 -10
- angr/procedures/definitions/win32/mapi32.json +2 -2
- angr/procedures/definitions/win32/mf.json +5 -5
- angr/procedures/definitions/win32/mfplat.json +33 -33
- angr/procedures/definitions/win32/mfsensorgroup.json +2 -2
- angr/procedures/definitions/win32/mmdevapi.json +1 -1
- angr/procedures/definitions/win32/mqrt.json +2 -2
- angr/procedures/definitions/win32/mscoree.json +9 -9
- angr/procedures/definitions/win32/msdmo.json +5 -5
- angr/procedures/definitions/win32/mswsock.json +8 -8
- angr/procedures/definitions/win32/ndfapi.json +1 -1
- angr/procedures/definitions/win32/netapi32.json +6 -6
- angr/procedures/definitions/win32/netsh.json +1 -1
- angr/procedures/definitions/win32/ntdll.json +1 -1
- angr/procedures/definitions/win32/ntdsapi.json +14 -14
- angr/procedures/definitions/win32/ntlanman.json +3 -3
- angr/procedures/definitions/win32/ole32.json +78 -78
- angr/procedures/definitions/win32/oleacc.json +6 -6
- angr/procedures/definitions/win32/oleaut32.json +15 -15
- angr/procedures/definitions/win32/oledlg.json +1 -1
- angr/procedures/definitions/win32/p2p.json +11 -11
- angr/procedures/definitions/win32/p2pgraph.json +7 -7
- angr/procedures/definitions/win32/pdh.json +1 -1
- angr/procedures/definitions/win32/powrprof.json +47 -47
- angr/procedures/definitions/win32/projectedfslib.json +2 -2
- angr/procedures/definitions/win32/propsys.json +25 -25
- angr/procedures/definitions/win32/query.json +1 -1
- angr/procedures/definitions/win32/resutils.json +1 -1
- angr/procedures/definitions/win32/rpcns4.json +5 -5
- angr/procedures/definitions/win32/rpcrt4.json +33 -33
- angr/procedures/definitions/win32/rtm.json +1 -1
- angr/procedures/definitions/win32/sensorsutilsv2.json +4 -4
- angr/procedures/definitions/win32/setupapi.json +49 -49
- angr/procedures/definitions/win32/shell32.json +34 -34
- angr/procedures/definitions/win32/shlwapi.json +7 -7
- angr/procedures/definitions/win32/slc.json +25 -25
- angr/procedures/definitions/win32/slcext.json +2 -2
- angr/procedures/definitions/win32/slwga.json +1 -1
- angr/procedures/definitions/win32/tapi32.json +4 -4
- angr/procedures/definitions/win32/tdh.json +6 -6
- angr/procedures/definitions/win32/traffic.json +6 -6
- angr/procedures/definitions/win32/txfw32.json +1 -1
- angr/procedures/definitions/win32/uiautomationcore.json +1 -1
- angr/procedures/definitions/win32/urlmon.json +6 -6
- angr/procedures/definitions/win32/user32.json +1 -1
- angr/procedures/definitions/win32/userenv.json +4 -4
- angr/procedures/definitions/win32/virtdisk.json +4 -4
- angr/procedures/definitions/win32/vmdevicehost.json +1 -1
- angr/procedures/definitions/win32/wcmapi.json +2 -2
- angr/procedures/definitions/win32/webauthn.json +2 -2
- angr/procedures/definitions/win32/winbio.json +2 -2
- angr/procedures/definitions/win32/windows_ui_xaml.json +2 -2
- angr/procedures/definitions/win32/windowscodecs.json +9 -9
- angr/procedures/definitions/win32/winhttp.json +1 -1
- angr/procedures/definitions/win32/winhvplatform.json +1 -1
- angr/procedures/definitions/win32/winscard.json +12 -12
- angr/procedures/definitions/win32/winspool_drv.json +4 -4
- angr/procedures/definitions/win32/wintrust.json +9 -9
- angr/procedures/definitions/win32/wlanapi.json +27 -27
- angr/procedures/definitions/win32/wlanui.json +1 -1
- angr/procedures/definitions/win32/wldp.json +4 -4
- angr/procedures/definitions/win32/ws2_32.json +34 -34
- angr/procedures/definitions/win32/xaudio2_8.json +1 -1
- angr/procedures/definitions/win32/xmllite.json +2 -2
- angr/procedures/definitions/win32/xolehlp.json +4 -4
- angr/project.py +4 -1
- angr/rustylib.abi3.so +0 -0
- angr/utils/ail.py +107 -1
- {angr-9.2.181.dist-info → angr-9.2.182.dist-info}/METADATA +5 -5
- {angr-9.2.181.dist-info → angr-9.2.182.dist-info}/RECORD +138 -138
- {angr-9.2.181.dist-info → angr-9.2.182.dist-info}/WHEEL +0 -0
- {angr-9.2.181.dist-info → angr-9.2.182.dist-info}/entry_points.txt +0 -0
- {angr-9.2.181.dist-info → angr-9.2.182.dist-info}/licenses/LICENSE +0 -0
- {angr-9.2.181.dist-info → angr-9.2.182.dist-info}/top_level.txt +0 -0
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'PWSTR', 'ot': 'ptr'}, {'_t': '_ref', 'name': 'PWSTR', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': 'char', 'signed': true, 'label': 'Char'}, 'label': 'LPArray'}, {'_t': 'ptr', 'pts_to': {'_t': 'int', 'signed': false, 'label': 'UInt32'}}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}], 'returnty': {'_t': '_ref', 'name': 'HRESULT', 'ot': 'int'}, 'arg_names': ['lpszURL', 'lpszCookieName', 'lpszCookieData', 'pcchCookieData', 'dwFlags']}"
|
|
40
40
|
},
|
|
41
41
|
"IEGetWriteableFolderPath": {
|
|
42
|
-
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '
|
|
42
|
+
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'PWSTR', 'ot': '_ref'}}], 'returnty': {'_t': '_ref', 'name': 'HRESULT', 'ot': 'int'}, 'arg_names': ['clsidFolderID', 'lppwstrPath']}"
|
|
43
43
|
},
|
|
44
44
|
"IEGetWriteableLowHKCU": {
|
|
45
45
|
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'HKEY', 'ot': '_ref'}}], 'returnty': {'_t': '_ref', 'name': 'HRESULT', 'ot': 'int'}, 'arg_names': ['pHKey']}"
|
|
@@ -72,10 +72,10 @@
|
|
|
72
72
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'PWSTR', 'ot': 'ptr'}, {'_t': '_ref', 'name': 'PWSTR', 'ot': 'ptr'}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': 'char', 'signed': false, 'label': 'Byte'}}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}], 'returnty': {'_t': '_ref', 'name': 'HRESULT', 'ot': 'int'}, 'arg_names': ['lpSubKey', 'lpValueName', 'Reserved', 'dwType', 'lpData', 'cbData']}"
|
|
73
73
|
},
|
|
74
74
|
"IERegisterWritableRegistryKey": {
|
|
75
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '
|
|
75
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'Guid', 'ot': 'struct'}, {'_t': '_ref', 'name': 'PWSTR', 'ot': 'ptr'}, {'_t': '_ref', 'name': 'BOOL', 'ot': 'int'}], 'returnty': {'_t': '_ref', 'name': 'HRESULT', 'ot': 'int'}, 'arg_names': ['guid', 'lpSubkey', 'fSubkeyAllowed']}"
|
|
76
76
|
},
|
|
77
77
|
"IERegisterWritableRegistryValue": {
|
|
78
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '
|
|
78
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'Guid', 'ot': 'struct'}, {'_t': '_ref', 'name': 'PWSTR', 'ot': 'ptr'}, {'_t': '_ref', 'name': 'PWSTR', 'ot': 'ptr'}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': 'char', 'signed': false, 'label': 'Byte'}}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}], 'returnty': {'_t': '_ref', 'name': 'HRESULT', 'ot': 'int'}, 'arg_names': ['guid', 'lpPath', 'lpValueName', 'dwType', 'lpData', 'cbMaxData']}"
|
|
79
79
|
},
|
|
80
80
|
"IERemoveDirectory": {
|
|
81
81
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'PWSTR', 'ot': 'ptr'}], 'returnty': {'_t': '_ref', 'name': 'BOOL', 'ot': 'int'}, 'arg_names': ['lpPathName']}"
|
|
@@ -96,7 +96,7 @@
|
|
|
96
96
|
"proto": "{'_t': 'func', 'args': [], 'returnty': {'_t': '_ref', 'name': 'BOOL', 'ot': 'int'}, 'arg_names': []}"
|
|
97
97
|
},
|
|
98
98
|
"IEUnregisterWritableRegistry": {
|
|
99
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '
|
|
99
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'Guid', 'ot': 'struct'}], 'returnty': {'_t': '_ref', 'name': 'HRESULT', 'ot': 'int'}, 'arg_names': ['guid']}"
|
|
100
100
|
}
|
|
101
101
|
}
|
|
102
102
|
}
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'IStream', 'ot': 'bot'}, {'_t': '_ref', 'name': 'IMapMIMEToCLSID', 'ot': 'bot'}, {'_t': '_ref', 'name': 'IUnknown', 'ot': 'bot'}, {'_t': '_ref', 'name': 'PWSTR', 'ot': 'ptr'}], 'returnty': {'_t': '_ref', 'name': 'HRESULT', 'ot': 'int'}, 'arg_names': ['pStream', 'pMap', 'pEventSink', 'pszMIMETypeParam']}"
|
|
28
28
|
},
|
|
29
29
|
"DitherTo8": {
|
|
30
|
-
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': 'char', 'signed': false, 'label': 'Byte'}}, {'_t': 'int', 'label': 'Int32'}, {'_t': 'ptr', 'pts_to': {'_t': 'char', 'signed': false, 'label': 'Byte'}}, {'_t': 'int', 'label': 'Int32'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
30
|
+
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': 'char', 'signed': false, 'label': 'Byte'}}, {'_t': 'int', 'label': 'Int32'}, {'_t': 'ptr', 'pts_to': {'_t': 'char', 'signed': false, 'label': 'Byte'}}, {'_t': 'int', 'label': 'Int32'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'RGBQUAD', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'RGBQUAD', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': 'char', 'signed': false, 'label': 'Byte'}}, {'_t': 'int', 'label': 'Int32'}, {'_t': 'int', 'label': 'Int32'}, {'_t': 'int', 'label': 'Int32'}, {'_t': 'int', 'label': 'Int32'}, {'_t': 'int', 'label': 'Int32'}, {'_t': 'int', 'label': 'Int32'}], 'returnty': {'_t': '_ref', 'name': 'HRESULT', 'ot': 'int'}, 'arg_names': ['pDestBits', 'nDestPitch', 'pSrcBits', 'nSrcPitch', 'bfidSrc', 'prgbDestColors', 'prgbSrcColors', 'pbDestInvMap', 'x', 'y', 'cx', 'cy', 'lDestTrans', 'lSrcTrans']}"
|
|
31
31
|
},
|
|
32
32
|
"GetMaxMIMEIDBytes": {
|
|
33
33
|
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': 'int', 'signed': false, 'label': 'UInt32'}}], 'returnty': {'_t': '_ref', 'name': 'HRESULT', 'ot': 'int'}, 'arg_names': ['pnMaxBytes']}"
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HRECOGNIZER', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'HRECOCONTEXT', 'ot': '_ref'}}], 'returnty': {'_t': '_ref', 'name': 'HRESULT', 'ot': 'int'}, 'arg_names': ['hrec', 'phrc']}"
|
|
25
25
|
},
|
|
26
26
|
"CreateRecognizer": {
|
|
27
|
-
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '
|
|
27
|
+
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'HRECOGNIZER', 'ot': '_ref'}}], 'returnty': {'_t': '_ref', 'name': 'HRESULT', 'ot': 'int'}, 'arg_names': ['pCLSID', 'phrec']}"
|
|
28
28
|
},
|
|
29
29
|
"DestroyContext": {
|
|
30
30
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HRECOCONTEXT', 'ot': 'ptr'}], 'returnty': {'_t': '_ref', 'name': 'HRESULT', 'ot': 'int'}, 'arg_names': ['hrc']}"
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HRECOCONTEXT', 'ot': 'ptr'}], 'returnty': {'_t': '_ref', 'name': 'HRESULT', 'ot': 'int'}, 'arg_names': ['hrc']}"
|
|
40
40
|
},
|
|
41
41
|
"GetAllRecognizers": {
|
|
42
|
-
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': 'ptr', 'pts_to': {'_t': '
|
|
42
|
+
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}}, {'_t': 'ptr', 'pts_to': {'_t': 'int', 'signed': false, 'label': 'UInt32'}}], 'returnty': {'_t': '_ref', 'name': 'HRESULT', 'ot': 'int'}, 'arg_names': ['recognizerClsids', 'count']}"
|
|
43
43
|
},
|
|
44
44
|
"GetBestResultString": {
|
|
45
45
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HRECOCONTEXT', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': 'int', 'signed': false, 'label': 'UInt32'}}, {'_t': 'ptr', 'pts_to': {'_t': 'char', 'signed': true, 'label': 'Char'}, 'label': 'LPArray'}], 'returnty': {'_t': '_ref', 'name': 'HRESULT', 'ot': 'int'}, 'arg_names': ['hrc', 'pcSize', 'pwcBestResult']}"
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HRECOGNIZER', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'RECO_ATTRS', 'ot': '_ref'}}], 'returnty': {'_t': '_ref', 'name': 'HRESULT', 'ot': 'int'}, 'arg_names': ['hrec', 'pRecoAttrs']}"
|
|
55
55
|
},
|
|
56
56
|
"GetResultPropertyList": {
|
|
57
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HRECOGNIZER', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': 'int', 'signed': false, 'label': 'UInt32'}}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
57
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HRECOGNIZER', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': 'int', 'signed': false, 'label': 'UInt32'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}], 'returnty': {'_t': '_ref', 'name': 'HRESULT', 'ot': 'int'}, 'arg_names': ['hrec', 'pPropertyCount', 'pPropertyGuid']}"
|
|
58
58
|
},
|
|
59
59
|
"GetRightSeparator": {
|
|
60
60
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HRECOCONTEXT', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': 'int', 'signed': false, 'label': 'UInt32'}}, {'_t': 'ptr', 'pts_to': {'_t': 'char', 'signed': true, 'label': 'Char'}, 'label': 'LPArray'}], 'returnty': {'_t': '_ref', 'name': 'HRESULT', 'ot': 'int'}, 'arg_names': ['hrc', 'pcSize', 'pwcRightSeparator']}"
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HRECOCONTEXT', 'ot': 'ptr'}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': '_ref', 'name': 'PWSTR', 'ot': 'ptr'}], 'returnty': {'_t': '_ref', 'name': 'HRESULT', 'ot': 'int'}, 'arg_names': ['hrc', 'wcString', 'pwcString']}"
|
|
67
67
|
},
|
|
68
68
|
"LoadCachedAttributes": {
|
|
69
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '
|
|
69
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'Guid', 'ot': 'struct'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'RECO_ATTRS', 'ot': '_ref'}}], 'returnty': {'_t': '_ref', 'name': 'HRESULT', 'ot': 'int'}, 'arg_names': ['clsid', 'pRecoAttributes']}"
|
|
70
70
|
},
|
|
71
71
|
"MakeWordList": {
|
|
72
72
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HRECOGNIZER', 'ot': 'ptr'}, {'_t': '_ref', 'name': 'PWSTR', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'HRECOWORDLIST', 'ot': '_ref'}}], 'returnty': {'_t': '_ref', 'name': 'HRESULT', 'ot': 'int'}, 'arg_names': ['hrec', 'pBuffer', 'phwl']}"
|
|
@@ -27,16 +27,16 @@
|
|
|
27
27
|
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': 'union', 'members': {'Value': {'_t': 'llong', 'signed': false, 'label': 'UInt64'}, 'Info': {'_t': '_ref', 'name': '_Info_e__Struct', 'ot': '_ref'}}, 'name': '<anon>'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'INTERFACE_HARDWARE_CROSSTIMESTAMP', 'ot': '_ref'}}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['InterfaceLuid', 'CrossTimestamp']}"
|
|
28
28
|
},
|
|
29
29
|
"ConvertCompartmentGuidToId": {
|
|
30
|
-
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '
|
|
30
|
+
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': 'int', 'signed': false, 'label': 'UInt32'}}], 'returnty': {'_t': '_ref', 'name': 'WIN32_ERROR', 'ot': 'int'}, 'arg_names': ['CompartmentGuid', 'CompartmentId']}"
|
|
31
31
|
},
|
|
32
32
|
"ConvertCompartmentIdToGuid": {
|
|
33
|
-
"proto": "{'_t': 'func', 'args': [{'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
33
|
+
"proto": "{'_t': 'func', 'args': [{'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}], 'returnty': {'_t': '_ref', 'name': 'WIN32_ERROR', 'ot': 'int'}, 'arg_names': ['CompartmentId', 'CompartmentGuid']}"
|
|
34
34
|
},
|
|
35
35
|
"ConvertInterfaceAliasToLuid": {
|
|
36
36
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'PWSTR', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': 'union', 'members': {'Value': {'_t': 'llong', 'signed': false, 'label': 'UInt64'}, 'Info': {'_t': '_ref', 'name': '_Info_e__Struct', 'ot': '_ref'}}, 'name': '<anon>'}}], 'returnty': {'_t': '_ref', 'name': 'WIN32_ERROR', 'ot': 'int'}, 'arg_names': ['InterfaceAlias', 'InterfaceLuid']}"
|
|
37
37
|
},
|
|
38
38
|
"ConvertInterfaceGuidToLuid": {
|
|
39
|
-
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '
|
|
39
|
+
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': 'union', 'members': {'Value': {'_t': 'llong', 'signed': false, 'label': 'UInt64'}, 'Info': {'_t': '_ref', 'name': '_Info_e__Struct', 'ot': '_ref'}}, 'name': '<anon>'}}], 'returnty': {'_t': '_ref', 'name': 'WIN32_ERROR', 'ot': 'int'}, 'arg_names': ['InterfaceGuid', 'InterfaceLuid']}"
|
|
40
40
|
},
|
|
41
41
|
"ConvertInterfaceIndexToLuid": {
|
|
42
42
|
"proto": "{'_t': 'func', 'args': [{'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': 'union', 'members': {'Value': {'_t': 'llong', 'signed': false, 'label': 'UInt64'}, 'Info': {'_t': '_ref', 'name': '_Info_e__Struct', 'ot': '_ref'}}, 'name': '<anon>'}}], 'returnty': {'_t': '_ref', 'name': 'WIN32_ERROR', 'ot': 'int'}, 'arg_names': ['InterfaceIndex', 'InterfaceLuid']}"
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': 'union', 'members': {'Value': {'_t': 'llong', 'signed': false, 'label': 'UInt64'}, 'Info': {'_t': '_ref', 'name': '_Info_e__Struct', 'ot': '_ref'}}, 'name': '<anon>'}}, {'_t': 'ptr', 'pts_to': {'_t': 'char', 'signed': true, 'label': 'Char'}, 'label': 'LPArray'}, {'_t': 'ptr', 'pts_to': {'_t': 'int', 'signed': false, 'label': 'UInt'}, 'label': 'UIntPtr'}], 'returnty': {'_t': '_ref', 'name': 'WIN32_ERROR', 'ot': 'int'}, 'arg_names': ['InterfaceLuid', 'InterfaceAlias', 'Length']}"
|
|
46
46
|
},
|
|
47
47
|
"ConvertInterfaceLuidToGuid": {
|
|
48
|
-
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': 'union', 'members': {'Value': {'_t': 'llong', 'signed': false, 'label': 'UInt64'}, 'Info': {'_t': '_ref', 'name': '_Info_e__Struct', 'ot': '_ref'}}, 'name': '<anon>'}}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
48
|
+
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': 'union', 'members': {'Value': {'_t': 'llong', 'signed': false, 'label': 'UInt64'}, 'Info': {'_t': '_ref', 'name': '_Info_e__Struct', 'ot': '_ref'}}, 'name': '<anon>'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}], 'returnty': {'_t': '_ref', 'name': 'WIN32_ERROR', 'ot': 'int'}, 'arg_names': ['InterfaceLuid', 'InterfaceGuid']}"
|
|
49
49
|
},
|
|
50
50
|
"ConvertInterfaceLuidToIndex": {
|
|
51
51
|
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': 'union', 'members': {'Value': {'_t': 'llong', 'signed': false, 'label': 'UInt64'}, 'Info': {'_t': '_ref', 'name': '_Info_e__Struct', 'ot': '_ref'}}, 'name': '<anon>'}}, {'_t': 'ptr', 'pts_to': {'_t': 'int', 'signed': false, 'label': 'UInt32'}}], 'returnty': {'_t': '_ref', 'name': 'WIN32_ERROR', 'ot': 'int'}, 'arg_names': ['InterfaceLuid', 'InterfaceIndex']}"
|
|
@@ -237,7 +237,7 @@
|
|
|
237
237
|
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': 'union', 'members': {'Value': {'_t': 'llong', 'signed': false, 'label': 'UInt64'}, 'Info': {'_t': '_ref', 'name': '_Info_e__Struct', 'ot': '_ref'}}, 'name': '<anon>'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'INTERFACE_TIMESTAMP_CAPABILITIES', 'ot': '_ref'}}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['InterfaceLuid', 'TimestampCapabilites']}"
|
|
238
238
|
},
|
|
239
239
|
"GetInterfaceDnsSettings": {
|
|
240
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '
|
|
240
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'Guid', 'ot': 'struct'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'DNS_INTERFACE_SETTINGS', 'ot': '_ref'}}], 'returnty': {'_t': '_ref', 'name': 'WIN32_ERROR', 'ot': 'int'}, 'arg_names': ['Interface', 'Settings']}"
|
|
241
241
|
},
|
|
242
242
|
"GetInterfaceHardwareTimestampCapabilities": {
|
|
243
243
|
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': 'union', 'members': {'Value': {'_t': 'llong', 'signed': false, 'label': 'UInt64'}, 'Info': {'_t': '_ref', 'name': '_Info_e__Struct', 'ot': '_ref'}}, 'name': '<anon>'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'INTERFACE_TIMESTAMP_CAPABILITIES', 'ot': '_ref'}}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['InterfaceLuid', 'TimestampCapabilites']}"
|
|
@@ -312,7 +312,7 @@
|
|
|
312
312
|
"proto": "{'_t': 'func', 'args': [{'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'NL_NETWORK_CONNECTIVITY_HINT', 'ot': '_ref'}}], 'returnty': {'_t': '_ref', 'name': 'WIN32_ERROR', 'ot': 'int'}, 'arg_names': ['InterfaceIndex', 'ConnectivityHint']}"
|
|
313
313
|
},
|
|
314
314
|
"GetNetworkInformation": {
|
|
315
|
-
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '
|
|
315
|
+
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': 'int', 'signed': false, 'label': 'UInt32'}}, {'_t': 'ptr', 'pts_to': {'_t': 'int', 'signed': false, 'label': 'UInt32'}}, {'_t': 'ptr', 'pts_to': {'_t': 'char', 'signed': true, 'label': 'Char'}, 'label': 'LPArray'}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}], 'returnty': {'_t': '_ref', 'name': 'WIN32_ERROR', 'ot': 'int'}, 'arg_names': ['NetworkGuid', 'CompartmentId', 'SiteId', 'NetworkName', 'Length']}"
|
|
316
316
|
},
|
|
317
317
|
"GetNetworkParams": {
|
|
318
318
|
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FIXED_INFO_W2KSP1', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': 'int', 'signed': false, 'label': 'UInt32'}}], 'returnty': {'_t': '_ref', 'name': 'WIN32_ERROR', 'ot': 'int'}, 'arg_names': ['pFixedInfo', 'pOutBufLen']}"
|
|
@@ -555,7 +555,7 @@
|
|
|
555
555
|
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'MIB_IFROW', 'ot': '_ref'}}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['pIfRow']}"
|
|
556
556
|
},
|
|
557
557
|
"SetInterfaceDnsSettings": {
|
|
558
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '
|
|
558
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'Guid', 'ot': 'struct'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'DNS_INTERFACE_SETTINGS', 'ot': '_ref'}}], 'returnty': {'_t': '_ref', 'name': 'WIN32_ERROR', 'ot': 'int'}, 'arg_names': ['Interface', 'Settings']}"
|
|
559
559
|
},
|
|
560
560
|
"SetIpForwardEntry": {
|
|
561
561
|
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'MIB_IPFORWARDROW', 'ot': '_ref'}}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['pRoute']}"
|
|
@@ -585,7 +585,7 @@
|
|
|
585
585
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}], 'returnty': {'_t': '_ref', 'name': 'WIN32_ERROR', 'ot': 'int'}, 'arg_names': ['JobHandle', 'CompartmentId']}"
|
|
586
586
|
},
|
|
587
587
|
"SetNetworkInformation": {
|
|
588
|
-
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '
|
|
588
|
+
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': '_ref', 'name': 'PWSTR', 'ot': 'ptr'}], 'returnty': {'_t': '_ref', 'name': 'WIN32_ERROR', 'ot': 'int'}, 'arg_names': ['NetworkGuid', 'CompartmentId', 'NetworkName']}"
|
|
589
589
|
},
|
|
590
590
|
"SetPerTcp6ConnectionEStats": {
|
|
591
591
|
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'MIB_TCP6ROW', 'ot': '_ref'}}, {'_t': '_ref', 'name': 'TCP_ESTATS_TYPE', 'ot': 'int'}, {'_t': 'ptr', 'pts_to': {'_t': 'char', 'signed': false, 'label': 'Byte'}}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['Row', 'EstatsType', 'Rw', 'RwVersion', 'RwSize', 'Offset']}"
|
|
@@ -1026,13 +1026,13 @@
|
|
|
1026
1026
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'char', 'signed': true, 'label': 'Char'}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': '_ref', 'name': 'COORD', 'ot': '_ref'}, {'_t': 'ptr', 'pts_to': {'_t': 'int', 'signed': false, 'label': 'UInt32'}}], 'returnty': {'_t': '_ref', 'name': 'BOOL', 'ot': 'int'}, 'arg_names': ['hConsoleOutput', 'cCharacter', 'nLength', 'dwWriteCoord', 'lpNumberOfCharsWritten']}"
|
|
1027
1027
|
},
|
|
1028
1028
|
"FindActCtxSectionGuid": {
|
|
1029
|
-
"proto": "{'_t': 'func', 'args': [{'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
1029
|
+
"proto": "{'_t': 'func', 'args': [{'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'ACTCTX_SECTION_KEYED_DATA', 'ot': '_ref'}}], 'returnty': {'_t': '_ref', 'name': 'BOOL', 'ot': 'int'}, 'arg_names': ['dwFlags', 'lpExtensionGuid', 'ulSectionId', 'lpGuidToFind', 'ReturnedData']}"
|
|
1030
1030
|
},
|
|
1031
1031
|
"FindActCtxSectionStringA": {
|
|
1032
|
-
"proto": "{'_t': 'func', 'args': [{'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
1032
|
+
"proto": "{'_t': 'func', 'args': [{'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': '_ref', 'name': 'PSTR', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'ACTCTX_SECTION_KEYED_DATA', 'ot': '_ref'}}], 'returnty': {'_t': '_ref', 'name': 'BOOL', 'ot': 'int'}, 'arg_names': ['dwFlags', 'lpExtensionGuid', 'ulSectionId', 'lpStringToFind', 'ReturnedData']}"
|
|
1033
1033
|
},
|
|
1034
1034
|
"FindActCtxSectionStringW": {
|
|
1035
|
-
"proto": "{'_t': 'func', 'args': [{'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
1035
|
+
"proto": "{'_t': 'func', 'args': [{'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': '_ref', 'name': 'PWSTR', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'ACTCTX_SECTION_KEYED_DATA', 'ot': '_ref'}}], 'returnty': {'_t': '_ref', 'name': 'BOOL', 'ot': 'int'}, 'arg_names': ['dwFlags', 'lpExtensionGuid', 'ulSectionId', 'lpStringToFind', 'ReturnedData']}"
|
|
1036
1036
|
},
|
|
1037
1037
|
"FindAtomA": {
|
|
1038
1038
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'PSTR', 'ot': 'ptr'}], 'returnty': {'_t': 'short', 'signed': false, 'label': 'UInt16'}, 'arg_names': ['lpString']}"
|
|
@@ -3222,7 +3222,7 @@
|
|
|
3222
3222
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': 'llong', 'signed': false, 'label': 'UInt64'}}], 'returnty': {'_t': '_ref', 'name': 'BOOL', 'ot': 'int'}, 'arg_names': ['ProcessHandle', 'CycleTime']}"
|
|
3223
3223
|
},
|
|
3224
3224
|
"QueryProtectedPolicy": {
|
|
3225
|
-
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '
|
|
3225
|
+
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': 'ptr', 'pts_to': {'_t': 'int', 'signed': false, 'label': 'UInt'}, 'label': 'UIntPtr'}}], 'returnty': {'_t': '_ref', 'name': 'BOOL', 'ot': 'int'}, 'arg_names': ['PolicyGuid', 'PolicyValue']}"
|
|
3226
3226
|
},
|
|
3227
3227
|
"QueryThreadCycleTime": {
|
|
3228
3228
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': 'llong', 'signed': false, 'label': 'UInt64'}}], 'returnty': {'_t': '_ref', 'name': 'BOOL', 'ot': 'int'}, 'arg_names': ['ThreadHandle', 'CycleTime']}"
|
|
@@ -3861,7 +3861,7 @@
|
|
|
3861
3861
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': 'int', 'signed': false, 'label': 'UInt'}, 'label': 'UIntPtr'}, {'_t': 'ptr', 'pts_to': {'_t': 'int', 'signed': false, 'label': 'UInt'}, 'label': 'UIntPtr'}, {'_t': '_ref', 'name': 'SETPROCESSWORKINGSETSIZEEX_FLAGS', 'ot': 'int'}], 'returnty': {'_t': '_ref', 'name': 'BOOL', 'ot': 'int'}, 'arg_names': ['hProcess', 'dwMinimumWorkingSetSize', 'dwMaximumWorkingSetSize', 'Flags']}"
|
|
3862
3862
|
},
|
|
3863
3863
|
"SetProtectedPolicy": {
|
|
3864
|
-
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '
|
|
3864
|
+
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': 'int', 'signed': false, 'label': 'UInt'}, 'label': 'UIntPtr'}, {'_t': 'ptr', 'pts_to': {'_t': 'ptr', 'pts_to': {'_t': 'int', 'signed': false, 'label': 'UInt'}, 'label': 'UIntPtr'}}], 'returnty': {'_t': '_ref', 'name': 'BOOL', 'ot': 'int'}, 'arg_names': ['PolicyGuid', 'PolicyValue', 'OldPolicyValue']}"
|
|
3865
3865
|
},
|
|
3866
3866
|
"SetSearchPathMode": {
|
|
3867
3867
|
"proto": "{'_t': 'func', 'args': [{'_t': 'int', 'signed': false, 'label': 'UInt32'}], 'returnty': {'_t': '_ref', 'name': 'BOOL', 'ot': 'int'}, 'arg_names': ['Flags']}"
|
|
@@ -21,10 +21,10 @@
|
|
|
21
21
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': 'ptr', 'pts_to': {'_t': 'bot', 'label': 'Void'}}}], 'returnty': {'_t': '_ref', 'name': 'HRESULT', 'ot': 'int'}, 'arg_names': ['FilterHandle', 'PinFactoryId', 'PropertyId', 'Items']}"
|
|
22
22
|
},
|
|
23
23
|
"KsOpenDefaultDevice": {
|
|
24
|
-
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '
|
|
24
|
+
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'HANDLE', 'ot': '_ref'}}], 'returnty': {'_t': '_ref', 'name': 'HRESULT', 'ot': 'int'}, 'arg_names': ['Category', 'Access', 'DeviceHandle']}"
|
|
25
25
|
},
|
|
26
26
|
"KsResolveRequiredAttributes": {
|
|
27
|
-
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': 'union', 'members': {'Anonymous': {'_t': 'struct', 'fields': {'FormatSize': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'Flags': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'SampleSize': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'Reserved': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'MajorFormat': {'_t': '
|
|
27
|
+
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': 'union', 'members': {'Anonymous': {'_t': 'struct', 'fields': {'FormatSize': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'Flags': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'SampleSize': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'Reserved': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'MajorFormat': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}, 'SubFormat': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}, 'Specifier': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, 'name': '_Anonymous_e__Struct', 'anonymous': true}, 'Alignment': {'_t': 'llong', 'label': 'Int64'}}, 'name': '<anon>'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'KSMULTIPLE_ITEM', 'ot': '_ref'}}], 'returnty': {'_t': '_ref', 'name': 'HRESULT', 'ot': 'int'}, 'arg_names': ['DataRange', 'Attributes']}"
|
|
28
28
|
},
|
|
29
29
|
"KsSynchronousDeviceControl": {
|
|
30
30
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': 'bot', 'label': 'Void'}}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': 'bot', 'label': 'Void'}}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': 'int', 'signed': false, 'label': 'UInt32'}}], 'returnty': {'_t': '_ref', 'name': 'HRESULT', 'ot': 'int'}, 'arg_names': ['Handle', 'IoControl', 'InBuffer', 'InLength', 'OutBuffer', 'OutLength', 'BytesReturned']}"
|
|
@@ -27,10 +27,10 @@
|
|
|
27
27
|
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'SECURITY_ATTRIBUTES', 'ot': '_ref'}}, {'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': 'bot', 'label': 'Void'}}], 'returnty': {'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, 'arg_names': ['lpEnlistmentAttributes', 'ResourceManagerHandle', 'TransactionHandle', 'NotificationMask', 'CreateOptions', 'EnlistmentKey']}"
|
|
28
28
|
},
|
|
29
29
|
"CreateResourceManager": {
|
|
30
|
-
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'SECURITY_ATTRIBUTES', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
30
|
+
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'SECURITY_ATTRIBUTES', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': '_ref', 'name': 'PWSTR', 'ot': 'ptr'}], 'returnty': {'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, 'arg_names': ['lpResourceManagerAttributes', 'ResourceManagerId', 'CreateOptions', 'TmHandle', 'Description']}"
|
|
31
31
|
},
|
|
32
32
|
"CreateTransaction": {
|
|
33
|
-
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'SECURITY_ATTRIBUTES', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
33
|
+
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'SECURITY_ATTRIBUTES', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': '_ref', 'name': 'PWSTR', 'ot': 'ptr'}], 'returnty': {'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, 'arg_names': ['lpTransactionAttributes', 'UOW', 'CreateOptions', 'IsolationLevel', 'IsolationFlags', 'Timeout', 'Description']}"
|
|
34
34
|
},
|
|
35
35
|
"CreateTransactionManager": {
|
|
36
36
|
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'SECURITY_ATTRIBUTES', 'ot': '_ref'}}, {'_t': '_ref', 'name': 'PWSTR', 'ot': 'ptr'}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}], 'returnty': {'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, 'arg_names': ['lpTransactionAttributes', 'LogFileName', 'CreateOptions', 'CommitStrength']}"
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': 'llong', 'label': 'Int64'}}], 'returnty': {'_t': '_ref', 'name': 'BOOL', 'ot': 'int'}, 'arg_names': ['TransactionManagerHandle', 'TmVirtualClock']}"
|
|
40
40
|
},
|
|
41
41
|
"GetEnlistmentId": {
|
|
42
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
42
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}], 'returnty': {'_t': '_ref', 'name': 'BOOL', 'ot': 'int'}, 'arg_names': ['EnlistmentHandle', 'EnlistmentId']}"
|
|
43
43
|
},
|
|
44
44
|
"GetEnlistmentRecoveryInformation": {
|
|
45
45
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': 'bot', 'label': 'Void'}}, {'_t': 'ptr', 'pts_to': {'_t': 'int', 'signed': false, 'label': 'UInt32'}}], 'returnty': {'_t': '_ref', 'name': 'BOOL', 'ot': 'int'}, 'arg_names': ['EnlistmentHandle', 'BufferSize', 'Buffer', 'BufferUsed']}"
|
|
@@ -51,28 +51,28 @@
|
|
|
51
51
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'TRANSACTION_NOTIFICATION', 'ot': '_ref'}}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': 'int', 'signed': false, 'label': 'UInt32'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'OVERLAPPED', 'ot': '_ref'}}], 'returnty': {'_t': '_ref', 'name': 'BOOL', 'ot': 'int'}, 'arg_names': ['ResourceManagerHandle', 'TransactionNotification', 'TransactionNotificationLength', 'ReturnLength', 'lpOverlapped']}"
|
|
52
52
|
},
|
|
53
53
|
"GetTransactionId": {
|
|
54
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
54
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}], 'returnty': {'_t': '_ref', 'name': 'BOOL', 'ot': 'int'}, 'arg_names': ['TransactionHandle', 'TransactionId']}"
|
|
55
55
|
},
|
|
56
56
|
"GetTransactionInformation": {
|
|
57
57
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': 'int', 'signed': false, 'label': 'UInt32'}}, {'_t': 'ptr', 'pts_to': {'_t': 'int', 'signed': false, 'label': 'UInt32'}}, {'_t': 'ptr', 'pts_to': {'_t': 'int', 'signed': false, 'label': 'UInt32'}}, {'_t': 'ptr', 'pts_to': {'_t': 'int', 'signed': false, 'label': 'UInt32'}}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': 'char', 'signed': true, 'label': 'Char'}, 'label': 'LPArray'}], 'returnty': {'_t': '_ref', 'name': 'BOOL', 'ot': 'int'}, 'arg_names': ['TransactionHandle', 'Outcome', 'IsolationLevel', 'IsolationFlags', 'Timeout', 'BufferLength', 'Description']}"
|
|
58
58
|
},
|
|
59
59
|
"GetTransactionManagerId": {
|
|
60
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
60
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}], 'returnty': {'_t': '_ref', 'name': 'BOOL', 'ot': 'int'}, 'arg_names': ['TransactionManagerHandle', 'TransactionManagerId']}"
|
|
61
61
|
},
|
|
62
62
|
"OpenEnlistment": {
|
|
63
|
-
"proto": "{'_t': 'func', 'args': [{'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
63
|
+
"proto": "{'_t': 'func', 'args': [{'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}], 'returnty': {'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, 'arg_names': ['dwDesiredAccess', 'ResourceManagerHandle', 'EnlistmentId']}"
|
|
64
64
|
},
|
|
65
65
|
"OpenResourceManager": {
|
|
66
|
-
"proto": "{'_t': 'func', 'args': [{'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
66
|
+
"proto": "{'_t': 'func', 'args': [{'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}], 'returnty': {'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, 'arg_names': ['dwDesiredAccess', 'TmHandle', 'ResourceManagerId']}"
|
|
67
67
|
},
|
|
68
68
|
"OpenTransaction": {
|
|
69
|
-
"proto": "{'_t': 'func', 'args': [{'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
69
|
+
"proto": "{'_t': 'func', 'args': [{'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}], 'returnty': {'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, 'arg_names': ['dwDesiredAccess', 'TransactionId']}"
|
|
70
70
|
},
|
|
71
71
|
"OpenTransactionManager": {
|
|
72
72
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'PWSTR', 'ot': 'ptr'}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}], 'returnty': {'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, 'arg_names': ['LogFileName', 'DesiredAccess', 'OpenOptions']}"
|
|
73
73
|
},
|
|
74
74
|
"OpenTransactionManagerById": {
|
|
75
|
-
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '
|
|
75
|
+
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}], 'returnty': {'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, 'arg_names': ['TransactionManagerId', 'DesiredAccess', 'OpenOptions']}"
|
|
76
76
|
},
|
|
77
77
|
"PrePrepareComplete": {
|
|
78
78
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': 'llong', 'label': 'Int64'}}], 'returnty': {'_t': '_ref', 'name': 'BOOL', 'ot': 'int'}, 'arg_names': ['EnlistmentHandle', 'TmVirtualClock']}"
|
|
@@ -99,7 +99,7 @@
|
|
|
99
99
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}], 'returnty': {'_t': '_ref', 'name': 'BOOL', 'ot': 'int'}, 'arg_names': ['TransactionManagerHandle']}"
|
|
100
100
|
},
|
|
101
101
|
"RenameTransactionManager": {
|
|
102
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'PWSTR', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
102
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'PWSTR', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}], 'returnty': {'_t': '_ref', 'name': 'BOOL', 'ot': 'int'}, 'arg_names': ['LogFileName', 'ExistingTransactionManagerGuid']}"
|
|
103
103
|
},
|
|
104
104
|
"RollbackComplete": {
|
|
105
105
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': 'llong', 'label': 'Int64'}}], 'returnty': {'_t': '_ref', 'name': 'BOOL', 'ot': 'int'}, 'arg_names': ['EnlistmentHandle', 'TmVirtualClock']}"
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'LPMSGSESS', 'ot': 'ptr'}], 'returnty': {'_t': 'bot', 'label': 'Void'}, 'arg_names': ['lpMsgSess']}"
|
|
22
22
|
},
|
|
23
23
|
"CreateIProp": {
|
|
24
|
-
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '
|
|
24
|
+
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': 'func', 'args': [{'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': 'ptr', 'pts_to': {'_t': 'bot', 'label': 'Void'}}}], 'returnty': {'_t': 'int', 'label': 'Int32'}, 'arg_names': ['cbSize', 'lppBuffer']}}, {'_t': 'ptr', 'pts_to': {'_t': 'func', 'args': [{'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': 'bot', 'label': 'Void'}}, {'_t': 'ptr', 'pts_to': {'_t': 'ptr', 'pts_to': {'_t': 'bot', 'label': 'Void'}}}], 'returnty': {'_t': 'int', 'label': 'Int32'}, 'arg_names': ['cbSize', 'lpObject', 'lppBuffer']}}, {'_t': 'ptr', 'pts_to': {'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': 'bot', 'label': 'Void'}}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['lpBuffer']}}, {'_t': 'ptr', 'pts_to': {'_t': 'bot', 'label': 'Void'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'IPropData', 'ot': '_ref'}}], 'returnty': {'_t': 'int', 'label': 'Int32'}, 'arg_names': ['lpInterface', 'lpAllocateBuffer', 'lpAllocateMore', 'lpFreeBuffer', 'lpvReserved', 'lppPropData']}"
|
|
25
25
|
},
|
|
26
26
|
"DeinitMapiUtil": {
|
|
27
27
|
"proto": "{'_t': 'func', 'args': [], 'returnty': {'_t': 'bot', 'label': 'Void'}, 'arg_names': []}"
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'IMAPIProp', 'ot': 'bot'}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'SPropValue', 'ot': '_ref'}}}], 'returnty': {'_t': '_ref', 'name': 'HRESULT', 'ot': 'int'}, 'arg_names': ['lpMapiProp', 'ulPropTag', 'lppProp']}"
|
|
91
91
|
},
|
|
92
92
|
"HrIStorageFromStream": {
|
|
93
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'IUnknown', 'ot': 'bot'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
93
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'IUnknown', 'ot': 'bot'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'IStorage', 'ot': '_ref'}}], 'returnty': {'_t': '_ref', 'name': 'HRESULT', 'ot': 'int'}, 'arg_names': ['lpUnkIn', 'lpInterface', 'ulFlags', 'lppStorageOut']}"
|
|
94
94
|
},
|
|
95
95
|
"HrQueryAllRows": {
|
|
96
96
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'IMAPITable', 'ot': 'bot'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'SPropTagArray', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'SRestriction', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'SSortOrderSet', 'ot': '_ref'}}, {'_t': 'int', 'label': 'Int32'}, {'_t': 'ptr', 'pts_to': {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'SRowSet', 'ot': '_ref'}}}], 'returnty': {'_t': '_ref', 'name': 'HRESULT', 'ot': 'int'}, 'arg_names': ['lpTable', 'lpPropTags', 'lpRestriction', 'lpSortOrderSet', 'crowsMax', 'lppRows']}"
|
|
@@ -93,10 +93,10 @@
|
|
|
93
93
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'IMFAttributes', 'ot': 'bot'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'IMFMediaSession', 'ot': '_ref'}}], 'returnty': {'_t': '_ref', 'name': 'HRESULT', 'ot': 'int'}, 'arg_names': ['pConfiguration', 'ppMediaSession']}"
|
|
94
94
|
},
|
|
95
95
|
"MFCreateMuxSink": {
|
|
96
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '
|
|
96
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'Guid', 'ot': 'struct'}, {'_t': '_ref', 'name': 'IMFAttributes', 'ot': 'bot'}, {'_t': '_ref', 'name': 'IMFByteStream', 'ot': 'bot'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'IMFMediaSink', 'ot': '_ref'}}], 'returnty': {'_t': '_ref', 'name': 'HRESULT', 'ot': 'int'}, 'arg_names': ['guidOutputSubType', 'pOutputAttributes', 'pOutputByteStream', 'ppMuxSink']}"
|
|
97
97
|
},
|
|
98
98
|
"MFCreateNetSchemePlugin": {
|
|
99
|
-
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '
|
|
99
|
+
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': 'ptr', 'pts_to': {'_t': 'bot', 'label': 'Void'}}}], 'returnty': {'_t': '_ref', 'name': 'HRESULT', 'ot': 'int'}, 'arg_names': ['riid', 'ppvHandler']}"
|
|
100
100
|
},
|
|
101
101
|
"MFCreatePMPMediaSession": {
|
|
102
102
|
"proto": "{'_t': 'func', 'args': [{'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': '_ref', 'name': 'IMFAttributes', 'ot': 'bot'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'IMFMediaSession', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'IMFActivate', 'ot': '_ref'}}], 'returnty': {'_t': '_ref', 'name': 'HRESULT', 'ot': 'int'}, 'arg_names': ['dwCreationFlags', 'pConfiguration', 'ppMediaSession', 'ppEnablerActivate']}"
|
|
@@ -159,7 +159,7 @@
|
|
|
159
159
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'IMFMediaSource', 'ot': 'bot'}, {'_t': '_ref', 'name': 'IMFByteStream', 'ot': 'bot'}, {'_t': '_ref', 'name': 'IMFTranscodeProfile', 'ot': 'bot'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'IMFTopology', 'ot': '_ref'}}], 'returnty': {'_t': '_ref', 'name': 'HRESULT', 'ot': 'int'}, 'arg_names': ['pSrc', 'pOutputStream', 'pProfile', 'ppTranscodeTopo']}"
|
|
160
160
|
},
|
|
161
161
|
"MFCreateVideoRenderer": {
|
|
162
|
-
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '
|
|
162
|
+
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': 'ptr', 'pts_to': {'_t': 'bot', 'label': 'Void'}}}], 'returnty': {'_t': '_ref', 'name': 'HRESULT', 'ot': 'int'}, 'arg_names': ['riidRenderer', 'ppVideoRenderer']}"
|
|
163
163
|
},
|
|
164
164
|
"MFCreateVideoRendererActivate": {
|
|
165
165
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HWND', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'IMFActivate', 'ot': '_ref'}}], 'returnty': {'_t': '_ref', 'name': 'HRESULT', 'ot': 'int'}, 'arg_names': ['hwndVideo', 'ppActivate']}"
|
|
@@ -177,7 +177,7 @@
|
|
|
177
177
|
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': 'char', 'signed': false, 'label': 'Byte'}}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'PWSTR', 'ot': '_ref'}}], 'returnty': {'_t': '_ref', 'name': 'HRESULT', 'ot': 'int'}, 'arg_names': ['verifier', 'size', 'id']}"
|
|
178
178
|
},
|
|
179
179
|
"MFGetService": {
|
|
180
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'IUnknown', 'ot': 'bot'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
180
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'IUnknown', 'ot': 'bot'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': 'ptr', 'pts_to': {'_t': 'bot', 'label': 'Void'}}}], 'returnty': {'_t': '_ref', 'name': 'HRESULT', 'ot': 'int'}, 'arg_names': ['punkObject', 'guidService', 'riid', 'ppvObject']}"
|
|
181
181
|
},
|
|
182
182
|
"MFGetSystemId": {
|
|
183
183
|
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'IMFSystemId', 'ot': '_ref'}}], 'returnty': {'_t': '_ref', 'name': 'HRESULT', 'ot': 'int'}, 'arg_names': ['ppId']}"
|
|
@@ -195,7 +195,7 @@
|
|
|
195
195
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'IUnknown', 'ot': 'bot'}], 'returnty': {'_t': '_ref', 'name': 'HRESULT', 'ot': 'int'}, 'arg_names': ['pUnk']}"
|
|
196
196
|
},
|
|
197
197
|
"MFTranscodeGetAudioOutputAvailableTypes": {
|
|
198
|
-
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '
|
|
198
|
+
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': '_ref', 'name': 'IMFAttributes', 'ot': 'bot'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'IMFCollection', 'ot': '_ref'}}], 'returnty': {'_t': '_ref', 'name': 'HRESULT', 'ot': 'int'}, 'arg_names': ['guidSubType', 'dwMFTFlags', 'pCodecConfig', 'ppAvailableTypes']}"
|
|
199
199
|
}
|
|
200
200
|
}
|
|
201
201
|
}
|