Skip to content

Commit

Permalink
fix a typo (thqby#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
DukSon1224 authored Jan 20, 2024
1 parent 25a75ae commit 1bb3f52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WebView2/WebView2.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -776,7 +776,7 @@ class WebView2 extends WebView2.Base {
CreateContextMenuItem(label, iconStream, kind) => (ComCall(19, this, 'wstr', label, 'ptr', iconStream, 'int', kind, 'ptr', item := WebView2.ContextMenuItem()), item) ; IStream*, COREWEBVIEW2_CONTEXT_MENU_ITEM_KIND

static IID_10 := '{ee0eb9df-6f12-46ce-b53f-3f47b9c928e0}'
CreateCoreWebView2ControllerOptions() => (ComCall(20, this, 'ptr', options := WebView2.ControllerOptions()), options)
CreateCoreWebView2ControllerOptions() => (ComCall(20, this, 'ptr*', options := WebView2.ControllerOptions()), options)
CreateCoreWebView2ControllerWithOptions(parentWindow, options, handler) => ComCall(21, this, 'ptr', parentWindow, 'ptr', options, 'ptr', handler) ; ICoreWebView2ControllerOptions, ICoreWebView2CreateCoreWebView2ControllerCompletedHandler
CreateCoreWebView2CompositionControllerWithOptions(parentWindow, options, handler) => ComCall(22, this, 'ptr', parentWindow, 'ptr', options, 'ptr', handler) ; ICoreWebView2ControllerOptions, ICoreWebView2CreateCoreWebView2CompositionControllerCompletedHandler

Expand Down

0 comments on commit 1bb3f52

Please sign in to comment.