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
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'id']}"
|
|
22
22
|
},
|
|
23
23
|
"FwpmCalloutDeleteByKey0": {
|
|
24
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
24
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'key']}"
|
|
25
25
|
},
|
|
26
26
|
"FwpmCalloutDestroyEnumHandle0": {
|
|
27
27
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'enumHandle']}"
|
|
@@ -33,13 +33,13 @@
|
|
|
33
33
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FWPM_CALLOUT0', 'ot': '_ref'}}}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'id', 'callout']}"
|
|
34
34
|
},
|
|
35
35
|
"FwpmCalloutGetByKey0": {
|
|
36
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
36
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FWPM_CALLOUT0', 'ot': '_ref'}}}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'key', 'callout']}"
|
|
37
37
|
},
|
|
38
38
|
"FwpmCalloutGetSecurityInfoByKey0": {
|
|
39
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
39
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'PSID', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'PSID', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'ACL', 'ot': '_ref'}}}, {'_t': 'ptr', 'pts_to': {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'ACL', 'ot': '_ref'}}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'PSECURITY_DESCRIPTOR', 'ot': '_ref'}}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'key', 'securityInfo', 'sidOwner', 'sidGroup', 'dacl', 'sacl', 'securityDescriptor']}"
|
|
40
40
|
},
|
|
41
41
|
"FwpmCalloutSetSecurityInfoByKey0": {
|
|
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'}}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'SID', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'SID', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'ACL', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'ACL', 'ot': '_ref'}}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'key', 'securityInfo', 'sidOwner', 'sidGroup', 'dacl', 'sacl']}"
|
|
43
43
|
},
|
|
44
44
|
"FwpmCalloutSubscribeChanges0": {
|
|
45
45
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FWPM_CALLOUT_SUBSCRIPTION0', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': 'bot', 'label': 'Void'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FWPM_CALLOUT_CHANGE0', 'ot': '_ref'}}], 'returnty': {'_t': 'bot', 'label': 'Void'}, 'arg_names': ['context', 'change']}}, {'_t': 'ptr', 'pts_to': {'_t': 'bot', 'label': 'Void'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'HANDLE', 'ot': '_ref'}}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'subscription', 'callback', 'context', 'changeHandle']}"
|
|
@@ -108,7 +108,7 @@
|
|
|
108
108
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'llong', 'signed': false, 'label': 'UInt64'}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'id']}"
|
|
109
109
|
},
|
|
110
110
|
"FwpmFilterDeleteByKey0": {
|
|
111
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
111
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'key']}"
|
|
112
112
|
},
|
|
113
113
|
"FwpmFilterDestroyEnumHandle0": {
|
|
114
114
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'enumHandle']}"
|
|
@@ -120,13 +120,13 @@
|
|
|
120
120
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'llong', 'signed': false, 'label': 'UInt64'}, {'_t': 'ptr', 'pts_to': {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FWPM_FILTER0', 'ot': '_ref'}}}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'id', 'filter']}"
|
|
121
121
|
},
|
|
122
122
|
"FwpmFilterGetByKey0": {
|
|
123
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
123
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FWPM_FILTER0', 'ot': '_ref'}}}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'key', 'filter']}"
|
|
124
124
|
},
|
|
125
125
|
"FwpmFilterGetSecurityInfoByKey0": {
|
|
126
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
126
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'PSID', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'PSID', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'ACL', 'ot': '_ref'}}}, {'_t': 'ptr', 'pts_to': {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'ACL', 'ot': '_ref'}}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'PSECURITY_DESCRIPTOR', 'ot': '_ref'}}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'key', 'securityInfo', 'sidOwner', 'sidGroup', 'dacl', 'sacl', 'securityDescriptor']}"
|
|
127
127
|
},
|
|
128
128
|
"FwpmFilterSetSecurityInfoByKey0": {
|
|
129
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
129
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'SID', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'SID', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'ACL', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'ACL', 'ot': '_ref'}}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'key', 'securityInfo', 'sidOwner', 'sidGroup', 'dacl', 'sacl']}"
|
|
130
130
|
},
|
|
131
131
|
"FwpmFilterSubscribeChanges0": {
|
|
132
132
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FWPM_FILTER_SUBSCRIPTION0', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': 'bot', 'label': 'Void'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FWPM_FILTER_CHANGE0', 'ot': '_ref'}}], 'returnty': {'_t': 'bot', 'label': 'Void'}, 'arg_names': ['context', 'change']}}, {'_t': 'ptr', 'pts_to': {'_t': 'bot', 'label': 'Void'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'HANDLE', 'ot': '_ref'}}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'subscription', 'callback', 'context', 'changeHandle']}"
|
|
@@ -147,16 +147,16 @@
|
|
|
147
147
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FWPM_PROVIDER_CONTEXT0', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FWPM_PROVIDER_CONTEXT0', 'ot': '_ref'}}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FWPM_FILTER_CONDITION0', 'ot': '_ref'}, 'label': 'LPArray'}, {'_t': '_ref', 'name': 'PSECURITY_DESCRIPTOR', 'ot': 'ptr'}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'flags', 'mainModePolicy', 'tunnelPolicy', 'numFilterConditions', 'filterConditions', 'sd']}"
|
|
148
148
|
},
|
|
149
149
|
"FwpmIPsecTunnelAdd1": {
|
|
150
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FWPM_PROVIDER_CONTEXT1', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FWPM_PROVIDER_CONTEXT1', 'ot': '_ref'}}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FWPM_FILTER_CONDITION0', 'ot': '_ref'}, 'label': 'LPArray'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
150
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FWPM_PROVIDER_CONTEXT1', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FWPM_PROVIDER_CONTEXT1', 'ot': '_ref'}}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FWPM_FILTER_CONDITION0', 'ot': '_ref'}, 'label': 'LPArray'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': '_ref', 'name': 'PSECURITY_DESCRIPTOR', 'ot': 'ptr'}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'flags', 'mainModePolicy', 'tunnelPolicy', 'numFilterConditions', 'filterConditions', 'keyModKey', 'sd']}"
|
|
151
151
|
},
|
|
152
152
|
"FwpmIPsecTunnelAdd2": {
|
|
153
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FWPM_PROVIDER_CONTEXT2', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FWPM_PROVIDER_CONTEXT2', 'ot': '_ref'}}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FWPM_FILTER_CONDITION0', 'ot': '_ref'}, 'label': 'LPArray'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
153
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FWPM_PROVIDER_CONTEXT2', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FWPM_PROVIDER_CONTEXT2', 'ot': '_ref'}}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FWPM_FILTER_CONDITION0', 'ot': '_ref'}, 'label': 'LPArray'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': '_ref', 'name': 'PSECURITY_DESCRIPTOR', 'ot': 'ptr'}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'flags', 'mainModePolicy', 'tunnelPolicy', 'numFilterConditions', 'filterConditions', 'keyModKey', 'sd']}"
|
|
154
154
|
},
|
|
155
155
|
"FwpmIPsecTunnelAdd3": {
|
|
156
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FWPM_PROVIDER_CONTEXT3', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FWPM_PROVIDER_CONTEXT3', 'ot': '_ref'}}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FWPM_FILTER_CONDITION0', 'ot': '_ref'}, 'label': 'LPArray'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
156
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FWPM_PROVIDER_CONTEXT3', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FWPM_PROVIDER_CONTEXT3', 'ot': '_ref'}}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FWPM_FILTER_CONDITION0', 'ot': '_ref'}, 'label': 'LPArray'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': '_ref', 'name': 'PSECURITY_DESCRIPTOR', 'ot': 'ptr'}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'flags', 'mainModePolicy', 'tunnelPolicy', 'numFilterConditions', 'filterConditions', 'keyModKey', 'sd']}"
|
|
157
157
|
},
|
|
158
158
|
"FwpmIPsecTunnelDeleteByKey0": {
|
|
159
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
159
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'key']}"
|
|
160
160
|
},
|
|
161
161
|
"FwpmLayerCreateEnumHandle0": {
|
|
162
162
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FWPM_LAYER_ENUM_TEMPLATE0', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'HANDLE', 'ot': '_ref'}}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'enumTemplate', 'enumHandle']}"
|
|
@@ -171,13 +171,13 @@
|
|
|
171
171
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'short', 'signed': false, 'label': 'UInt16'}, {'_t': 'ptr', 'pts_to': {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FWPM_LAYER0', 'ot': '_ref'}}}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'id', 'layer']}"
|
|
172
172
|
},
|
|
173
173
|
"FwpmLayerGetByKey0": {
|
|
174
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
174
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FWPM_LAYER0', 'ot': '_ref'}}}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'key', 'layer']}"
|
|
175
175
|
},
|
|
176
176
|
"FwpmLayerGetSecurityInfoByKey0": {
|
|
177
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
177
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'PSID', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'PSID', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'ACL', 'ot': '_ref'}}}, {'_t': 'ptr', 'pts_to': {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'ACL', 'ot': '_ref'}}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'PSECURITY_DESCRIPTOR', 'ot': '_ref'}}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'key', 'securityInfo', 'sidOwner', 'sidGroup', 'dacl', 'sacl', 'securityDescriptor']}"
|
|
178
178
|
},
|
|
179
179
|
"FwpmLayerSetSecurityInfoByKey0": {
|
|
180
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
180
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'SID', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'SID', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'ACL', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'ACL', 'ot': '_ref'}}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'key', 'securityInfo', 'sidOwner', 'sidGroup', 'dacl', 'sacl']}"
|
|
181
181
|
},
|
|
182
182
|
"FwpmNetEventCreateEnumHandle0": {
|
|
183
183
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FWPM_NET_EVENT_ENUM_TEMPLATE0', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'HANDLE', 'ot': '_ref'}}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'enumTemplate', 'enumHandle']}"
|
|
@@ -252,7 +252,7 @@
|
|
|
252
252
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'llong', 'signed': false, 'label': 'UInt64'}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'id']}"
|
|
253
253
|
},
|
|
254
254
|
"FwpmProviderContextDeleteByKey0": {
|
|
255
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
255
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'key']}"
|
|
256
256
|
},
|
|
257
257
|
"FwpmProviderContextDestroyEnumHandle0": {
|
|
258
258
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'enumHandle']}"
|
|
@@ -282,22 +282,22 @@
|
|
|
282
282
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'llong', 'signed': false, 'label': 'UInt64'}, {'_t': 'ptr', 'pts_to': {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FWPM_PROVIDER_CONTEXT3', 'ot': '_ref'}}}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'id', 'providerContext']}"
|
|
283
283
|
},
|
|
284
284
|
"FwpmProviderContextGetByKey0": {
|
|
285
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
285
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FWPM_PROVIDER_CONTEXT0', 'ot': '_ref'}}}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'key', 'providerContext']}"
|
|
286
286
|
},
|
|
287
287
|
"FwpmProviderContextGetByKey1": {
|
|
288
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
288
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FWPM_PROVIDER_CONTEXT1', 'ot': '_ref'}}}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'key', 'providerContext']}"
|
|
289
289
|
},
|
|
290
290
|
"FwpmProviderContextGetByKey2": {
|
|
291
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
291
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FWPM_PROVIDER_CONTEXT2', 'ot': '_ref'}}}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'key', 'providerContext']}"
|
|
292
292
|
},
|
|
293
293
|
"FwpmProviderContextGetByKey3": {
|
|
294
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
294
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FWPM_PROVIDER_CONTEXT3', 'ot': '_ref'}}}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'key', 'providerContext']}"
|
|
295
295
|
},
|
|
296
296
|
"FwpmProviderContextGetSecurityInfoByKey0": {
|
|
297
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
297
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'PSID', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'PSID', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'ACL', 'ot': '_ref'}}}, {'_t': 'ptr', 'pts_to': {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'ACL', 'ot': '_ref'}}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'PSECURITY_DESCRIPTOR', 'ot': '_ref'}}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'key', 'securityInfo', 'sidOwner', 'sidGroup', 'dacl', 'sacl', 'securityDescriptor']}"
|
|
298
298
|
},
|
|
299
299
|
"FwpmProviderContextSetSecurityInfoByKey0": {
|
|
300
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
300
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'SID', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'SID', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'ACL', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'ACL', 'ot': '_ref'}}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'key', 'securityInfo', 'sidOwner', 'sidGroup', 'dacl', 'sacl']}"
|
|
301
301
|
},
|
|
302
302
|
"FwpmProviderContextSubscribeChanges0": {
|
|
303
303
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FWPM_PROVIDER_CONTEXT_SUBSCRIPTION0', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': 'bot', 'label': 'Void'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FWPM_PROVIDER_CONTEXT_CHANGE0', 'ot': '_ref'}}], 'returnty': {'_t': 'bot', 'label': 'Void'}, 'arg_names': ['context', 'change']}}, {'_t': 'ptr', 'pts_to': {'_t': 'bot', 'label': 'Void'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'HANDLE', 'ot': '_ref'}}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'subscription', 'callback', 'context', 'changeHandle']}"
|
|
@@ -312,7 +312,7 @@
|
|
|
312
312
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FWPM_PROVIDER_ENUM_TEMPLATE0', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'HANDLE', 'ot': '_ref'}}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'enumTemplate', 'enumHandle']}"
|
|
313
313
|
},
|
|
314
314
|
"FwpmProviderDeleteByKey0": {
|
|
315
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
315
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'key']}"
|
|
316
316
|
},
|
|
317
317
|
"FwpmProviderDestroyEnumHandle0": {
|
|
318
318
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'enumHandle']}"
|
|
@@ -321,13 +321,13 @@
|
|
|
321
321
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': 'ptr', 'pts_to': {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FWPM_PROVIDER0', 'ot': '_ref'}}}}, {'_t': 'ptr', 'pts_to': {'_t': 'int', 'signed': false, 'label': 'UInt32'}}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'enumHandle', 'numEntriesRequested', 'entries', 'numEntriesReturned']}"
|
|
322
322
|
},
|
|
323
323
|
"FwpmProviderGetByKey0": {
|
|
324
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
324
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FWPM_PROVIDER0', 'ot': '_ref'}}}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'key', 'provider']}"
|
|
325
325
|
},
|
|
326
326
|
"FwpmProviderGetSecurityInfoByKey0": {
|
|
327
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
327
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'PSID', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'PSID', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'ACL', 'ot': '_ref'}}}, {'_t': 'ptr', 'pts_to': {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'ACL', 'ot': '_ref'}}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'PSECURITY_DESCRIPTOR', 'ot': '_ref'}}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'key', 'securityInfo', 'sidOwner', 'sidGroup', 'dacl', 'sacl', 'securityDescriptor']}"
|
|
328
328
|
},
|
|
329
329
|
"FwpmProviderSetSecurityInfoByKey0": {
|
|
330
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
330
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'SID', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'SID', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'ACL', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'ACL', 'ot': '_ref'}}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'key', 'securityInfo', 'sidOwner', 'sidGroup', 'dacl', 'sacl']}"
|
|
331
331
|
},
|
|
332
332
|
"FwpmProviderSubscribeChanges0": {
|
|
333
333
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FWPM_PROVIDER_SUBSCRIPTION0', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': 'bot', 'label': 'Void'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FWPM_PROVIDER_CHANGE0', 'ot': '_ref'}}], 'returnty': {'_t': 'bot', 'label': 'Void'}, 'arg_names': ['context', 'change']}}, {'_t': 'ptr', 'pts_to': {'_t': 'bot', 'label': 'Void'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'HANDLE', 'ot': '_ref'}}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'subscription', 'callback', 'context', 'changeHandle']}"
|
|
@@ -354,7 +354,7 @@
|
|
|
354
354
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FWPM_SUBLAYER_ENUM_TEMPLATE0', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'HANDLE', 'ot': '_ref'}}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'enumTemplate', 'enumHandle']}"
|
|
355
355
|
},
|
|
356
356
|
"FwpmSubLayerDeleteByKey0": {
|
|
357
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
357
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'key']}"
|
|
358
358
|
},
|
|
359
359
|
"FwpmSubLayerDestroyEnumHandle0": {
|
|
360
360
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'enumHandle']}"
|
|
@@ -363,13 +363,13 @@
|
|
|
363
363
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': 'ptr', 'pts_to': {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FWPM_SUBLAYER0', 'ot': '_ref'}}}}, {'_t': 'ptr', 'pts_to': {'_t': 'int', 'signed': false, 'label': 'UInt32'}}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'enumHandle', 'numEntriesRequested', 'entries', 'numEntriesReturned']}"
|
|
364
364
|
},
|
|
365
365
|
"FwpmSubLayerGetByKey0": {
|
|
366
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
366
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FWPM_SUBLAYER0', 'ot': '_ref'}}}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'key', 'subLayer']}"
|
|
367
367
|
},
|
|
368
368
|
"FwpmSubLayerGetSecurityInfoByKey0": {
|
|
369
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
369
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'PSID', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'PSID', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'ACL', 'ot': '_ref'}}}, {'_t': 'ptr', 'pts_to': {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'ACL', 'ot': '_ref'}}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'PSECURITY_DESCRIPTOR', 'ot': '_ref'}}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'key', 'securityInfo', 'sidOwner', 'sidGroup', 'dacl', 'sacl', 'securityDescriptor']}"
|
|
370
370
|
},
|
|
371
371
|
"FwpmSubLayerSetSecurityInfoByKey0": {
|
|
372
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
372
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'SID', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'SID', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'ACL', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'ACL', 'ot': '_ref'}}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'key', 'securityInfo', 'sidOwner', 'sidGroup', 'dacl', 'sacl']}"
|
|
373
373
|
},
|
|
374
374
|
"FwpmSubLayerSubscribeChanges0": {
|
|
375
375
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FWPM_SUBLAYER_SUBSCRIPTION0', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': 'bot', 'label': 'Void'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FWPM_SUBLAYER_CHANGE0', 'ot': '_ref'}}], 'returnty': {'_t': 'bot', 'label': 'Void'}, 'arg_names': ['context', 'change']}}, {'_t': 'ptr', 'pts_to': {'_t': 'bot', 'label': 'Void'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'HANDLE', 'ot': '_ref'}}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'subscription', 'callback', 'context', 'changeHandle']}"
|
|
@@ -564,10 +564,10 @@
|
|
|
564
564
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'llong', 'signed': false, 'label': 'UInt64'}, {'_t': 'ptr', 'pts_to': {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'IKEEXT_SA_DETAILS0', 'ot': '_ref'}}}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'id', 'sa']}"
|
|
565
565
|
},
|
|
566
566
|
"IkeextSaGetById1": {
|
|
567
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'llong', 'signed': false, 'label': 'UInt64'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
567
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'llong', 'signed': false, 'label': 'UInt64'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'IKEEXT_SA_DETAILS1', 'ot': '_ref'}}}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'id', 'saLookupContext', 'sa']}"
|
|
568
568
|
},
|
|
569
569
|
"IkeextSaGetById2": {
|
|
570
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'llong', 'signed': false, 'label': 'UInt64'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
570
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'llong', 'signed': false, 'label': 'UInt64'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'IKEEXT_SA_DETAILS2', 'ot': '_ref'}}}], 'returnty': {'_t': 'int', 'signed': false, 'label': 'UInt32'}, 'arg_names': ['engineHandle', 'id', 'saLookupContext', 'sa']}"
|
|
571
571
|
},
|
|
572
572
|
"WSADeleteSocketPeerTargetName": {
|
|
573
573
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'SOCKET', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'SOCKADDR', 'ot': '_ref'}}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'OVERLAPPED', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': 'func', 'args': [{'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'OVERLAPPED', 'ot': '_ref'}}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}], 'returnty': {'_t': 'bot', 'label': 'Void'}, 'arg_names': ['dwError', 'cbTransferred', 'lpOverlapped', 'dwFlags']}}], 'returnty': {'_t': 'int', 'label': 'Int32'}, 'arg_names': ['Socket', 'PeerAddr', 'PeerAddrLen', 'Overlapped', 'CompletionRoutine']}"
|
|
@@ -267,7 +267,7 @@
|
|
|
267
267
|
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'GpPath', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'GpPath', 'ot': '_ref'}}, {'_t': '_ref', 'name': 'LineCap', 'ot': 'int'}, {'_t': 'float'}, {'_t': 'ptr', 'pts_to': {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'GpCustomLineCap', 'ot': '_ref'}}}], 'returnty': {'_t': '_ref', 'name': 'Status', 'ot': 'int'}, 'arg_names': ['fillPath', 'strokePath', 'baseCap', 'baseInset', 'customCap']}"
|
|
268
268
|
},
|
|
269
269
|
"GdipCreateEffect": {
|
|
270
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '
|
|
270
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'Guid', 'ot': 'struct'}, {'_t': 'ptr', 'pts_to': {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'CGpEffect', 'ot': '_ref'}}}], 'returnty': {'_t': '_ref', 'name': 'Status', 'ot': 'int'}, 'arg_names': ['guid', 'effect']}"
|
|
271
271
|
},
|
|
272
272
|
"GdipCreateFont": {
|
|
273
273
|
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'GpFontFamily', 'ot': '_ref'}}, {'_t': 'float'}, {'_t': 'int', 'label': 'Int32'}, {'_t': '_ref', 'name': 'Unit', 'ot': 'int'}, {'_t': 'ptr', 'pts_to': {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'GpFont', 'ot': '_ref'}}}], 'returnty': {'_t': '_ref', 'name': 'Status', 'ot': 'int'}, 'arg_names': ['fontFamily', 'emSize', 'style', 'unit', 'font']}"
|
|
@@ -801,10 +801,10 @@
|
|
|
801
801
|
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'GpFontFamily', 'ot': '_ref'}}, {'_t': 'int', 'label': 'Int32'}, {'_t': 'ptr', 'pts_to': {'_t': 'short', 'signed': false, 'label': 'UInt16'}}], 'returnty': {'_t': '_ref', 'name': 'Status', 'ot': 'int'}, 'arg_names': ['family', 'style', 'EmHeight']}"
|
|
802
802
|
},
|
|
803
803
|
"GdipGetEncoderParameterList": {
|
|
804
|
-
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'GpImage', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
804
|
+
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'GpImage', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'EncoderParameters', 'ot': '_ref'}}], 'returnty': {'_t': '_ref', 'name': 'Status', 'ot': 'int'}, 'arg_names': ['image', 'clsidEncoder', 'size', 'buffer']}"
|
|
805
805
|
},
|
|
806
806
|
"GdipGetEncoderParameterListSize": {
|
|
807
|
-
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'GpImage', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
807
|
+
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'GpImage', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': 'int', 'signed': false, 'label': 'UInt32'}}], 'returnty': {'_t': '_ref', 'name': 'Status', 'ot': 'int'}, 'arg_names': ['image', 'clsidEncoder', 'size']}"
|
|
808
808
|
},
|
|
809
809
|
"GdipGetFamily": {
|
|
810
810
|
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'GpFont', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'GpFontFamily', 'ot': '_ref'}}}], 'returnty': {'_t': '_ref', 'name': 'Status', 'ot': 'int'}, 'arg_names': ['font', 'family']}"
|
|
@@ -900,7 +900,7 @@
|
|
|
900
900
|
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'GpImage', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': 'int', 'label': 'Int32'}}], 'returnty': {'_t': '_ref', 'name': 'Status', 'ot': 'int'}, 'arg_names': ['image', 'format']}"
|
|
901
901
|
},
|
|
902
902
|
"GdipGetImageRawFormat": {
|
|
903
|
-
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'GpImage', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
903
|
+
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'GpImage', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}], 'returnty': {'_t': '_ref', 'name': 'Status', 'ot': 'int'}, 'arg_names': ['image', 'format']}"
|
|
904
904
|
},
|
|
905
905
|
"GdipGetImageThumbnail": {
|
|
906
906
|
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'GpImage', 'ot': '_ref'}}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'GpImage', 'ot': '_ref'}}}, {'_t': 'ptr', 'pts_to': {'_t': 'int', 'label': 'Int'}, 'label': 'IntPtr'}, {'_t': 'ptr', 'pts_to': {'_t': 'bot', 'label': 'Void'}}], 'returnty': {'_t': '_ref', 'name': 'Status', 'ot': 'int'}, 'arg_names': ['image', 'thumbWidth', 'thumbHeight', 'thumbImage', 'callback', 'callbackData']}"
|
|
@@ -1236,19 +1236,19 @@
|
|
|
1236
1236
|
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'GpImage', 'ot': '_ref'}}], 'returnty': {'_t': '_ref', 'name': 'Status', 'ot': 'int'}, 'arg_names': ['image']}"
|
|
1237
1237
|
},
|
|
1238
1238
|
"GdipImageGetFrameCount": {
|
|
1239
|
-
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'GpImage', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
1239
|
+
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'GpImage', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': 'int', 'signed': false, 'label': 'UInt32'}}], 'returnty': {'_t': '_ref', 'name': 'Status', 'ot': 'int'}, 'arg_names': ['image', 'dimensionID', 'count']}"
|
|
1240
1240
|
},
|
|
1241
1241
|
"GdipImageGetFrameDimensionsCount": {
|
|
1242
1242
|
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'GpImage', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': 'int', 'signed': false, 'label': 'UInt32'}}], 'returnty': {'_t': '_ref', 'name': 'Status', 'ot': 'int'}, 'arg_names': ['image', 'count']}"
|
|
1243
1243
|
},
|
|
1244
1244
|
"GdipImageGetFrameDimensionsList": {
|
|
1245
|
-
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'GpImage', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
1245
|
+
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'GpImage', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}], 'returnty': {'_t': '_ref', 'name': 'Status', 'ot': 'int'}, 'arg_names': ['image', 'dimensionIDs', 'count']}"
|
|
1246
1246
|
},
|
|
1247
1247
|
"GdipImageRotateFlip": {
|
|
1248
1248
|
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'GpImage', 'ot': '_ref'}}, {'_t': '_ref', 'name': 'RotateFlipType', 'ot': 'int'}], 'returnty': {'_t': '_ref', 'name': 'Status', 'ot': 'int'}, 'arg_names': ['image', 'rfType']}"
|
|
1249
1249
|
},
|
|
1250
1250
|
"GdipImageSelectActiveFrame": {
|
|
1251
|
-
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'GpImage', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
1251
|
+
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'GpImage', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}], 'returnty': {'_t': '_ref', 'name': 'Status', 'ot': 'int'}, 'arg_names': ['image', 'dimensionID', 'frameIndex']}"
|
|
1252
1252
|
},
|
|
1253
1253
|
"GdipImageSetAbort": {
|
|
1254
1254
|
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'GpImage', 'ot': '_ref'}}, {'_t': '_ref', 'name': 'GdiplusAbort', 'ot': 'bot'}], 'returnty': {'_t': '_ref', 'name': 'Status', 'ot': 'int'}, 'arg_names': ['pImage', 'pIAbort']}"
|
|
@@ -1497,10 +1497,10 @@
|
|
|
1497
1497
|
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'GpGraphics', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': 'int', 'signed': false, 'label': 'UInt32'}}], 'returnty': {'_t': '_ref', 'name': 'Status', 'ot': 'int'}, 'arg_names': ['graphics', 'state']}"
|
|
1498
1498
|
},
|
|
1499
1499
|
"GdipSaveImageToFile": {
|
|
1500
|
-
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'GpImage', 'ot': '_ref'}}, {'_t': '_ref', 'name': 'PWSTR', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
1500
|
+
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'GpImage', 'ot': '_ref'}}, {'_t': '_ref', 'name': 'PWSTR', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'EncoderParameters', 'ot': '_ref'}}], 'returnty': {'_t': '_ref', 'name': 'Status', 'ot': 'int'}, 'arg_names': ['image', 'filename', 'clsidEncoder', 'encoderParams']}"
|
|
1501
1501
|
},
|
|
1502
1502
|
"GdipSaveImageToStream": {
|
|
1503
|
-
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'GpImage', 'ot': '_ref'}}, {'_t': '_ref', 'name': 'IStream', 'ot': 'bot'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
1503
|
+
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'GpImage', 'ot': '_ref'}}, {'_t': '_ref', 'name': 'IStream', 'ot': 'bot'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'EncoderParameters', 'ot': '_ref'}}], 'returnty': {'_t': '_ref', 'name': 'Status', 'ot': 'int'}, 'arg_names': ['image', 'stream', 'clsidEncoder', 'encoderParams']}"
|
|
1504
1504
|
},
|
|
1505
1505
|
"GdipScaleLineTransform": {
|
|
1506
1506
|
"proto": "{'_t': 'func', 'args': [{'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'GpLineGradient', 'ot': '_ref'}}, {'_t': 'float'}, {'_t': 'float'}, {'_t': '_ref', 'name': 'MatrixOrder', 'ot': 'int'}], 'returnty': {'_t': '_ref', 'name': 'Status', 'ot': 'int'}, 'arg_names': ['brush', 'sx', 'sy', 'order']}"
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'HANDLE', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': 'bot', 'label': 'Void'}}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}], 'returnty': {'_t': '_ref', 'name': 'BOOLEAN', 'ot': 'char'}, 'arg_names': ['HidDeviceObject', 'ReportBuffer', 'ReportBufferLength']}"
|
|
28
28
|
},
|
|
29
29
|
"HidD_GetHidGuid": {
|
|
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'}}], 'returnty': {'_t': 'bot', 'label': 'Void'}, 'arg_names': ['HidGuid']}"
|
|
31
31
|
},
|
|
32
32
|
"HidD_GetIndexedString": {
|
|
33
33
|
"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'}], 'returnty': {'_t': '_ref', 'name': 'BOOLEAN', 'ot': 'char'}, 'arg_names': ['HidDeviceObject', 'StringIndex', 'Buffer', 'BufferLength']}"
|
|
@@ -12,22 +12,22 @@
|
|
|
12
12
|
},
|
|
13
13
|
"functions": {
|
|
14
14
|
"HlinkClone": {
|
|
15
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'IHlink', 'ot': 'bot'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
15
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'IHlink', 'ot': 'bot'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'Guid', 'ot': '_ref'}}, {'_t': '_ref', 'name': 'IHlinkSite', 'ot': 'bot'}, {'_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': ['pihl', 'riid', 'pihlsiteForClone', 'dwSiteData', 'ppvObj']}"
|
|
16
16
|
},
|
|
17
17
|
"HlinkCreateBrowseContext": {
|
|
18
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'IUnknown', 'ot': 'bot'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
18
|
+
"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': 'ptr', 'pts_to': {'_t': 'bot', 'label': 'Void'}}}], 'returnty': {'_t': '_ref', 'name': 'HRESULT', 'ot': 'int'}, 'arg_names': ['piunkOuter', 'riid', 'ppvObj']}"
|
|
19
19
|
},
|
|
20
20
|
"HlinkCreateExtensionServices": {
|
|
21
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'PWSTR', 'ot': 'ptr'}, {'_t': '_ref', 'name': 'HWND', 'ot': 'ptr'}, {'_t': '_ref', 'name': 'PWSTR', 'ot': 'ptr'}, {'_t': '_ref', 'name': 'PWSTR', 'ot': 'ptr'}, {'_t': '_ref', 'name': 'IUnknown', 'ot': 'bot'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
21
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'PWSTR', 'ot': 'ptr'}, {'_t': '_ref', 'name': 'HWND', 'ot': 'ptr'}, {'_t': '_ref', 'name': 'PWSTR', 'ot': 'ptr'}, {'_t': '_ref', 'name': 'PWSTR', 'ot': 'ptr'}, {'_t': '_ref', 'name': 'IUnknown', 'ot': 'bot'}, {'_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': ['pwzAdditionalHeaders', 'phwnd', 'pszUsername', 'pszPassword', 'piunkOuter', 'riid', 'ppvObj']}"
|
|
22
22
|
},
|
|
23
23
|
"HlinkCreateFromData": {
|
|
24
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'IDataObject', 'ot': 'bot'}, {'_t': '_ref', 'name': 'IHlinkSite', 'ot': 'bot'}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': '_ref', 'name': 'IUnknown', 'ot': 'bot'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
24
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'IDataObject', 'ot': 'bot'}, {'_t': '_ref', 'name': 'IHlinkSite', 'ot': 'bot'}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': '_ref', 'name': 'IUnknown', 'ot': 'bot'}, {'_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': ['piDataObj', 'pihlsite', 'dwSiteData', 'piunkOuter', 'riid', 'ppvObj']}"
|
|
25
25
|
},
|
|
26
26
|
"HlinkCreateFromMoniker": {
|
|
27
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'IMoniker', 'ot': 'bot'}, {'_t': '_ref', 'name': 'PWSTR', 'ot': 'ptr'}, {'_t': '_ref', 'name': 'PWSTR', 'ot': 'ptr'}, {'_t': '_ref', 'name': 'IHlinkSite', 'ot': 'bot'}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': '_ref', 'name': 'IUnknown', 'ot': 'bot'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
27
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'IMoniker', 'ot': 'bot'}, {'_t': '_ref', 'name': 'PWSTR', 'ot': 'ptr'}, {'_t': '_ref', 'name': 'PWSTR', 'ot': 'ptr'}, {'_t': '_ref', 'name': 'IHlinkSite', 'ot': 'bot'}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': '_ref', 'name': 'IUnknown', 'ot': 'bot'}, {'_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': ['pimkTrgt', 'pwzLocation', 'pwzFriendlyName', 'pihlsite', 'dwSiteData', 'piunkOuter', 'riid', 'ppvObj']}"
|
|
28
28
|
},
|
|
29
29
|
"HlinkCreateFromString": {
|
|
30
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'PWSTR', 'ot': 'ptr'}, {'_t': '_ref', 'name': 'PWSTR', 'ot': 'ptr'}, {'_t': '_ref', 'name': 'PWSTR', 'ot': 'ptr'}, {'_t': '_ref', 'name': 'IHlinkSite', 'ot': 'bot'}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': '_ref', 'name': 'IUnknown', 'ot': 'bot'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
30
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'PWSTR', 'ot': 'ptr'}, {'_t': '_ref', 'name': 'PWSTR', 'ot': 'ptr'}, {'_t': '_ref', 'name': 'PWSTR', 'ot': 'ptr'}, {'_t': '_ref', 'name': 'IHlinkSite', 'ot': 'bot'}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': '_ref', 'name': 'IUnknown', 'ot': 'bot'}, {'_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': ['pwzTarget', 'pwzLocation', 'pwzFriendlyName', 'pihlsite', 'dwSiteData', 'piunkOuter', 'riid', 'ppvObj']}"
|
|
31
31
|
},
|
|
32
32
|
"HlinkCreateShortcut": {
|
|
33
33
|
"proto": "{'_t': 'func', 'args': [{'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': '_ref', 'name': 'IHlink', 'ot': 'bot'}, {'_t': '_ref', 'name': 'PWSTR', 'ot': 'ptr'}, {'_t': '_ref', 'name': 'PWSTR', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'PWSTR', 'ot': '_ref'}}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}], 'returnty': {'_t': '_ref', 'name': 'HRESULT', 'ot': 'int'}, 'arg_names': ['grfHLSHORTCUTF', 'pihl', 'pwzDir', 'pwzFileName', 'ppwzShortcutFile', 'dwReserved']}"
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'IMoniker', 'ot': 'bot'}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': '_ref', 'name': 'IBindCtx', 'ot': 'bot'}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'FORMATETC', 'ot': '_ref'}}, {'_t': '_ref', 'name': 'IBindStatusCallback', 'ot': 'bot'}, {'_t': '_ref', 'name': 'IMoniker', 'ot': 'bot'}], 'returnty': {'_t': '_ref', 'name': 'HRESULT', 'ot': 'int'}, 'arg_names': ['pimkReference', 'reserved', 'pibc', 'cFmtetc', 'rgFmtetc', 'pibsc', 'pimkBase']}"
|
|
73
73
|
},
|
|
74
74
|
"HlinkResolveShortcut": {
|
|
75
|
-
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'PWSTR', 'ot': 'ptr'}, {'_t': '_ref', 'name': 'IHlinkSite', 'ot': 'bot'}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': '_ref', 'name': 'IUnknown', 'ot': 'bot'}, {'_t': 'ptr', 'pts_to': {'_t': '
|
|
75
|
+
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'PWSTR', 'ot': 'ptr'}, {'_t': '_ref', 'name': 'IHlinkSite', 'ot': 'bot'}, {'_t': 'int', 'signed': false, 'label': 'UInt32'}, {'_t': '_ref', 'name': 'IUnknown', 'ot': 'bot'}, {'_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': ['pwzShortcutFileName', 'pihlsite', 'dwSiteData', 'piunkOuter', 'riid', 'ppvObj']}"
|
|
76
76
|
},
|
|
77
77
|
"HlinkResolveShortcutToMoniker": {
|
|
78
78
|
"proto": "{'_t': 'func', 'args': [{'_t': '_ref', 'name': 'PWSTR', 'ot': 'ptr'}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'IMoniker', 'ot': '_ref'}}, {'_t': 'ptr', 'pts_to': {'_t': '_ref', 'name': 'PWSTR', 'ot': '_ref'}}], 'returnty': {'_t': '_ref', 'name': 'HRESULT', 'ot': 'int'}, 'arg_names': ['pwzShortcutFileName', 'ppimkTarget', 'ppwzLocation']}"
|