webview2

package
v1.0.10 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 23, 2023 License: MIT Imports: 4 Imported by: 0

Documentation ¶

Rendered for windows/amd64

Index ¶

Constants ¶

View Source
const (
	COREWEBVIEW2_BOUNDS_MODE_USE_RAW_PIXELS          = 0
	COREWEBVIEW2_BOUNDS_MODE_USE_RASTERIZATION_SCALE = 1
)
View Source
const (
	COREWEBVIEW2_BROWSER_PROCESS_EXIT_KIND_NORMAL = 0
	COREWEBVIEW2_BROWSER_PROCESS_EXIT_KIND_FAILED = 1
)
View Source
const (
	COREWEBVIEW2_BROWSING_DATA_KINDS_FILE_SYSTEMS      = 1 << 0
	COREWEBVIEW2_BROWSING_DATA_KINDS_INDEXED_DB        = 1 << 1
	COREWEBVIEW2_BROWSING_DATA_KINDS_LOCAL_STORAGE     = 1 << 2
	COREWEBVIEW2_BROWSING_DATA_KINDS_WEB_SQL           = 1 << 3
	COREWEBVIEW2_BROWSING_DATA_KINDS_CACHE_STORAGE     = 1 << 4
	COREWEBVIEW2_BROWSING_DATA_KINDS_ALL_DOM_STORAGE   = 1 << 5
	COREWEBVIEW2_BROWSING_DATA_KINDS_COOKIES           = 1 << 6
	COREWEBVIEW2_BROWSING_DATA_KINDS_ALL_SITE          = 1 << 7
	COREWEBVIEW2_BROWSING_DATA_KINDS_DISK_CACHE        = 1 << 8
	COREWEBVIEW2_BROWSING_DATA_KINDS_DOWNLOAD_HISTORY  = 1 << 9
	COREWEBVIEW2_BROWSING_DATA_KINDS_GENERAL_AUTOFILL  = 1 << 10
	COREWEBVIEW2_BROWSING_DATA_KINDS_PASSWORD_AUTOSAVE = 1 << 11
	COREWEBVIEW2_BROWSING_DATA_KINDS_BROWSING_HISTORY  = 1 << 12
	COREWEBVIEW2_BROWSING_DATA_KINDS_SETTINGS          = 1 << 13
	COREWEBVIEW2_BROWSING_DATA_KINDS_ALL_PROFILE       = 1 << 14
	COREWEBVIEW2_BROWSING_DATA_KINDS_SERVICE_WORKERS   = 1 << 15
)
View Source
const (
	COREWEBVIEW2_CAPTURE_PREVIEW_IMAGE_FORMAT_PNG  = 0
	COREWEBVIEW2_CAPTURE_PREVIEW_IMAGE_FORMAT_JPEG = 1
)
View Source
const (
	COREWEBVIEW2_CLIENT_CERTIFICATE_KIND_SMART_CARD = 0
	COREWEBVIEW2_CLIENT_CERTIFICATE_KIND_PIN        = 1
	COREWEBVIEW2_CLIENT_CERTIFICATE_KIND_OTHER      = 2
)
View Source
const (
	COREWEBVIEW2_CONTEXT_MENU_ITEM_KIND_COMMAND   = 0
	COREWEBVIEW2_CONTEXT_MENU_ITEM_KIND_CHECK_BOX = 1
	COREWEBVIEW2_CONTEXT_MENU_ITEM_KIND_RADIO     = 2
	COREWEBVIEW2_CONTEXT_MENU_ITEM_KIND_SEPARATOR = 3
	COREWEBVIEW2_CONTEXT_MENU_ITEM_KIND_SUBMENU   = 4
)
View Source
const (
	COREWEBVIEW2_CONTEXT_MENU_TARGET_KIND_PAGE          = 0
	COREWEBVIEW2_CONTEXT_MENU_TARGET_KIND_IMAGE         = 1
	COREWEBVIEW2_CONTEXT_MENU_TARGET_KIND_SELECTED_TEXT = 2
	COREWEBVIEW2_CONTEXT_MENU_TARGET_KIND_AUDIO         = 3
	COREWEBVIEW2_CONTEXT_MENU_TARGET_KIND_VIDEO         = 4
)
View Source
const (
	COREWEBVIEW2_COOKIE_SAME_SITE_KIND_NONE   = 0
	COREWEBVIEW2_COOKIE_SAME_SITE_KIND_LAX    = 1
	COREWEBVIEW2_COOKIE_SAME_SITE_KIND_STRICT = 2
)
View Source
const (
	COREWEBVIEW2_DEFAULT_DOWNLOAD_DIALOG_CORNER_ALIGNMENT_TOP_LEFT     = 0
	COREWEBVIEW2_DEFAULT_DOWNLOAD_DIALOG_CORNER_ALIGNMENT_TOP_RIGHT    = 1
	COREWEBVIEW2_DEFAULT_DOWNLOAD_DIALOG_CORNER_ALIGNMENT_BOTTOM_LEFT  = 2
	COREWEBVIEW2_DEFAULT_DOWNLOAD_DIALOG_CORNER_ALIGNMENT_BOTTOM_RIGHT = 3
)
View Source
const (
	COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_NONE                           = 0
	COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_FILE_FAILED                    = 1
	COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_FILE_ACCESS_DENIED             = 2
	COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_FILE_NO_SPACE                  = 3
	COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_FILE_NAME_TOO_LONG             = 4
	COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_FILE_TOO_LARGE                 = 5
	COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_FILE_MALICIOUS                 = 6
	COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_FILE_TRANSIENT_ERROR           = 7
	COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_FILE_BLOCKED_BY_POLICY         = 8
	COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_FILE_SECURITY_CHECK_FAILED     = 9
	COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_FILE_TOO_SHORT                 = 10
	COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_FILE_HASH_MISMATCH             = 11
	COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_NETWORK_FAILED                 = 12
	COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_NETWORK_TIMEOUT                = 13
	COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_NETWORK_DISCONNECTED           = 14
	COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_NETWORK_SERVER_DOWN            = 15
	COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_NETWORK_INVALID_REQUEST        = 16
	COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_SERVER_FAILED                  = 17
	COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_SERVER_NO_RANGE                = 18
	COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_SERVER_BAD_CONTENT             = 19
	COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_SERVER_UNAUTHORIZED            = 20
	COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_SERVER_CERTIFICATE_PROBLEM     = 21
	COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_SERVER_FORBIDDEN               = 22
	COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_SERVER_UNEXPECTED_RESPONSE     = 23
	COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_SERVER_CONTENT_LENGTH_MISMATCH = 24
	COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_SERVER_CROSS_ORIGIN_REDIRECT   = 25
	COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_USER_CANCELED                  = 26
	COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_USER_SHUTDOWN                  = 27
	COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_USER_PAUSED                    = 28
	COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_DOWNLOAD_PROCESS_CRASHED       = 29
)
View Source
const (
	COREWEBVIEW2_DOWNLOAD_STATE_IN_PROGRESS = 0
	COREWEBVIEW2_DOWNLOAD_STATE_INTERRUPTED = 1
	COREWEBVIEW2_DOWNLOAD_STATE_COMPLETED   = 2
)
View Source
const (
	COREWEBVIEW2_FAVICON_IMAGE_FORMAT_PNG  = 0
	COREWEBVIEW2_FAVICON_IMAGE_FORMAT_JPEG = 1
)
View Source
const (
	COREWEBVIEW2_HOST_RESOURCE_ACCESS_KIND_DENY      = 0
	COREWEBVIEW2_HOST_RESOURCE_ACCESS_KIND_ALLOW     = 1
	COREWEBVIEW2_HOST_RESOURCE_ACCESS_KIND_DENY_CORS = 2
)
View Source
const (
	COREWEBVIEW2_KEY_EVENT_KIND_KEY_DOWN        = 0
	COREWEBVIEW2_KEY_EVENT_KIND_KEY_UP          = 1
	COREWEBVIEW2_KEY_EVENT_KIND_SYSTEM_KEY_DOWN = 2
	COREWEBVIEW2_KEY_EVENT_KIND_SYSTEM_KEY_UP   = 3
)
View Source
const (
	COREWEBVIEW2_MEMORY_USAGE_TARGET_LEVEL_NORMAL = 0
	COREWEBVIEW2_MEMORY_USAGE_TARGET_LEVEL_LOW    = 1
)
View Source
const (
	COREWEBVIEW2_MOUSE_EVENT_KIND_HORIZONTAL_WHEEL             = 0x020E
	COREWEBVIEW2_MOUSE_EVENT_KIND_LEFT_BUTTON_DOUBLE_CLICK     = 0x0203
	COREWEBVIEW2_MOUSE_EVENT_KIND_LEFT_BUTTON_DOWN             = 0x0201
	COREWEBVIEW2_MOUSE_EVENT_KIND_LEFT_BUTTON_UP               = 0x0202
	COREWEBVIEW2_MOUSE_EVENT_KIND_LEAVE                        = 0x02A3
	COREWEBVIEW2_MOUSE_EVENT_KIND_MIDDLE_BUTTON_DOUBLE_CLICK   = 0x0209
	COREWEBVIEW2_MOUSE_EVENT_KIND_MIDDLE_BUTTON_DOWN           = 0x0207
	COREWEBVIEW2_MOUSE_EVENT_KIND_MIDDLE_BUTTON_UP             = 0x0208
	COREWEBVIEW2_MOUSE_EVENT_KIND_MOVE                         = 0x0200
	COREWEBVIEW2_MOUSE_EVENT_KIND_RIGHT_BUTTON_DOUBLE_CLICK    = 0x0206
	COREWEBVIEW2_MOUSE_EVENT_KIND_RIGHT_BUTTON_DOWN            = 0x0204
	COREWEBVIEW2_MOUSE_EVENT_KIND_RIGHT_BUTTON_UP              = 0x0205
	COREWEBVIEW2_MOUSE_EVENT_KIND_WHEEL                        = 0x020A
	COREWEBVIEW2_MOUSE_EVENT_KIND_X_BUTTON_DOUBLE_CLICK        = 0x020D
	COREWEBVIEW2_MOUSE_EVENT_KIND_X_BUTTON_DOWN                = 0x020B
	COREWEBVIEW2_MOUSE_EVENT_KIND_X_BUTTON_UP                  = 0x020C
	COREWEBVIEW2_MOUSE_EVENT_KIND_NON_CLIENT_RIGHT_BUTTON_DOWN = 0x00A4
	COREWEBVIEW2_MOUSE_EVENT_KIND_NON_CLIENT_RIGHT_BUTTON_UP   = 0x00A5
)
View Source
const (
	COREWEBVIEW2_MOUSE_EVENT_VIRTUAL_KEYS_NONE          = 0x0
	COREWEBVIEW2_MOUSE_EVENT_VIRTUAL_KEYS_LEFT_BUTTON   = 0x0001
	COREWEBVIEW2_MOUSE_EVENT_VIRTUAL_KEYS_RIGHT_BUTTON  = 0x0002
	COREWEBVIEW2_MOUSE_EVENT_VIRTUAL_KEYS_SHIFT         = 0x0004
	COREWEBVIEW2_MOUSE_EVENT_VIRTUAL_KEYS_CONTROL       = 0x0008
	COREWEBVIEW2_MOUSE_EVENT_VIRTUAL_KEYS_MIDDLE_BUTTON = 0x0010
	COREWEBVIEW2_MOUSE_EVENT_VIRTUAL_KEYS_X_BUTTON1     = 0x0020
	COREWEBVIEW2_MOUSE_EVENT_VIRTUAL_KEYS_X_BUTTON2     = 0x0040
)
View Source
const (
	COREWEBVIEW2_MOVE_FOCUS_REASON_PROGRAMMATIC = 0
	COREWEBVIEW2_MOVE_FOCUS_REASON_NEXT         = 1
	COREWEBVIEW2_MOVE_FOCUS_REASON_PREVIOUS     = 2
)
View Source
const (
	COREWEBVIEW2_NAVIGATION_KIND_RELOAD          = 0
	COREWEBVIEW2_NAVIGATION_KIND_BACK_OR_FORWARD = 1
	COREWEBVIEW2_NAVIGATION_KIND_NEW_DOCUMENT    = 2
)
View Source
const (
	COREWEBVIEW2_PDF_TOOLBAR_ITEMS_NONE          = 0x0
	COREWEBVIEW2_PDF_TOOLBAR_ITEMS_SAVE          = 0x0001
	COREWEBVIEW2_PDF_TOOLBAR_ITEMS_PRINT         = 0x0002
	COREWEBVIEW2_PDF_TOOLBAR_ITEMS_SAVE_AS       = 0x0004
	COREWEBVIEW2_PDF_TOOLBAR_ITEMS_ZOOM_IN       = 0x0008
	COREWEBVIEW2_PDF_TOOLBAR_ITEMS_ZOOM_OUT      = 0x0010
	COREWEBVIEW2_PDF_TOOLBAR_ITEMS_ROTATE        = 0x0020
	COREWEBVIEW2_PDF_TOOLBAR_ITEMS_FIT_PAGE      = 0x0040
	COREWEBVIEW2_PDF_TOOLBAR_ITEMS_PAGE_LAYOUT   = 0x0080
	COREWEBVIEW2_PDF_TOOLBAR_ITEMS_BOOKMARKS     = 0x0100
	COREWEBVIEW2_PDF_TOOLBAR_ITEMS_PAGE_SELECTOR = 0x0200
	COREWEBVIEW2_PDF_TOOLBAR_ITEMS_SEARCH        = 0x0400
	COREWEBVIEW2_PDF_TOOLBAR_ITEMS_FULL_SCREEN   = 0x0800
	COREWEBVIEW2_PDF_TOOLBAR_ITEMS_MORE_SETTINGS = 0x1000
)
View Source
const (
	COREWEBVIEW2_PERMISSION_KIND_UNKNOWN_PERMISSION             = 0
	COREWEBVIEW2_PERMISSION_KIND_MICROPHONE                     = 1
	COREWEBVIEW2_PERMISSION_KIND_CAMERA                         = 2
	COREWEBVIEW2_PERMISSION_KIND_GEOLOCATION                    = 3
	COREWEBVIEW2_PERMISSION_KIND_NOTIFICATIONS                  = 4
	COREWEBVIEW2_PERMISSION_KIND_OTHER_SENSORS                  = 5
	COREWEBVIEW2_PERMISSION_KIND_CLIPBOARD_READ                 = 6
	COREWEBVIEW2_PERMISSION_KIND_MULTIPLE_AUTOMATIC_DOWNLOADS   = 7
	COREWEBVIEW2_PERMISSION_KIND_FILE_READ_WRITE                = 8
	COREWEBVIEW2_PERMISSION_KIND_AUTOPLAY                       = 9
	COREWEBVIEW2_PERMISSION_KIND_LOCAL_FONTS                    = 10
	COREWEBVIEW2_PERMISSION_KIND_MIDI_SYSTEM_EXCLUSIVE_MESSAGES = 11
	COREWEBVIEW2_PERMISSION_KIND_WINDOW_MANAGEMENT              = 12
)
View Source
const (
	COREWEBVIEW2_PERMISSION_STATE_DEFAULT = 0
	COREWEBVIEW2_PERMISSION_STATE_ALLOW   = 1
	COREWEBVIEW2_PERMISSION_STATE_DENY    = 2
)
View Source
const (
	COREWEBVIEW2_POINTER_EVENT_KIND_ACTIVATE = 0x024B
	COREWEBVIEW2_POINTER_EVENT_KIND_DOWN     = 0x0246
	COREWEBVIEW2_POINTER_EVENT_KIND_ENTER    = 0x0249
	COREWEBVIEW2_POINTER_EVENT_KIND_LEAVE    = 0x024A
	COREWEBVIEW2_POINTER_EVENT_KIND_UP       = 0x0247
	COREWEBVIEW2_POINTER_EVENT_KIND_UPDATE   = 0x0245
)
View Source
const (
	COREWEBVIEW2_PREFERRED_COLOR_SCHEME_AUTO  = 0
	COREWEBVIEW2_PREFERRED_COLOR_SCHEME_LIGHT = 1
	COREWEBVIEW2_PREFERRED_COLOR_SCHEME_DARK  = 2
)
View Source
const (
	COREWEBVIEW2_PRINT_COLLATION_DEFAULT    = 0
	COREWEBVIEW2_PRINT_COLLATION_COLLATED   = 1
	COREWEBVIEW2_PRINT_COLLATION_UNCOLLATED = 2
)
View Source
const (
	COREWEBVIEW2_PRINT_COLOR_MODE_DEFAULT   = 0
	COREWEBVIEW2_PRINT_COLOR_MODE_COLOR     = 1
	COREWEBVIEW2_PRINT_COLOR_MODE_GRAYSCALE = 2
)
View Source
const (
	COREWEBVIEW2_PRINT_DIALOG_KIND_BROWSER = 0
	COREWEBVIEW2_PRINT_DIALOG_KIND_SYSTEM  = 1
)
View Source
const (
	COREWEBVIEW2_PRINT_DUPLEX_DEFAULT              = 0
	COREWEBVIEW2_PRINT_DUPLEX_ONE_SIDED            = 1
	COREWEBVIEW2_PRINT_DUPLEX_TWO_SIDED_LONG_EDGE  = 2
	COREWEBVIEW2_PRINT_DUPLEX_TWO_SIDED_SHORT_EDGE = 3
)
View Source
const (
	COREWEBVIEW2_PRINT_MEDIA_SIZE_DEFAULT = 0
	COREWEBVIEW2_PRINT_MEDIA_SIZE_CUSTOM  = 1
)
View Source
const (
	COREWEBVIEW2_PRINT_ORIENTATION_PORTRAIT  = 0
	COREWEBVIEW2_PRINT_ORIENTATION_LANDSCAPE = 1
)
View Source
const (
	COREWEBVIEW2_PRINT_STATUS_SUCCEEDED           = 0
	COREWEBVIEW2_PRINT_STATUS_PRINTER_UNAVAILABLE = 1
	COREWEBVIEW2_PRINT_STATUS_OTHER_ERROR         = 2
)
View Source
const (
	COREWEBVIEW2_PROCESS_FAILED_KIND_BROWSER_PROCESS_EXITED        = 0
	COREWEBVIEW2_PROCESS_FAILED_KIND_RENDER_PROCESS_EXITED         = 1
	COREWEBVIEW2_PROCESS_FAILED_KIND_RENDER_PROCESS_UNRESPONSIVE   = 2
	COREWEBVIEW2_PROCESS_FAILED_KIND_FRAME_RENDER_PROCESS_EXITED   = 3
	COREWEBVIEW2_PROCESS_FAILED_KIND_UTILITY_PROCESS_EXITED        = 4
	COREWEBVIEW2_PROCESS_FAILED_KIND_SANDBOX_HELPER_PROCESS_EXITED = 5
	COREWEBVIEW2_PROCESS_FAILED_KIND_GPU_PROCESS_EXITED            = 6
	COREWEBVIEW2_PROCESS_FAILED_KIND_PPAPI_PLUGIN_PROCESS_EXITED   = 7
	COREWEBVIEW2_PROCESS_FAILED_KIND_PPAPI_BROKER_PROCESS_EXITED   = 8
	COREWEBVIEW2_PROCESS_FAILED_KIND_UNKNOWN_PROCESS_EXITED        = 9
)
View Source
const (
	COREWEBVIEW2_PROCESS_FAILED_REASON_UNEXPECTED      = 0
	COREWEBVIEW2_PROCESS_FAILED_REASON_UNRESPONSIVE    = 1
	COREWEBVIEW2_PROCESS_FAILED_REASON_TERMINATED      = 2
	COREWEBVIEW2_PROCESS_FAILED_REASON_CRASHED         = 3
	COREWEBVIEW2_PROCESS_FAILED_REASON_LAUNCH_FAILED   = 4
	COREWEBVIEW2_PROCESS_FAILED_REASON_OUT_OF_MEMORY   = 5
	COREWEBVIEW2_PROCESS_FAILED_REASON_PROFILE_DELETED = 6
)
View Source
const (
	COREWEBVIEW2_PROCESS_KIND_BROWSER        = 0
	COREWEBVIEW2_PROCESS_KIND_RENDERER       = 1
	COREWEBVIEW2_PROCESS_KIND_UTILITY        = 2
	COREWEBVIEW2_PROCESS_KIND_SANDBOX_HELPER = 3
	COREWEBVIEW2_PROCESS_KIND_GPU            = 4
	COREWEBVIEW2_PROCESS_KIND_PPAPI_PLUGIN   = 5
	COREWEBVIEW2_PROCESS_KIND_PPAPI_BROKER   = 6
)
View Source
const (
	COREWEBVIEW2_SCRIPT_DIALOG_KIND_ALERT        = 0
	COREWEBVIEW2_SCRIPT_DIALOG_KIND_CONFIRM      = 1
	COREWEBVIEW2_SCRIPT_DIALOG_KIND_PROMPT       = 2
	COREWEBVIEW2_SCRIPT_DIALOG_KIND_BEFOREUNLOAD = 3
)
View Source
const (
	COREWEBVIEW2_SERVER_CERTIFICATE_ERROR_ACTION_ALWAYS_ALLOW = 0
	COREWEBVIEW2_SERVER_CERTIFICATE_ERROR_ACTION_CANCEL       = 1
	COREWEBVIEW2_SERVER_CERTIFICATE_ERROR_ACTION_DEFAULT      = 2
)
View Source
const (
	COREWEBVIEW2_SHARED_BUFFER_ACCESS_READ_ONLY  = 0
	COREWEBVIEW2_SHARED_BUFFER_ACCESS_READ_WRITE = 1
)
View Source
const (
	COREWEBVIEW2_TRACKING_PREVENTION_LEVEL_NONE     = 0
	COREWEBVIEW2_TRACKING_PREVENTION_LEVEL_BASIC    = 1
	COREWEBVIEW2_TRACKING_PREVENTION_LEVEL_BALANCED = 2
	COREWEBVIEW2_TRACKING_PREVENTION_LEVEL_STRICT   = 3
)
View Source
const (
	COREWEBVIEW2_WEB_ERROR_STATUS_UNKNOWN                                   = 0
	COREWEBVIEW2_WEB_ERROR_STATUS_CERTIFICATE_COMMON_NAME_IS_INCORRECT      = 1
	COREWEBVIEW2_WEB_ERROR_STATUS_CERTIFICATE_EXPIRED                       = 2
	COREWEBVIEW2_WEB_ERROR_STATUS_CLIENT_CERTIFICATE_CONTAINS_ERRORS        = 3
	COREWEBVIEW2_WEB_ERROR_STATUS_CERTIFICATE_REVOKED                       = 4
	COREWEBVIEW2_WEB_ERROR_STATUS_CERTIFICATE_IS_INVALID                    = 5
	COREWEBVIEW2_WEB_ERROR_STATUS_SERVER_UNREACHABLE                        = 6
	COREWEBVIEW2_WEB_ERROR_STATUS_TIMEOUT                                   = 7
	COREWEBVIEW2_WEB_ERROR_STATUS_ERROR_HTTP_INVALID_SERVER_RESPONSE        = 8
	COREWEBVIEW2_WEB_ERROR_STATUS_CONNECTION_ABORTED                        = 9
	COREWEBVIEW2_WEB_ERROR_STATUS_CONNECTION_RESET                          = 10
	COREWEBVIEW2_WEB_ERROR_STATUS_DISCONNECTED                              = 11
	COREWEBVIEW2_WEB_ERROR_STATUS_CANNOT_CONNECT                            = 12
	COREWEBVIEW2_WEB_ERROR_STATUS_HOST_NAME_NOT_RESOLVED                    = 13
	COREWEBVIEW2_WEB_ERROR_STATUS_OPERATION_CANCELED                        = 14
	COREWEBVIEW2_WEB_ERROR_STATUS_REDIRECT_FAILED                           = 15
	COREWEBVIEW2_WEB_ERROR_STATUS_UNEXPECTED_ERROR                          = 16
	COREWEBVIEW2_WEB_ERROR_STATUS_VALID_AUTHENTICATION_CREDENTIALS_REQUIRED = 17
	COREWEBVIEW2_WEB_ERROR_STATUS_VALID_PROXY_AUTHENTICATION_REQUIRED       = 18
)
View Source
const (
	COREWEBVIEW2_WEB_RESOURCE_CONTEXT_ALL                  = 0
	COREWEBVIEW2_WEB_RESOURCE_CONTEXT_DOCUMENT             = 1
	COREWEBVIEW2_WEB_RESOURCE_CONTEXT_STYLESHEET           = 2
	COREWEBVIEW2_WEB_RESOURCE_CONTEXT_IMAGE                = 3
	COREWEBVIEW2_WEB_RESOURCE_CONTEXT_MEDIA                = 4
	COREWEBVIEW2_WEB_RESOURCE_CONTEXT_FONT                 = 5
	COREWEBVIEW2_WEB_RESOURCE_CONTEXT_SCRIPT               = 6
	COREWEBVIEW2_WEB_RESOURCE_CONTEXT_XML_HTTP_REQUEST     = 7
	COREWEBVIEW2_WEB_RESOURCE_CONTEXT_FETCH                = 8
	COREWEBVIEW2_WEB_RESOURCE_CONTEXT_TEXT_TRACK           = 9
	COREWEBVIEW2_WEB_RESOURCE_CONTEXT_EVENT_SOURCE         = 10
	COREWEBVIEW2_WEB_RESOURCE_CONTEXT_WEBSOCKET            = 11
	COREWEBVIEW2_WEB_RESOURCE_CONTEXT_MANIFEST             = 12
	COREWEBVIEW2_WEB_RESOURCE_CONTEXT_SIGNED_EXCHANGE      = 13
	COREWEBVIEW2_WEB_RESOURCE_CONTEXT_PING                 = 14
	COREWEBVIEW2_WEB_RESOURCE_CONTEXT_CSP_VIOLATION_REPORT = 15
	COREWEBVIEW2_WEB_RESOURCE_CONTEXT_OTHER                = 16
)
View Source
const ERROR_SUCCESS = windows.ERROR_SUCCESS

Variables ¶

Functions ¶

func CoTaskMemFree ¶

func CoTaskMemFree(pv unsafe.Pointer)

func ICoreWebView2AcceleratorKeyPressedEventHandlerIUnknownAddRef ¶

func ICoreWebView2AcceleratorKeyPressedEventHandlerIUnknownAddRef(this *ICoreWebView2AcceleratorKeyPressedEventHandler) uintptr

func ICoreWebView2AcceleratorKeyPressedEventHandlerIUnknownQueryInterface ¶

func ICoreWebView2AcceleratorKeyPressedEventHandlerIUnknownQueryInterface(this *ICoreWebView2AcceleratorKeyPressedEventHandler, refiid, object uintptr) uintptr

func ICoreWebView2AcceleratorKeyPressedEventHandlerIUnknownRelease ¶

func ICoreWebView2AcceleratorKeyPressedEventHandlerIUnknownRelease(this *ICoreWebView2AcceleratorKeyPressedEventHandler) uintptr

func ICoreWebView2AddScriptToExecuteOnDocumentCreatedCompletedHandlerIUnknownQueryInterface ¶

func ICoreWebView2AddScriptToExecuteOnDocumentCreatedCompletedHandlerIUnknownQueryInterface(this *ICoreWebView2AddScriptToExecuteOnDocumentCreatedCompletedHandler, refiid, object uintptr) uintptr

func ICoreWebView2AddScriptToExecuteOnDocumentCreatedCompletedHandlerInvoke ¶

func ICoreWebView2AddScriptToExecuteOnDocumentCreatedCompletedHandlerInvoke(this *ICoreWebView2AddScriptToExecuteOnDocumentCreatedCompletedHandler, errorCode uintptr, id string) uintptr

func ICoreWebView2BasicAuthenticationRequestedEventHandlerIUnknownAddRef ¶

func ICoreWebView2BasicAuthenticationRequestedEventHandlerIUnknownAddRef(this *ICoreWebView2BasicAuthenticationRequestedEventHandler) uintptr

func ICoreWebView2BasicAuthenticationRequestedEventHandlerIUnknownQueryInterface ¶

func ICoreWebView2BasicAuthenticationRequestedEventHandlerIUnknownQueryInterface(this *ICoreWebView2BasicAuthenticationRequestedEventHandler, refiid, object uintptr) uintptr

func ICoreWebView2BasicAuthenticationRequestedEventHandlerIUnknownRelease ¶

func ICoreWebView2BasicAuthenticationRequestedEventHandlerIUnknownRelease(this *ICoreWebView2BasicAuthenticationRequestedEventHandler) uintptr

func ICoreWebView2BrowserProcessExitedEventHandlerIUnknownAddRef ¶

func ICoreWebView2BrowserProcessExitedEventHandlerIUnknownAddRef(this *ICoreWebView2BrowserProcessExitedEventHandler) uintptr

func ICoreWebView2BrowserProcessExitedEventHandlerIUnknownQueryInterface ¶

func ICoreWebView2BrowserProcessExitedEventHandlerIUnknownQueryInterface(this *ICoreWebView2BrowserProcessExitedEventHandler, refiid, object uintptr) uintptr

func ICoreWebView2BrowserProcessExitedEventHandlerIUnknownRelease ¶

func ICoreWebView2BrowserProcessExitedEventHandlerIUnknownRelease(this *ICoreWebView2BrowserProcessExitedEventHandler) uintptr

func ICoreWebView2BytesReceivedChangedEventHandlerIUnknownAddRef ¶

func ICoreWebView2BytesReceivedChangedEventHandlerIUnknownAddRef(this *ICoreWebView2BytesReceivedChangedEventHandler) uintptr

func ICoreWebView2BytesReceivedChangedEventHandlerIUnknownQueryInterface ¶

func ICoreWebView2BytesReceivedChangedEventHandlerIUnknownQueryInterface(this *ICoreWebView2BytesReceivedChangedEventHandler, refiid, object uintptr) uintptr

func ICoreWebView2BytesReceivedChangedEventHandlerIUnknownRelease ¶

func ICoreWebView2BytesReceivedChangedEventHandlerIUnknownRelease(this *ICoreWebView2BytesReceivedChangedEventHandler) uintptr

func ICoreWebView2CallDevToolsProtocolMethodCompletedHandlerIUnknownAddRef ¶

func ICoreWebView2CallDevToolsProtocolMethodCompletedHandlerIUnknownAddRef(this *ICoreWebView2CallDevToolsProtocolMethodCompletedHandler) uintptr

func ICoreWebView2CallDevToolsProtocolMethodCompletedHandlerIUnknownQueryInterface ¶

func ICoreWebView2CallDevToolsProtocolMethodCompletedHandlerIUnknownQueryInterface(this *ICoreWebView2CallDevToolsProtocolMethodCompletedHandler, refiid, object uintptr) uintptr

func ICoreWebView2CallDevToolsProtocolMethodCompletedHandlerIUnknownRelease ¶

func ICoreWebView2CallDevToolsProtocolMethodCompletedHandlerIUnknownRelease(this *ICoreWebView2CallDevToolsProtocolMethodCompletedHandler) uintptr

func ICoreWebView2CallDevToolsProtocolMethodCompletedHandlerInvoke ¶

func ICoreWebView2CallDevToolsProtocolMethodCompletedHandlerInvoke(this *ICoreWebView2CallDevToolsProtocolMethodCompletedHandler, errorCode uintptr, returnObjectAsJson string) uintptr

func ICoreWebView2CapturePreviewCompletedHandlerIUnknownAddRef ¶

func ICoreWebView2CapturePreviewCompletedHandlerIUnknownAddRef(this *ICoreWebView2CapturePreviewCompletedHandler) uintptr

func ICoreWebView2CapturePreviewCompletedHandlerIUnknownQueryInterface ¶

func ICoreWebView2CapturePreviewCompletedHandlerIUnknownQueryInterface(this *ICoreWebView2CapturePreviewCompletedHandler, refiid, object uintptr) uintptr

func ICoreWebView2CapturePreviewCompletedHandlerIUnknownRelease ¶

func ICoreWebView2CapturePreviewCompletedHandlerIUnknownRelease(this *ICoreWebView2CapturePreviewCompletedHandler) uintptr

func ICoreWebView2CapturePreviewCompletedHandlerInvoke ¶

func ICoreWebView2CapturePreviewCompletedHandlerInvoke(this *ICoreWebView2CapturePreviewCompletedHandler, errorCode uintptr) uintptr

func ICoreWebView2ClearBrowsingDataCompletedHandlerIUnknownAddRef ¶

func ICoreWebView2ClearBrowsingDataCompletedHandlerIUnknownAddRef(this *ICoreWebView2ClearBrowsingDataCompletedHandler) uintptr

func ICoreWebView2ClearBrowsingDataCompletedHandlerIUnknownQueryInterface ¶

func ICoreWebView2ClearBrowsingDataCompletedHandlerIUnknownQueryInterface(this *ICoreWebView2ClearBrowsingDataCompletedHandler, refiid, object uintptr) uintptr

func ICoreWebView2ClearBrowsingDataCompletedHandlerIUnknownRelease ¶

func ICoreWebView2ClearBrowsingDataCompletedHandlerIUnknownRelease(this *ICoreWebView2ClearBrowsingDataCompletedHandler) uintptr

func ICoreWebView2ClearBrowsingDataCompletedHandlerInvoke ¶

func ICoreWebView2ClearBrowsingDataCompletedHandlerInvoke(this *ICoreWebView2ClearBrowsingDataCompletedHandler, errorCode uintptr) uintptr

func ICoreWebView2ClearServerCertificateErrorActionsCompletedHandlerIUnknownQueryInterface ¶

func ICoreWebView2ClearServerCertificateErrorActionsCompletedHandlerIUnknownQueryInterface(this *ICoreWebView2ClearServerCertificateErrorActionsCompletedHandler, refiid, object uintptr) uintptr

func ICoreWebView2ClearServerCertificateErrorActionsCompletedHandlerInvoke ¶

func ICoreWebView2ClearServerCertificateErrorActionsCompletedHandlerInvoke(this *ICoreWebView2ClearServerCertificateErrorActionsCompletedHandler, errorCode uintptr) uintptr

func ICoreWebView2ClientCertificateRequestedEventHandlerIUnknownAddRef ¶

func ICoreWebView2ClientCertificateRequestedEventHandlerIUnknownAddRef(this *ICoreWebView2ClientCertificateRequestedEventHandler) uintptr

func ICoreWebView2ClientCertificateRequestedEventHandlerIUnknownQueryInterface ¶

func ICoreWebView2ClientCertificateRequestedEventHandlerIUnknownQueryInterface(this *ICoreWebView2ClientCertificateRequestedEventHandler, refiid, object uintptr) uintptr

func ICoreWebView2ClientCertificateRequestedEventHandlerIUnknownRelease ¶

func ICoreWebView2ClientCertificateRequestedEventHandlerIUnknownRelease(this *ICoreWebView2ClientCertificateRequestedEventHandler) uintptr

func ICoreWebView2ContainsFullScreenElementChangedEventHandlerIUnknownAddRef ¶

func ICoreWebView2ContainsFullScreenElementChangedEventHandlerIUnknownAddRef(this *ICoreWebView2ContainsFullScreenElementChangedEventHandler) uintptr

func ICoreWebView2ContainsFullScreenElementChangedEventHandlerIUnknownQueryInterface ¶

func ICoreWebView2ContainsFullScreenElementChangedEventHandlerIUnknownQueryInterface(this *ICoreWebView2ContainsFullScreenElementChangedEventHandler, refiid, object uintptr) uintptr

func ICoreWebView2ContainsFullScreenElementChangedEventHandlerIUnknownRelease ¶

func ICoreWebView2ContainsFullScreenElementChangedEventHandlerIUnknownRelease(this *ICoreWebView2ContainsFullScreenElementChangedEventHandler) uintptr

func ICoreWebView2ContainsFullScreenElementChangedEventHandlerInvoke ¶

func ICoreWebView2ContainsFullScreenElementChangedEventHandlerInvoke(this *ICoreWebView2ContainsFullScreenElementChangedEventHandler, sender *ICoreWebView2, args *IUnknown) uintptr

func ICoreWebView2ContentLoadingEventHandlerIUnknownAddRef ¶

func ICoreWebView2ContentLoadingEventHandlerIUnknownAddRef(this *ICoreWebView2ContentLoadingEventHandler) uintptr

func ICoreWebView2ContentLoadingEventHandlerIUnknownQueryInterface ¶

func ICoreWebView2ContentLoadingEventHandlerIUnknownQueryInterface(this *ICoreWebView2ContentLoadingEventHandler, refiid, object uintptr) uintptr

func ICoreWebView2ContentLoadingEventHandlerIUnknownRelease ¶

func ICoreWebView2ContentLoadingEventHandlerIUnknownRelease(this *ICoreWebView2ContentLoadingEventHandler) uintptr

func ICoreWebView2ContextMenuRequestedEventHandlerIUnknownAddRef ¶

func ICoreWebView2ContextMenuRequestedEventHandlerIUnknownAddRef(this *ICoreWebView2ContextMenuRequestedEventHandler) uintptr

func ICoreWebView2ContextMenuRequestedEventHandlerIUnknownQueryInterface ¶

func ICoreWebView2ContextMenuRequestedEventHandlerIUnknownQueryInterface(this *ICoreWebView2ContextMenuRequestedEventHandler, refiid, object uintptr) uintptr

func ICoreWebView2ContextMenuRequestedEventHandlerIUnknownRelease ¶

func ICoreWebView2ContextMenuRequestedEventHandlerIUnknownRelease(this *ICoreWebView2ContextMenuRequestedEventHandler) uintptr

func ICoreWebView2CreateCoreWebView2CompositionControllerCompletedHandlerIUnknownQueryInterface ¶

func ICoreWebView2CreateCoreWebView2CompositionControllerCompletedHandlerIUnknownQueryInterface(this *ICoreWebView2CreateCoreWebView2CompositionControllerCompletedHandler, refiid, object uintptr) uintptr

func ICoreWebView2CreateCoreWebView2ControllerCompletedHandlerIUnknownAddRef ¶

func ICoreWebView2CreateCoreWebView2ControllerCompletedHandlerIUnknownAddRef(this *ICoreWebView2CreateCoreWebView2ControllerCompletedHandler) uintptr

func ICoreWebView2CreateCoreWebView2ControllerCompletedHandlerIUnknownQueryInterface ¶

func ICoreWebView2CreateCoreWebView2ControllerCompletedHandlerIUnknownQueryInterface(this *ICoreWebView2CreateCoreWebView2ControllerCompletedHandler, refiid, object uintptr) uintptr

func ICoreWebView2CreateCoreWebView2ControllerCompletedHandlerIUnknownRelease ¶

func ICoreWebView2CreateCoreWebView2ControllerCompletedHandlerIUnknownRelease(this *ICoreWebView2CreateCoreWebView2ControllerCompletedHandler) uintptr

func ICoreWebView2CreateCoreWebView2ControllerCompletedHandlerInvoke ¶

func ICoreWebView2CreateCoreWebView2ControllerCompletedHandlerInvoke(this *ICoreWebView2CreateCoreWebView2ControllerCompletedHandler, errorCode uintptr, createdController *ICoreWebView2Controller) uintptr

func ICoreWebView2CreateCoreWebView2EnvironmentCompletedHandlerIUnknownAddRef ¶

func ICoreWebView2CreateCoreWebView2EnvironmentCompletedHandlerIUnknownAddRef(this *ICoreWebView2CreateCoreWebView2EnvironmentCompletedHandler) uintptr

func ICoreWebView2CreateCoreWebView2EnvironmentCompletedHandlerIUnknownQueryInterface ¶

func ICoreWebView2CreateCoreWebView2EnvironmentCompletedHandlerIUnknownQueryInterface(this *ICoreWebView2CreateCoreWebView2EnvironmentCompletedHandler, refiid, object uintptr) uintptr

func ICoreWebView2CreateCoreWebView2EnvironmentCompletedHandlerIUnknownRelease ¶

func ICoreWebView2CreateCoreWebView2EnvironmentCompletedHandlerIUnknownRelease(this *ICoreWebView2CreateCoreWebView2EnvironmentCompletedHandler) uintptr

func ICoreWebView2CreateCoreWebView2EnvironmentCompletedHandlerInvoke ¶

func ICoreWebView2CreateCoreWebView2EnvironmentCompletedHandlerInvoke(this *ICoreWebView2CreateCoreWebView2EnvironmentCompletedHandler, errorCode uintptr, createdEnvironment *ICoreWebView2Environment) uintptr

func ICoreWebView2CursorChangedEventHandlerIUnknownAddRef ¶

func ICoreWebView2CursorChangedEventHandlerIUnknownAddRef(this *ICoreWebView2CursorChangedEventHandler) uintptr

func ICoreWebView2CursorChangedEventHandlerIUnknownQueryInterface ¶

func ICoreWebView2CursorChangedEventHandlerIUnknownQueryInterface(this *ICoreWebView2CursorChangedEventHandler, refiid, object uintptr) uintptr

func ICoreWebView2CursorChangedEventHandlerIUnknownRelease ¶

func ICoreWebView2CursorChangedEventHandlerIUnknownRelease(this *ICoreWebView2CursorChangedEventHandler) uintptr

func ICoreWebView2CustomItemSelectedEventHandlerIUnknownAddRef ¶

func ICoreWebView2CustomItemSelectedEventHandlerIUnknownAddRef(this *ICoreWebView2CustomItemSelectedEventHandler) uintptr

func ICoreWebView2CustomItemSelectedEventHandlerIUnknownQueryInterface ¶

func ICoreWebView2CustomItemSelectedEventHandlerIUnknownQueryInterface(this *ICoreWebView2CustomItemSelectedEventHandler, refiid, object uintptr) uintptr

func ICoreWebView2CustomItemSelectedEventHandlerIUnknownRelease ¶

func ICoreWebView2CustomItemSelectedEventHandlerIUnknownRelease(this *ICoreWebView2CustomItemSelectedEventHandler) uintptr

func ICoreWebView2DOMContentLoadedEventHandlerIUnknownAddRef ¶

func ICoreWebView2DOMContentLoadedEventHandlerIUnknownAddRef(this *ICoreWebView2DOMContentLoadedEventHandler) uintptr

func ICoreWebView2DOMContentLoadedEventHandlerIUnknownQueryInterface ¶

func ICoreWebView2DOMContentLoadedEventHandlerIUnknownQueryInterface(this *ICoreWebView2DOMContentLoadedEventHandler, refiid, object uintptr) uintptr

func ICoreWebView2DOMContentLoadedEventHandlerIUnknownRelease ¶

func ICoreWebView2DOMContentLoadedEventHandlerIUnknownRelease(this *ICoreWebView2DOMContentLoadedEventHandler) uintptr

func ICoreWebView2DevToolsProtocolEventReceivedEventHandlerIUnknownAddRef ¶

func ICoreWebView2DevToolsProtocolEventReceivedEventHandlerIUnknownAddRef(this *ICoreWebView2DevToolsProtocolEventReceivedEventHandler) uintptr

func ICoreWebView2DevToolsProtocolEventReceivedEventHandlerIUnknownQueryInterface ¶

func ICoreWebView2DevToolsProtocolEventReceivedEventHandlerIUnknownQueryInterface(this *ICoreWebView2DevToolsProtocolEventReceivedEventHandler, refiid, object uintptr) uintptr

func ICoreWebView2DevToolsProtocolEventReceivedEventHandlerIUnknownRelease ¶

func ICoreWebView2DevToolsProtocolEventReceivedEventHandlerIUnknownRelease(this *ICoreWebView2DevToolsProtocolEventReceivedEventHandler) uintptr

func ICoreWebView2DocumentTitleChangedEventHandlerIUnknownAddRef ¶

func ICoreWebView2DocumentTitleChangedEventHandlerIUnknownAddRef(this *ICoreWebView2DocumentTitleChangedEventHandler) uintptr

func ICoreWebView2DocumentTitleChangedEventHandlerIUnknownQueryInterface ¶

func ICoreWebView2DocumentTitleChangedEventHandlerIUnknownQueryInterface(this *ICoreWebView2DocumentTitleChangedEventHandler, refiid, object uintptr) uintptr

func ICoreWebView2DocumentTitleChangedEventHandlerIUnknownRelease ¶

func ICoreWebView2DocumentTitleChangedEventHandlerIUnknownRelease(this *ICoreWebView2DocumentTitleChangedEventHandler) uintptr

func ICoreWebView2DocumentTitleChangedEventHandlerInvoke ¶

func ICoreWebView2DocumentTitleChangedEventHandlerInvoke(this *ICoreWebView2DocumentTitleChangedEventHandler, sender *ICoreWebView2, args *IUnknown) uintptr

func ICoreWebView2DownloadStartingEventHandlerIUnknownAddRef ¶

func ICoreWebView2DownloadStartingEventHandlerIUnknownAddRef(this *ICoreWebView2DownloadStartingEventHandler) uintptr

func ICoreWebView2DownloadStartingEventHandlerIUnknownQueryInterface ¶

func ICoreWebView2DownloadStartingEventHandlerIUnknownQueryInterface(this *ICoreWebView2DownloadStartingEventHandler, refiid, object uintptr) uintptr

func ICoreWebView2DownloadStartingEventHandlerIUnknownRelease ¶

func ICoreWebView2DownloadStartingEventHandlerIUnknownRelease(this *ICoreWebView2DownloadStartingEventHandler) uintptr

func ICoreWebView2EstimatedEndTimeChangedEventHandlerIUnknownAddRef ¶

func ICoreWebView2EstimatedEndTimeChangedEventHandlerIUnknownAddRef(this *ICoreWebView2EstimatedEndTimeChangedEventHandler) uintptr

func ICoreWebView2EstimatedEndTimeChangedEventHandlerIUnknownQueryInterface ¶

func ICoreWebView2EstimatedEndTimeChangedEventHandlerIUnknownQueryInterface(this *ICoreWebView2EstimatedEndTimeChangedEventHandler, refiid, object uintptr) uintptr

func ICoreWebView2EstimatedEndTimeChangedEventHandlerIUnknownRelease ¶

func ICoreWebView2EstimatedEndTimeChangedEventHandlerIUnknownRelease(this *ICoreWebView2EstimatedEndTimeChangedEventHandler) uintptr

func ICoreWebView2ExecuteScriptCompletedHandlerIUnknownAddRef ¶

func ICoreWebView2ExecuteScriptCompletedHandlerIUnknownAddRef(this *ICoreWebView2ExecuteScriptCompletedHandler) uintptr

func ICoreWebView2ExecuteScriptCompletedHandlerIUnknownQueryInterface ¶

func ICoreWebView2ExecuteScriptCompletedHandlerIUnknownQueryInterface(this *ICoreWebView2ExecuteScriptCompletedHandler, refiid, object uintptr) uintptr

func ICoreWebView2ExecuteScriptCompletedHandlerIUnknownRelease ¶

func ICoreWebView2ExecuteScriptCompletedHandlerIUnknownRelease(this *ICoreWebView2ExecuteScriptCompletedHandler) uintptr

func ICoreWebView2ExecuteScriptCompletedHandlerInvoke ¶

func ICoreWebView2ExecuteScriptCompletedHandlerInvoke(this *ICoreWebView2ExecuteScriptCompletedHandler, errorCode uintptr, resultObjectAsJson string) uintptr

func ICoreWebView2FaviconChangedEventHandlerIUnknownAddRef ¶

func ICoreWebView2FaviconChangedEventHandlerIUnknownAddRef(this *ICoreWebView2FaviconChangedEventHandler) uintptr

func ICoreWebView2FaviconChangedEventHandlerIUnknownQueryInterface ¶

func ICoreWebView2FaviconChangedEventHandlerIUnknownQueryInterface(this *ICoreWebView2FaviconChangedEventHandler, refiid, object uintptr) uintptr

func ICoreWebView2FaviconChangedEventHandlerIUnknownRelease ¶

func ICoreWebView2FaviconChangedEventHandlerIUnknownRelease(this *ICoreWebView2FaviconChangedEventHandler) uintptr

func ICoreWebView2FaviconChangedEventHandlerInvoke ¶

func ICoreWebView2FaviconChangedEventHandlerInvoke(this *ICoreWebView2FaviconChangedEventHandler, sender *ICoreWebView2, args *IUnknown) uintptr

func ICoreWebView2FocusChangedEventHandlerIUnknownAddRef ¶

func ICoreWebView2FocusChangedEventHandlerIUnknownAddRef(this *ICoreWebView2FocusChangedEventHandler) uintptr

func ICoreWebView2FocusChangedEventHandlerIUnknownQueryInterface ¶

func ICoreWebView2FocusChangedEventHandlerIUnknownQueryInterface(this *ICoreWebView2FocusChangedEventHandler, refiid, object uintptr) uintptr

func ICoreWebView2FocusChangedEventHandlerIUnknownRelease ¶

func ICoreWebView2FocusChangedEventHandlerIUnknownRelease(this *ICoreWebView2FocusChangedEventHandler) uintptr

func ICoreWebView2FocusChangedEventHandlerInvoke ¶

func ICoreWebView2FocusChangedEventHandlerInvoke(this *ICoreWebView2FocusChangedEventHandler, sender *ICoreWebView2Controller, args *IUnknown) uintptr

func ICoreWebView2FrameContentLoadingEventHandlerIUnknownAddRef ¶

func ICoreWebView2FrameContentLoadingEventHandlerIUnknownAddRef(this *ICoreWebView2FrameContentLoadingEventHandler) uintptr

func ICoreWebView2FrameContentLoadingEventHandlerIUnknownQueryInterface ¶

func ICoreWebView2FrameContentLoadingEventHandlerIUnknownQueryInterface(this *ICoreWebView2FrameContentLoadingEventHandler, refiid, object uintptr) uintptr

func ICoreWebView2FrameContentLoadingEventHandlerIUnknownRelease ¶

func ICoreWebView2FrameContentLoadingEventHandlerIUnknownRelease(this *ICoreWebView2FrameContentLoadingEventHandler) uintptr

func ICoreWebView2FrameCreatedEventHandlerIUnknownAddRef ¶

func ICoreWebView2FrameCreatedEventHandlerIUnknownAddRef(this *ICoreWebView2FrameCreatedEventHandler) uintptr

func ICoreWebView2FrameCreatedEventHandlerIUnknownQueryInterface ¶

func ICoreWebView2FrameCreatedEventHandlerIUnknownQueryInterface(this *ICoreWebView2FrameCreatedEventHandler, refiid, object uintptr) uintptr

func ICoreWebView2FrameCreatedEventHandlerIUnknownRelease ¶

func ICoreWebView2FrameCreatedEventHandlerIUnknownRelease(this *ICoreWebView2FrameCreatedEventHandler) uintptr

func ICoreWebView2FrameDOMContentLoadedEventHandlerIUnknownAddRef ¶

func ICoreWebView2FrameDOMContentLoadedEventHandlerIUnknownAddRef(this *ICoreWebView2FrameDOMContentLoadedEventHandler) uintptr

func ICoreWebView2FrameDOMContentLoadedEventHandlerIUnknownQueryInterface ¶

func ICoreWebView2FrameDOMContentLoadedEventHandlerIUnknownQueryInterface(this *ICoreWebView2FrameDOMContentLoadedEventHandler, refiid, object uintptr) uintptr

func ICoreWebView2FrameDOMContentLoadedEventHandlerIUnknownRelease ¶

func ICoreWebView2FrameDOMContentLoadedEventHandlerIUnknownRelease(this *ICoreWebView2FrameDOMContentLoadedEventHandler) uintptr

func ICoreWebView2FrameDestroyedEventHandlerIUnknownAddRef ¶

func ICoreWebView2FrameDestroyedEventHandlerIUnknownAddRef(this *ICoreWebView2FrameDestroyedEventHandler) uintptr

func ICoreWebView2FrameDestroyedEventHandlerIUnknownQueryInterface ¶

func ICoreWebView2FrameDestroyedEventHandlerIUnknownQueryInterface(this *ICoreWebView2FrameDestroyedEventHandler, refiid, object uintptr) uintptr

func ICoreWebView2FrameDestroyedEventHandlerIUnknownRelease ¶

func ICoreWebView2FrameDestroyedEventHandlerIUnknownRelease(this *ICoreWebView2FrameDestroyedEventHandler) uintptr

func ICoreWebView2FrameDestroyedEventHandlerInvoke ¶

func ICoreWebView2FrameDestroyedEventHandlerInvoke(this *ICoreWebView2FrameDestroyedEventHandler, sender *ICoreWebView2Frame, args *IUnknown) uintptr

func ICoreWebView2FrameNameChangedEventHandlerIUnknownAddRef ¶

func ICoreWebView2FrameNameChangedEventHandlerIUnknownAddRef(this *ICoreWebView2FrameNameChangedEventHandler) uintptr

func ICoreWebView2FrameNameChangedEventHandlerIUnknownQueryInterface ¶

func ICoreWebView2FrameNameChangedEventHandlerIUnknownQueryInterface(this *ICoreWebView2FrameNameChangedEventHandler, refiid, object uintptr) uintptr

func ICoreWebView2FrameNameChangedEventHandlerIUnknownRelease ¶

func ICoreWebView2FrameNameChangedEventHandlerIUnknownRelease(this *ICoreWebView2FrameNameChangedEventHandler) uintptr

func ICoreWebView2FrameNameChangedEventHandlerInvoke ¶

func ICoreWebView2FrameNameChangedEventHandlerInvoke(this *ICoreWebView2FrameNameChangedEventHandler, sender *ICoreWebView2Frame, args *IUnknown) uintptr

func ICoreWebView2FrameNavigationCompletedEventHandlerIUnknownAddRef ¶

func ICoreWebView2FrameNavigationCompletedEventHandlerIUnknownAddRef(this *ICoreWebView2FrameNavigationCompletedEventHandler) uintptr

func ICoreWebView2FrameNavigationCompletedEventHandlerIUnknownQueryInterface ¶

func ICoreWebView2FrameNavigationCompletedEventHandlerIUnknownQueryInterface(this *ICoreWebView2FrameNavigationCompletedEventHandler, refiid, object uintptr) uintptr

func ICoreWebView2FrameNavigationCompletedEventHandlerIUnknownRelease ¶

func ICoreWebView2FrameNavigationCompletedEventHandlerIUnknownRelease(this *ICoreWebView2FrameNavigationCompletedEventHandler) uintptr

func ICoreWebView2FrameNavigationStartingEventHandlerIUnknownAddRef ¶

func ICoreWebView2FrameNavigationStartingEventHandlerIUnknownAddRef(this *ICoreWebView2FrameNavigationStartingEventHandler) uintptr

func ICoreWebView2FrameNavigationStartingEventHandlerIUnknownQueryInterface ¶

func ICoreWebView2FrameNavigationStartingEventHandlerIUnknownQueryInterface(this *ICoreWebView2FrameNavigationStartingEventHandler, refiid, object uintptr) uintptr

func ICoreWebView2FrameNavigationStartingEventHandlerIUnknownRelease ¶

func ICoreWebView2FrameNavigationStartingEventHandlerIUnknownRelease(this *ICoreWebView2FrameNavigationStartingEventHandler) uintptr

func ICoreWebView2FramePermissionRequestedEventHandlerIUnknownAddRef ¶

func ICoreWebView2FramePermissionRequestedEventHandlerIUnknownAddRef(this *ICoreWebView2FramePermissionRequestedEventHandler) uintptr

func ICoreWebView2FramePermissionRequestedEventHandlerIUnknownQueryInterface ¶

func ICoreWebView2FramePermissionRequestedEventHandlerIUnknownQueryInterface(this *ICoreWebView2FramePermissionRequestedEventHandler, refiid, object uintptr) uintptr

func ICoreWebView2FramePermissionRequestedEventHandlerIUnknownRelease ¶

func ICoreWebView2FramePermissionRequestedEventHandlerIUnknownRelease(this *ICoreWebView2FramePermissionRequestedEventHandler) uintptr

func ICoreWebView2FrameWebMessageReceivedEventHandlerIUnknownAddRef ¶

func ICoreWebView2FrameWebMessageReceivedEventHandlerIUnknownAddRef(this *ICoreWebView2FrameWebMessageReceivedEventHandler) uintptr

func ICoreWebView2FrameWebMessageReceivedEventHandlerIUnknownQueryInterface ¶

func ICoreWebView2FrameWebMessageReceivedEventHandlerIUnknownQueryInterface(this *ICoreWebView2FrameWebMessageReceivedEventHandler, refiid, object uintptr) uintptr

func ICoreWebView2FrameWebMessageReceivedEventHandlerIUnknownRelease ¶

func ICoreWebView2FrameWebMessageReceivedEventHandlerIUnknownRelease(this *ICoreWebView2FrameWebMessageReceivedEventHandler) uintptr

func ICoreWebView2GetCookiesCompletedHandlerIUnknownAddRef ¶

func ICoreWebView2GetCookiesCompletedHandlerIUnknownAddRef(this *ICoreWebView2GetCookiesCompletedHandler) uintptr

func ICoreWebView2GetCookiesCompletedHandlerIUnknownQueryInterface ¶

func ICoreWebView2GetCookiesCompletedHandlerIUnknownQueryInterface(this *ICoreWebView2GetCookiesCompletedHandler, refiid, object uintptr) uintptr

func ICoreWebView2GetCookiesCompletedHandlerIUnknownRelease ¶

func ICoreWebView2GetCookiesCompletedHandlerIUnknownRelease(this *ICoreWebView2GetCookiesCompletedHandler) uintptr

func ICoreWebView2GetCookiesCompletedHandlerInvoke ¶

func ICoreWebView2GetCookiesCompletedHandlerInvoke(this *ICoreWebView2GetCookiesCompletedHandler, result uintptr, cookieList *ICoreWebView2CookieList) uintptr

func ICoreWebView2GetFaviconCompletedHandlerIUnknownAddRef ¶

func ICoreWebView2GetFaviconCompletedHandlerIUnknownAddRef(this *ICoreWebView2GetFaviconCompletedHandler) uintptr

func ICoreWebView2GetFaviconCompletedHandlerIUnknownQueryInterface ¶

func ICoreWebView2GetFaviconCompletedHandlerIUnknownQueryInterface(this *ICoreWebView2GetFaviconCompletedHandler, refiid, object uintptr) uintptr

func ICoreWebView2GetFaviconCompletedHandlerIUnknownRelease ¶

func ICoreWebView2GetFaviconCompletedHandlerIUnknownRelease(this *ICoreWebView2GetFaviconCompletedHandler) uintptr

func ICoreWebView2GetFaviconCompletedHandlerInvoke ¶

func ICoreWebView2GetFaviconCompletedHandlerInvoke(this *ICoreWebView2GetFaviconCompletedHandler, errorCode uintptr, faviconStream *IStream) uintptr

func ICoreWebView2GetNonDefaultPermissionSettingsCompletedHandlerIUnknownAddRef ¶

func ICoreWebView2GetNonDefaultPermissionSettingsCompletedHandlerIUnknownAddRef(this *ICoreWebView2GetNonDefaultPermissionSettingsCompletedHandler) uintptr

func ICoreWebView2GetNonDefaultPermissionSettingsCompletedHandlerIUnknownQueryInterface ¶

func ICoreWebView2GetNonDefaultPermissionSettingsCompletedHandlerIUnknownQueryInterface(this *ICoreWebView2GetNonDefaultPermissionSettingsCompletedHandler, refiid, object uintptr) uintptr

func ICoreWebView2GetNonDefaultPermissionSettingsCompletedHandlerIUnknownRelease ¶

func ICoreWebView2GetNonDefaultPermissionSettingsCompletedHandlerIUnknownRelease(this *ICoreWebView2GetNonDefaultPermissionSettingsCompletedHandler) uintptr

func ICoreWebView2HistoryChangedEventHandlerIUnknownAddRef ¶

func ICoreWebView2HistoryChangedEventHandlerIUnknownAddRef(this *ICoreWebView2HistoryChangedEventHandler) uintptr

func ICoreWebView2HistoryChangedEventHandlerIUnknownQueryInterface ¶

func ICoreWebView2HistoryChangedEventHandlerIUnknownQueryInterface(this *ICoreWebView2HistoryChangedEventHandler, refiid, object uintptr) uintptr

func ICoreWebView2HistoryChangedEventHandlerIUnknownRelease ¶

func ICoreWebView2HistoryChangedEventHandlerIUnknownRelease(this *ICoreWebView2HistoryChangedEventHandler) uintptr

func ICoreWebView2HistoryChangedEventHandlerInvoke ¶

func ICoreWebView2HistoryChangedEventHandlerInvoke(this *ICoreWebView2HistoryChangedEventHandler, sender *ICoreWebView2, args *IUnknown) uintptr

func ICoreWebView2IsDefaultDownloadDialogOpenChangedEventHandlerIUnknownAddRef ¶

func ICoreWebView2IsDefaultDownloadDialogOpenChangedEventHandlerIUnknownAddRef(this *ICoreWebView2IsDefaultDownloadDialogOpenChangedEventHandler) uintptr

func ICoreWebView2IsDefaultDownloadDialogOpenChangedEventHandlerIUnknownQueryInterface ¶

func ICoreWebView2IsDefaultDownloadDialogOpenChangedEventHandlerIUnknownQueryInterface(this *ICoreWebView2IsDefaultDownloadDialogOpenChangedEventHandler, refiid, object uintptr) uintptr

func ICoreWebView2IsDefaultDownloadDialogOpenChangedEventHandlerIUnknownRelease ¶

func ICoreWebView2IsDefaultDownloadDialogOpenChangedEventHandlerIUnknownRelease(this *ICoreWebView2IsDefaultDownloadDialogOpenChangedEventHandler) uintptr

func ICoreWebView2IsDefaultDownloadDialogOpenChangedEventHandlerInvoke ¶

func ICoreWebView2IsDefaultDownloadDialogOpenChangedEventHandlerInvoke(this *ICoreWebView2IsDefaultDownloadDialogOpenChangedEventHandler, sender *ICoreWebView2, args *IUnknown) uintptr

func ICoreWebView2IsDocumentPlayingAudioChangedEventHandlerIUnknownAddRef ¶

func ICoreWebView2IsDocumentPlayingAudioChangedEventHandlerIUnknownAddRef(this *ICoreWebView2IsDocumentPlayingAudioChangedEventHandler) uintptr

func ICoreWebView2IsDocumentPlayingAudioChangedEventHandlerIUnknownQueryInterface ¶

func ICoreWebView2IsDocumentPlayingAudioChangedEventHandlerIUnknownQueryInterface(this *ICoreWebView2IsDocumentPlayingAudioChangedEventHandler, refiid, object uintptr) uintptr

func ICoreWebView2IsDocumentPlayingAudioChangedEventHandlerIUnknownRelease ¶

func ICoreWebView2IsDocumentPlayingAudioChangedEventHandlerIUnknownRelease(this *ICoreWebView2IsDocumentPlayingAudioChangedEventHandler) uintptr

func ICoreWebView2IsDocumentPlayingAudioChangedEventHandlerInvoke ¶

func ICoreWebView2IsDocumentPlayingAudioChangedEventHandlerInvoke(this *ICoreWebView2IsDocumentPlayingAudioChangedEventHandler, sender *ICoreWebView2, args *IUnknown) uintptr

func ICoreWebView2IsMutedChangedEventHandlerIUnknownAddRef ¶

func ICoreWebView2IsMutedChangedEventHandlerIUnknownAddRef(this *ICoreWebView2IsMutedChangedEventHandler) uintptr

func ICoreWebView2IsMutedChangedEventHandlerIUnknownQueryInterface ¶

func ICoreWebView2IsMutedChangedEventHandlerIUnknownQueryInterface(this *ICoreWebView2IsMutedChangedEventHandler, refiid, object uintptr) uintptr

func ICoreWebView2IsMutedChangedEventHandlerIUnknownRelease ¶

func ICoreWebView2IsMutedChangedEventHandlerIUnknownRelease(this *ICoreWebView2IsMutedChangedEventHandler) uintptr

func ICoreWebView2IsMutedChangedEventHandlerInvoke ¶

func ICoreWebView2IsMutedChangedEventHandlerInvoke(this *ICoreWebView2IsMutedChangedEventHandler, sender *ICoreWebView2, args *IUnknown) uintptr

func ICoreWebView2LaunchingExternalUriSchemeEventHandlerIUnknownAddRef ¶

func ICoreWebView2LaunchingExternalUriSchemeEventHandlerIUnknownAddRef(this *ICoreWebView2LaunchingExternalUriSchemeEventHandler) uintptr

func ICoreWebView2LaunchingExternalUriSchemeEventHandlerIUnknownQueryInterface ¶

func ICoreWebView2LaunchingExternalUriSchemeEventHandlerIUnknownQueryInterface(this *ICoreWebView2LaunchingExternalUriSchemeEventHandler, refiid, object uintptr) uintptr

func ICoreWebView2LaunchingExternalUriSchemeEventHandlerIUnknownRelease ¶

func ICoreWebView2LaunchingExternalUriSchemeEventHandlerIUnknownRelease(this *ICoreWebView2LaunchingExternalUriSchemeEventHandler) uintptr

func ICoreWebView2MoveFocusRequestedEventHandlerIUnknownAddRef ¶

func ICoreWebView2MoveFocusRequestedEventHandlerIUnknownAddRef(this *ICoreWebView2MoveFocusRequestedEventHandler) uintptr

func ICoreWebView2MoveFocusRequestedEventHandlerIUnknownQueryInterface ¶

func ICoreWebView2MoveFocusRequestedEventHandlerIUnknownQueryInterface(this *ICoreWebView2MoveFocusRequestedEventHandler, refiid, object uintptr) uintptr

func ICoreWebView2MoveFocusRequestedEventHandlerIUnknownRelease ¶

func ICoreWebView2MoveFocusRequestedEventHandlerIUnknownRelease(this *ICoreWebView2MoveFocusRequestedEventHandler) uintptr

func ICoreWebView2NavigationCompletedEventHandlerIUnknownAddRef ¶

func ICoreWebView2NavigationCompletedEventHandlerIUnknownAddRef(this *ICoreWebView2NavigationCompletedEventHandler) uintptr

func ICoreWebView2NavigationCompletedEventHandlerIUnknownQueryInterface ¶

func ICoreWebView2NavigationCompletedEventHandlerIUnknownQueryInterface(this *ICoreWebView2NavigationCompletedEventHandler, refiid, object uintptr) uintptr

func ICoreWebView2NavigationCompletedEventHandlerIUnknownRelease ¶

func ICoreWebView2NavigationCompletedEventHandlerIUnknownRelease(this *ICoreWebView2NavigationCompletedEventHandler) uintptr

func ICoreWebView2NavigationStartingEventHandlerIUnknownAddRef ¶

func ICoreWebView2NavigationStartingEventHandlerIUnknownAddRef(this *ICoreWebView2NavigationStartingEventHandler) uintptr

func ICoreWebView2NavigationStartingEventHandlerIUnknownQueryInterface ¶

func ICoreWebView2NavigationStartingEventHandlerIUnknownQueryInterface(this *ICoreWebView2NavigationStartingEventHandler, refiid, object uintptr) uintptr

func ICoreWebView2NavigationStartingEventHandlerIUnknownRelease ¶

func ICoreWebView2NavigationStartingEventHandlerIUnknownRelease(this *ICoreWebView2NavigationStartingEventHandler) uintptr

func ICoreWebView2NewBrowserVersionAvailableEventHandlerIUnknownAddRef ¶

func ICoreWebView2NewBrowserVersionAvailableEventHandlerIUnknownAddRef(this *ICoreWebView2NewBrowserVersionAvailableEventHandler) uintptr

func ICoreWebView2NewBrowserVersionAvailableEventHandlerIUnknownQueryInterface ¶

func ICoreWebView2NewBrowserVersionAvailableEventHandlerIUnknownQueryInterface(this *ICoreWebView2NewBrowserVersionAvailableEventHandler, refiid, object uintptr) uintptr

func ICoreWebView2NewBrowserVersionAvailableEventHandlerIUnknownRelease ¶

func ICoreWebView2NewBrowserVersionAvailableEventHandlerIUnknownRelease(this *ICoreWebView2NewBrowserVersionAvailableEventHandler) uintptr

func ICoreWebView2NewWindowRequestedEventHandlerIUnknownAddRef ¶

func ICoreWebView2NewWindowRequestedEventHandlerIUnknownAddRef(this *ICoreWebView2NewWindowRequestedEventHandler) uintptr

func ICoreWebView2NewWindowRequestedEventHandlerIUnknownQueryInterface ¶

func ICoreWebView2NewWindowRequestedEventHandlerIUnknownQueryInterface(this *ICoreWebView2NewWindowRequestedEventHandler, refiid, object uintptr) uintptr

func ICoreWebView2NewWindowRequestedEventHandlerIUnknownRelease ¶

func ICoreWebView2NewWindowRequestedEventHandlerIUnknownRelease(this *ICoreWebView2NewWindowRequestedEventHandler) uintptr

func ICoreWebView2PermissionRequestedEventHandlerIUnknownAddRef ¶

func ICoreWebView2PermissionRequestedEventHandlerIUnknownAddRef(this *ICoreWebView2PermissionRequestedEventHandler) uintptr

func ICoreWebView2PermissionRequestedEventHandlerIUnknownQueryInterface ¶

func ICoreWebView2PermissionRequestedEventHandlerIUnknownQueryInterface(this *ICoreWebView2PermissionRequestedEventHandler, refiid, object uintptr) uintptr

func ICoreWebView2PermissionRequestedEventHandlerIUnknownRelease ¶

func ICoreWebView2PermissionRequestedEventHandlerIUnknownRelease(this *ICoreWebView2PermissionRequestedEventHandler) uintptr

func ICoreWebView2PrintCompletedHandlerIUnknownAddRef ¶

func ICoreWebView2PrintCompletedHandlerIUnknownAddRef(this *ICoreWebView2PrintCompletedHandler) uintptr

func ICoreWebView2PrintCompletedHandlerIUnknownQueryInterface ¶

func ICoreWebView2PrintCompletedHandlerIUnknownQueryInterface(this *ICoreWebView2PrintCompletedHandler, refiid, object uintptr) uintptr

func ICoreWebView2PrintCompletedHandlerIUnknownRelease ¶

func ICoreWebView2PrintCompletedHandlerIUnknownRelease(this *ICoreWebView2PrintCompletedHandler) uintptr

func ICoreWebView2PrintCompletedHandlerInvoke ¶

func ICoreWebView2PrintCompletedHandlerInvoke(this *ICoreWebView2PrintCompletedHandler, errorCode uintptr, printStatus COREWEBVIEW2_PRINT_STATUS) uintptr

func ICoreWebView2PrintToPdfCompletedHandlerIUnknownAddRef ¶

func ICoreWebView2PrintToPdfCompletedHandlerIUnknownAddRef(this *ICoreWebView2PrintToPdfCompletedHandler) uintptr

func ICoreWebView2PrintToPdfCompletedHandlerIUnknownQueryInterface ¶

func ICoreWebView2PrintToPdfCompletedHandlerIUnknownQueryInterface(this *ICoreWebView2PrintToPdfCompletedHandler, refiid, object uintptr) uintptr

func ICoreWebView2PrintToPdfCompletedHandlerIUnknownRelease ¶

func ICoreWebView2PrintToPdfCompletedHandlerIUnknownRelease(this *ICoreWebView2PrintToPdfCompletedHandler) uintptr

func ICoreWebView2PrintToPdfCompletedHandlerInvoke ¶

func ICoreWebView2PrintToPdfCompletedHandlerInvoke(this *ICoreWebView2PrintToPdfCompletedHandler, errorCode uintptr, isSuccessful bool) uintptr

func ICoreWebView2PrintToPdfStreamCompletedHandlerIUnknownAddRef ¶

func ICoreWebView2PrintToPdfStreamCompletedHandlerIUnknownAddRef(this *ICoreWebView2PrintToPdfStreamCompletedHandler) uintptr

func ICoreWebView2PrintToPdfStreamCompletedHandlerIUnknownQueryInterface ¶

func ICoreWebView2PrintToPdfStreamCompletedHandlerIUnknownQueryInterface(this *ICoreWebView2PrintToPdfStreamCompletedHandler, refiid, object uintptr) uintptr

func ICoreWebView2PrintToPdfStreamCompletedHandlerIUnknownRelease ¶

func ICoreWebView2PrintToPdfStreamCompletedHandlerIUnknownRelease(this *ICoreWebView2PrintToPdfStreamCompletedHandler) uintptr

func ICoreWebView2PrintToPdfStreamCompletedHandlerInvoke ¶

func ICoreWebView2PrintToPdfStreamCompletedHandlerInvoke(this *ICoreWebView2PrintToPdfStreamCompletedHandler, errorCode uintptr, pdfStream *IStream) uintptr

func ICoreWebView2ProcessFailedEventHandlerIUnknownAddRef ¶

func ICoreWebView2ProcessFailedEventHandlerIUnknownAddRef(this *ICoreWebView2ProcessFailedEventHandler) uintptr

func ICoreWebView2ProcessFailedEventHandlerIUnknownQueryInterface ¶

func ICoreWebView2ProcessFailedEventHandlerIUnknownQueryInterface(this *ICoreWebView2ProcessFailedEventHandler, refiid, object uintptr) uintptr

func ICoreWebView2ProcessFailedEventHandlerIUnknownRelease ¶

func ICoreWebView2ProcessFailedEventHandlerIUnknownRelease(this *ICoreWebView2ProcessFailedEventHandler) uintptr

func ICoreWebView2ProcessInfosChangedEventHandlerIUnknownAddRef ¶

func ICoreWebView2ProcessInfosChangedEventHandlerIUnknownAddRef(this *ICoreWebView2ProcessInfosChangedEventHandler) uintptr

func ICoreWebView2ProcessInfosChangedEventHandlerIUnknownQueryInterface ¶

func ICoreWebView2ProcessInfosChangedEventHandlerIUnknownQueryInterface(this *ICoreWebView2ProcessInfosChangedEventHandler, refiid, object uintptr) uintptr

func ICoreWebView2ProcessInfosChangedEventHandlerIUnknownRelease ¶

func ICoreWebView2ProcessInfosChangedEventHandlerIUnknownRelease(this *ICoreWebView2ProcessInfosChangedEventHandler) uintptr

func ICoreWebView2RasterizationScaleChangedEventHandlerIUnknownAddRef ¶

func ICoreWebView2RasterizationScaleChangedEventHandlerIUnknownAddRef(this *ICoreWebView2RasterizationScaleChangedEventHandler) uintptr

func ICoreWebView2RasterizationScaleChangedEventHandlerIUnknownQueryInterface ¶

func ICoreWebView2RasterizationScaleChangedEventHandlerIUnknownQueryInterface(this *ICoreWebView2RasterizationScaleChangedEventHandler, refiid, object uintptr) uintptr

func ICoreWebView2RasterizationScaleChangedEventHandlerIUnknownRelease ¶

func ICoreWebView2RasterizationScaleChangedEventHandlerIUnknownRelease(this *ICoreWebView2RasterizationScaleChangedEventHandler) uintptr

func ICoreWebView2ScriptDialogOpeningEventHandlerIUnknownAddRef ¶

func ICoreWebView2ScriptDialogOpeningEventHandlerIUnknownAddRef(this *ICoreWebView2ScriptDialogOpeningEventHandler) uintptr

func ICoreWebView2ScriptDialogOpeningEventHandlerIUnknownQueryInterface ¶

func ICoreWebView2ScriptDialogOpeningEventHandlerIUnknownQueryInterface(this *ICoreWebView2ScriptDialogOpeningEventHandler, refiid, object uintptr) uintptr

func ICoreWebView2ScriptDialogOpeningEventHandlerIUnknownRelease ¶

func ICoreWebView2ScriptDialogOpeningEventHandlerIUnknownRelease(this *ICoreWebView2ScriptDialogOpeningEventHandler) uintptr

func ICoreWebView2ServerCertificateErrorDetectedEventHandlerIUnknownAddRef ¶

func ICoreWebView2ServerCertificateErrorDetectedEventHandlerIUnknownAddRef(this *ICoreWebView2ServerCertificateErrorDetectedEventHandler) uintptr

func ICoreWebView2ServerCertificateErrorDetectedEventHandlerIUnknownQueryInterface ¶

func ICoreWebView2ServerCertificateErrorDetectedEventHandlerIUnknownQueryInterface(this *ICoreWebView2ServerCertificateErrorDetectedEventHandler, refiid, object uintptr) uintptr

func ICoreWebView2ServerCertificateErrorDetectedEventHandlerIUnknownRelease ¶

func ICoreWebView2ServerCertificateErrorDetectedEventHandlerIUnknownRelease(this *ICoreWebView2ServerCertificateErrorDetectedEventHandler) uintptr

func ICoreWebView2SetPermissionStateCompletedHandlerIUnknownAddRef ¶

func ICoreWebView2SetPermissionStateCompletedHandlerIUnknownAddRef(this *ICoreWebView2SetPermissionStateCompletedHandler) uintptr

func ICoreWebView2SetPermissionStateCompletedHandlerIUnknownQueryInterface ¶

func ICoreWebView2SetPermissionStateCompletedHandlerIUnknownQueryInterface(this *ICoreWebView2SetPermissionStateCompletedHandler, refiid, object uintptr) uintptr

func ICoreWebView2SetPermissionStateCompletedHandlerIUnknownRelease ¶

func ICoreWebView2SetPermissionStateCompletedHandlerIUnknownRelease(this *ICoreWebView2SetPermissionStateCompletedHandler) uintptr

func ICoreWebView2SetPermissionStateCompletedHandlerInvoke ¶

func ICoreWebView2SetPermissionStateCompletedHandlerInvoke(this *ICoreWebView2SetPermissionStateCompletedHandler, errorCode uintptr) uintptr

func ICoreWebView2SourceChangedEventHandlerIUnknownAddRef ¶

func ICoreWebView2SourceChangedEventHandlerIUnknownAddRef(this *ICoreWebView2SourceChangedEventHandler) uintptr

func ICoreWebView2SourceChangedEventHandlerIUnknownQueryInterface ¶

func ICoreWebView2SourceChangedEventHandlerIUnknownQueryInterface(this *ICoreWebView2SourceChangedEventHandler, refiid, object uintptr) uintptr

func ICoreWebView2SourceChangedEventHandlerIUnknownRelease ¶

func ICoreWebView2SourceChangedEventHandlerIUnknownRelease(this *ICoreWebView2SourceChangedEventHandler) uintptr

func ICoreWebView2StateChangedEventHandlerIUnknownAddRef ¶

func ICoreWebView2StateChangedEventHandlerIUnknownAddRef(this *ICoreWebView2StateChangedEventHandler) uintptr

func ICoreWebView2StateChangedEventHandlerIUnknownQueryInterface ¶

func ICoreWebView2StateChangedEventHandlerIUnknownQueryInterface(this *ICoreWebView2StateChangedEventHandler, refiid, object uintptr) uintptr

func ICoreWebView2StateChangedEventHandlerIUnknownRelease ¶

func ICoreWebView2StateChangedEventHandlerIUnknownRelease(this *ICoreWebView2StateChangedEventHandler) uintptr

func ICoreWebView2StatusBarTextChangedEventHandlerIUnknownAddRef ¶

func ICoreWebView2StatusBarTextChangedEventHandlerIUnknownAddRef(this *ICoreWebView2StatusBarTextChangedEventHandler) uintptr

func ICoreWebView2StatusBarTextChangedEventHandlerIUnknownQueryInterface ¶

func ICoreWebView2StatusBarTextChangedEventHandlerIUnknownQueryInterface(this *ICoreWebView2StatusBarTextChangedEventHandler, refiid, object uintptr) uintptr

func ICoreWebView2StatusBarTextChangedEventHandlerIUnknownRelease ¶

func ICoreWebView2StatusBarTextChangedEventHandlerIUnknownRelease(this *ICoreWebView2StatusBarTextChangedEventHandler) uintptr

func ICoreWebView2StatusBarTextChangedEventHandlerInvoke ¶

func ICoreWebView2StatusBarTextChangedEventHandlerInvoke(this *ICoreWebView2StatusBarTextChangedEventHandler, sender *ICoreWebView2, args *IUnknown) uintptr

func ICoreWebView2TrySuspendCompletedHandlerIUnknownAddRef ¶

func ICoreWebView2TrySuspendCompletedHandlerIUnknownAddRef(this *ICoreWebView2TrySuspendCompletedHandler) uintptr

func ICoreWebView2TrySuspendCompletedHandlerIUnknownQueryInterface ¶

func ICoreWebView2TrySuspendCompletedHandlerIUnknownQueryInterface(this *ICoreWebView2TrySuspendCompletedHandler, refiid, object uintptr) uintptr

func ICoreWebView2TrySuspendCompletedHandlerIUnknownRelease ¶

func ICoreWebView2TrySuspendCompletedHandlerIUnknownRelease(this *ICoreWebView2TrySuspendCompletedHandler) uintptr

func ICoreWebView2TrySuspendCompletedHandlerInvoke ¶

func ICoreWebView2TrySuspendCompletedHandlerInvoke(this *ICoreWebView2TrySuspendCompletedHandler, errorCode uintptr, isSuccessful bool) uintptr

func ICoreWebView2WebMessageReceivedEventHandlerIUnknownAddRef ¶

func ICoreWebView2WebMessageReceivedEventHandlerIUnknownAddRef(this *ICoreWebView2WebMessageReceivedEventHandler) uintptr

func ICoreWebView2WebMessageReceivedEventHandlerIUnknownQueryInterface ¶

func ICoreWebView2WebMessageReceivedEventHandlerIUnknownQueryInterface(this *ICoreWebView2WebMessageReceivedEventHandler, refiid, object uintptr) uintptr

func ICoreWebView2WebMessageReceivedEventHandlerIUnknownRelease ¶

func ICoreWebView2WebMessageReceivedEventHandlerIUnknownRelease(this *ICoreWebView2WebMessageReceivedEventHandler) uintptr

func ICoreWebView2WebResourceRequestedEventHandlerIUnknownAddRef ¶

func ICoreWebView2WebResourceRequestedEventHandlerIUnknownAddRef(this *ICoreWebView2WebResourceRequestedEventHandler) uintptr

func ICoreWebView2WebResourceRequestedEventHandlerIUnknownQueryInterface ¶

func ICoreWebView2WebResourceRequestedEventHandlerIUnknownQueryInterface(this *ICoreWebView2WebResourceRequestedEventHandler, refiid, object uintptr) uintptr

func ICoreWebView2WebResourceRequestedEventHandlerIUnknownRelease ¶

func ICoreWebView2WebResourceRequestedEventHandlerIUnknownRelease(this *ICoreWebView2WebResourceRequestedEventHandler) uintptr

func ICoreWebView2WebResourceResponseReceivedEventHandlerIUnknownAddRef ¶

func ICoreWebView2WebResourceResponseReceivedEventHandlerIUnknownAddRef(this *ICoreWebView2WebResourceResponseReceivedEventHandler) uintptr

func ICoreWebView2WebResourceResponseReceivedEventHandlerIUnknownQueryInterface ¶

func ICoreWebView2WebResourceResponseReceivedEventHandlerIUnknownQueryInterface(this *ICoreWebView2WebResourceResponseReceivedEventHandler, refiid, object uintptr) uintptr

func ICoreWebView2WebResourceResponseReceivedEventHandlerIUnknownRelease ¶

func ICoreWebView2WebResourceResponseReceivedEventHandlerIUnknownRelease(this *ICoreWebView2WebResourceResponseReceivedEventHandler) uintptr

func ICoreWebView2WebResourceResponseViewGetContentCompletedHandlerIUnknownQueryInterface ¶

func ICoreWebView2WebResourceResponseViewGetContentCompletedHandlerIUnknownQueryInterface(this *ICoreWebView2WebResourceResponseViewGetContentCompletedHandler, refiid, object uintptr) uintptr

func ICoreWebView2WebResourceResponseViewGetContentCompletedHandlerIUnknownRelease ¶

func ICoreWebView2WebResourceResponseViewGetContentCompletedHandlerIUnknownRelease(this *ICoreWebView2WebResourceResponseViewGetContentCompletedHandler) uintptr

func ICoreWebView2WebResourceResponseViewGetContentCompletedHandlerInvoke ¶

func ICoreWebView2WebResourceResponseViewGetContentCompletedHandlerInvoke(this *ICoreWebView2WebResourceResponseViewGetContentCompletedHandler, errorCode uintptr, content *IStream) uintptr

func ICoreWebView2WindowCloseRequestedEventHandlerIUnknownAddRef ¶

func ICoreWebView2WindowCloseRequestedEventHandlerIUnknownAddRef(this *ICoreWebView2WindowCloseRequestedEventHandler) uintptr

func ICoreWebView2WindowCloseRequestedEventHandlerIUnknownQueryInterface ¶

func ICoreWebView2WindowCloseRequestedEventHandlerIUnknownQueryInterface(this *ICoreWebView2WindowCloseRequestedEventHandler, refiid, object uintptr) uintptr

func ICoreWebView2WindowCloseRequestedEventHandlerIUnknownRelease ¶

func ICoreWebView2WindowCloseRequestedEventHandlerIUnknownRelease(this *ICoreWebView2WindowCloseRequestedEventHandler) uintptr

func ICoreWebView2WindowCloseRequestedEventHandlerInvoke ¶

func ICoreWebView2WindowCloseRequestedEventHandlerInvoke(this *ICoreWebView2WindowCloseRequestedEventHandler, sender *ICoreWebView2, args *IUnknown) uintptr

func ICoreWebView2ZoomFactorChangedEventHandlerIUnknownAddRef ¶

func ICoreWebView2ZoomFactorChangedEventHandlerIUnknownAddRef(this *ICoreWebView2ZoomFactorChangedEventHandler) uintptr

func ICoreWebView2ZoomFactorChangedEventHandlerIUnknownQueryInterface ¶

func ICoreWebView2ZoomFactorChangedEventHandlerIUnknownQueryInterface(this *ICoreWebView2ZoomFactorChangedEventHandler, refiid, object uintptr) uintptr

func ICoreWebView2ZoomFactorChangedEventHandlerIUnknownRelease ¶

func ICoreWebView2ZoomFactorChangedEventHandlerIUnknownRelease(this *ICoreWebView2ZoomFactorChangedEventHandler) uintptr

func ICoreWebView2ZoomFactorChangedEventHandlerInvoke ¶

func ICoreWebView2ZoomFactorChangedEventHandlerInvoke(this *ICoreWebView2ZoomFactorChangedEventHandler, sender *ICoreWebView2Controller, args *IUnknown) uintptr

func IsEqualGUID ¶

func IsEqualGUID(guid1 *GUID, guid2 *GUID) bool

IsEqualGUID compares two GUID.

Not constant time comparison.

func UTF16PtrFromString ¶

func UTF16PtrFromString(s string) (*uint16, error)

func UTF16PtrToString ¶

func UTF16PtrToString(s *uint16) string

Types ¶

type COREWEBVIEW2_BOUNDS_MODE ¶

type COREWEBVIEW2_BOUNDS_MODE uint32

type COREWEBVIEW2_BROWSER_PROCESS_EXIT_KIND ¶

type COREWEBVIEW2_BROWSER_PROCESS_EXIT_KIND uint32

type COREWEBVIEW2_BROWSING_DATA_KINDS ¶

type COREWEBVIEW2_BROWSING_DATA_KINDS uint32

type COREWEBVIEW2_CAPTURE_PREVIEW_IMAGE_FORMAT ¶

type COREWEBVIEW2_CAPTURE_PREVIEW_IMAGE_FORMAT uint32

type COREWEBVIEW2_CLIENT_CERTIFICATE_KIND ¶

type COREWEBVIEW2_CLIENT_CERTIFICATE_KIND uint32

type COREWEBVIEW2_COLOR ¶

type COREWEBVIEW2_COLOR struct {
	A uint8
	R uint8
	G uint8
	B uint8
}

type COREWEBVIEW2_CONTEXT_MENU_ITEM_KIND ¶

type COREWEBVIEW2_CONTEXT_MENU_ITEM_KIND uint32

type COREWEBVIEW2_CONTEXT_MENU_TARGET_KIND ¶

type COREWEBVIEW2_CONTEXT_MENU_TARGET_KIND uint32
type COREWEBVIEW2_COOKIE_SAME_SITE_KIND uint32

type COREWEBVIEW2_DEFAULT_DOWNLOAD_DIALOG_CORNER_ALIGNMENT ¶

type COREWEBVIEW2_DEFAULT_DOWNLOAD_DIALOG_CORNER_ALIGNMENT uint32

type COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON ¶

type COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON uint32

type COREWEBVIEW2_DOWNLOAD_STATE ¶

type COREWEBVIEW2_DOWNLOAD_STATE uint32

type COREWEBVIEW2_FAVICON_IMAGE_FORMAT ¶

type COREWEBVIEW2_FAVICON_IMAGE_FORMAT uint32

type COREWEBVIEW2_HOST_RESOURCE_ACCESS_KIND ¶

type COREWEBVIEW2_HOST_RESOURCE_ACCESS_KIND uint32

type COREWEBVIEW2_KEY_EVENT_KIND ¶

type COREWEBVIEW2_KEY_EVENT_KIND uint32

type COREWEBVIEW2_MEMORY_USAGE_TARGET_LEVEL ¶

type COREWEBVIEW2_MEMORY_USAGE_TARGET_LEVEL uint32

type COREWEBVIEW2_MOUSE_EVENT_KIND ¶

type COREWEBVIEW2_MOUSE_EVENT_KIND uint32

type COREWEBVIEW2_MOUSE_EVENT_VIRTUAL_KEYS ¶

type COREWEBVIEW2_MOUSE_EVENT_VIRTUAL_KEYS uint32

type COREWEBVIEW2_MOVE_FOCUS_REASON ¶

type COREWEBVIEW2_MOVE_FOCUS_REASON uint32

type COREWEBVIEW2_NAVIGATION_KIND ¶

type COREWEBVIEW2_NAVIGATION_KIND uint32

type COREWEBVIEW2_PDF_TOOLBAR_ITEMS ¶

type COREWEBVIEW2_PDF_TOOLBAR_ITEMS uint32

type COREWEBVIEW2_PERMISSION_KIND ¶

type COREWEBVIEW2_PERMISSION_KIND uint32

type COREWEBVIEW2_PERMISSION_STATE ¶

type COREWEBVIEW2_PERMISSION_STATE uint32

type COREWEBVIEW2_PHYSICAL_KEY_STATUS ¶

type COREWEBVIEW2_PHYSICAL_KEY_STATUS struct {
	RepeatCount   uint32
	ScanCode      uint32
	IsExtendedKey bool
	IsMenuKeyDown bool
	WasKeyDown    bool
	IsKeyReleased bool
}

type COREWEBVIEW2_POINTER_EVENT_KIND ¶

type COREWEBVIEW2_POINTER_EVENT_KIND uint32

type COREWEBVIEW2_PREFERRED_COLOR_SCHEME ¶

type COREWEBVIEW2_PREFERRED_COLOR_SCHEME uint32

type COREWEBVIEW2_PRINT_COLLATION ¶

type COREWEBVIEW2_PRINT_COLLATION uint32

type COREWEBVIEW2_PRINT_COLOR_MODE ¶

type COREWEBVIEW2_PRINT_COLOR_MODE uint32

type COREWEBVIEW2_PRINT_DIALOG_KIND ¶

type COREWEBVIEW2_PRINT_DIALOG_KIND uint32

type COREWEBVIEW2_PRINT_DUPLEX ¶

type COREWEBVIEW2_PRINT_DUPLEX uint32

type COREWEBVIEW2_PRINT_MEDIA_SIZE ¶

type COREWEBVIEW2_PRINT_MEDIA_SIZE uint32

type COREWEBVIEW2_PRINT_ORIENTATION ¶

type COREWEBVIEW2_PRINT_ORIENTATION uint32

type COREWEBVIEW2_PRINT_STATUS ¶

type COREWEBVIEW2_PRINT_STATUS uint32

type COREWEBVIEW2_PROCESS_FAILED_KIND ¶

type COREWEBVIEW2_PROCESS_FAILED_KIND uint32

type COREWEBVIEW2_PROCESS_FAILED_REASON ¶

type COREWEBVIEW2_PROCESS_FAILED_REASON uint32

type COREWEBVIEW2_PROCESS_KIND ¶

type COREWEBVIEW2_PROCESS_KIND uint32

type COREWEBVIEW2_SCRIPT_DIALOG_KIND ¶

type COREWEBVIEW2_SCRIPT_DIALOG_KIND uint32

type COREWEBVIEW2_SERVER_CERTIFICATE_ERROR_ACTION ¶

type COREWEBVIEW2_SERVER_CERTIFICATE_ERROR_ACTION uint32

type COREWEBVIEW2_SHARED_BUFFER_ACCESS ¶

type COREWEBVIEW2_SHARED_BUFFER_ACCESS uint32

type COREWEBVIEW2_TRACKING_PREVENTION_LEVEL ¶

type COREWEBVIEW2_TRACKING_PREVENTION_LEVEL uint32

type COREWEBVIEW2_WEB_ERROR_STATUS ¶

type COREWEBVIEW2_WEB_ERROR_STATUS uint32

type COREWEBVIEW2_WEB_RESOURCE_CONTEXT ¶

type COREWEBVIEW2_WEB_RESOURCE_CONTEXT uint32

type ComProc ¶

type ComProc uintptr

ComProc stores a COM procedure.

func NewComProc ¶

func NewComProc(fn interface{}) ComProc

NewComProc creates a new COM proc from a Go function.

func (ComProc) Call ¶

func (p ComProc) Call(a ...uintptr) (r1, r2 uintptr, lastErr error)

Call calls a COM procedure.

type EventRegistrationToken ¶

type EventRegistrationToken struct {
	// contains filtered or unexported fields
}

type GUID ¶

type GUID struct {
	Data1 uint32
	Data2 uint16
	Data3 uint16
	Data4 [8]byte
}

GUID is Windows API specific GUID type.

This exists to match Windows GUID type for direct passing for COM. Format is in xxxxxxxx-xxxx-xxxx-xxxxxxxxxxxxxxxx.

func NewGUID ¶

func NewGUID(guid string) *GUID

NewGUID converts the given string into a globally unique identifier that is compliant with the Windows API.

The supplied string may be in any of these formats:

XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}

The conversion of the supplied string is not case-sensitive.

func (*GUID) String ¶

func (guid *GUID) String() string

String converts the GUID to string form. It will adhere to this pattern:

{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}

If the GUID is nil, the string representation of an empty GUID is returned:

{00000000-0000-0000-0000-000000000000}

type HANDLE ¶

type HANDLE uintptr

type HBRUSH ¶

type HBRUSH uintptr

type HCURSOR ¶

type HCURSOR uintptr

type HICON ¶

type HICON uintptr

type HINSTANCE ¶

type HINSTANCE uintptr

type HMENU ¶

type HMENU uintptr

type HMODULE ¶

type HMODULE uintptr

type HWND ¶

type HWND uintptr

type ICoreWebView2 ¶

type ICoreWebView2 struct {
	Vtbl *ICoreWebView2Vtbl
}

func (*ICoreWebView2) AddContainsFullScreenElementChanged ¶

func (i *ICoreWebView2) AddContainsFullScreenElementChanged(eventHandler *ICoreWebView2ContainsFullScreenElementChangedEventHandler) (EventRegistrationToken, error)

func (*ICoreWebView2) AddContentLoading ¶

func (*ICoreWebView2) AddDocumentTitleChanged ¶

func (i *ICoreWebView2) AddDocumentTitleChanged(eventHandler *ICoreWebView2DocumentTitleChangedEventHandler) (EventRegistrationToken, error)

func (*ICoreWebView2) AddFrameNavigationCompleted ¶

func (i *ICoreWebView2) AddFrameNavigationCompleted(eventHandler *ICoreWebView2NavigationCompletedEventHandler) (EventRegistrationToken, error)

func (*ICoreWebView2) AddFrameNavigationStarting ¶

func (i *ICoreWebView2) AddFrameNavigationStarting(eventHandler *ICoreWebView2NavigationStartingEventHandler) (EventRegistrationToken, error)

func (*ICoreWebView2) AddHistoryChanged ¶

func (*ICoreWebView2) AddHostObjectToScript ¶

func (i *ICoreWebView2) AddHostObjectToScript(name string, object *VARIANT) error

func (*ICoreWebView2) AddNavigationCompleted ¶

func (i *ICoreWebView2) AddNavigationCompleted(eventHandler *ICoreWebView2NavigationCompletedEventHandler) (EventRegistrationToken, error)

func (*ICoreWebView2) AddNavigationStarting ¶

func (*ICoreWebView2) AddNewWindowRequested ¶

func (*ICoreWebView2) AddPermissionRequested ¶

func (i *ICoreWebView2) AddPermissionRequested(eventHandler *ICoreWebView2PermissionRequestedEventHandler) (EventRegistrationToken, error)

func (*ICoreWebView2) AddProcessFailed ¶

func (*ICoreWebView2) AddRef ¶

func (i *ICoreWebView2) AddRef() uintptr

func (*ICoreWebView2) AddScriptDialogOpening ¶

func (i *ICoreWebView2) AddScriptDialogOpening(eventHandler *ICoreWebView2ScriptDialogOpeningEventHandler) (EventRegistrationToken, error)

func (*ICoreWebView2) AddScriptToExecuteOnDocumentCreated ¶

func (i *ICoreWebView2) AddScriptToExecuteOnDocumentCreated(javaScript string, handler *ICoreWebView2AddScriptToExecuteOnDocumentCreatedCompletedHandler) error

func (*ICoreWebView2) AddSourceChanged ¶

func (*ICoreWebView2) AddWebMessageReceived ¶

func (*ICoreWebView2) AddWebResourceRequested ¶

func (i *ICoreWebView2) AddWebResourceRequested(eventHandler *ICoreWebView2WebResourceRequestedEventHandler) (EventRegistrationToken, error)

func (*ICoreWebView2) AddWebResourceRequestedFilter ¶

func (i *ICoreWebView2) AddWebResourceRequestedFilter(uri string, resourceContext COREWEBVIEW2_WEB_RESOURCE_CONTEXT) error

func (*ICoreWebView2) AddWindowCloseRequested ¶

func (i *ICoreWebView2) AddWindowCloseRequested(eventHandler *ICoreWebView2WindowCloseRequestedEventHandler) (EventRegistrationToken, error)

func (*ICoreWebView2) CallDevToolsProtocolMethod ¶

func (i *ICoreWebView2) CallDevToolsProtocolMethod(methodName string, parametersAsJson string, handler *ICoreWebView2CallDevToolsProtocolMethodCompletedHandler) error

func (*ICoreWebView2) CapturePreview ¶

func (*ICoreWebView2) ExecuteScript ¶

func (i *ICoreWebView2) ExecuteScript(javaScript string, handler *ICoreWebView2ExecuteScriptCompletedHandler) error

func (*ICoreWebView2) GetBrowserProcessId ¶

func (i *ICoreWebView2) GetBrowserProcessId() (uint32, error)

func (*ICoreWebView2) GetCanGoBack ¶

func (i *ICoreWebView2) GetCanGoBack() (bool, error)

func (*ICoreWebView2) GetCanGoForward ¶

func (i *ICoreWebView2) GetCanGoForward() (bool, error)

func (*ICoreWebView2) GetContainsFullScreenElement ¶

func (i *ICoreWebView2) GetContainsFullScreenElement() (bool, error)

func (*ICoreWebView2) GetDevToolsProtocolEventReceiver ¶

func (i *ICoreWebView2) GetDevToolsProtocolEventReceiver(eventName string) (*ICoreWebView2DevToolsProtocolEventReceiver, error)

func (*ICoreWebView2) GetDocumentTitle ¶

func (i *ICoreWebView2) GetDocumentTitle() (string, error)

func (*ICoreWebView2) GetICoreWebView2CompositionController2 ¶

func (i *ICoreWebView2) GetICoreWebView2CompositionController2() *ICoreWebView2CompositionController2

func (*ICoreWebView2) GetICoreWebView2CompositionController3 ¶

func (i *ICoreWebView2) GetICoreWebView2CompositionController3() *ICoreWebView2CompositionController3

func (*ICoreWebView2) GetICoreWebView2Controller2 ¶

func (i *ICoreWebView2) GetICoreWebView2Controller2() *ICoreWebView2Controller2

func (*ICoreWebView2) GetICoreWebView2Controller3 ¶

func (i *ICoreWebView2) GetICoreWebView2Controller3() *ICoreWebView2Controller3

func (*ICoreWebView2) GetICoreWebView2Controller4 ¶

func (i *ICoreWebView2) GetICoreWebView2Controller4() *ICoreWebView2Controller4

func (*ICoreWebView2) GetICoreWebView2ControllerOptions2 ¶

func (i *ICoreWebView2) GetICoreWebView2ControllerOptions2() *ICoreWebView2ControllerOptions2

func (*ICoreWebView2) GetICoreWebView2DevToolsProtocolEventReceivedEventArgs2 ¶

func (i *ICoreWebView2) GetICoreWebView2DevToolsProtocolEventReceivedEventArgs2() *ICoreWebView2DevToolsProtocolEventReceivedEventArgs2

func (*ICoreWebView2) GetICoreWebView2Environment10 ¶

func (i *ICoreWebView2) GetICoreWebView2Environment10() *ICoreWebView2Environment10

func (*ICoreWebView2) GetICoreWebView2Environment11 ¶

func (i *ICoreWebView2) GetICoreWebView2Environment11() *ICoreWebView2Environment11

func (*ICoreWebView2) GetICoreWebView2Environment12 ¶

func (i *ICoreWebView2) GetICoreWebView2Environment12() *ICoreWebView2Environment12

func (*ICoreWebView2) GetICoreWebView2Environment2 ¶

func (i *ICoreWebView2) GetICoreWebView2Environment2() *ICoreWebView2Environment2

func (*ICoreWebView2) GetICoreWebView2Environment3 ¶

func (i *ICoreWebView2) GetICoreWebView2Environment3() *ICoreWebView2Environment3

func (*ICoreWebView2) GetICoreWebView2Environment4 ¶

func (i *ICoreWebView2) GetICoreWebView2Environment4() *ICoreWebView2Environment4

func (*ICoreWebView2) GetICoreWebView2Environment5 ¶

func (i *ICoreWebView2) GetICoreWebView2Environment5() *ICoreWebView2Environment5

func (*ICoreWebView2) GetICoreWebView2Environment6 ¶

func (i *ICoreWebView2) GetICoreWebView2Environment6() *ICoreWebView2Environment6

func (*ICoreWebView2) GetICoreWebView2Environment7 ¶

func (i *ICoreWebView2) GetICoreWebView2Environment7() *ICoreWebView2Environment7

func (*ICoreWebView2) GetICoreWebView2Environment8 ¶

func (i *ICoreWebView2) GetICoreWebView2Environment8() *ICoreWebView2Environment8

func (*ICoreWebView2) GetICoreWebView2Environment9 ¶

func (i *ICoreWebView2) GetICoreWebView2Environment9() *ICoreWebView2Environment9

func (*ICoreWebView2) GetICoreWebView2Frame2 ¶

func (i *ICoreWebView2) GetICoreWebView2Frame2() *ICoreWebView2Frame2

func (*ICoreWebView2) GetICoreWebView2Frame3 ¶

func (i *ICoreWebView2) GetICoreWebView2Frame3() *ICoreWebView2Frame3

func (*ICoreWebView2) GetICoreWebView2Frame4 ¶

func (i *ICoreWebView2) GetICoreWebView2Frame4() *ICoreWebView2Frame4

func (*ICoreWebView2) GetICoreWebView2NavigationCompletedEventArgs2 ¶

func (i *ICoreWebView2) GetICoreWebView2NavigationCompletedEventArgs2() *ICoreWebView2NavigationCompletedEventArgs2

func (*ICoreWebView2) GetICoreWebView2NavigationStartingEventArgs2 ¶

func (i *ICoreWebView2) GetICoreWebView2NavigationStartingEventArgs2() *ICoreWebView2NavigationStartingEventArgs2

func (*ICoreWebView2) GetICoreWebView2NavigationStartingEventArgs3 ¶

func (i *ICoreWebView2) GetICoreWebView2NavigationStartingEventArgs3() *ICoreWebView2NavigationStartingEventArgs3

func (*ICoreWebView2) GetICoreWebView2NewWindowRequestedEventArgs2 ¶

func (i *ICoreWebView2) GetICoreWebView2NewWindowRequestedEventArgs2() *ICoreWebView2NewWindowRequestedEventArgs2

func (*ICoreWebView2) GetICoreWebView2PermissionRequestedEventArgs2 ¶

func (i *ICoreWebView2) GetICoreWebView2PermissionRequestedEventArgs2() *ICoreWebView2PermissionRequestedEventArgs2

func (*ICoreWebView2) GetICoreWebView2PermissionRequestedEventArgs3 ¶

func (i *ICoreWebView2) GetICoreWebView2PermissionRequestedEventArgs3() *ICoreWebView2PermissionRequestedEventArgs3

func (*ICoreWebView2) GetICoreWebView2PrintSettings2 ¶

func (i *ICoreWebView2) GetICoreWebView2PrintSettings2() *ICoreWebView2PrintSettings2

func (*ICoreWebView2) GetICoreWebView2ProcessFailedEventArgs2 ¶

func (i *ICoreWebView2) GetICoreWebView2ProcessFailedEventArgs2() *ICoreWebView2ProcessFailedEventArgs2

func (*ICoreWebView2) GetICoreWebView2Profile2 ¶

func (i *ICoreWebView2) GetICoreWebView2Profile2() *ICoreWebView2Profile2

func (*ICoreWebView2) GetICoreWebView2Profile3 ¶

func (i *ICoreWebView2) GetICoreWebView2Profile3() *ICoreWebView2Profile3

func (*ICoreWebView2) GetICoreWebView2Profile4 ¶

func (i *ICoreWebView2) GetICoreWebView2Profile4() *ICoreWebView2Profile4

func (*ICoreWebView2) GetICoreWebView2Profile5 ¶

func (i *ICoreWebView2) GetICoreWebView2Profile5() *ICoreWebView2Profile5

func (*ICoreWebView2) GetICoreWebView2Profile6 ¶

func (i *ICoreWebView2) GetICoreWebView2Profile6() *ICoreWebView2Profile6

func (*ICoreWebView2) GetICoreWebView2Settings2 ¶

func (i *ICoreWebView2) GetICoreWebView2Settings2() *ICoreWebView2Settings2

func (*ICoreWebView2) GetICoreWebView2Settings3 ¶

func (i *ICoreWebView2) GetICoreWebView2Settings3() *ICoreWebView2Settings3

func (*ICoreWebView2) GetICoreWebView2Settings4 ¶

func (i *ICoreWebView2) GetICoreWebView2Settings4() *ICoreWebView2Settings4

func (*ICoreWebView2) GetICoreWebView2Settings5 ¶

func (i *ICoreWebView2) GetICoreWebView2Settings5() *ICoreWebView2Settings5

func (*ICoreWebView2) GetICoreWebView2Settings6 ¶

func (i *ICoreWebView2) GetICoreWebView2Settings6() *ICoreWebView2Settings6

func (*ICoreWebView2) GetICoreWebView2Settings7 ¶

func (i *ICoreWebView2) GetICoreWebView2Settings7() *ICoreWebView2Settings7

func (*ICoreWebView2) GetICoreWebView2Settings8 ¶

func (i *ICoreWebView2) GetICoreWebView2Settings8() *ICoreWebView2Settings8

func (*ICoreWebView2) GetICoreWebView2WebMessageReceivedEventArgs2 ¶

func (i *ICoreWebView2) GetICoreWebView2WebMessageReceivedEventArgs2() *ICoreWebView2WebMessageReceivedEventArgs2

func (*ICoreWebView2) GetICoreWebView2_10 ¶

func (i *ICoreWebView2) GetICoreWebView2_10() *ICoreWebView2_10

func (*ICoreWebView2) GetICoreWebView2_11 ¶

func (i *ICoreWebView2) GetICoreWebView2_11() *ICoreWebView2_11

func (*ICoreWebView2) GetICoreWebView2_12 ¶

func (i *ICoreWebView2) GetICoreWebView2_12() *ICoreWebView2_12

func (*ICoreWebView2) GetICoreWebView2_13 ¶

func (i *ICoreWebView2) GetICoreWebView2_13() *ICoreWebView2_13

func (*ICoreWebView2) GetICoreWebView2_14 ¶

func (i *ICoreWebView2) GetICoreWebView2_14() *ICoreWebView2_14

func (*ICoreWebView2) GetICoreWebView2_15 ¶

func (i *ICoreWebView2) GetICoreWebView2_15() *ICoreWebView2_15

func (*ICoreWebView2) GetICoreWebView2_16 ¶

func (i *ICoreWebView2) GetICoreWebView2_16() *ICoreWebView2_16

func (*ICoreWebView2) GetICoreWebView2_17 ¶

func (i *ICoreWebView2) GetICoreWebView2_17() *ICoreWebView2_17

func (*ICoreWebView2) GetICoreWebView2_18 ¶

func (i *ICoreWebView2) GetICoreWebView2_18() *ICoreWebView2_18

func (*ICoreWebView2) GetICoreWebView2_19 ¶

func (i *ICoreWebView2) GetICoreWebView2_19() *ICoreWebView2_19

func (*ICoreWebView2) GetICoreWebView2_2 ¶

func (i *ICoreWebView2) GetICoreWebView2_2() *ICoreWebView2_2

func (*ICoreWebView2) GetICoreWebView2_3 ¶

func (i *ICoreWebView2) GetICoreWebView2_3() *ICoreWebView2_3

func (*ICoreWebView2) GetICoreWebView2_4 ¶

func (i *ICoreWebView2) GetICoreWebView2_4() *ICoreWebView2_4

func (*ICoreWebView2) GetICoreWebView2_5 ¶

func (i *ICoreWebView2) GetICoreWebView2_5() *ICoreWebView2_5

func (*ICoreWebView2) GetICoreWebView2_6 ¶

func (i *ICoreWebView2) GetICoreWebView2_6() *ICoreWebView2_6

func (*ICoreWebView2) GetICoreWebView2_7 ¶

func (i *ICoreWebView2) GetICoreWebView2_7() *ICoreWebView2_7

func (*ICoreWebView2) GetICoreWebView2_8 ¶

func (i *ICoreWebView2) GetICoreWebView2_8() *ICoreWebView2_8

func (*ICoreWebView2) GetICoreWebView2_9 ¶

func (i *ICoreWebView2) GetICoreWebView2_9() *ICoreWebView2_9

func (*ICoreWebView2) GetSettings ¶

func (i *ICoreWebView2) GetSettings() (*ICoreWebView2Settings, error)

func (*ICoreWebView2) GetSource ¶

func (i *ICoreWebView2) GetSource() (string, error)

func (*ICoreWebView2) GoBack ¶

func (i *ICoreWebView2) GoBack() error

func (*ICoreWebView2) GoForward ¶

func (i *ICoreWebView2) GoForward() error

func (*ICoreWebView2) Navigate ¶

func (i *ICoreWebView2) Navigate(uri string) error

func (*ICoreWebView2) NavigateToString ¶

func (i *ICoreWebView2) NavigateToString(htmlContent string) error

func (*ICoreWebView2) OpenDevToolsWindow ¶

func (i *ICoreWebView2) OpenDevToolsWindow() error

func (*ICoreWebView2) PostWebMessageAsJson ¶

func (i *ICoreWebView2) PostWebMessageAsJson(webMessageAsJson string) error

func (*ICoreWebView2) PostWebMessageAsString ¶

func (i *ICoreWebView2) PostWebMessageAsString(webMessageAsString string) error

func (*ICoreWebView2) Reload ¶

func (i *ICoreWebView2) Reload() error

func (*ICoreWebView2) RemoveContainsFullScreenElementChanged ¶

func (i *ICoreWebView2) RemoveContainsFullScreenElementChanged(token EventRegistrationToken) error

func (*ICoreWebView2) RemoveContentLoading ¶

func (i *ICoreWebView2) RemoveContentLoading(token EventRegistrationToken) error

func (*ICoreWebView2) RemoveDocumentTitleChanged ¶

func (i *ICoreWebView2) RemoveDocumentTitleChanged(token EventRegistrationToken) error

func (*ICoreWebView2) RemoveFrameNavigationCompleted ¶

func (i *ICoreWebView2) RemoveFrameNavigationCompleted(token EventRegistrationToken) error

func (*ICoreWebView2) RemoveFrameNavigationStarting ¶

func (i *ICoreWebView2) RemoveFrameNavigationStarting(token EventRegistrationToken) error

func (*ICoreWebView2) RemoveHistoryChanged ¶

func (i *ICoreWebView2) RemoveHistoryChanged(token EventRegistrationToken) error

func (*ICoreWebView2) RemoveHostObjectFromScript ¶

func (i *ICoreWebView2) RemoveHostObjectFromScript(name string) error

func (*ICoreWebView2) RemoveNavigationCompleted ¶

func (i *ICoreWebView2) RemoveNavigationCompleted(token EventRegistrationToken) error

func (*ICoreWebView2) RemoveNavigationStarting ¶

func (i *ICoreWebView2) RemoveNavigationStarting(token EventRegistrationToken) error

func (*ICoreWebView2) RemoveNewWindowRequested ¶

func (i *ICoreWebView2) RemoveNewWindowRequested(token EventRegistrationToken) error

func (*ICoreWebView2) RemovePermissionRequested ¶

func (i *ICoreWebView2) RemovePermissionRequested(token EventRegistrationToken) error

func (*ICoreWebView2) RemoveProcessFailed ¶

func (i *ICoreWebView2) RemoveProcessFailed(token EventRegistrationToken) error

func (*ICoreWebView2) RemoveScriptDialogOpening ¶

func (i *ICoreWebView2) RemoveScriptDialogOpening(token EventRegistrationToken) error

func (*ICoreWebView2) RemoveScriptToExecuteOnDocumentCreated ¶

func (i *ICoreWebView2) RemoveScriptToExecuteOnDocumentCreated(id string) error

func (*ICoreWebView2) RemoveSourceChanged ¶

func (i *ICoreWebView2) RemoveSourceChanged(token EventRegistrationToken) error

func (*ICoreWebView2) RemoveWebMessageReceived ¶

func (i *ICoreWebView2) RemoveWebMessageReceived(token EventRegistrationToken) error

func (*ICoreWebView2) RemoveWebResourceRequested ¶

func (i *ICoreWebView2) RemoveWebResourceRequested(token EventRegistrationToken) error

func (*ICoreWebView2) RemoveWebResourceRequestedFilter ¶

func (i *ICoreWebView2) RemoveWebResourceRequestedFilter(uri string, resourceContext COREWEBVIEW2_WEB_RESOURCE_CONTEXT) error

func (*ICoreWebView2) RemoveWindowCloseRequested ¶

func (i *ICoreWebView2) RemoveWindowCloseRequested(token EventRegistrationToken) error

func (*ICoreWebView2) Stop ¶

func (i *ICoreWebView2) Stop() error

type ICoreWebView2AcceleratorKeyPressedEventArgs ¶

type ICoreWebView2AcceleratorKeyPressedEventArgs struct {
	Vtbl *ICoreWebView2AcceleratorKeyPressedEventArgsVtbl
}

func (*ICoreWebView2AcceleratorKeyPressedEventArgs) AddRef ¶

func (*ICoreWebView2AcceleratorKeyPressedEventArgs) GetHandled ¶

func (*ICoreWebView2AcceleratorKeyPressedEventArgs) GetKeyEventKind ¶

func (*ICoreWebView2AcceleratorKeyPressedEventArgs) GetKeyEventLParam ¶

func (i *ICoreWebView2AcceleratorKeyPressedEventArgs) GetKeyEventLParam() (int, error)

func (*ICoreWebView2AcceleratorKeyPressedEventArgs) GetPhysicalKeyStatus ¶

func (*ICoreWebView2AcceleratorKeyPressedEventArgs) GetVirtualKey ¶

func (*ICoreWebView2AcceleratorKeyPressedEventArgs) PutHandled ¶

type ICoreWebView2AcceleratorKeyPressedEventArgsVtbl ¶

type ICoreWebView2AcceleratorKeyPressedEventArgsVtbl struct {
	IUnknownVtbl
	GetKeyEventKind      ComProc
	GetVirtualKey        ComProc
	GetKeyEventLParam    ComProc
	GetPhysicalKeyStatus ComProc
	GetHandled           ComProc
	PutHandled           ComProc
}

type ICoreWebView2AcceleratorKeyPressedEventHandler ¶

type ICoreWebView2AcceleratorKeyPressedEventHandler struct {
	Vtbl *ICoreWebView2AcceleratorKeyPressedEventHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2AcceleratorKeyPressedEventHandler) AddRef ¶

type ICoreWebView2AcceleratorKeyPressedEventHandlerImpl ¶

type ICoreWebView2AcceleratorKeyPressedEventHandlerImpl interface {
	IUnknownImpl
	AcceleratorKeyPressed(sender *ICoreWebView2Controller, args *ICoreWebView2AcceleratorKeyPressedEventArgs) uintptr
}

type ICoreWebView2AcceleratorKeyPressedEventHandlerVtbl ¶

type ICoreWebView2AcceleratorKeyPressedEventHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2AddScriptToExecuteOnDocumentCreatedCompletedHandler ¶

type ICoreWebView2AddScriptToExecuteOnDocumentCreatedCompletedHandler struct {
	Vtbl *ICoreWebView2AddScriptToExecuteOnDocumentCreatedCompletedHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2AddScriptToExecuteOnDocumentCreatedCompletedHandler) AddRef ¶

type ICoreWebView2AddScriptToExecuteOnDocumentCreatedCompletedHandlerImpl ¶

type ICoreWebView2AddScriptToExecuteOnDocumentCreatedCompletedHandlerImpl interface {
	IUnknownImpl
	AddScriptToExecuteOnDocumentCreatedCompleted(errorCode uintptr, id string) uintptr
}

type ICoreWebView2AddScriptToExecuteOnDocumentCreatedCompletedHandlerVtbl ¶

type ICoreWebView2AddScriptToExecuteOnDocumentCreatedCompletedHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2BasicAuthenticationRequestedEventArgs ¶

type ICoreWebView2BasicAuthenticationRequestedEventArgs struct {
	Vtbl *ICoreWebView2BasicAuthenticationRequestedEventArgsVtbl
}

func (*ICoreWebView2BasicAuthenticationRequestedEventArgs) AddRef ¶

func (*ICoreWebView2BasicAuthenticationRequestedEventArgs) GetCancel ¶

func (*ICoreWebView2BasicAuthenticationRequestedEventArgs) GetChallenge ¶

func (*ICoreWebView2BasicAuthenticationRequestedEventArgs) GetDeferral ¶

func (*ICoreWebView2BasicAuthenticationRequestedEventArgs) GetResponse ¶

func (*ICoreWebView2BasicAuthenticationRequestedEventArgs) GetUri ¶

func (*ICoreWebView2BasicAuthenticationRequestedEventArgs) PutCancel ¶

type ICoreWebView2BasicAuthenticationRequestedEventArgsVtbl ¶

type ICoreWebView2BasicAuthenticationRequestedEventArgsVtbl struct {
	IUnknownVtbl
	GetUri       ComProc
	GetChallenge ComProc
	GetResponse  ComProc
	GetCancel    ComProc
	PutCancel    ComProc
	GetDeferral  ComProc
}

type ICoreWebView2BasicAuthenticationRequestedEventHandler ¶

type ICoreWebView2BasicAuthenticationRequestedEventHandler struct {
	Vtbl *ICoreWebView2BasicAuthenticationRequestedEventHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2BasicAuthenticationRequestedEventHandler) AddRef ¶

type ICoreWebView2BasicAuthenticationRequestedEventHandlerImpl ¶

type ICoreWebView2BasicAuthenticationRequestedEventHandlerImpl interface {
	IUnknownImpl
	BasicAuthenticationRequested(sender *ICoreWebView2, args *ICoreWebView2BasicAuthenticationRequestedEventArgs) uintptr
}

type ICoreWebView2BasicAuthenticationRequestedEventHandlerVtbl ¶

type ICoreWebView2BasicAuthenticationRequestedEventHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2BasicAuthenticationResponse ¶

type ICoreWebView2BasicAuthenticationResponse struct {
	Vtbl *ICoreWebView2BasicAuthenticationResponseVtbl
}

func (*ICoreWebView2BasicAuthenticationResponse) AddRef ¶

func (*ICoreWebView2BasicAuthenticationResponse) GetPassword ¶

func (*ICoreWebView2BasicAuthenticationResponse) GetUserName ¶

func (*ICoreWebView2BasicAuthenticationResponse) PutPassword ¶

func (i *ICoreWebView2BasicAuthenticationResponse) PutPassword(password string) error

func (*ICoreWebView2BasicAuthenticationResponse) PutUserName ¶

func (i *ICoreWebView2BasicAuthenticationResponse) PutUserName(userName string) error

type ICoreWebView2BasicAuthenticationResponseVtbl ¶

type ICoreWebView2BasicAuthenticationResponseVtbl struct {
	IUnknownVtbl
	GetUserName ComProc
	PutUserName ComProc
	GetPassword ComProc
	PutPassword ComProc
}

type ICoreWebView2BrowserProcessExitedEventArgs ¶

type ICoreWebView2BrowserProcessExitedEventArgs struct {
	Vtbl *ICoreWebView2BrowserProcessExitedEventArgsVtbl
}

func (*ICoreWebView2BrowserProcessExitedEventArgs) AddRef ¶

func (*ICoreWebView2BrowserProcessExitedEventArgs) GetBrowserProcessExitKind ¶

func (*ICoreWebView2BrowserProcessExitedEventArgs) GetBrowserProcessId ¶

func (i *ICoreWebView2BrowserProcessExitedEventArgs) GetBrowserProcessId() (uint32, error)

type ICoreWebView2BrowserProcessExitedEventArgsVtbl ¶

type ICoreWebView2BrowserProcessExitedEventArgsVtbl struct {
	IUnknownVtbl
	GetBrowserProcessExitKind ComProc
	GetBrowserProcessId       ComProc
}

type ICoreWebView2BrowserProcessExitedEventHandler ¶

type ICoreWebView2BrowserProcessExitedEventHandler struct {
	Vtbl *ICoreWebView2BrowserProcessExitedEventHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2BrowserProcessExitedEventHandler) AddRef ¶

type ICoreWebView2BrowserProcessExitedEventHandlerImpl ¶

type ICoreWebView2BrowserProcessExitedEventHandlerImpl interface {
	IUnknownImpl
	BrowserProcessExited(sender *ICoreWebView2Environment, args *ICoreWebView2BrowserProcessExitedEventArgs) uintptr
}

type ICoreWebView2BrowserProcessExitedEventHandlerVtbl ¶

type ICoreWebView2BrowserProcessExitedEventHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2BytesReceivedChangedEventHandler ¶

type ICoreWebView2BytesReceivedChangedEventHandler struct {
	Vtbl *ICoreWebView2BytesReceivedChangedEventHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2BytesReceivedChangedEventHandler) AddRef ¶

type ICoreWebView2BytesReceivedChangedEventHandlerImpl ¶

type ICoreWebView2BytesReceivedChangedEventHandlerImpl interface {
	IUnknownImpl
	BytesReceivedChanged(sender *ICoreWebView2DownloadOperation, args *IUnknown) uintptr
}

type ICoreWebView2BytesReceivedChangedEventHandlerVtbl ¶

type ICoreWebView2BytesReceivedChangedEventHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2CallDevToolsProtocolMethodCompletedHandler ¶

type ICoreWebView2CallDevToolsProtocolMethodCompletedHandler struct {
	Vtbl *ICoreWebView2CallDevToolsProtocolMethodCompletedHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2CallDevToolsProtocolMethodCompletedHandler) AddRef ¶

type ICoreWebView2CallDevToolsProtocolMethodCompletedHandlerImpl ¶

type ICoreWebView2CallDevToolsProtocolMethodCompletedHandlerImpl interface {
	IUnknownImpl
	CallDevToolsProtocolMethodCompleted(errorCode uintptr, returnObjectAsJson string) uintptr
}

type ICoreWebView2CallDevToolsProtocolMethodCompletedHandlerVtbl ¶

type ICoreWebView2CallDevToolsProtocolMethodCompletedHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2CapturePreviewCompletedHandler ¶

type ICoreWebView2CapturePreviewCompletedHandler struct {
	Vtbl *ICoreWebView2CapturePreviewCompletedHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2CapturePreviewCompletedHandler) AddRef ¶

type ICoreWebView2CapturePreviewCompletedHandlerImpl ¶

type ICoreWebView2CapturePreviewCompletedHandlerImpl interface {
	IUnknownImpl
	CapturePreviewCompleted(errorCode uintptr) uintptr
}

type ICoreWebView2CapturePreviewCompletedHandlerVtbl ¶

type ICoreWebView2CapturePreviewCompletedHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2Certificate ¶

type ICoreWebView2Certificate struct {
	Vtbl *ICoreWebView2CertificateVtbl
}

func (*ICoreWebView2Certificate) AddRef ¶

func (i *ICoreWebView2Certificate) AddRef() uintptr

func (*ICoreWebView2Certificate) GetDerEncodedSerialNumber ¶

func (i *ICoreWebView2Certificate) GetDerEncodedSerialNumber() (string, error)

func (*ICoreWebView2Certificate) GetDisplayName ¶

func (i *ICoreWebView2Certificate) GetDisplayName() (string, error)

func (*ICoreWebView2Certificate) GetIssuer ¶

func (i *ICoreWebView2Certificate) GetIssuer() (string, error)

func (*ICoreWebView2Certificate) GetPemEncodedIssuerCertificateChain ¶

func (i *ICoreWebView2Certificate) GetPemEncodedIssuerCertificateChain() (*ICoreWebView2StringCollection, error)

func (*ICoreWebView2Certificate) GetSubject ¶

func (i *ICoreWebView2Certificate) GetSubject() (string, error)

func (*ICoreWebView2Certificate) GetValidFrom ¶

func (i *ICoreWebView2Certificate) GetValidFrom() (float64, error)

func (*ICoreWebView2Certificate) GetValidTo ¶

func (i *ICoreWebView2Certificate) GetValidTo() (float64, error)

func (*ICoreWebView2Certificate) ToPemEncoding ¶

func (i *ICoreWebView2Certificate) ToPemEncoding() (string, error)

type ICoreWebView2CertificateVtbl ¶

type ICoreWebView2CertificateVtbl struct {
	IUnknownVtbl
	GetSubject                          ComProc
	GetIssuer                           ComProc
	GetValidFrom                        ComProc
	GetValidTo                          ComProc
	GetDerEncodedSerialNumber           ComProc
	GetDisplayName                      ComProc
	ToPemEncoding                       ComProc
	GetPemEncodedIssuerCertificateChain ComProc
}

type ICoreWebView2ClearBrowsingDataCompletedHandler ¶

type ICoreWebView2ClearBrowsingDataCompletedHandler struct {
	Vtbl *ICoreWebView2ClearBrowsingDataCompletedHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2ClearBrowsingDataCompletedHandler) AddRef ¶

type ICoreWebView2ClearBrowsingDataCompletedHandlerImpl ¶

type ICoreWebView2ClearBrowsingDataCompletedHandlerImpl interface {
	IUnknownImpl
	ClearBrowsingDataCompleted(errorCode uintptr) uintptr
}

type ICoreWebView2ClearBrowsingDataCompletedHandlerVtbl ¶

type ICoreWebView2ClearBrowsingDataCompletedHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2ClearServerCertificateErrorActionsCompletedHandler ¶

type ICoreWebView2ClearServerCertificateErrorActionsCompletedHandler struct {
	Vtbl *ICoreWebView2ClearServerCertificateErrorActionsCompletedHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2ClearServerCertificateErrorActionsCompletedHandler) AddRef ¶

type ICoreWebView2ClearServerCertificateErrorActionsCompletedHandlerImpl ¶

type ICoreWebView2ClearServerCertificateErrorActionsCompletedHandlerImpl interface {
	IUnknownImpl
	ClearServerCertificateErrorActionsCompleted(errorCode uintptr) uintptr
}

type ICoreWebView2ClearServerCertificateErrorActionsCompletedHandlerVtbl ¶

type ICoreWebView2ClearServerCertificateErrorActionsCompletedHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2ClientCertificate ¶

type ICoreWebView2ClientCertificate struct {
	Vtbl *ICoreWebView2ClientCertificateVtbl
}

func (*ICoreWebView2ClientCertificate) AddRef ¶

func (*ICoreWebView2ClientCertificate) GetDerEncodedSerialNumber ¶

func (i *ICoreWebView2ClientCertificate) GetDerEncodedSerialNumber() (string, error)

func (*ICoreWebView2ClientCertificate) GetDisplayName ¶

func (i *ICoreWebView2ClientCertificate) GetDisplayName() (string, error)

func (*ICoreWebView2ClientCertificate) GetIssuer ¶

func (i *ICoreWebView2ClientCertificate) GetIssuer() (string, error)

func (*ICoreWebView2ClientCertificate) GetKind ¶

func (*ICoreWebView2ClientCertificate) GetPemEncodedIssuerCertificateChain ¶

func (i *ICoreWebView2ClientCertificate) GetPemEncodedIssuerCertificateChain() (*ICoreWebView2StringCollection, error)

func (*ICoreWebView2ClientCertificate) GetSubject ¶

func (i *ICoreWebView2ClientCertificate) GetSubject() (string, error)

func (*ICoreWebView2ClientCertificate) GetValidFrom ¶

func (i *ICoreWebView2ClientCertificate) GetValidFrom() (float64, error)

func (*ICoreWebView2ClientCertificate) GetValidTo ¶

func (i *ICoreWebView2ClientCertificate) GetValidTo() (float64, error)

func (*ICoreWebView2ClientCertificate) ToPemEncoding ¶

func (i *ICoreWebView2ClientCertificate) ToPemEncoding() (string, error)

type ICoreWebView2ClientCertificateCollection ¶

type ICoreWebView2ClientCertificateCollection struct {
	Vtbl *ICoreWebView2ClientCertificateCollectionVtbl
}

func (*ICoreWebView2ClientCertificateCollection) AddRef ¶

func (*ICoreWebView2ClientCertificateCollection) GetCount ¶

func (*ICoreWebView2ClientCertificateCollection) GetValueAtIndex ¶

type ICoreWebView2ClientCertificateCollectionVtbl ¶

type ICoreWebView2ClientCertificateCollectionVtbl struct {
	IUnknownVtbl
	GetCount        ComProc
	GetValueAtIndex ComProc
}

type ICoreWebView2ClientCertificateRequestedEventArgs ¶

type ICoreWebView2ClientCertificateRequestedEventArgs struct {
	Vtbl *ICoreWebView2ClientCertificateRequestedEventArgsVtbl
}

func (*ICoreWebView2ClientCertificateRequestedEventArgs) AddRef ¶

func (*ICoreWebView2ClientCertificateRequestedEventArgs) GetAllowedCertificateAuthorities ¶

func (*ICoreWebView2ClientCertificateRequestedEventArgs) GetCancel ¶

func (*ICoreWebView2ClientCertificateRequestedEventArgs) GetDeferral ¶

func (*ICoreWebView2ClientCertificateRequestedEventArgs) GetHandled ¶

func (*ICoreWebView2ClientCertificateRequestedEventArgs) GetHost ¶

func (*ICoreWebView2ClientCertificateRequestedEventArgs) GetIsProxy ¶

func (*ICoreWebView2ClientCertificateRequestedEventArgs) GetMutuallyTrustedCertificates ¶

func (*ICoreWebView2ClientCertificateRequestedEventArgs) GetPort ¶

func (*ICoreWebView2ClientCertificateRequestedEventArgs) GetSelectedCertificate ¶

func (*ICoreWebView2ClientCertificateRequestedEventArgs) PutCancel ¶

func (*ICoreWebView2ClientCertificateRequestedEventArgs) PutHandled ¶

func (*ICoreWebView2ClientCertificateRequestedEventArgs) PutSelectedCertificate ¶

type ICoreWebView2ClientCertificateRequestedEventArgsVtbl ¶

type ICoreWebView2ClientCertificateRequestedEventArgsVtbl struct {
	IUnknownVtbl
	GetHost                          ComProc
	GetPort                          ComProc
	GetIsProxy                       ComProc
	GetAllowedCertificateAuthorities ComProc
	GetMutuallyTrustedCertificates   ComProc
	GetSelectedCertificate           ComProc
	PutSelectedCertificate           ComProc
	GetCancel                        ComProc
	PutCancel                        ComProc
	GetHandled                       ComProc
	PutHandled                       ComProc
	GetDeferral                      ComProc
}

type ICoreWebView2ClientCertificateRequestedEventHandler ¶

type ICoreWebView2ClientCertificateRequestedEventHandler struct {
	Vtbl *ICoreWebView2ClientCertificateRequestedEventHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2ClientCertificateRequestedEventHandler) AddRef ¶

type ICoreWebView2ClientCertificateRequestedEventHandlerImpl ¶

type ICoreWebView2ClientCertificateRequestedEventHandlerImpl interface {
	IUnknownImpl
	ClientCertificateRequested(sender *ICoreWebView2, args *ICoreWebView2ClientCertificateRequestedEventArgs) uintptr
}

type ICoreWebView2ClientCertificateRequestedEventHandlerVtbl ¶

type ICoreWebView2ClientCertificateRequestedEventHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2ClientCertificateVtbl ¶

type ICoreWebView2ClientCertificateVtbl struct {
	IUnknownVtbl
	GetSubject                          ComProc
	GetIssuer                           ComProc
	GetValidFrom                        ComProc
	GetValidTo                          ComProc
	GetDerEncodedSerialNumber           ComProc
	GetDisplayName                      ComProc
	ToPemEncoding                       ComProc
	GetPemEncodedIssuerCertificateChain ComProc
	GetKind                             ComProc
}

type ICoreWebView2CompositionController ¶

type ICoreWebView2CompositionController struct {
	Vtbl *ICoreWebView2CompositionControllerVtbl
}

func (*ICoreWebView2CompositionController) AddCursorChanged ¶

func (*ICoreWebView2CompositionController) AddRef ¶

func (*ICoreWebView2CompositionController) GetCursor ¶

func (*ICoreWebView2CompositionController) GetRootVisualTarget ¶

func (i *ICoreWebView2CompositionController) GetRootVisualTarget() (*IUnknown, error)

func (*ICoreWebView2CompositionController) GetSystemCursorId ¶

func (i *ICoreWebView2CompositionController) GetSystemCursorId() (uint32, error)

func (*ICoreWebView2CompositionController) PutRootVisualTarget ¶

func (i *ICoreWebView2CompositionController) PutRootVisualTarget(target *IUnknown) error

func (*ICoreWebView2CompositionController) RemoveCursorChanged ¶

func (i *ICoreWebView2CompositionController) RemoveCursorChanged(token EventRegistrationToken) error

func (*ICoreWebView2CompositionController) SendMouseInput ¶

func (*ICoreWebView2CompositionController) SendPointerInput ¶

type ICoreWebView2CompositionController2 ¶

type ICoreWebView2CompositionController2 struct {
	Vtbl *ICoreWebView2CompositionController2Vtbl
}

func (*ICoreWebView2CompositionController2) AddRef ¶

func (*ICoreWebView2CompositionController2) GetAutomationProvider ¶

func (i *ICoreWebView2CompositionController2) GetAutomationProvider() (*IUnknown, error)

type ICoreWebView2CompositionController2Vtbl ¶

type ICoreWebView2CompositionController2Vtbl struct {
	IUnknownVtbl
	GetAutomationProvider ComProc
}

type ICoreWebView2CompositionController3 ¶

type ICoreWebView2CompositionController3 struct {
	Vtbl *ICoreWebView2CompositionController3Vtbl
}

func (*ICoreWebView2CompositionController3) AddRef ¶

func (*ICoreWebView2CompositionController3) DragEnter ¶

func (i *ICoreWebView2CompositionController3) DragEnter(dataObject *IDataObject, keyState uint32, point POINT) (uint32, error)

func (*ICoreWebView2CompositionController3) DragLeave ¶

func (*ICoreWebView2CompositionController3) DragOver ¶

func (i *ICoreWebView2CompositionController3) DragOver(keyState uint32, point POINT) (uint32, error)

func (*ICoreWebView2CompositionController3) Drop ¶

func (i *ICoreWebView2CompositionController3) Drop(dataObject *IDataObject, keyState uint32, point POINT) (uint32, error)

type ICoreWebView2CompositionController3Vtbl ¶

type ICoreWebView2CompositionController3Vtbl struct {
	IUnknownVtbl
	DragEnter ComProc
	DragLeave ComProc
	DragOver  ComProc
	Drop      ComProc
}

type ICoreWebView2CompositionControllerVtbl ¶

type ICoreWebView2CompositionControllerVtbl struct {
	IUnknownVtbl
	GetRootVisualTarget ComProc
	PutRootVisualTarget ComProc
	SendMouseInput      ComProc
	SendPointerInput    ComProc
	GetCursor           ComProc
	GetSystemCursorId   ComProc
	AddCursorChanged    ComProc
	RemoveCursorChanged ComProc
}

type ICoreWebView2ContainsFullScreenElementChangedEventHandler ¶

type ICoreWebView2ContainsFullScreenElementChangedEventHandler struct {
	Vtbl *ICoreWebView2ContainsFullScreenElementChangedEventHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2ContainsFullScreenElementChangedEventHandler) AddRef ¶

type ICoreWebView2ContainsFullScreenElementChangedEventHandlerImpl ¶

type ICoreWebView2ContainsFullScreenElementChangedEventHandlerImpl interface {
	IUnknownImpl
	ContainsFullScreenElementChanged(sender *ICoreWebView2, args *IUnknown) uintptr
}

type ICoreWebView2ContainsFullScreenElementChangedEventHandlerVtbl ¶

type ICoreWebView2ContainsFullScreenElementChangedEventHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2ContentLoadingEventArgs ¶

type ICoreWebView2ContentLoadingEventArgs struct {
	Vtbl *ICoreWebView2ContentLoadingEventArgsVtbl
}

func (*ICoreWebView2ContentLoadingEventArgs) AddRef ¶

func (*ICoreWebView2ContentLoadingEventArgs) GetIsErrorPage ¶

func (i *ICoreWebView2ContentLoadingEventArgs) GetIsErrorPage() (bool, error)

func (*ICoreWebView2ContentLoadingEventArgs) GetNavigationId ¶

func (i *ICoreWebView2ContentLoadingEventArgs) GetNavigationId() (uint64, error)

type ICoreWebView2ContentLoadingEventArgsVtbl ¶

type ICoreWebView2ContentLoadingEventArgsVtbl struct {
	IUnknownVtbl
	GetIsErrorPage  ComProc
	GetNavigationId ComProc
}

type ICoreWebView2ContentLoadingEventHandler ¶

type ICoreWebView2ContentLoadingEventHandler struct {
	Vtbl *ICoreWebView2ContentLoadingEventHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2ContentLoadingEventHandler) AddRef ¶

type ICoreWebView2ContentLoadingEventHandlerImpl ¶

type ICoreWebView2ContentLoadingEventHandlerImpl interface {
	IUnknownImpl
	ContentLoading(sender *ICoreWebView2, args *ICoreWebView2ContentLoadingEventArgs) uintptr
}

type ICoreWebView2ContentLoadingEventHandlerVtbl ¶

type ICoreWebView2ContentLoadingEventHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2ContextMenuItem ¶

type ICoreWebView2ContextMenuItem struct {
	Vtbl *ICoreWebView2ContextMenuItemVtbl
}

func (*ICoreWebView2ContextMenuItem) AddCustomItemSelected ¶

func (*ICoreWebView2ContextMenuItem) AddRef ¶

func (*ICoreWebView2ContextMenuItem) GetChildren ¶

func (*ICoreWebView2ContextMenuItem) GetCommandId ¶

func (i *ICoreWebView2ContextMenuItem) GetCommandId() (int32, error)

func (*ICoreWebView2ContextMenuItem) GetIcon ¶

func (i *ICoreWebView2ContextMenuItem) GetIcon() (*IStream, error)

func (*ICoreWebView2ContextMenuItem) GetIsChecked ¶

func (i *ICoreWebView2ContextMenuItem) GetIsChecked() (bool, error)

func (*ICoreWebView2ContextMenuItem) GetIsEnabled ¶

func (i *ICoreWebView2ContextMenuItem) GetIsEnabled() (bool, error)

func (*ICoreWebView2ContextMenuItem) GetKind ¶

func (*ICoreWebView2ContextMenuItem) GetLabel ¶

func (i *ICoreWebView2ContextMenuItem) GetLabel() (string, error)

func (*ICoreWebView2ContextMenuItem) GetName ¶

func (i *ICoreWebView2ContextMenuItem) GetName() (string, error)

func (*ICoreWebView2ContextMenuItem) GetShortcutKeyDescription ¶

func (i *ICoreWebView2ContextMenuItem) GetShortcutKeyDescription() (string, error)

func (*ICoreWebView2ContextMenuItem) PutIsChecked ¶

func (i *ICoreWebView2ContextMenuItem) PutIsChecked(value bool) error

func (*ICoreWebView2ContextMenuItem) PutIsEnabled ¶

func (i *ICoreWebView2ContextMenuItem) PutIsEnabled(value bool) error

func (*ICoreWebView2ContextMenuItem) RemoveCustomItemSelected ¶

func (i *ICoreWebView2ContextMenuItem) RemoveCustomItemSelected(token EventRegistrationToken) error

type ICoreWebView2ContextMenuItemCollection ¶

type ICoreWebView2ContextMenuItemCollection struct {
	Vtbl *ICoreWebView2ContextMenuItemCollectionVtbl
}

func (*ICoreWebView2ContextMenuItemCollection) AddRef ¶

func (*ICoreWebView2ContextMenuItemCollection) GetCount ¶

func (*ICoreWebView2ContextMenuItemCollection) GetValueAtIndex ¶

func (*ICoreWebView2ContextMenuItemCollection) InsertValueAtIndex ¶

func (*ICoreWebView2ContextMenuItemCollection) RemoveValueAtIndex ¶

func (i *ICoreWebView2ContextMenuItemCollection) RemoveValueAtIndex(index uint32) error

type ICoreWebView2ContextMenuItemCollectionVtbl ¶

type ICoreWebView2ContextMenuItemCollectionVtbl struct {
	IUnknownVtbl
	GetCount           ComProc
	GetValueAtIndex    ComProc
	RemoveValueAtIndex ComProc
	InsertValueAtIndex ComProc
}

type ICoreWebView2ContextMenuItemVtbl ¶

type ICoreWebView2ContextMenuItemVtbl struct {
	IUnknownVtbl
	GetName                   ComProc
	GetLabel                  ComProc
	GetCommandId              ComProc
	GetShortcutKeyDescription ComProc
	GetIcon                   ComProc
	GetKind                   ComProc
	PutIsEnabled              ComProc
	GetIsEnabled              ComProc
	PutIsChecked              ComProc
	GetIsChecked              ComProc
	GetChildren               ComProc
	AddCustomItemSelected     ComProc
	RemoveCustomItemSelected  ComProc
}

type ICoreWebView2ContextMenuRequestedEventArgs ¶

type ICoreWebView2ContextMenuRequestedEventArgs struct {
	Vtbl *ICoreWebView2ContextMenuRequestedEventArgsVtbl
}

func (*ICoreWebView2ContextMenuRequestedEventArgs) AddRef ¶

func (*ICoreWebView2ContextMenuRequestedEventArgs) GetContextMenuTarget ¶

func (*ICoreWebView2ContextMenuRequestedEventArgs) GetDeferral ¶

func (*ICoreWebView2ContextMenuRequestedEventArgs) GetHandled ¶

func (*ICoreWebView2ContextMenuRequestedEventArgs) GetLocation ¶

func (*ICoreWebView2ContextMenuRequestedEventArgs) GetMenuItems ¶

func (*ICoreWebView2ContextMenuRequestedEventArgs) GetSelectedCommandId ¶

func (i *ICoreWebView2ContextMenuRequestedEventArgs) GetSelectedCommandId() (int32, error)

func (*ICoreWebView2ContextMenuRequestedEventArgs) PutHandled ¶

func (*ICoreWebView2ContextMenuRequestedEventArgs) PutSelectedCommandId ¶

func (i *ICoreWebView2ContextMenuRequestedEventArgs) PutSelectedCommandId(value int32) error

type ICoreWebView2ContextMenuRequestedEventArgsVtbl ¶

type ICoreWebView2ContextMenuRequestedEventArgsVtbl struct {
	IUnknownVtbl
	GetMenuItems         ComProc
	GetContextMenuTarget ComProc
	GetLocation          ComProc
	PutSelectedCommandId ComProc
	GetSelectedCommandId ComProc
	PutHandled           ComProc
	GetHandled           ComProc
	GetDeferral          ComProc
}

type ICoreWebView2ContextMenuRequestedEventHandler ¶

type ICoreWebView2ContextMenuRequestedEventHandler struct {
	Vtbl *ICoreWebView2ContextMenuRequestedEventHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2ContextMenuRequestedEventHandler) AddRef ¶

type ICoreWebView2ContextMenuRequestedEventHandlerImpl ¶

type ICoreWebView2ContextMenuRequestedEventHandlerImpl interface {
	IUnknownImpl
	ContextMenuRequested(sender *ICoreWebView2, args *ICoreWebView2ContextMenuRequestedEventArgs) uintptr
}

type ICoreWebView2ContextMenuRequestedEventHandlerVtbl ¶

type ICoreWebView2ContextMenuRequestedEventHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2ContextMenuTarget ¶

type ICoreWebView2ContextMenuTarget struct {
	Vtbl *ICoreWebView2ContextMenuTargetVtbl
}

func (*ICoreWebView2ContextMenuTarget) AddRef ¶

func (*ICoreWebView2ContextMenuTarget) GetFrameUri ¶

func (i *ICoreWebView2ContextMenuTarget) GetFrameUri() (string, error)

func (*ICoreWebView2ContextMenuTarget) GetHasLinkText ¶

func (i *ICoreWebView2ContextMenuTarget) GetHasLinkText() (bool, error)

func (*ICoreWebView2ContextMenuTarget) GetHasLinkUri ¶

func (i *ICoreWebView2ContextMenuTarget) GetHasLinkUri() (bool, error)

func (*ICoreWebView2ContextMenuTarget) GetHasSelection ¶

func (i *ICoreWebView2ContextMenuTarget) GetHasSelection() (bool, error)

func (*ICoreWebView2ContextMenuTarget) GetHasSourceUri ¶

func (i *ICoreWebView2ContextMenuTarget) GetHasSourceUri() (bool, error)

func (*ICoreWebView2ContextMenuTarget) GetIsEditable ¶

func (i *ICoreWebView2ContextMenuTarget) GetIsEditable() (bool, error)

func (*ICoreWebView2ContextMenuTarget) GetIsRequestedForMainFrame ¶

func (i *ICoreWebView2ContextMenuTarget) GetIsRequestedForMainFrame() (bool, error)

func (*ICoreWebView2ContextMenuTarget) GetKind ¶

func (*ICoreWebView2ContextMenuTarget) GetLinkText ¶

func (i *ICoreWebView2ContextMenuTarget) GetLinkText() (string, error)

func (*ICoreWebView2ContextMenuTarget) GetLinkUri ¶

func (i *ICoreWebView2ContextMenuTarget) GetLinkUri() (string, error)

func (*ICoreWebView2ContextMenuTarget) GetPageUri ¶

func (i *ICoreWebView2ContextMenuTarget) GetPageUri() (string, error)

func (*ICoreWebView2ContextMenuTarget) GetSelectionText ¶

func (i *ICoreWebView2ContextMenuTarget) GetSelectionText() (string, error)

func (*ICoreWebView2ContextMenuTarget) GetSourceUri ¶

func (i *ICoreWebView2ContextMenuTarget) GetSourceUri() (string, error)

type ICoreWebView2ContextMenuTargetVtbl ¶

type ICoreWebView2ContextMenuTargetVtbl struct {
	IUnknownVtbl
	GetKind                    ComProc
	GetIsEditable              ComProc
	GetIsRequestedForMainFrame ComProc
	GetPageUri                 ComProc
	GetFrameUri                ComProc
	GetHasLinkUri              ComProc
	GetLinkUri                 ComProc
	GetHasLinkText             ComProc
	GetLinkText                ComProc
	GetHasSourceUri            ComProc
	GetSourceUri               ComProc
	GetHasSelection            ComProc
	GetSelectionText           ComProc
}

type ICoreWebView2Controller ¶

type ICoreWebView2Controller struct {
	Vtbl *ICoreWebView2ControllerVtbl
}

func (*ICoreWebView2Controller) AddAcceleratorKeyPressed ¶

func (*ICoreWebView2Controller) AddGotFocus ¶

func (*ICoreWebView2Controller) AddLostFocus ¶

func (*ICoreWebView2Controller) AddMoveFocusRequested ¶

func (*ICoreWebView2Controller) AddRef ¶

func (i *ICoreWebView2Controller) AddRef() uintptr

func (*ICoreWebView2Controller) AddZoomFactorChanged ¶

func (*ICoreWebView2Controller) Close ¶

func (i *ICoreWebView2Controller) Close() error

func (*ICoreWebView2Controller) GetBounds ¶

func (i *ICoreWebView2Controller) GetBounds() (RECT, error)

func (*ICoreWebView2Controller) GetCoreWebView2 ¶

func (i *ICoreWebView2Controller) GetCoreWebView2() (*ICoreWebView2, error)

func (*ICoreWebView2Controller) GetIsVisible ¶

func (i *ICoreWebView2Controller) GetIsVisible() (bool, error)

func (*ICoreWebView2Controller) GetParentWindow ¶

func (i *ICoreWebView2Controller) GetParentWindow() (HWND, error)

func (*ICoreWebView2Controller) GetZoomFactor ¶

func (i *ICoreWebView2Controller) GetZoomFactor() (float64, error)

func (*ICoreWebView2Controller) MoveFocus ¶

func (*ICoreWebView2Controller) NotifyParentWindowPositionChanged ¶

func (i *ICoreWebView2Controller) NotifyParentWindowPositionChanged() error

func (*ICoreWebView2Controller) PutBounds ¶

func (i *ICoreWebView2Controller) PutBounds(bounds RECT) error

func (*ICoreWebView2Controller) PutIsVisible ¶

func (i *ICoreWebView2Controller) PutIsVisible(isVisible bool) error

func (*ICoreWebView2Controller) PutParentWindow ¶

func (i *ICoreWebView2Controller) PutParentWindow(parentWindow HWND) error

func (*ICoreWebView2Controller) PutZoomFactor ¶

func (i *ICoreWebView2Controller) PutZoomFactor(zoomFactor float64) error

func (*ICoreWebView2Controller) RemoveAcceleratorKeyPressed ¶

func (i *ICoreWebView2Controller) RemoveAcceleratorKeyPressed(token EventRegistrationToken) error

func (*ICoreWebView2Controller) RemoveGotFocus ¶

func (i *ICoreWebView2Controller) RemoveGotFocus(token EventRegistrationToken) error

func (*ICoreWebView2Controller) RemoveLostFocus ¶

func (i *ICoreWebView2Controller) RemoveLostFocus(token EventRegistrationToken) error

func (*ICoreWebView2Controller) RemoveMoveFocusRequested ¶

func (i *ICoreWebView2Controller) RemoveMoveFocusRequested(token EventRegistrationToken) error

func (*ICoreWebView2Controller) RemoveZoomFactorChanged ¶

func (i *ICoreWebView2Controller) RemoveZoomFactorChanged(token EventRegistrationToken) error

func (*ICoreWebView2Controller) SetBoundsAndZoomFactor ¶

func (i *ICoreWebView2Controller) SetBoundsAndZoomFactor(bounds RECT, zoomFactor float64) error

type ICoreWebView2Controller2 ¶

type ICoreWebView2Controller2 struct {
	Vtbl *ICoreWebView2Controller2Vtbl
}

func (*ICoreWebView2Controller2) AddRef ¶

func (i *ICoreWebView2Controller2) AddRef() uintptr

func (*ICoreWebView2Controller2) GetDefaultBackgroundColor ¶

func (i *ICoreWebView2Controller2) GetDefaultBackgroundColor() (COREWEBVIEW2_COLOR, error)

func (*ICoreWebView2Controller2) PutDefaultBackgroundColor ¶

func (i *ICoreWebView2Controller2) PutDefaultBackgroundColor(backgroundColor COREWEBVIEW2_COLOR) error

type ICoreWebView2Controller2Vtbl ¶

type ICoreWebView2Controller2Vtbl struct {
	IUnknownVtbl
	GetDefaultBackgroundColor ComProc
	PutDefaultBackgroundColor ComProc
}

type ICoreWebView2Controller3 ¶

type ICoreWebView2Controller3 struct {
	Vtbl *ICoreWebView2Controller3Vtbl
}

func (*ICoreWebView2Controller3) AddRasterizationScaleChanged ¶

func (*ICoreWebView2Controller3) AddRef ¶

func (i *ICoreWebView2Controller3) AddRef() uintptr

func (*ICoreWebView2Controller3) GetBoundsMode ¶

func (*ICoreWebView2Controller3) GetRasterizationScale ¶

func (i *ICoreWebView2Controller3) GetRasterizationScale() (float64, error)

func (*ICoreWebView2Controller3) GetShouldDetectMonitorScaleChanges ¶

func (i *ICoreWebView2Controller3) GetShouldDetectMonitorScaleChanges() (bool, error)

func (*ICoreWebView2Controller3) PutBoundsMode ¶

func (i *ICoreWebView2Controller3) PutBoundsMode(boundsMode COREWEBVIEW2_BOUNDS_MODE) error

func (*ICoreWebView2Controller3) PutRasterizationScale ¶

func (i *ICoreWebView2Controller3) PutRasterizationScale(scale float64) error

func (*ICoreWebView2Controller3) PutShouldDetectMonitorScaleChanges ¶

func (i *ICoreWebView2Controller3) PutShouldDetectMonitorScaleChanges(value bool) error

func (*ICoreWebView2Controller3) RemoveRasterizationScaleChanged ¶

func (i *ICoreWebView2Controller3) RemoveRasterizationScaleChanged(token EventRegistrationToken) error

type ICoreWebView2Controller3Vtbl ¶

type ICoreWebView2Controller3Vtbl struct {
	IUnknownVtbl
	GetRasterizationScale              ComProc
	PutRasterizationScale              ComProc
	GetShouldDetectMonitorScaleChanges ComProc
	PutShouldDetectMonitorScaleChanges ComProc
	AddRasterizationScaleChanged       ComProc
	RemoveRasterizationScaleChanged    ComProc
	GetBoundsMode                      ComProc
	PutBoundsMode                      ComProc
}

type ICoreWebView2Controller4 ¶

type ICoreWebView2Controller4 struct {
	Vtbl *ICoreWebView2Controller4Vtbl
}

func (*ICoreWebView2Controller4) AddRef ¶

func (i *ICoreWebView2Controller4) AddRef() uintptr

func (*ICoreWebView2Controller4) GetAllowExternalDrop ¶

func (i *ICoreWebView2Controller4) GetAllowExternalDrop() (bool, error)

func (*ICoreWebView2Controller4) PutAllowExternalDrop ¶

func (i *ICoreWebView2Controller4) PutAllowExternalDrop(value bool) error

type ICoreWebView2Controller4Vtbl ¶

type ICoreWebView2Controller4Vtbl struct {
	IUnknownVtbl
	GetAllowExternalDrop ComProc
	PutAllowExternalDrop ComProc
}

type ICoreWebView2ControllerOptions ¶

type ICoreWebView2ControllerOptions struct {
	Vtbl *ICoreWebView2ControllerOptionsVtbl
}

func (*ICoreWebView2ControllerOptions) AddRef ¶

func (*ICoreWebView2ControllerOptions) GetIsInPrivateModeEnabled ¶

func (i *ICoreWebView2ControllerOptions) GetIsInPrivateModeEnabled() (bool, error)

func (*ICoreWebView2ControllerOptions) GetProfileName ¶

func (i *ICoreWebView2ControllerOptions) GetProfileName() (string, error)

func (*ICoreWebView2ControllerOptions) PutIsInPrivateModeEnabled ¶

func (i *ICoreWebView2ControllerOptions) PutIsInPrivateModeEnabled(value bool) error

func (*ICoreWebView2ControllerOptions) PutProfileName ¶

func (i *ICoreWebView2ControllerOptions) PutProfileName(value string) error

type ICoreWebView2ControllerOptions2 ¶

type ICoreWebView2ControllerOptions2 struct {
	Vtbl *ICoreWebView2ControllerOptions2Vtbl
}

func (*ICoreWebView2ControllerOptions2) AddRef ¶

func (*ICoreWebView2ControllerOptions2) GetScriptLocale ¶

func (i *ICoreWebView2ControllerOptions2) GetScriptLocale() (string, error)

func (*ICoreWebView2ControllerOptions2) PutScriptLocale ¶

func (i *ICoreWebView2ControllerOptions2) PutScriptLocale(locale string) error

type ICoreWebView2ControllerOptions2Vtbl ¶

type ICoreWebView2ControllerOptions2Vtbl struct {
	IUnknownVtbl
	GetScriptLocale ComProc
	PutScriptLocale ComProc
}

type ICoreWebView2ControllerOptionsVtbl ¶

type ICoreWebView2ControllerOptionsVtbl struct {
	IUnknownVtbl
	GetProfileName            ComProc
	PutProfileName            ComProc
	GetIsInPrivateModeEnabled ComProc
	PutIsInPrivateModeEnabled ComProc
}

type ICoreWebView2ControllerVtbl ¶

type ICoreWebView2ControllerVtbl struct {
	IUnknownVtbl
	GetIsVisible                      ComProc
	PutIsVisible                      ComProc
	GetBounds                         ComProc
	PutBounds                         ComProc
	GetZoomFactor                     ComProc
	PutZoomFactor                     ComProc
	AddZoomFactorChanged              ComProc
	RemoveZoomFactorChanged           ComProc
	SetBoundsAndZoomFactor            ComProc
	MoveFocus                         ComProc
	AddMoveFocusRequested             ComProc
	RemoveMoveFocusRequested          ComProc
	AddGotFocus                       ComProc
	RemoveGotFocus                    ComProc
	AddLostFocus                      ComProc
	RemoveLostFocus                   ComProc
	AddAcceleratorKeyPressed          ComProc
	RemoveAcceleratorKeyPressed       ComProc
	GetParentWindow                   ComProc
	PutParentWindow                   ComProc
	NotifyParentWindowPositionChanged ComProc
	Close                             ComProc
	GetCoreWebView2                   ComProc
}

type ICoreWebView2Cookie ¶

type ICoreWebView2Cookie struct {
	Vtbl *ICoreWebView2CookieVtbl
}

func (*ICoreWebView2Cookie) AddRef ¶

func (i *ICoreWebView2Cookie) AddRef() uintptr

func (*ICoreWebView2Cookie) GetDomain ¶

func (i *ICoreWebView2Cookie) GetDomain() (string, error)

func (*ICoreWebView2Cookie) GetExpires ¶

func (i *ICoreWebView2Cookie) GetExpires() (float64, error)

func (*ICoreWebView2Cookie) GetIsHttpOnly ¶

func (i *ICoreWebView2Cookie) GetIsHttpOnly() (bool, error)

func (*ICoreWebView2Cookie) GetIsSecure ¶

func (i *ICoreWebView2Cookie) GetIsSecure() (bool, error)

func (*ICoreWebView2Cookie) GetIsSession ¶

func (i *ICoreWebView2Cookie) GetIsSession() (bool, error)

func (*ICoreWebView2Cookie) GetName ¶

func (i *ICoreWebView2Cookie) GetName() (string, error)

func (*ICoreWebView2Cookie) GetPath ¶

func (i *ICoreWebView2Cookie) GetPath() (string, error)

func (*ICoreWebView2Cookie) GetSameSite ¶

func (*ICoreWebView2Cookie) GetValue ¶

func (i *ICoreWebView2Cookie) GetValue() (string, error)

func (*ICoreWebView2Cookie) PutExpires ¶

func (i *ICoreWebView2Cookie) PutExpires(expires float64) error

func (*ICoreWebView2Cookie) PutIsHttpOnly ¶

func (i *ICoreWebView2Cookie) PutIsHttpOnly(isHttpOnly bool) error

func (*ICoreWebView2Cookie) PutIsSecure ¶

func (i *ICoreWebView2Cookie) PutIsSecure(isSecure bool) error

func (*ICoreWebView2Cookie) PutSameSite ¶

func (*ICoreWebView2Cookie) PutValue ¶

func (i *ICoreWebView2Cookie) PutValue(value string) error

type ICoreWebView2CookieList ¶

type ICoreWebView2CookieList struct {
	Vtbl *ICoreWebView2CookieListVtbl
}

func (*ICoreWebView2CookieList) AddRef ¶

func (i *ICoreWebView2CookieList) AddRef() uintptr

func (*ICoreWebView2CookieList) GetCount ¶

func (i *ICoreWebView2CookieList) GetCount() (uint, error)

func (*ICoreWebView2CookieList) GetValueAtIndex ¶

func (i *ICoreWebView2CookieList) GetValueAtIndex(index uint) (*ICoreWebView2Cookie, error)

type ICoreWebView2CookieListVtbl ¶

type ICoreWebView2CookieListVtbl struct {
	IUnknownVtbl
	GetCount        ComProc
	GetValueAtIndex ComProc
}

type ICoreWebView2CookieManager ¶

type ICoreWebView2CookieManager struct {
	Vtbl *ICoreWebView2CookieManagerVtbl
}

func (*ICoreWebView2CookieManager) AddOrUpdateCookie ¶

func (i *ICoreWebView2CookieManager) AddOrUpdateCookie(cookie *ICoreWebView2Cookie) error

func (*ICoreWebView2CookieManager) AddRef ¶

func (i *ICoreWebView2CookieManager) AddRef() uintptr

func (*ICoreWebView2CookieManager) CopyCookie ¶

func (*ICoreWebView2CookieManager) CreateCookie ¶

func (i *ICoreWebView2CookieManager) CreateCookie(name string, value string, domain string, path string) (*ICoreWebView2Cookie, error)

func (*ICoreWebView2CookieManager) DeleteAllCookies ¶

func (i *ICoreWebView2CookieManager) DeleteAllCookies() error

func (*ICoreWebView2CookieManager) DeleteCookie ¶

func (i *ICoreWebView2CookieManager) DeleteCookie(cookie *ICoreWebView2Cookie) error

func (*ICoreWebView2CookieManager) DeleteCookies ¶

func (i *ICoreWebView2CookieManager) DeleteCookies(name string, uri string) error

func (*ICoreWebView2CookieManager) DeleteCookiesWithDomainAndPath ¶

func (i *ICoreWebView2CookieManager) DeleteCookiesWithDomainAndPath(name string, domain string, path string) error

func (*ICoreWebView2CookieManager) GetCookies ¶

type ICoreWebView2CookieManagerVtbl ¶

type ICoreWebView2CookieManagerVtbl struct {
	IUnknownVtbl
	CreateCookie                   ComProc
	CopyCookie                     ComProc
	GetCookies                     ComProc
	AddOrUpdateCookie              ComProc
	DeleteCookie                   ComProc
	DeleteCookies                  ComProc
	DeleteCookiesWithDomainAndPath ComProc
	DeleteAllCookies               ComProc
}

type ICoreWebView2CookieVtbl ¶

type ICoreWebView2CookieVtbl struct {
	IUnknownVtbl
	GetName       ComProc
	GetValue      ComProc
	PutValue      ComProc
	GetDomain     ComProc
	GetPath       ComProc
	GetExpires    ComProc
	PutExpires    ComProc
	GetIsHttpOnly ComProc
	PutIsHttpOnly ComProc
	GetSameSite   ComProc
	PutSameSite   ComProc
	GetIsSecure   ComProc
	PutIsSecure   ComProc
	GetIsSession  ComProc
}

type ICoreWebView2CreateCoreWebView2CompositionControllerCompletedHandler ¶

type ICoreWebView2CreateCoreWebView2CompositionControllerCompletedHandler struct {
	Vtbl *ICoreWebView2CreateCoreWebView2CompositionControllerCompletedHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2CreateCoreWebView2CompositionControllerCompletedHandler) AddRef ¶

type ICoreWebView2CreateCoreWebView2CompositionControllerCompletedHandlerImpl ¶

type ICoreWebView2CreateCoreWebView2CompositionControllerCompletedHandlerImpl interface {
	IUnknownImpl
	CreateCoreWebView2CompositionControllerCompleted(errorCode uintptr, webView *ICoreWebView2CompositionController) uintptr
}

type ICoreWebView2CreateCoreWebView2CompositionControllerCompletedHandlerVtbl ¶

type ICoreWebView2CreateCoreWebView2CompositionControllerCompletedHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2CreateCoreWebView2ControllerCompletedHandler ¶

type ICoreWebView2CreateCoreWebView2ControllerCompletedHandler struct {
	Vtbl *ICoreWebView2CreateCoreWebView2ControllerCompletedHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2CreateCoreWebView2ControllerCompletedHandler) AddRef ¶

type ICoreWebView2CreateCoreWebView2ControllerCompletedHandlerImpl ¶

type ICoreWebView2CreateCoreWebView2ControllerCompletedHandlerImpl interface {
	IUnknownImpl
	CreateCoreWebView2ControllerCompleted(errorCode uintptr, createdController *ICoreWebView2Controller) uintptr
}

type ICoreWebView2CreateCoreWebView2ControllerCompletedHandlerVtbl ¶

type ICoreWebView2CreateCoreWebView2ControllerCompletedHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2CreateCoreWebView2EnvironmentCompletedHandler ¶

type ICoreWebView2CreateCoreWebView2EnvironmentCompletedHandler struct {
	Vtbl *ICoreWebView2CreateCoreWebView2EnvironmentCompletedHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2CreateCoreWebView2EnvironmentCompletedHandler) AddRef ¶

type ICoreWebView2CreateCoreWebView2EnvironmentCompletedHandlerImpl ¶

type ICoreWebView2CreateCoreWebView2EnvironmentCompletedHandlerImpl interface {
	IUnknownImpl
	CreateCoreWebView2EnvironmentCompleted(errorCode uintptr, createdEnvironment *ICoreWebView2Environment) uintptr
}

type ICoreWebView2CreateCoreWebView2EnvironmentCompletedHandlerVtbl ¶

type ICoreWebView2CreateCoreWebView2EnvironmentCompletedHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2CursorChangedEventHandler ¶

type ICoreWebView2CursorChangedEventHandler struct {
	Vtbl *ICoreWebView2CursorChangedEventHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2CursorChangedEventHandler) AddRef ¶

type ICoreWebView2CursorChangedEventHandlerImpl ¶

type ICoreWebView2CursorChangedEventHandlerImpl interface {
	IUnknownImpl
	CursorChanged(sender *ICoreWebView2CompositionController, args *IUnknown) uintptr
}

type ICoreWebView2CursorChangedEventHandlerVtbl ¶

type ICoreWebView2CursorChangedEventHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2CustomItemSelectedEventHandler ¶

type ICoreWebView2CustomItemSelectedEventHandler struct {
	Vtbl *ICoreWebView2CustomItemSelectedEventHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2CustomItemSelectedEventHandler) AddRef ¶

type ICoreWebView2CustomItemSelectedEventHandlerImpl ¶

type ICoreWebView2CustomItemSelectedEventHandlerImpl interface {
	IUnknownImpl
	CustomItemSelected(sender *ICoreWebView2ContextMenuItem, args *IUnknown) uintptr
}

type ICoreWebView2CustomItemSelectedEventHandlerVtbl ¶

type ICoreWebView2CustomItemSelectedEventHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2CustomSchemeRegistration ¶

type ICoreWebView2CustomSchemeRegistration struct {
	Vtbl *ICoreWebView2CustomSchemeRegistrationVtbl
}

func (*ICoreWebView2CustomSchemeRegistration) AddRef ¶

func (*ICoreWebView2CustomSchemeRegistration) GetAllowedOrigins ¶

func (i *ICoreWebView2CustomSchemeRegistration) GetAllowedOrigins() (uint32, *string, error)

func (*ICoreWebView2CustomSchemeRegistration) GetHasAuthorityComponent ¶

func (i *ICoreWebView2CustomSchemeRegistration) GetHasAuthorityComponent() (bool, error)

func (*ICoreWebView2CustomSchemeRegistration) GetSchemeName ¶

func (i *ICoreWebView2CustomSchemeRegistration) GetSchemeName() (string, error)

func (*ICoreWebView2CustomSchemeRegistration) GetTreatAsSecure ¶

func (i *ICoreWebView2CustomSchemeRegistration) GetTreatAsSecure() (bool, error)

func (*ICoreWebView2CustomSchemeRegistration) PutHasAuthorityComponent ¶

func (i *ICoreWebView2CustomSchemeRegistration) PutHasAuthorityComponent(hasAuthorityComponent bool) error

func (*ICoreWebView2CustomSchemeRegistration) PutTreatAsSecure ¶

func (i *ICoreWebView2CustomSchemeRegistration) PutTreatAsSecure(value bool) error

func (*ICoreWebView2CustomSchemeRegistration) SetAllowedOrigins ¶

func (i *ICoreWebView2CustomSchemeRegistration) SetAllowedOrigins(allowedOriginsCount uint32, allowedOrigins string) error

type ICoreWebView2CustomSchemeRegistrationVtbl ¶

type ICoreWebView2CustomSchemeRegistrationVtbl struct {
	IUnknownVtbl
	GetSchemeName            ComProc
	GetTreatAsSecure         ComProc
	PutTreatAsSecure         ComProc
	GetAllowedOrigins        ComProc
	SetAllowedOrigins        ComProc
	GetHasAuthorityComponent ComProc
	PutHasAuthorityComponent ComProc
}

type ICoreWebView2DOMContentLoadedEventArgs ¶

type ICoreWebView2DOMContentLoadedEventArgs struct {
	Vtbl *ICoreWebView2DOMContentLoadedEventArgsVtbl
}

func (*ICoreWebView2DOMContentLoadedEventArgs) AddRef ¶

func (*ICoreWebView2DOMContentLoadedEventArgs) GetNavigationId ¶

func (i *ICoreWebView2DOMContentLoadedEventArgs) GetNavigationId() (uint64, error)

type ICoreWebView2DOMContentLoadedEventArgsVtbl ¶

type ICoreWebView2DOMContentLoadedEventArgsVtbl struct {
	IUnknownVtbl
	GetNavigationId ComProc
}

type ICoreWebView2DOMContentLoadedEventHandler ¶

type ICoreWebView2DOMContentLoadedEventHandler struct {
	Vtbl *ICoreWebView2DOMContentLoadedEventHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2DOMContentLoadedEventHandler) AddRef ¶

type ICoreWebView2DOMContentLoadedEventHandlerImpl ¶

type ICoreWebView2DOMContentLoadedEventHandlerImpl interface {
	IUnknownImpl
	DOMContentLoaded(sender *ICoreWebView2, args *ICoreWebView2DOMContentLoadedEventArgs) uintptr
}

type ICoreWebView2DOMContentLoadedEventHandlerVtbl ¶

type ICoreWebView2DOMContentLoadedEventHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2Deferral ¶

type ICoreWebView2Deferral struct {
	Vtbl *ICoreWebView2DeferralVtbl
}

func (*ICoreWebView2Deferral) AddRef ¶

func (i *ICoreWebView2Deferral) AddRef() uintptr

func (*ICoreWebView2Deferral) Complete ¶

func (i *ICoreWebView2Deferral) Complete() error

type ICoreWebView2DeferralVtbl ¶

type ICoreWebView2DeferralVtbl struct {
	IUnknownVtbl
	Complete ComProc
}

type ICoreWebView2DevToolsProtocolEventReceivedEventArgs ¶

type ICoreWebView2DevToolsProtocolEventReceivedEventArgs struct {
	Vtbl *ICoreWebView2DevToolsProtocolEventReceivedEventArgsVtbl
}

func (*ICoreWebView2DevToolsProtocolEventReceivedEventArgs) AddRef ¶

func (*ICoreWebView2DevToolsProtocolEventReceivedEventArgs) GetParameterObjectAsJson ¶

func (i *ICoreWebView2DevToolsProtocolEventReceivedEventArgs) GetParameterObjectAsJson() (string, error)

type ICoreWebView2DevToolsProtocolEventReceivedEventArgs2 ¶

type ICoreWebView2DevToolsProtocolEventReceivedEventArgs2 struct {
	Vtbl *ICoreWebView2DevToolsProtocolEventReceivedEventArgs2Vtbl
}

func (*ICoreWebView2DevToolsProtocolEventReceivedEventArgs2) AddRef ¶

func (*ICoreWebView2DevToolsProtocolEventReceivedEventArgs2) GetSessionId ¶

type ICoreWebView2DevToolsProtocolEventReceivedEventArgs2Vtbl ¶

type ICoreWebView2DevToolsProtocolEventReceivedEventArgs2Vtbl struct {
	IUnknownVtbl
	GetSessionId ComProc
}

type ICoreWebView2DevToolsProtocolEventReceivedEventArgsVtbl ¶

type ICoreWebView2DevToolsProtocolEventReceivedEventArgsVtbl struct {
	IUnknownVtbl
	GetParameterObjectAsJson ComProc
}

type ICoreWebView2DevToolsProtocolEventReceivedEventHandler ¶

type ICoreWebView2DevToolsProtocolEventReceivedEventHandler struct {
	Vtbl *ICoreWebView2DevToolsProtocolEventReceivedEventHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2DevToolsProtocolEventReceivedEventHandler) AddRef ¶

type ICoreWebView2DevToolsProtocolEventReceivedEventHandlerImpl ¶

type ICoreWebView2DevToolsProtocolEventReceivedEventHandlerImpl interface {
	IUnknownImpl
	DevToolsProtocolEventReceived(sender *ICoreWebView2, args *ICoreWebView2DevToolsProtocolEventReceivedEventArgs) uintptr
}

type ICoreWebView2DevToolsProtocolEventReceivedEventHandlerVtbl ¶

type ICoreWebView2DevToolsProtocolEventReceivedEventHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2DevToolsProtocolEventReceiver ¶

type ICoreWebView2DevToolsProtocolEventReceiver struct {
	Vtbl *ICoreWebView2DevToolsProtocolEventReceiverVtbl
}

func (*ICoreWebView2DevToolsProtocolEventReceiver) AddDevToolsProtocolEventReceived ¶

func (*ICoreWebView2DevToolsProtocolEventReceiver) AddRef ¶

func (*ICoreWebView2DevToolsProtocolEventReceiver) RemoveDevToolsProtocolEventReceived ¶

func (i *ICoreWebView2DevToolsProtocolEventReceiver) RemoveDevToolsProtocolEventReceived(token EventRegistrationToken) error

type ICoreWebView2DevToolsProtocolEventReceiverVtbl ¶

type ICoreWebView2DevToolsProtocolEventReceiverVtbl struct {
	IUnknownVtbl
	AddDevToolsProtocolEventReceived    ComProc
	RemoveDevToolsProtocolEventReceived ComProc
}

type ICoreWebView2DocumentTitleChangedEventHandler ¶

type ICoreWebView2DocumentTitleChangedEventHandler struct {
	Vtbl *ICoreWebView2DocumentTitleChangedEventHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2DocumentTitleChangedEventHandler) AddRef ¶

type ICoreWebView2DocumentTitleChangedEventHandlerImpl ¶

type ICoreWebView2DocumentTitleChangedEventHandlerImpl interface {
	IUnknownImpl
	DocumentTitleChanged(sender *ICoreWebView2, args *IUnknown) uintptr
}

type ICoreWebView2DocumentTitleChangedEventHandlerVtbl ¶

type ICoreWebView2DocumentTitleChangedEventHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2DownloadOperation ¶

type ICoreWebView2DownloadOperation struct {
	Vtbl *ICoreWebView2DownloadOperationVtbl
}

func (*ICoreWebView2DownloadOperation) AddBytesReceivedChanged ¶

func (*ICoreWebView2DownloadOperation) AddEstimatedEndTimeChanged ¶

func (*ICoreWebView2DownloadOperation) AddRef ¶

func (*ICoreWebView2DownloadOperation) AddStateChanged ¶

func (*ICoreWebView2DownloadOperation) Cancel ¶

func (*ICoreWebView2DownloadOperation) GetBytesReceived ¶

func (i *ICoreWebView2DownloadOperation) GetBytesReceived() (int64, error)

func (*ICoreWebView2DownloadOperation) GetCanResume ¶

func (i *ICoreWebView2DownloadOperation) GetCanResume() (bool, error)

func (*ICoreWebView2DownloadOperation) GetContentDisposition ¶

func (i *ICoreWebView2DownloadOperation) GetContentDisposition() (string, error)

func (*ICoreWebView2DownloadOperation) GetEstimatedEndTime ¶

func (i *ICoreWebView2DownloadOperation) GetEstimatedEndTime() (string, error)

func (*ICoreWebView2DownloadOperation) GetInterruptReason ¶

func (*ICoreWebView2DownloadOperation) GetMimeType ¶

func (i *ICoreWebView2DownloadOperation) GetMimeType() (string, error)

func (*ICoreWebView2DownloadOperation) GetResultFilePath ¶

func (i *ICoreWebView2DownloadOperation) GetResultFilePath() (string, error)

func (*ICoreWebView2DownloadOperation) GetState ¶

func (*ICoreWebView2DownloadOperation) GetTotalBytesToReceive ¶

func (i *ICoreWebView2DownloadOperation) GetTotalBytesToReceive() (int64, error)

func (*ICoreWebView2DownloadOperation) GetUri ¶

func (*ICoreWebView2DownloadOperation) Pause ¶

func (*ICoreWebView2DownloadOperation) RemoveBytesReceivedChanged ¶

func (i *ICoreWebView2DownloadOperation) RemoveBytesReceivedChanged(token EventRegistrationToken) error

func (*ICoreWebView2DownloadOperation) RemoveEstimatedEndTimeChanged ¶

func (i *ICoreWebView2DownloadOperation) RemoveEstimatedEndTimeChanged(token EventRegistrationToken) error

func (*ICoreWebView2DownloadOperation) RemoveStateChanged ¶

func (i *ICoreWebView2DownloadOperation) RemoveStateChanged(token EventRegistrationToken) error

func (*ICoreWebView2DownloadOperation) Resume ¶

type ICoreWebView2DownloadOperationVtbl ¶

type ICoreWebView2DownloadOperationVtbl struct {
	IUnknownVtbl
	AddBytesReceivedChanged       ComProc
	RemoveBytesReceivedChanged    ComProc
	AddEstimatedEndTimeChanged    ComProc
	RemoveEstimatedEndTimeChanged ComProc
	AddStateChanged               ComProc
	RemoveStateChanged            ComProc
	GetUri                        ComProc
	GetContentDisposition         ComProc
	GetMimeType                   ComProc
	GetTotalBytesToReceive        ComProc
	GetBytesReceived              ComProc
	GetEstimatedEndTime           ComProc
	GetResultFilePath             ComProc
	GetState                      ComProc
	GetInterruptReason            ComProc
	Cancel                        ComProc
	Pause                         ComProc
	Resume                        ComProc
	GetCanResume                  ComProc
}

type ICoreWebView2DownloadStartingEventArgs ¶

type ICoreWebView2DownloadStartingEventArgs struct {
	Vtbl *ICoreWebView2DownloadStartingEventArgsVtbl
}

func (*ICoreWebView2DownloadStartingEventArgs) AddRef ¶

func (*ICoreWebView2DownloadStartingEventArgs) GetCancel ¶

func (*ICoreWebView2DownloadStartingEventArgs) GetDeferral ¶

func (*ICoreWebView2DownloadStartingEventArgs) GetDownloadOperation ¶

func (*ICoreWebView2DownloadStartingEventArgs) GetHandled ¶

func (*ICoreWebView2DownloadStartingEventArgs) GetResultFilePath ¶

func (i *ICoreWebView2DownloadStartingEventArgs) GetResultFilePath() (string, error)

func (*ICoreWebView2DownloadStartingEventArgs) PutCancel ¶

func (i *ICoreWebView2DownloadStartingEventArgs) PutCancel(cancel bool) error

func (*ICoreWebView2DownloadStartingEventArgs) PutHandled ¶

func (i *ICoreWebView2DownloadStartingEventArgs) PutHandled(handled bool) error

func (*ICoreWebView2DownloadStartingEventArgs) PutResultFilePath ¶

func (i *ICoreWebView2DownloadStartingEventArgs) PutResultFilePath(resultFilePath string) error

type ICoreWebView2DownloadStartingEventArgsVtbl ¶

type ICoreWebView2DownloadStartingEventArgsVtbl struct {
	IUnknownVtbl
	GetDownloadOperation ComProc
	GetCancel            ComProc
	PutCancel            ComProc
	GetResultFilePath    ComProc
	PutResultFilePath    ComProc
	GetHandled           ComProc
	PutHandled           ComProc
	GetDeferral          ComProc
}

type ICoreWebView2DownloadStartingEventHandler ¶

type ICoreWebView2DownloadStartingEventHandler struct {
	Vtbl *ICoreWebView2DownloadStartingEventHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2DownloadStartingEventHandler) AddRef ¶

type ICoreWebView2DownloadStartingEventHandlerImpl ¶

type ICoreWebView2DownloadStartingEventHandlerImpl interface {
	IUnknownImpl
	DownloadStarting(sender *ICoreWebView2, args *ICoreWebView2DownloadStartingEventArgs) uintptr
}

type ICoreWebView2DownloadStartingEventHandlerVtbl ¶

type ICoreWebView2DownloadStartingEventHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2Environment ¶

type ICoreWebView2Environment struct {
	Vtbl *ICoreWebView2EnvironmentVtbl
}

func (*ICoreWebView2Environment) AddNewBrowserVersionAvailable ¶

func (*ICoreWebView2Environment) AddRef ¶

func (i *ICoreWebView2Environment) AddRef() uintptr

func (*ICoreWebView2Environment) CreateCoreWebView2Controller ¶

func (i *ICoreWebView2Environment) CreateCoreWebView2Controller(parentWindow HWND, handler *ICoreWebView2CreateCoreWebView2ControllerCompletedHandler) error

func (*ICoreWebView2Environment) CreateWebResourceResponse ¶

func (i *ICoreWebView2Environment) CreateWebResourceResponse(content *IStream, statusCode int, reasonPhrase string, headers string) (*ICoreWebView2WebResourceResponse, error)

func (*ICoreWebView2Environment) GetBrowserVersionString ¶

func (i *ICoreWebView2Environment) GetBrowserVersionString() (string, error)

func (*ICoreWebView2Environment) RemoveNewBrowserVersionAvailable ¶

func (i *ICoreWebView2Environment) RemoveNewBrowserVersionAvailable(token EventRegistrationToken) error

type ICoreWebView2Environment10 ¶

type ICoreWebView2Environment10 struct {
	Vtbl *ICoreWebView2Environment10Vtbl
}

func (*ICoreWebView2Environment10) AddRef ¶

func (i *ICoreWebView2Environment10) AddRef() uintptr

func (*ICoreWebView2Environment10) CreateCoreWebView2CompositionControllerWithOptions ¶

func (i *ICoreWebView2Environment10) CreateCoreWebView2CompositionControllerWithOptions(parentWindow HWND, options *ICoreWebView2ControllerOptions, handler *ICoreWebView2CreateCoreWebView2CompositionControllerCompletedHandler) error

func (*ICoreWebView2Environment10) CreateCoreWebView2ControllerOptions ¶

func (i *ICoreWebView2Environment10) CreateCoreWebView2ControllerOptions() (*ICoreWebView2ControllerOptions, error)

func (*ICoreWebView2Environment10) CreateCoreWebView2ControllerWithOptions ¶

func (i *ICoreWebView2Environment10) CreateCoreWebView2ControllerWithOptions(parentWindow HWND, options *ICoreWebView2ControllerOptions, handler *ICoreWebView2CreateCoreWebView2ControllerCompletedHandler) error

type ICoreWebView2Environment10Vtbl ¶

type ICoreWebView2Environment10Vtbl struct {
	IUnknownVtbl
	CreateCoreWebView2ControllerOptions                ComProc
	CreateCoreWebView2ControllerWithOptions            ComProc
	CreateCoreWebView2CompositionControllerWithOptions ComProc
}

type ICoreWebView2Environment11 ¶

type ICoreWebView2Environment11 struct {
	Vtbl *ICoreWebView2Environment11Vtbl
}

func (*ICoreWebView2Environment11) AddRef ¶

func (i *ICoreWebView2Environment11) AddRef() uintptr

func (*ICoreWebView2Environment11) GetFailureReportFolderPath ¶

func (i *ICoreWebView2Environment11) GetFailureReportFolderPath() (string, error)

type ICoreWebView2Environment11Vtbl ¶

type ICoreWebView2Environment11Vtbl struct {
	IUnknownVtbl
	GetFailureReportFolderPath ComProc
}

type ICoreWebView2Environment12 ¶

type ICoreWebView2Environment12 struct {
	Vtbl *ICoreWebView2Environment12Vtbl
}

func (*ICoreWebView2Environment12) AddRef ¶

func (i *ICoreWebView2Environment12) AddRef() uintptr

func (*ICoreWebView2Environment12) CreateSharedBuffer ¶

func (i *ICoreWebView2Environment12) CreateSharedBuffer(size uint64) (*ICoreWebView2SharedBuffer, error)

type ICoreWebView2Environment12Vtbl ¶

type ICoreWebView2Environment12Vtbl struct {
	IUnknownVtbl
	CreateSharedBuffer ComProc
}

type ICoreWebView2Environment2 ¶

type ICoreWebView2Environment2 struct {
	Vtbl *ICoreWebView2Environment2Vtbl
}

func (*ICoreWebView2Environment2) AddRef ¶

func (i *ICoreWebView2Environment2) AddRef() uintptr

func (*ICoreWebView2Environment2) CreateWebResourceRequest ¶

func (i *ICoreWebView2Environment2) CreateWebResourceRequest(uri string, method string, postData *IStream, headers string) (*ICoreWebView2WebResourceRequest, error)

type ICoreWebView2Environment2Vtbl ¶

type ICoreWebView2Environment2Vtbl struct {
	IUnknownVtbl
	CreateWebResourceRequest ComProc
}

type ICoreWebView2Environment3 ¶

type ICoreWebView2Environment3 struct {
	Vtbl *ICoreWebView2Environment3Vtbl
}

func (*ICoreWebView2Environment3) AddRef ¶

func (i *ICoreWebView2Environment3) AddRef() uintptr

func (*ICoreWebView2Environment3) CreateCoreWebView2CompositionController ¶

func (i *ICoreWebView2Environment3) CreateCoreWebView2CompositionController(parentWindow HWND, handler *ICoreWebView2CreateCoreWebView2CompositionControllerCompletedHandler) error

func (*ICoreWebView2Environment3) CreateCoreWebView2PointerInfo ¶

func (i *ICoreWebView2Environment3) CreateCoreWebView2PointerInfo() (*ICoreWebView2PointerInfo, error)

type ICoreWebView2Environment3Vtbl ¶

type ICoreWebView2Environment3Vtbl struct {
	IUnknownVtbl
	CreateCoreWebView2CompositionController ComProc
	CreateCoreWebView2PointerInfo           ComProc
}

type ICoreWebView2Environment4 ¶

type ICoreWebView2Environment4 struct {
	Vtbl *ICoreWebView2Environment4Vtbl
}

func (*ICoreWebView2Environment4) AddRef ¶

func (i *ICoreWebView2Environment4) AddRef() uintptr

func (*ICoreWebView2Environment4) GetAutomationProviderForWindow ¶

func (i *ICoreWebView2Environment4) GetAutomationProviderForWindow(hwnd HWND) (*IUnknown, error)

type ICoreWebView2Environment4Vtbl ¶

type ICoreWebView2Environment4Vtbl struct {
	IUnknownVtbl
	GetAutomationProviderForWindow ComProc
}

type ICoreWebView2Environment5 ¶

type ICoreWebView2Environment5 struct {
	Vtbl *ICoreWebView2Environment5Vtbl
}

func (*ICoreWebView2Environment5) AddBrowserProcessExited ¶

func (*ICoreWebView2Environment5) AddRef ¶

func (i *ICoreWebView2Environment5) AddRef() uintptr

func (*ICoreWebView2Environment5) RemoveBrowserProcessExited ¶

func (i *ICoreWebView2Environment5) RemoveBrowserProcessExited(token EventRegistrationToken) error

type ICoreWebView2Environment5Vtbl ¶

type ICoreWebView2Environment5Vtbl struct {
	IUnknownVtbl
	AddBrowserProcessExited    ComProc
	RemoveBrowserProcessExited ComProc
}

type ICoreWebView2Environment6 ¶

type ICoreWebView2Environment6 struct {
	Vtbl *ICoreWebView2Environment6Vtbl
}

func (*ICoreWebView2Environment6) AddRef ¶

func (i *ICoreWebView2Environment6) AddRef() uintptr

func (*ICoreWebView2Environment6) CreatePrintSettings ¶

func (i *ICoreWebView2Environment6) CreatePrintSettings() (*ICoreWebView2PrintSettings, error)

type ICoreWebView2Environment6Vtbl ¶

type ICoreWebView2Environment6Vtbl struct {
	IUnknownVtbl
	CreatePrintSettings ComProc
}

type ICoreWebView2Environment7 ¶

type ICoreWebView2Environment7 struct {
	Vtbl *ICoreWebView2Environment7Vtbl
}

func (*ICoreWebView2Environment7) AddRef ¶

func (i *ICoreWebView2Environment7) AddRef() uintptr

func (*ICoreWebView2Environment7) GetUserDataFolder ¶

func (i *ICoreWebView2Environment7) GetUserDataFolder() (string, error)

type ICoreWebView2Environment7Vtbl ¶

type ICoreWebView2Environment7Vtbl struct {
	IUnknownVtbl
	GetUserDataFolder ComProc
}

type ICoreWebView2Environment8 ¶

type ICoreWebView2Environment8 struct {
	Vtbl *ICoreWebView2Environment8Vtbl
}

func (*ICoreWebView2Environment8) AddProcessInfosChanged ¶

func (*ICoreWebView2Environment8) AddRef ¶

func (i *ICoreWebView2Environment8) AddRef() uintptr

func (*ICoreWebView2Environment8) GetProcessInfos ¶

func (*ICoreWebView2Environment8) RemoveProcessInfosChanged ¶

func (i *ICoreWebView2Environment8) RemoveProcessInfosChanged(token EventRegistrationToken) error

type ICoreWebView2Environment8Vtbl ¶

type ICoreWebView2Environment8Vtbl struct {
	IUnknownVtbl
	AddProcessInfosChanged    ComProc
	RemoveProcessInfosChanged ComProc
	GetProcessInfos           ComProc
}

type ICoreWebView2Environment9 ¶

type ICoreWebView2Environment9 struct {
	Vtbl *ICoreWebView2Environment9Vtbl
}

func (*ICoreWebView2Environment9) AddRef ¶

func (i *ICoreWebView2Environment9) AddRef() uintptr

func (*ICoreWebView2Environment9) CreateContextMenuItem ¶

type ICoreWebView2Environment9Vtbl ¶

type ICoreWebView2Environment9Vtbl struct {
	IUnknownVtbl
	CreateContextMenuItem ComProc
}

type ICoreWebView2EnvironmentOptions ¶

type ICoreWebView2EnvironmentOptions struct {
	Vtbl *ICoreWebView2EnvironmentOptionsVtbl
}

func (*ICoreWebView2EnvironmentOptions) AddRef ¶

func (*ICoreWebView2EnvironmentOptions) GetAdditionalBrowserArguments ¶

func (i *ICoreWebView2EnvironmentOptions) GetAdditionalBrowserArguments() (string, error)

func (*ICoreWebView2EnvironmentOptions) GetAllowSingleSignOnUsingOSPrimaryAccount ¶

func (i *ICoreWebView2EnvironmentOptions) GetAllowSingleSignOnUsingOSPrimaryAccount() (bool, error)

func (*ICoreWebView2EnvironmentOptions) GetLanguage ¶

func (i *ICoreWebView2EnvironmentOptions) GetLanguage() (string, error)

func (*ICoreWebView2EnvironmentOptions) GetTargetCompatibleBrowserVersion ¶

func (i *ICoreWebView2EnvironmentOptions) GetTargetCompatibleBrowserVersion() (string, error)

func (*ICoreWebView2EnvironmentOptions) PutAdditionalBrowserArguments ¶

func (i *ICoreWebView2EnvironmentOptions) PutAdditionalBrowserArguments(value string) error

func (*ICoreWebView2EnvironmentOptions) PutAllowSingleSignOnUsingOSPrimaryAccount ¶

func (i *ICoreWebView2EnvironmentOptions) PutAllowSingleSignOnUsingOSPrimaryAccount(allow bool) error

func (*ICoreWebView2EnvironmentOptions) PutLanguage ¶

func (i *ICoreWebView2EnvironmentOptions) PutLanguage(value string) error

func (*ICoreWebView2EnvironmentOptions) PutTargetCompatibleBrowserVersion ¶

func (i *ICoreWebView2EnvironmentOptions) PutTargetCompatibleBrowserVersion(value string) error

type ICoreWebView2EnvironmentOptions2 ¶

type ICoreWebView2EnvironmentOptions2 struct {
	Vtbl *ICoreWebView2EnvironmentOptions2Vtbl
}

func (*ICoreWebView2EnvironmentOptions2) AddRef ¶

func (*ICoreWebView2EnvironmentOptions2) GetExclusiveUserDataFolderAccess ¶

func (i *ICoreWebView2EnvironmentOptions2) GetExclusiveUserDataFolderAccess() (bool, error)

func (*ICoreWebView2EnvironmentOptions2) PutExclusiveUserDataFolderAccess ¶

func (i *ICoreWebView2EnvironmentOptions2) PutExclusiveUserDataFolderAccess(value bool) error

type ICoreWebView2EnvironmentOptions2Vtbl ¶

type ICoreWebView2EnvironmentOptions2Vtbl struct {
	IUnknownVtbl
	GetExclusiveUserDataFolderAccess ComProc
	PutExclusiveUserDataFolderAccess ComProc
}

type ICoreWebView2EnvironmentOptions3 ¶

type ICoreWebView2EnvironmentOptions3 struct {
	Vtbl *ICoreWebView2EnvironmentOptions3Vtbl
}

func (*ICoreWebView2EnvironmentOptions3) AddRef ¶

func (*ICoreWebView2EnvironmentOptions3) GetIsCustomCrashReportingEnabled ¶

func (i *ICoreWebView2EnvironmentOptions3) GetIsCustomCrashReportingEnabled() (bool, error)

func (*ICoreWebView2EnvironmentOptions3) PutIsCustomCrashReportingEnabled ¶

func (i *ICoreWebView2EnvironmentOptions3) PutIsCustomCrashReportingEnabled(value bool) error

type ICoreWebView2EnvironmentOptions3Vtbl ¶

type ICoreWebView2EnvironmentOptions3Vtbl struct {
	IUnknownVtbl
	GetIsCustomCrashReportingEnabled ComProc
	PutIsCustomCrashReportingEnabled ComProc
}

type ICoreWebView2EnvironmentOptions4 ¶

type ICoreWebView2EnvironmentOptions4 struct {
	Vtbl *ICoreWebView2EnvironmentOptions4Vtbl
}

func (*ICoreWebView2EnvironmentOptions4) AddRef ¶

func (*ICoreWebView2EnvironmentOptions4) GetCustomSchemeRegistrations ¶

func (*ICoreWebView2EnvironmentOptions4) SetCustomSchemeRegistrations ¶

func (i *ICoreWebView2EnvironmentOptions4) SetCustomSchemeRegistrations(count uint32, schemeRegistrations **ICoreWebView2CustomSchemeRegistration) error

type ICoreWebView2EnvironmentOptions4Vtbl ¶

type ICoreWebView2EnvironmentOptions4Vtbl struct {
	IUnknownVtbl
	GetCustomSchemeRegistrations ComProc
	SetCustomSchemeRegistrations ComProc
}

type ICoreWebView2EnvironmentOptions5 ¶

type ICoreWebView2EnvironmentOptions5 struct {
	Vtbl *ICoreWebView2EnvironmentOptions5Vtbl
}

func (*ICoreWebView2EnvironmentOptions5) AddRef ¶

func (*ICoreWebView2EnvironmentOptions5) GetEnableTrackingPrevention ¶

func (i *ICoreWebView2EnvironmentOptions5) GetEnableTrackingPrevention() (bool, error)

func (*ICoreWebView2EnvironmentOptions5) PutEnableTrackingPrevention ¶

func (i *ICoreWebView2EnvironmentOptions5) PutEnableTrackingPrevention(value bool) error

type ICoreWebView2EnvironmentOptions5Vtbl ¶

type ICoreWebView2EnvironmentOptions5Vtbl struct {
	IUnknownVtbl
	GetEnableTrackingPrevention ComProc
	PutEnableTrackingPrevention ComProc
}

type ICoreWebView2EnvironmentOptionsVtbl ¶

type ICoreWebView2EnvironmentOptionsVtbl struct {
	IUnknownVtbl
	GetAdditionalBrowserArguments             ComProc
	PutAdditionalBrowserArguments             ComProc
	GetLanguage                               ComProc
	PutLanguage                               ComProc
	GetTargetCompatibleBrowserVersion         ComProc
	PutTargetCompatibleBrowserVersion         ComProc
	GetAllowSingleSignOnUsingOSPrimaryAccount ComProc
	PutAllowSingleSignOnUsingOSPrimaryAccount ComProc
}

type ICoreWebView2EnvironmentVtbl ¶

type ICoreWebView2EnvironmentVtbl struct {
	IUnknownVtbl
	CreateCoreWebView2Controller     ComProc
	CreateWebResourceResponse        ComProc
	GetBrowserVersionString          ComProc
	AddNewBrowserVersionAvailable    ComProc
	RemoveNewBrowserVersionAvailable ComProc
}

type ICoreWebView2EstimatedEndTimeChangedEventHandler ¶

type ICoreWebView2EstimatedEndTimeChangedEventHandler struct {
	Vtbl *ICoreWebView2EstimatedEndTimeChangedEventHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2EstimatedEndTimeChangedEventHandler) AddRef ¶

type ICoreWebView2EstimatedEndTimeChangedEventHandlerImpl ¶

type ICoreWebView2EstimatedEndTimeChangedEventHandlerImpl interface {
	IUnknownImpl
	EstimatedEndTimeChanged(sender *ICoreWebView2DownloadOperation, args *IUnknown) uintptr
}

type ICoreWebView2EstimatedEndTimeChangedEventHandlerVtbl ¶

type ICoreWebView2EstimatedEndTimeChangedEventHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2ExecuteScriptCompletedHandler ¶

type ICoreWebView2ExecuteScriptCompletedHandler struct {
	Vtbl *ICoreWebView2ExecuteScriptCompletedHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2ExecuteScriptCompletedHandler) AddRef ¶

type ICoreWebView2ExecuteScriptCompletedHandlerImpl ¶

type ICoreWebView2ExecuteScriptCompletedHandlerImpl interface {
	IUnknownImpl
	ExecuteScriptCompleted(errorCode uintptr, resultObjectAsJson string) uintptr
}

type ICoreWebView2ExecuteScriptCompletedHandlerVtbl ¶

type ICoreWebView2ExecuteScriptCompletedHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2FaviconChangedEventHandler ¶

type ICoreWebView2FaviconChangedEventHandler struct {
	Vtbl *ICoreWebView2FaviconChangedEventHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2FaviconChangedEventHandler) AddRef ¶

type ICoreWebView2FaviconChangedEventHandlerImpl ¶

type ICoreWebView2FaviconChangedEventHandlerImpl interface {
	IUnknownImpl
	FaviconChanged(sender *ICoreWebView2, args *IUnknown) uintptr
}

type ICoreWebView2FaviconChangedEventHandlerVtbl ¶

type ICoreWebView2FaviconChangedEventHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2File ¶

type ICoreWebView2File struct {
	Vtbl *ICoreWebView2FileVtbl
}

func (*ICoreWebView2File) AddRef ¶

func (i *ICoreWebView2File) AddRef() uintptr

func (*ICoreWebView2File) GetPath ¶

func (i *ICoreWebView2File) GetPath() (string, error)

type ICoreWebView2FileVtbl ¶

type ICoreWebView2FileVtbl struct {
	IUnknownVtbl
	GetPath ComProc
}

type ICoreWebView2FocusChangedEventHandler ¶

type ICoreWebView2FocusChangedEventHandler struct {
	Vtbl *ICoreWebView2FocusChangedEventHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2FocusChangedEventHandler) AddRef ¶

type ICoreWebView2FocusChangedEventHandlerImpl ¶

type ICoreWebView2FocusChangedEventHandlerImpl interface {
	IUnknownImpl
	FocusChanged(sender *ICoreWebView2Controller, args *IUnknown) uintptr
}

type ICoreWebView2FocusChangedEventHandlerVtbl ¶

type ICoreWebView2FocusChangedEventHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2Frame ¶

type ICoreWebView2Frame struct {
	Vtbl *ICoreWebView2FrameVtbl
}

func (*ICoreWebView2Frame) AddDestroyed ¶

func (*ICoreWebView2Frame) AddHostObjectToScriptWithOrigins ¶

func (i *ICoreWebView2Frame) AddHostObjectToScriptWithOrigins(name string, object *VARIANT, originsCount uint32, origins string) error

func (*ICoreWebView2Frame) AddNameChanged ¶

func (*ICoreWebView2Frame) AddRef ¶

func (i *ICoreWebView2Frame) AddRef() uintptr

func (*ICoreWebView2Frame) GetName ¶

func (i *ICoreWebView2Frame) GetName() (string, error)

func (*ICoreWebView2Frame) IsDestroyed ¶

func (i *ICoreWebView2Frame) IsDestroyed() (bool, error)

func (*ICoreWebView2Frame) RemoveDestroyed ¶

func (i *ICoreWebView2Frame) RemoveDestroyed(token EventRegistrationToken) error

func (*ICoreWebView2Frame) RemoveHostObjectFromScript ¶

func (i *ICoreWebView2Frame) RemoveHostObjectFromScript(name string) error

func (*ICoreWebView2Frame) RemoveNameChanged ¶

func (i *ICoreWebView2Frame) RemoveNameChanged(token EventRegistrationToken) error

type ICoreWebView2Frame2 ¶

type ICoreWebView2Frame2 struct {
	Vtbl *ICoreWebView2Frame2Vtbl
}

func (*ICoreWebView2Frame2) AddContentLoading ¶

func (*ICoreWebView2Frame2) AddDOMContentLoaded ¶

func (*ICoreWebView2Frame2) AddNavigationCompleted ¶

func (*ICoreWebView2Frame2) AddNavigationStarting ¶

func (*ICoreWebView2Frame2) AddRef ¶

func (i *ICoreWebView2Frame2) AddRef() uintptr

func (*ICoreWebView2Frame2) AddWebMessageReceived ¶

func (*ICoreWebView2Frame2) ExecuteScript ¶

func (i *ICoreWebView2Frame2) ExecuteScript(javaScript string, handler *ICoreWebView2ExecuteScriptCompletedHandler) error

func (*ICoreWebView2Frame2) PostWebMessageAsJson ¶

func (i *ICoreWebView2Frame2) PostWebMessageAsJson(webMessageAsJson string) error

func (*ICoreWebView2Frame2) PostWebMessageAsString ¶

func (i *ICoreWebView2Frame2) PostWebMessageAsString(webMessageAsString string) error

func (*ICoreWebView2Frame2) RemoveContentLoading ¶

func (i *ICoreWebView2Frame2) RemoveContentLoading(token EventRegistrationToken) error

func (*ICoreWebView2Frame2) RemoveDOMContentLoaded ¶

func (i *ICoreWebView2Frame2) RemoveDOMContentLoaded(token EventRegistrationToken) error

func (*ICoreWebView2Frame2) RemoveNavigationCompleted ¶

func (i *ICoreWebView2Frame2) RemoveNavigationCompleted(token EventRegistrationToken) error

func (*ICoreWebView2Frame2) RemoveNavigationStarting ¶

func (i *ICoreWebView2Frame2) RemoveNavigationStarting(token EventRegistrationToken) error

func (*ICoreWebView2Frame2) RemoveWebMessageReceived ¶

func (i *ICoreWebView2Frame2) RemoveWebMessageReceived(token EventRegistrationToken) error

type ICoreWebView2Frame2Vtbl ¶

type ICoreWebView2Frame2Vtbl struct {
	IUnknownVtbl
	AddNavigationStarting     ComProc
	RemoveNavigationStarting  ComProc
	AddContentLoading         ComProc
	RemoveContentLoading      ComProc
	AddNavigationCompleted    ComProc
	RemoveNavigationCompleted ComProc
	AddDOMContentLoaded       ComProc
	RemoveDOMContentLoaded    ComProc
	ExecuteScript             ComProc
	PostWebMessageAsJson      ComProc
	PostWebMessageAsString    ComProc
	AddWebMessageReceived     ComProc
	RemoveWebMessageReceived  ComProc
}

type ICoreWebView2Frame3 ¶

type ICoreWebView2Frame3 struct {
	Vtbl *ICoreWebView2Frame3Vtbl
}

func (*ICoreWebView2Frame3) AddPermissionRequested ¶

func (*ICoreWebView2Frame3) AddRef ¶

func (i *ICoreWebView2Frame3) AddRef() uintptr

func (*ICoreWebView2Frame3) RemovePermissionRequested ¶

func (i *ICoreWebView2Frame3) RemovePermissionRequested(token EventRegistrationToken) error

type ICoreWebView2Frame3Vtbl ¶

type ICoreWebView2Frame3Vtbl struct {
	IUnknownVtbl
	AddPermissionRequested    ComProc
	RemovePermissionRequested ComProc
}

type ICoreWebView2Frame4 ¶

type ICoreWebView2Frame4 struct {
	Vtbl *ICoreWebView2Frame4Vtbl
}

func (*ICoreWebView2Frame4) AddRef ¶

func (i *ICoreWebView2Frame4) AddRef() uintptr

func (*ICoreWebView2Frame4) PostSharedBufferToScript ¶

func (i *ICoreWebView2Frame4) PostSharedBufferToScript(sharedBuffer *ICoreWebView2SharedBuffer, access COREWEBVIEW2_SHARED_BUFFER_ACCESS, additionalDataAsJson string) error

type ICoreWebView2Frame4Vtbl ¶

type ICoreWebView2Frame4Vtbl struct {
	IUnknownVtbl
	PostSharedBufferToScript ComProc
}

type ICoreWebView2FrameContentLoadingEventHandler ¶

type ICoreWebView2FrameContentLoadingEventHandler struct {
	Vtbl *ICoreWebView2FrameContentLoadingEventHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2FrameContentLoadingEventHandler) AddRef ¶

type ICoreWebView2FrameContentLoadingEventHandlerImpl ¶

type ICoreWebView2FrameContentLoadingEventHandlerImpl interface {
	IUnknownImpl
	FrameContentLoading(sender *ICoreWebView2Frame, args *ICoreWebView2ContentLoadingEventArgs) uintptr
}

type ICoreWebView2FrameContentLoadingEventHandlerVtbl ¶

type ICoreWebView2FrameContentLoadingEventHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2FrameCreatedEventArgs ¶

type ICoreWebView2FrameCreatedEventArgs struct {
	Vtbl *ICoreWebView2FrameCreatedEventArgsVtbl
}

func (*ICoreWebView2FrameCreatedEventArgs) AddRef ¶

func (*ICoreWebView2FrameCreatedEventArgs) GetFrame ¶

type ICoreWebView2FrameCreatedEventArgsVtbl ¶

type ICoreWebView2FrameCreatedEventArgsVtbl struct {
	IUnknownVtbl
	GetFrame ComProc
}

type ICoreWebView2FrameCreatedEventHandler ¶

type ICoreWebView2FrameCreatedEventHandler struct {
	Vtbl *ICoreWebView2FrameCreatedEventHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2FrameCreatedEventHandler) AddRef ¶

type ICoreWebView2FrameCreatedEventHandlerImpl ¶

type ICoreWebView2FrameCreatedEventHandlerImpl interface {
	IUnknownImpl
	FrameCreated(sender *ICoreWebView2, args *ICoreWebView2FrameCreatedEventArgs) uintptr
}

type ICoreWebView2FrameCreatedEventHandlerVtbl ¶

type ICoreWebView2FrameCreatedEventHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2FrameDOMContentLoadedEventHandler ¶

type ICoreWebView2FrameDOMContentLoadedEventHandler struct {
	Vtbl *ICoreWebView2FrameDOMContentLoadedEventHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2FrameDOMContentLoadedEventHandler) AddRef ¶

type ICoreWebView2FrameDOMContentLoadedEventHandlerImpl ¶

type ICoreWebView2FrameDOMContentLoadedEventHandlerImpl interface {
	IUnknownImpl
	FrameDOMContentLoaded(sender *ICoreWebView2Frame, args *ICoreWebView2DOMContentLoadedEventArgs) uintptr
}

type ICoreWebView2FrameDOMContentLoadedEventHandlerVtbl ¶

type ICoreWebView2FrameDOMContentLoadedEventHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2FrameDestroyedEventHandler ¶

type ICoreWebView2FrameDestroyedEventHandler struct {
	Vtbl *ICoreWebView2FrameDestroyedEventHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2FrameDestroyedEventHandler) AddRef ¶

type ICoreWebView2FrameDestroyedEventHandlerImpl ¶

type ICoreWebView2FrameDestroyedEventHandlerImpl interface {
	IUnknownImpl
	FrameDestroyed(sender *ICoreWebView2Frame, args *IUnknown) uintptr
}

type ICoreWebView2FrameDestroyedEventHandlerVtbl ¶

type ICoreWebView2FrameDestroyedEventHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2FrameInfo ¶

type ICoreWebView2FrameInfo struct {
	Vtbl *ICoreWebView2FrameInfoVtbl
}

func (*ICoreWebView2FrameInfo) AddRef ¶

func (i *ICoreWebView2FrameInfo) AddRef() uintptr

func (*ICoreWebView2FrameInfo) GetName ¶

func (i *ICoreWebView2FrameInfo) GetName() (string, error)

func (*ICoreWebView2FrameInfo) GetSource ¶

func (i *ICoreWebView2FrameInfo) GetSource() (string, error)

type ICoreWebView2FrameInfoCollection ¶

type ICoreWebView2FrameInfoCollection struct {
	Vtbl *ICoreWebView2FrameInfoCollectionVtbl
}

func (*ICoreWebView2FrameInfoCollection) AddRef ¶

func (*ICoreWebView2FrameInfoCollection) GetIterator ¶

type ICoreWebView2FrameInfoCollectionIterator ¶

type ICoreWebView2FrameInfoCollectionIterator struct {
	Vtbl *ICoreWebView2FrameInfoCollectionIteratorVtbl
}

func (*ICoreWebView2FrameInfoCollectionIterator) AddRef ¶

func (*ICoreWebView2FrameInfoCollectionIterator) GetCurrent ¶

func (*ICoreWebView2FrameInfoCollectionIterator) GetHasCurrent ¶

func (i *ICoreWebView2FrameInfoCollectionIterator) GetHasCurrent() (bool, error)

func (*ICoreWebView2FrameInfoCollectionIterator) MoveNext ¶

type ICoreWebView2FrameInfoCollectionIteratorVtbl ¶

type ICoreWebView2FrameInfoCollectionIteratorVtbl struct {
	IUnknownVtbl
	GetHasCurrent ComProc
	GetCurrent    ComProc
	MoveNext      ComProc
}

type ICoreWebView2FrameInfoCollectionVtbl ¶

type ICoreWebView2FrameInfoCollectionVtbl struct {
	IUnknownVtbl
	GetIterator ComProc
}

type ICoreWebView2FrameInfoVtbl ¶

type ICoreWebView2FrameInfoVtbl struct {
	IUnknownVtbl
	GetName   ComProc
	GetSource ComProc
}

type ICoreWebView2FrameNameChangedEventHandler ¶

type ICoreWebView2FrameNameChangedEventHandler struct {
	Vtbl *ICoreWebView2FrameNameChangedEventHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2FrameNameChangedEventHandler) AddRef ¶

type ICoreWebView2FrameNameChangedEventHandlerImpl ¶

type ICoreWebView2FrameNameChangedEventHandlerImpl interface {
	IUnknownImpl
	FrameNameChanged(sender *ICoreWebView2Frame, args *IUnknown) uintptr
}

type ICoreWebView2FrameNameChangedEventHandlerVtbl ¶

type ICoreWebView2FrameNameChangedEventHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2FrameNavigationCompletedEventHandler ¶

type ICoreWebView2FrameNavigationCompletedEventHandler struct {
	Vtbl *ICoreWebView2FrameNavigationCompletedEventHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2FrameNavigationCompletedEventHandler) AddRef ¶

type ICoreWebView2FrameNavigationCompletedEventHandlerImpl ¶

type ICoreWebView2FrameNavigationCompletedEventHandlerImpl interface {
	IUnknownImpl
	FrameNavigationCompleted(sender *ICoreWebView2Frame, args *ICoreWebView2NavigationCompletedEventArgs) uintptr
}

type ICoreWebView2FrameNavigationCompletedEventHandlerVtbl ¶

type ICoreWebView2FrameNavigationCompletedEventHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2FrameNavigationStartingEventHandler ¶

type ICoreWebView2FrameNavigationStartingEventHandler struct {
	Vtbl *ICoreWebView2FrameNavigationStartingEventHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2FrameNavigationStartingEventHandler) AddRef ¶

type ICoreWebView2FrameNavigationStartingEventHandlerImpl ¶

type ICoreWebView2FrameNavigationStartingEventHandlerImpl interface {
	IUnknownImpl
	FrameNavigationStarting(sender *ICoreWebView2Frame, args *ICoreWebView2NavigationStartingEventArgs) uintptr
}

type ICoreWebView2FrameNavigationStartingEventHandlerVtbl ¶

type ICoreWebView2FrameNavigationStartingEventHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2FramePermissionRequestedEventHandler ¶

type ICoreWebView2FramePermissionRequestedEventHandler struct {
	Vtbl *ICoreWebView2FramePermissionRequestedEventHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2FramePermissionRequestedEventHandler) AddRef ¶

type ICoreWebView2FramePermissionRequestedEventHandlerImpl ¶

type ICoreWebView2FramePermissionRequestedEventHandlerImpl interface {
	IUnknownImpl
	FramePermissionRequested(sender *ICoreWebView2Frame, args *ICoreWebView2PermissionRequestedEventArgs2) uintptr
}

type ICoreWebView2FramePermissionRequestedEventHandlerVtbl ¶

type ICoreWebView2FramePermissionRequestedEventHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2FrameVtbl ¶

type ICoreWebView2FrameVtbl struct {
	IUnknownVtbl
	GetName                          ComProc
	AddNameChanged                   ComProc
	RemoveNameChanged                ComProc
	AddHostObjectToScriptWithOrigins ComProc
	RemoveHostObjectFromScript       ComProc
	AddDestroyed                     ComProc
	RemoveDestroyed                  ComProc
	IsDestroyed                      ComProc
}

type ICoreWebView2FrameWebMessageReceivedEventHandler ¶

type ICoreWebView2FrameWebMessageReceivedEventHandler struct {
	Vtbl *ICoreWebView2FrameWebMessageReceivedEventHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2FrameWebMessageReceivedEventHandler) AddRef ¶

type ICoreWebView2FrameWebMessageReceivedEventHandlerImpl ¶

type ICoreWebView2FrameWebMessageReceivedEventHandlerImpl interface {
	IUnknownImpl
	FrameWebMessageReceived(sender *ICoreWebView2Frame, args *ICoreWebView2WebMessageReceivedEventArgs) uintptr
}

type ICoreWebView2FrameWebMessageReceivedEventHandlerVtbl ¶

type ICoreWebView2FrameWebMessageReceivedEventHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2GetCookiesCompletedHandler ¶

type ICoreWebView2GetCookiesCompletedHandler struct {
	Vtbl *ICoreWebView2GetCookiesCompletedHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2GetCookiesCompletedHandler) AddRef ¶

type ICoreWebView2GetCookiesCompletedHandlerImpl ¶

type ICoreWebView2GetCookiesCompletedHandlerImpl interface {
	IUnknownImpl
	GetCookiesCompleted(result uintptr, cookieList *ICoreWebView2CookieList) uintptr
}

type ICoreWebView2GetCookiesCompletedHandlerVtbl ¶

type ICoreWebView2GetCookiesCompletedHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2GetFaviconCompletedHandler ¶

type ICoreWebView2GetFaviconCompletedHandler struct {
	Vtbl *ICoreWebView2GetFaviconCompletedHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2GetFaviconCompletedHandler) AddRef ¶

type ICoreWebView2GetFaviconCompletedHandlerImpl ¶

type ICoreWebView2GetFaviconCompletedHandlerImpl interface {
	IUnknownImpl
	GetFaviconCompleted(errorCode uintptr, faviconStream *IStream) uintptr
}

type ICoreWebView2GetFaviconCompletedHandlerVtbl ¶

type ICoreWebView2GetFaviconCompletedHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2GetNonDefaultPermissionSettingsCompletedHandler ¶

type ICoreWebView2GetNonDefaultPermissionSettingsCompletedHandler struct {
	Vtbl *ICoreWebView2GetNonDefaultPermissionSettingsCompletedHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2GetNonDefaultPermissionSettingsCompletedHandler) AddRef ¶

type ICoreWebView2GetNonDefaultPermissionSettingsCompletedHandlerImpl ¶

type ICoreWebView2GetNonDefaultPermissionSettingsCompletedHandlerImpl interface {
	IUnknownImpl
	GetNonDefaultPermissionSettingsCompleted(errorCode uintptr, collectionView *ICoreWebView2PermissionSettingCollectionView) uintptr
}

type ICoreWebView2GetNonDefaultPermissionSettingsCompletedHandlerVtbl ¶

type ICoreWebView2GetNonDefaultPermissionSettingsCompletedHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2HistoryChangedEventHandler ¶

type ICoreWebView2HistoryChangedEventHandler struct {
	Vtbl *ICoreWebView2HistoryChangedEventHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2HistoryChangedEventHandler) AddRef ¶

type ICoreWebView2HistoryChangedEventHandlerImpl ¶

type ICoreWebView2HistoryChangedEventHandlerImpl interface {
	IUnknownImpl
	HistoryChanged(sender *ICoreWebView2, args *IUnknown) uintptr
}

type ICoreWebView2HistoryChangedEventHandlerVtbl ¶

type ICoreWebView2HistoryChangedEventHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2HttpHeadersCollectionIterator ¶

type ICoreWebView2HttpHeadersCollectionIterator struct {
	Vtbl *ICoreWebView2HttpHeadersCollectionIteratorVtbl
}

func (*ICoreWebView2HttpHeadersCollectionIterator) AddRef ¶

func (*ICoreWebView2HttpHeadersCollectionIterator) GetCurrentHeader ¶

func (*ICoreWebView2HttpHeadersCollectionIterator) GetHasCurrentHeader ¶

func (i *ICoreWebView2HttpHeadersCollectionIterator) GetHasCurrentHeader() (bool, error)

func (*ICoreWebView2HttpHeadersCollectionIterator) MoveNext ¶

type ICoreWebView2HttpHeadersCollectionIteratorVtbl ¶

type ICoreWebView2HttpHeadersCollectionIteratorVtbl struct {
	IUnknownVtbl
	GetCurrentHeader    ComProc
	GetHasCurrentHeader ComProc
	MoveNext            ComProc
}

type ICoreWebView2HttpRequestHeaders ¶

type ICoreWebView2HttpRequestHeaders struct {
	Vtbl *ICoreWebView2HttpRequestHeadersVtbl
}

func (*ICoreWebView2HttpRequestHeaders) AddRef ¶

func (*ICoreWebView2HttpRequestHeaders) Contains ¶

func (i *ICoreWebView2HttpRequestHeaders) Contains(name string) (bool, error)

func (*ICoreWebView2HttpRequestHeaders) GetHeader ¶

func (i *ICoreWebView2HttpRequestHeaders) GetHeader(name string) (string, error)

func (*ICoreWebView2HttpRequestHeaders) GetHeaders ¶

func (*ICoreWebView2HttpRequestHeaders) GetIterator ¶

func (*ICoreWebView2HttpRequestHeaders) RemoveHeader ¶

func (i *ICoreWebView2HttpRequestHeaders) RemoveHeader(name string) error

func (*ICoreWebView2HttpRequestHeaders) SetHeader ¶

func (i *ICoreWebView2HttpRequestHeaders) SetHeader(name string, value string) error

type ICoreWebView2HttpRequestHeadersVtbl ¶

type ICoreWebView2HttpRequestHeadersVtbl struct {
	IUnknownVtbl
	GetHeader    ComProc
	GetHeaders   ComProc
	Contains     ComProc
	SetHeader    ComProc
	RemoveHeader ComProc
	GetIterator  ComProc
}

type ICoreWebView2HttpResponseHeaders ¶

type ICoreWebView2HttpResponseHeaders struct {
	Vtbl *ICoreWebView2HttpResponseHeadersVtbl
}

func (*ICoreWebView2HttpResponseHeaders) AddRef ¶

func (*ICoreWebView2HttpResponseHeaders) AppendHeader ¶

func (i *ICoreWebView2HttpResponseHeaders) AppendHeader(name string, value string) error

func (*ICoreWebView2HttpResponseHeaders) Contains ¶

func (i *ICoreWebView2HttpResponseHeaders) Contains(name string) (bool, error)

func (*ICoreWebView2HttpResponseHeaders) GetHeader ¶

func (i *ICoreWebView2HttpResponseHeaders) GetHeader(name string) (string, error)

func (*ICoreWebView2HttpResponseHeaders) GetHeaders ¶

func (*ICoreWebView2HttpResponseHeaders) GetIterator ¶

type ICoreWebView2HttpResponseHeadersVtbl ¶

type ICoreWebView2HttpResponseHeadersVtbl struct {
	IUnknownVtbl
	AppendHeader ComProc
	Contains     ComProc
	GetHeader    ComProc
	GetHeaders   ComProc
	GetIterator  ComProc
}

type ICoreWebView2IsDefaultDownloadDialogOpenChangedEventHandler ¶

type ICoreWebView2IsDefaultDownloadDialogOpenChangedEventHandler struct {
	Vtbl *ICoreWebView2IsDefaultDownloadDialogOpenChangedEventHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2IsDefaultDownloadDialogOpenChangedEventHandler) AddRef ¶

type ICoreWebView2IsDefaultDownloadDialogOpenChangedEventHandlerImpl ¶

type ICoreWebView2IsDefaultDownloadDialogOpenChangedEventHandlerImpl interface {
	IUnknownImpl
	IsDefaultDownloadDialogOpenChanged(sender *ICoreWebView2, args *IUnknown) uintptr
}

type ICoreWebView2IsDefaultDownloadDialogOpenChangedEventHandlerVtbl ¶

type ICoreWebView2IsDefaultDownloadDialogOpenChangedEventHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2IsDocumentPlayingAudioChangedEventHandler ¶

type ICoreWebView2IsDocumentPlayingAudioChangedEventHandler struct {
	Vtbl *ICoreWebView2IsDocumentPlayingAudioChangedEventHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2IsDocumentPlayingAudioChangedEventHandler) AddRef ¶

type ICoreWebView2IsDocumentPlayingAudioChangedEventHandlerImpl ¶

type ICoreWebView2IsDocumentPlayingAudioChangedEventHandlerImpl interface {
	IUnknownImpl
	IsDocumentPlayingAudioChanged(sender *ICoreWebView2, args *IUnknown) uintptr
}

type ICoreWebView2IsDocumentPlayingAudioChangedEventHandlerVtbl ¶

type ICoreWebView2IsDocumentPlayingAudioChangedEventHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2IsMutedChangedEventHandler ¶

type ICoreWebView2IsMutedChangedEventHandler struct {
	Vtbl *ICoreWebView2IsMutedChangedEventHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2IsMutedChangedEventHandler) AddRef ¶

type ICoreWebView2IsMutedChangedEventHandlerImpl ¶

type ICoreWebView2IsMutedChangedEventHandlerImpl interface {
	IUnknownImpl
	IsMutedChanged(sender *ICoreWebView2, args *IUnknown) uintptr
}

type ICoreWebView2IsMutedChangedEventHandlerVtbl ¶

type ICoreWebView2IsMutedChangedEventHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2LaunchingExternalUriSchemeEventArgs ¶

type ICoreWebView2LaunchingExternalUriSchemeEventArgs struct {
	Vtbl *ICoreWebView2LaunchingExternalUriSchemeEventArgsVtbl
}

func (*ICoreWebView2LaunchingExternalUriSchemeEventArgs) AddRef ¶

func (*ICoreWebView2LaunchingExternalUriSchemeEventArgs) GetCancel ¶

func (*ICoreWebView2LaunchingExternalUriSchemeEventArgs) GetDeferral ¶

func (*ICoreWebView2LaunchingExternalUriSchemeEventArgs) GetInitiatingOrigin ¶

func (*ICoreWebView2LaunchingExternalUriSchemeEventArgs) GetIsUserInitiated ¶

func (i *ICoreWebView2LaunchingExternalUriSchemeEventArgs) GetIsUserInitiated() (bool, error)

func (*ICoreWebView2LaunchingExternalUriSchemeEventArgs) GetUri ¶

func (*ICoreWebView2LaunchingExternalUriSchemeEventArgs) PutCancel ¶

type ICoreWebView2LaunchingExternalUriSchemeEventArgsVtbl ¶

type ICoreWebView2LaunchingExternalUriSchemeEventArgsVtbl struct {
	IUnknownVtbl
	GetUri              ComProc
	GetInitiatingOrigin ComProc
	GetIsUserInitiated  ComProc
	GetCancel           ComProc
	PutCancel           ComProc
	GetDeferral         ComProc
}

type ICoreWebView2LaunchingExternalUriSchemeEventHandler ¶

type ICoreWebView2LaunchingExternalUriSchemeEventHandler struct {
	Vtbl *ICoreWebView2LaunchingExternalUriSchemeEventHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2LaunchingExternalUriSchemeEventHandler) AddRef ¶

type ICoreWebView2LaunchingExternalUriSchemeEventHandlerImpl ¶

type ICoreWebView2LaunchingExternalUriSchemeEventHandlerImpl interface {
	IUnknownImpl
	LaunchingExternalUriScheme(sender *ICoreWebView2, args *ICoreWebView2LaunchingExternalUriSchemeEventArgs) uintptr
}

type ICoreWebView2LaunchingExternalUriSchemeEventHandlerVtbl ¶

type ICoreWebView2LaunchingExternalUriSchemeEventHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2MoveFocusRequestedEventArgs ¶

type ICoreWebView2MoveFocusRequestedEventArgs struct {
	Vtbl *ICoreWebView2MoveFocusRequestedEventArgsVtbl
}

func (*ICoreWebView2MoveFocusRequestedEventArgs) AddRef ¶

func (*ICoreWebView2MoveFocusRequestedEventArgs) GetHandled ¶

func (*ICoreWebView2MoveFocusRequestedEventArgs) GetReason ¶

func (*ICoreWebView2MoveFocusRequestedEventArgs) PutHandled ¶

type ICoreWebView2MoveFocusRequestedEventArgsVtbl ¶

type ICoreWebView2MoveFocusRequestedEventArgsVtbl struct {
	IUnknownVtbl
	GetReason  ComProc
	GetHandled ComProc
	PutHandled ComProc
}

type ICoreWebView2MoveFocusRequestedEventHandler ¶

type ICoreWebView2MoveFocusRequestedEventHandler struct {
	Vtbl *ICoreWebView2MoveFocusRequestedEventHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2MoveFocusRequestedEventHandler) AddRef ¶

type ICoreWebView2MoveFocusRequestedEventHandlerImpl ¶

type ICoreWebView2MoveFocusRequestedEventHandlerImpl interface {
	IUnknownImpl
	MoveFocusRequested(sender *ICoreWebView2Controller, args *ICoreWebView2MoveFocusRequestedEventArgs) uintptr
}

type ICoreWebView2MoveFocusRequestedEventHandlerVtbl ¶

type ICoreWebView2MoveFocusRequestedEventHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2NavigationCompletedEventArgs ¶

type ICoreWebView2NavigationCompletedEventArgs struct {
	Vtbl *ICoreWebView2NavigationCompletedEventArgsVtbl
}

func (*ICoreWebView2NavigationCompletedEventArgs) AddRef ¶

func (*ICoreWebView2NavigationCompletedEventArgs) GetIsSuccess ¶

func (*ICoreWebView2NavigationCompletedEventArgs) GetNavigationId ¶

func (i *ICoreWebView2NavigationCompletedEventArgs) GetNavigationId() (uint64, error)

func (*ICoreWebView2NavigationCompletedEventArgs) GetWebErrorStatus ¶

type ICoreWebView2NavigationCompletedEventArgs2 ¶

type ICoreWebView2NavigationCompletedEventArgs2 struct {
	Vtbl *ICoreWebView2NavigationCompletedEventArgs2Vtbl
}

func (*ICoreWebView2NavigationCompletedEventArgs2) AddRef ¶

func (*ICoreWebView2NavigationCompletedEventArgs2) GetHttpStatusCode ¶

func (i *ICoreWebView2NavigationCompletedEventArgs2) GetHttpStatusCode() (int, error)

type ICoreWebView2NavigationCompletedEventArgs2Vtbl ¶

type ICoreWebView2NavigationCompletedEventArgs2Vtbl struct {
	IUnknownVtbl
	GetHttpStatusCode ComProc
}

type ICoreWebView2NavigationCompletedEventArgsVtbl ¶

type ICoreWebView2NavigationCompletedEventArgsVtbl struct {
	IUnknownVtbl
	GetIsSuccess      ComProc
	GetWebErrorStatus ComProc
	GetNavigationId   ComProc
}

type ICoreWebView2NavigationCompletedEventHandler ¶

type ICoreWebView2NavigationCompletedEventHandler struct {
	Vtbl *ICoreWebView2NavigationCompletedEventHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2NavigationCompletedEventHandler) AddRef ¶

type ICoreWebView2NavigationCompletedEventHandlerImpl ¶

type ICoreWebView2NavigationCompletedEventHandlerImpl interface {
	IUnknownImpl
	NavigationCompleted(sender *ICoreWebView2, args *ICoreWebView2NavigationCompletedEventArgs) uintptr
}

type ICoreWebView2NavigationCompletedEventHandlerVtbl ¶

type ICoreWebView2NavigationCompletedEventHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2NavigationStartingEventArgs ¶

type ICoreWebView2NavigationStartingEventArgs struct {
	Vtbl *ICoreWebView2NavigationStartingEventArgsVtbl
}

func (*ICoreWebView2NavigationStartingEventArgs) AddRef ¶

func (*ICoreWebView2NavigationStartingEventArgs) GetCancel ¶

func (*ICoreWebView2NavigationStartingEventArgs) GetIsRedirected ¶

func (i *ICoreWebView2NavigationStartingEventArgs) GetIsRedirected() (bool, error)

func (*ICoreWebView2NavigationStartingEventArgs) GetIsUserInitiated ¶

func (i *ICoreWebView2NavigationStartingEventArgs) GetIsUserInitiated() (bool, error)

func (*ICoreWebView2NavigationStartingEventArgs) GetNavigationId ¶

func (i *ICoreWebView2NavigationStartingEventArgs) GetNavigationId() (uint64, error)

func (*ICoreWebView2NavigationStartingEventArgs) GetRequestHeaders ¶

func (*ICoreWebView2NavigationStartingEventArgs) GetUri ¶

func (*ICoreWebView2NavigationStartingEventArgs) PutCancel ¶

type ICoreWebView2NavigationStartingEventArgs2 ¶

type ICoreWebView2NavigationStartingEventArgs2 struct {
	Vtbl *ICoreWebView2NavigationStartingEventArgs2Vtbl
}

func (*ICoreWebView2NavigationStartingEventArgs2) AddRef ¶

func (*ICoreWebView2NavigationStartingEventArgs2) GetAdditionalAllowedFrameAncestors ¶

func (i *ICoreWebView2NavigationStartingEventArgs2) GetAdditionalAllowedFrameAncestors() (string, error)

func (*ICoreWebView2NavigationStartingEventArgs2) PutAdditionalAllowedFrameAncestors ¶

func (i *ICoreWebView2NavigationStartingEventArgs2) PutAdditionalAllowedFrameAncestors(value string) error

type ICoreWebView2NavigationStartingEventArgs2Vtbl ¶

type ICoreWebView2NavigationStartingEventArgs2Vtbl struct {
	IUnknownVtbl
	GetAdditionalAllowedFrameAncestors ComProc
	PutAdditionalAllowedFrameAncestors ComProc
}

type ICoreWebView2NavigationStartingEventArgs3 ¶

type ICoreWebView2NavigationStartingEventArgs3 struct {
	Vtbl *ICoreWebView2NavigationStartingEventArgs3Vtbl
}

func (*ICoreWebView2NavigationStartingEventArgs3) AddRef ¶

func (*ICoreWebView2NavigationStartingEventArgs3) GetNavigationKind ¶

type ICoreWebView2NavigationStartingEventArgs3Vtbl ¶

type ICoreWebView2NavigationStartingEventArgs3Vtbl struct {
	IUnknownVtbl
	GetNavigationKind ComProc
}

type ICoreWebView2NavigationStartingEventArgsVtbl ¶

type ICoreWebView2NavigationStartingEventArgsVtbl struct {
	IUnknownVtbl
	GetUri             ComProc
	GetIsUserInitiated ComProc
	GetIsRedirected    ComProc
	GetRequestHeaders  ComProc
	GetCancel          ComProc
	PutCancel          ComProc
	GetNavigationId    ComProc
}

type ICoreWebView2NavigationStartingEventHandler ¶

type ICoreWebView2NavigationStartingEventHandler struct {
	Vtbl *ICoreWebView2NavigationStartingEventHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2NavigationStartingEventHandler) AddRef ¶

type ICoreWebView2NavigationStartingEventHandlerImpl ¶

type ICoreWebView2NavigationStartingEventHandlerImpl interface {
	IUnknownImpl
	NavigationStarting(sender *ICoreWebView2, args *ICoreWebView2NavigationStartingEventArgs) uintptr
}

type ICoreWebView2NavigationStartingEventHandlerVtbl ¶

type ICoreWebView2NavigationStartingEventHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2NewBrowserVersionAvailableEventHandler ¶

type ICoreWebView2NewBrowserVersionAvailableEventHandler struct {
	Vtbl *ICoreWebView2NewBrowserVersionAvailableEventHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2NewBrowserVersionAvailableEventHandler) AddRef ¶

type ICoreWebView2NewBrowserVersionAvailableEventHandlerImpl ¶

type ICoreWebView2NewBrowserVersionAvailableEventHandlerImpl interface {
	IUnknownImpl
	NewBrowserVersionAvailable(sender *ICoreWebView2Environment, args *IUnknown) uintptr
}

type ICoreWebView2NewBrowserVersionAvailableEventHandlerVtbl ¶

type ICoreWebView2NewBrowserVersionAvailableEventHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2NewWindowRequestedEventArgs ¶

type ICoreWebView2NewWindowRequestedEventArgs struct {
	Vtbl *ICoreWebView2NewWindowRequestedEventArgsVtbl
}

func (*ICoreWebView2NewWindowRequestedEventArgs) AddRef ¶

func (*ICoreWebView2NewWindowRequestedEventArgs) GetDeferral ¶

func (*ICoreWebView2NewWindowRequestedEventArgs) GetHandled ¶

func (*ICoreWebView2NewWindowRequestedEventArgs) GetIsUserInitiated ¶

func (i *ICoreWebView2NewWindowRequestedEventArgs) GetIsUserInitiated() (bool, error)

func (*ICoreWebView2NewWindowRequestedEventArgs) GetNewWindow ¶

func (*ICoreWebView2NewWindowRequestedEventArgs) GetUri ¶

func (*ICoreWebView2NewWindowRequestedEventArgs) GetWindowFeatures ¶

func (*ICoreWebView2NewWindowRequestedEventArgs) PutHandled ¶

func (i *ICoreWebView2NewWindowRequestedEventArgs) PutHandled(handled bool) error

func (*ICoreWebView2NewWindowRequestedEventArgs) PutNewWindow ¶

func (i *ICoreWebView2NewWindowRequestedEventArgs) PutNewWindow(newWindow *ICoreWebView2) error

type ICoreWebView2NewWindowRequestedEventArgs2 ¶

type ICoreWebView2NewWindowRequestedEventArgs2 struct {
	Vtbl *ICoreWebView2NewWindowRequestedEventArgs2Vtbl
}

func (*ICoreWebView2NewWindowRequestedEventArgs2) AddRef ¶

func (*ICoreWebView2NewWindowRequestedEventArgs2) GetName ¶

type ICoreWebView2NewWindowRequestedEventArgs2Vtbl ¶

type ICoreWebView2NewWindowRequestedEventArgs2Vtbl struct {
	IUnknownVtbl
	GetName ComProc
}

type ICoreWebView2NewWindowRequestedEventArgsVtbl ¶

type ICoreWebView2NewWindowRequestedEventArgsVtbl struct {
	IUnknownVtbl
	GetUri             ComProc
	PutNewWindow       ComProc
	GetNewWindow       ComProc
	PutHandled         ComProc
	GetHandled         ComProc
	GetIsUserInitiated ComProc
	GetDeferral        ComProc
	GetWindowFeatures  ComProc
}

type ICoreWebView2NewWindowRequestedEventHandler ¶

type ICoreWebView2NewWindowRequestedEventHandler struct {
	Vtbl *ICoreWebView2NewWindowRequestedEventHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2NewWindowRequestedEventHandler) AddRef ¶

type ICoreWebView2NewWindowRequestedEventHandlerImpl ¶

type ICoreWebView2NewWindowRequestedEventHandlerImpl interface {
	IUnknownImpl
	NewWindowRequested(sender *ICoreWebView2, args *ICoreWebView2NewWindowRequestedEventArgs) uintptr
}

type ICoreWebView2NewWindowRequestedEventHandlerVtbl ¶

type ICoreWebView2NewWindowRequestedEventHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2ObjectCollectionView ¶

type ICoreWebView2ObjectCollectionView struct {
	Vtbl *ICoreWebView2ObjectCollectionViewVtbl
}

func (*ICoreWebView2ObjectCollectionView) AddRef ¶

func (*ICoreWebView2ObjectCollectionView) GetCount ¶

func (*ICoreWebView2ObjectCollectionView) GetValueAtIndex ¶

func (i *ICoreWebView2ObjectCollectionView) GetValueAtIndex(index uint32) (*IUnknown, error)

type ICoreWebView2ObjectCollectionViewVtbl ¶

type ICoreWebView2ObjectCollectionViewVtbl struct {
	IUnknownVtbl
	GetCount        ComProc
	GetValueAtIndex ComProc
}

type ICoreWebView2PermissionRequestedEventArgs ¶

type ICoreWebView2PermissionRequestedEventArgs struct {
	Vtbl *ICoreWebView2PermissionRequestedEventArgsVtbl
}

func (*ICoreWebView2PermissionRequestedEventArgs) AddRef ¶

func (*ICoreWebView2PermissionRequestedEventArgs) GetDeferral ¶

func (*ICoreWebView2PermissionRequestedEventArgs) GetIsUserInitiated ¶

func (i *ICoreWebView2PermissionRequestedEventArgs) GetIsUserInitiated() (bool, error)

func (*ICoreWebView2PermissionRequestedEventArgs) GetPermissionKind ¶

func (*ICoreWebView2PermissionRequestedEventArgs) GetState ¶

func (*ICoreWebView2PermissionRequestedEventArgs) GetUri ¶

func (*ICoreWebView2PermissionRequestedEventArgs) PutState ¶

type ICoreWebView2PermissionRequestedEventArgs2 ¶

type ICoreWebView2PermissionRequestedEventArgs2 struct {
	Vtbl *ICoreWebView2PermissionRequestedEventArgs2Vtbl
}

func (*ICoreWebView2PermissionRequestedEventArgs2) AddRef ¶

func (*ICoreWebView2PermissionRequestedEventArgs2) GetHandled ¶

func (*ICoreWebView2PermissionRequestedEventArgs2) PutHandled ¶

func (i *ICoreWebView2PermissionRequestedEventArgs2) PutHandled(handled bool) error

type ICoreWebView2PermissionRequestedEventArgs2Vtbl ¶

type ICoreWebView2PermissionRequestedEventArgs2Vtbl struct {
	IUnknownVtbl
	GetHandled ComProc
	PutHandled ComProc
}

type ICoreWebView2PermissionRequestedEventArgs3 ¶

type ICoreWebView2PermissionRequestedEventArgs3 struct {
	Vtbl *ICoreWebView2PermissionRequestedEventArgs3Vtbl
}

func (*ICoreWebView2PermissionRequestedEventArgs3) AddRef ¶

func (*ICoreWebView2PermissionRequestedEventArgs3) GetSavesInProfile ¶

func (i *ICoreWebView2PermissionRequestedEventArgs3) GetSavesInProfile() (bool, error)

func (*ICoreWebView2PermissionRequestedEventArgs3) PutSavesInProfile ¶

func (i *ICoreWebView2PermissionRequestedEventArgs3) PutSavesInProfile(value bool) error

type ICoreWebView2PermissionRequestedEventArgs3Vtbl ¶

type ICoreWebView2PermissionRequestedEventArgs3Vtbl struct {
	IUnknownVtbl
	GetSavesInProfile ComProc
	PutSavesInProfile ComProc
}

type ICoreWebView2PermissionRequestedEventArgsVtbl ¶

type ICoreWebView2PermissionRequestedEventArgsVtbl struct {
	IUnknownVtbl
	GetUri             ComProc
	GetPermissionKind  ComProc
	GetIsUserInitiated ComProc
	GetState           ComProc
	PutState           ComProc
	GetDeferral        ComProc
}

type ICoreWebView2PermissionRequestedEventHandler ¶

type ICoreWebView2PermissionRequestedEventHandler struct {
	Vtbl *ICoreWebView2PermissionRequestedEventHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2PermissionRequestedEventHandler) AddRef ¶

type ICoreWebView2PermissionRequestedEventHandlerImpl ¶

type ICoreWebView2PermissionRequestedEventHandlerImpl interface {
	IUnknownImpl
	PermissionRequested(sender *ICoreWebView2, args *ICoreWebView2PermissionRequestedEventArgs) uintptr
}

type ICoreWebView2PermissionRequestedEventHandlerVtbl ¶

type ICoreWebView2PermissionRequestedEventHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2PermissionSetting ¶

type ICoreWebView2PermissionSetting struct {
	Vtbl *ICoreWebView2PermissionSettingVtbl
}

func (*ICoreWebView2PermissionSetting) AddRef ¶

func (*ICoreWebView2PermissionSetting) GetPermissionKind ¶

func (*ICoreWebView2PermissionSetting) GetPermissionOrigin ¶

func (i *ICoreWebView2PermissionSetting) GetPermissionOrigin() (string, error)

func (*ICoreWebView2PermissionSetting) GetPermissionState ¶

type ICoreWebView2PermissionSettingCollectionView ¶

type ICoreWebView2PermissionSettingCollectionView struct {
	Vtbl *ICoreWebView2PermissionSettingCollectionViewVtbl
}

func (*ICoreWebView2PermissionSettingCollectionView) AddRef ¶

func (*ICoreWebView2PermissionSettingCollectionView) GetCount ¶

func (*ICoreWebView2PermissionSettingCollectionView) GetValueAtIndex ¶

type ICoreWebView2PermissionSettingCollectionViewVtbl ¶

type ICoreWebView2PermissionSettingCollectionViewVtbl struct {
	IUnknownVtbl
	GetValueAtIndex ComProc
	GetCount        ComProc
}

type ICoreWebView2PermissionSettingVtbl ¶

type ICoreWebView2PermissionSettingVtbl struct {
	IUnknownVtbl
	GetPermissionKind   ComProc
	GetPermissionOrigin ComProc
	GetPermissionState  ComProc
}

type ICoreWebView2PointerInfo ¶

type ICoreWebView2PointerInfo struct {
	Vtbl *ICoreWebView2PointerInfoVtbl
}

func (*ICoreWebView2PointerInfo) AddRef ¶

func (i *ICoreWebView2PointerInfo) AddRef() uintptr

func (*ICoreWebView2PointerInfo) GetButtonChangeKind ¶

func (i *ICoreWebView2PointerInfo) GetButtonChangeKind() (int32, error)

func (*ICoreWebView2PointerInfo) GetDisplayRect ¶

func (i *ICoreWebView2PointerInfo) GetDisplayRect() (RECT, error)

func (*ICoreWebView2PointerInfo) GetFrameId ¶

func (i *ICoreWebView2PointerInfo) GetFrameId() (uint32, error)

func (*ICoreWebView2PointerInfo) GetHimetricLocation ¶

func (i *ICoreWebView2PointerInfo) GetHimetricLocation() (POINT, error)

func (*ICoreWebView2PointerInfo) GetHimetricLocationRaw ¶

func (i *ICoreWebView2PointerInfo) GetHimetricLocationRaw() (POINT, error)

func (*ICoreWebView2PointerInfo) GetHistoryCount ¶

func (i *ICoreWebView2PointerInfo) GetHistoryCount() (uint32, error)

func (*ICoreWebView2PointerInfo) GetInputData ¶

func (i *ICoreWebView2PointerInfo) GetInputData() (int32, error)

func (*ICoreWebView2PointerInfo) GetKeyStates ¶

func (i *ICoreWebView2PointerInfo) GetKeyStates() (uint32, error)

func (*ICoreWebView2PointerInfo) GetPenFlags ¶

func (i *ICoreWebView2PointerInfo) GetPenFlags() (uint32, error)

func (*ICoreWebView2PointerInfo) GetPenMask ¶

func (i *ICoreWebView2PointerInfo) GetPenMask() (uint32, error)

func (*ICoreWebView2PointerInfo) GetPenPressure ¶

func (i *ICoreWebView2PointerInfo) GetPenPressure() (uint32, error)

func (*ICoreWebView2PointerInfo) GetPenRotation ¶

func (i *ICoreWebView2PointerInfo) GetPenRotation() (uint32, error)

func (*ICoreWebView2PointerInfo) GetPenTiltX ¶

func (i *ICoreWebView2PointerInfo) GetPenTiltX() (int32, error)

func (*ICoreWebView2PointerInfo) GetPenTiltY ¶

func (i *ICoreWebView2PointerInfo) GetPenTiltY() (int32, error)

func (*ICoreWebView2PointerInfo) GetPerformanceCount ¶

func (i *ICoreWebView2PointerInfo) GetPerformanceCount() (uint64, error)

func (*ICoreWebView2PointerInfo) GetPixelLocation ¶

func (i *ICoreWebView2PointerInfo) GetPixelLocation() (POINT, error)

func (*ICoreWebView2PointerInfo) GetPixelLocationRaw ¶

func (i *ICoreWebView2PointerInfo) GetPixelLocationRaw() (POINT, error)

func (*ICoreWebView2PointerInfo) GetPointerDeviceRect ¶

func (i *ICoreWebView2PointerInfo) GetPointerDeviceRect() (RECT, error)

func (*ICoreWebView2PointerInfo) GetPointerFlags ¶

func (i *ICoreWebView2PointerInfo) GetPointerFlags() (uint32, error)

func (*ICoreWebView2PointerInfo) GetPointerId ¶

func (i *ICoreWebView2PointerInfo) GetPointerId() (uint32, error)

func (*ICoreWebView2PointerInfo) GetPointerKind ¶

func (i *ICoreWebView2PointerInfo) GetPointerKind() (uint32, error)

func (*ICoreWebView2PointerInfo) GetTime ¶

func (i *ICoreWebView2PointerInfo) GetTime() (uint32, error)

func (*ICoreWebView2PointerInfo) GetTouchContact ¶

func (i *ICoreWebView2PointerInfo) GetTouchContact() (RECT, error)

func (*ICoreWebView2PointerInfo) GetTouchContactRaw ¶

func (i *ICoreWebView2PointerInfo) GetTouchContactRaw() (RECT, error)

func (*ICoreWebView2PointerInfo) GetTouchFlags ¶

func (i *ICoreWebView2PointerInfo) GetTouchFlags() (uint32, error)

func (*ICoreWebView2PointerInfo) GetTouchMask ¶

func (i *ICoreWebView2PointerInfo) GetTouchMask() (uint32, error)

func (*ICoreWebView2PointerInfo) GetTouchOrientation ¶

func (i *ICoreWebView2PointerInfo) GetTouchOrientation() (uint32, error)

func (*ICoreWebView2PointerInfo) GetTouchPressure ¶

func (i *ICoreWebView2PointerInfo) GetTouchPressure() (uint32, error)

func (*ICoreWebView2PointerInfo) PutButtonChangeKind ¶

func (i *ICoreWebView2PointerInfo) PutButtonChangeKind(buttonChangeKind int32) error

func (*ICoreWebView2PointerInfo) PutDisplayRect ¶

func (i *ICoreWebView2PointerInfo) PutDisplayRect(displayRect RECT) error

func (*ICoreWebView2PointerInfo) PutFrameId ¶

func (i *ICoreWebView2PointerInfo) PutFrameId(frameId uint32) error

func (*ICoreWebView2PointerInfo) PutHimetricLocation ¶

func (i *ICoreWebView2PointerInfo) PutHimetricLocation(himetricLocation POINT) error

func (*ICoreWebView2PointerInfo) PutHimetricLocationRaw ¶

func (i *ICoreWebView2PointerInfo) PutHimetricLocationRaw(himetricLocationRaw POINT) error

func (*ICoreWebView2PointerInfo) PutHistoryCount ¶

func (i *ICoreWebView2PointerInfo) PutHistoryCount(historyCount uint32) error

func (*ICoreWebView2PointerInfo) PutInputData ¶

func (i *ICoreWebView2PointerInfo) PutInputData(inputData int32) error

func (*ICoreWebView2PointerInfo) PutKeyStates ¶

func (i *ICoreWebView2PointerInfo) PutKeyStates(keyStates uint32) error

func (*ICoreWebView2PointerInfo) PutPenFlags ¶

func (i *ICoreWebView2PointerInfo) PutPenFlags(penFLags uint32) error

func (*ICoreWebView2PointerInfo) PutPenMask ¶

func (i *ICoreWebView2PointerInfo) PutPenMask(penMask uint32) error

func (*ICoreWebView2PointerInfo) PutPenPressure ¶

func (i *ICoreWebView2PointerInfo) PutPenPressure(penPressure uint32) error

func (*ICoreWebView2PointerInfo) PutPenRotation ¶

func (i *ICoreWebView2PointerInfo) PutPenRotation(penRotation uint32) error

func (*ICoreWebView2PointerInfo) PutPenTiltX ¶

func (i *ICoreWebView2PointerInfo) PutPenTiltX(penTiltX int32) error

func (*ICoreWebView2PointerInfo) PutPenTiltY ¶

func (i *ICoreWebView2PointerInfo) PutPenTiltY(penTiltY int32) error

func (*ICoreWebView2PointerInfo) PutPerformanceCount ¶

func (i *ICoreWebView2PointerInfo) PutPerformanceCount(performanceCount uint64) error

func (*ICoreWebView2PointerInfo) PutPixelLocation ¶

func (i *ICoreWebView2PointerInfo) PutPixelLocation(pixelLocation POINT) error

func (*ICoreWebView2PointerInfo) PutPixelLocationRaw ¶

func (i *ICoreWebView2PointerInfo) PutPixelLocationRaw(pixelLocationRaw POINT) error

func (*ICoreWebView2PointerInfo) PutPointerDeviceRect ¶

func (i *ICoreWebView2PointerInfo) PutPointerDeviceRect(pointerDeviceRect RECT) error

func (*ICoreWebView2PointerInfo) PutPointerFlags ¶

func (i *ICoreWebView2PointerInfo) PutPointerFlags(pointerFlags uint32) error

func (*ICoreWebView2PointerInfo) PutPointerId ¶

func (i *ICoreWebView2PointerInfo) PutPointerId(pointerId uint32) error

func (*ICoreWebView2PointerInfo) PutPointerKind ¶

func (i *ICoreWebView2PointerInfo) PutPointerKind(pointerKind uint32) error

func (*ICoreWebView2PointerInfo) PutTime ¶

func (i *ICoreWebView2PointerInfo) PutTime(time uint32) error

func (*ICoreWebView2PointerInfo) PutTouchContact ¶

func (i *ICoreWebView2PointerInfo) PutTouchContact(touchContact RECT) error

func (*ICoreWebView2PointerInfo) PutTouchContactRaw ¶

func (i *ICoreWebView2PointerInfo) PutTouchContactRaw(touchContactRaw RECT) error

func (*ICoreWebView2PointerInfo) PutTouchFlags ¶

func (i *ICoreWebView2PointerInfo) PutTouchFlags(touchFlags uint32) error

func (*ICoreWebView2PointerInfo) PutTouchMask ¶

func (i *ICoreWebView2PointerInfo) PutTouchMask(touchMask uint32) error

func (*ICoreWebView2PointerInfo) PutTouchOrientation ¶

func (i *ICoreWebView2PointerInfo) PutTouchOrientation(touchOrientation uint32) error

func (*ICoreWebView2PointerInfo) PutTouchPressure ¶

func (i *ICoreWebView2PointerInfo) PutTouchPressure(touchPressure uint32) error

type ICoreWebView2PointerInfoVtbl ¶

type ICoreWebView2PointerInfoVtbl struct {
	IUnknownVtbl
	GetPointerKind         ComProc
	PutPointerKind         ComProc
	GetPointerId           ComProc
	PutPointerId           ComProc
	GetFrameId             ComProc
	PutFrameId             ComProc
	GetPointerFlags        ComProc
	PutPointerFlags        ComProc
	GetPointerDeviceRect   ComProc
	PutPointerDeviceRect   ComProc
	GetDisplayRect         ComProc
	PutDisplayRect         ComProc
	GetPixelLocation       ComProc
	PutPixelLocation       ComProc
	GetHimetricLocation    ComProc
	PutHimetricLocation    ComProc
	GetPixelLocationRaw    ComProc
	PutPixelLocationRaw    ComProc
	GetHimetricLocationRaw ComProc
	PutHimetricLocationRaw ComProc
	GetTime                ComProc
	PutTime                ComProc
	GetHistoryCount        ComProc
	PutHistoryCount        ComProc
	GetInputData           ComProc
	PutInputData           ComProc
	GetKeyStates           ComProc
	PutKeyStates           ComProc
	GetPerformanceCount    ComProc
	PutPerformanceCount    ComProc
	GetButtonChangeKind    ComProc
	PutButtonChangeKind    ComProc
	GetPenFlags            ComProc
	PutPenFlags            ComProc
	GetPenMask             ComProc
	PutPenMask             ComProc
	GetPenPressure         ComProc
	PutPenPressure         ComProc
	GetPenRotation         ComProc
	PutPenRotation         ComProc
	GetPenTiltX            ComProc
	PutPenTiltX            ComProc
	GetPenTiltY            ComProc
	PutPenTiltY            ComProc
	GetTouchFlags          ComProc
	PutTouchFlags          ComProc
	GetTouchMask           ComProc
	PutTouchMask           ComProc
	GetTouchContact        ComProc
	PutTouchContact        ComProc
	GetTouchContactRaw     ComProc
	PutTouchContactRaw     ComProc
	GetTouchOrientation    ComProc
	PutTouchOrientation    ComProc
	GetTouchPressure       ComProc
	PutTouchPressure       ComProc
}

type ICoreWebView2PrintCompletedHandler ¶

type ICoreWebView2PrintCompletedHandler struct {
	Vtbl *ICoreWebView2PrintCompletedHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2PrintCompletedHandler) AddRef ¶

type ICoreWebView2PrintCompletedHandlerImpl ¶

type ICoreWebView2PrintCompletedHandlerImpl interface {
	IUnknownImpl
	PrintCompleted(errorCode uintptr, printStatus COREWEBVIEW2_PRINT_STATUS) uintptr
}

type ICoreWebView2PrintCompletedHandlerVtbl ¶

type ICoreWebView2PrintCompletedHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2PrintSettings ¶

type ICoreWebView2PrintSettings struct {
	Vtbl *ICoreWebView2PrintSettingsVtbl
}

func (*ICoreWebView2PrintSettings) AddRef ¶

func (i *ICoreWebView2PrintSettings) AddRef() uintptr

func (*ICoreWebView2PrintSettings) GetFooterUri ¶

func (i *ICoreWebView2PrintSettings) GetFooterUri() (string, error)

func (*ICoreWebView2PrintSettings) GetHeaderTitle ¶

func (i *ICoreWebView2PrintSettings) GetHeaderTitle() (string, error)

func (*ICoreWebView2PrintSettings) GetMarginBottom ¶

func (i *ICoreWebView2PrintSettings) GetMarginBottom() (float64, error)

func (*ICoreWebView2PrintSettings) GetMarginLeft ¶

func (i *ICoreWebView2PrintSettings) GetMarginLeft() (float64, error)

func (*ICoreWebView2PrintSettings) GetMarginRight ¶

func (i *ICoreWebView2PrintSettings) GetMarginRight() (float64, error)

func (*ICoreWebView2PrintSettings) GetMarginTop ¶

func (i *ICoreWebView2PrintSettings) GetMarginTop() (float64, error)

func (*ICoreWebView2PrintSettings) GetOrientation ¶

func (*ICoreWebView2PrintSettings) GetPageHeight ¶

func (i *ICoreWebView2PrintSettings) GetPageHeight() (float64, error)

func (*ICoreWebView2PrintSettings) GetPageWidth ¶

func (i *ICoreWebView2PrintSettings) GetPageWidth() (float64, error)

func (*ICoreWebView2PrintSettings) GetScaleFactor ¶

func (i *ICoreWebView2PrintSettings) GetScaleFactor() (float64, error)

func (*ICoreWebView2PrintSettings) GetShouldPrintBackgrounds ¶

func (i *ICoreWebView2PrintSettings) GetShouldPrintBackgrounds() (bool, error)

func (*ICoreWebView2PrintSettings) GetShouldPrintHeaderAndFooter ¶

func (i *ICoreWebView2PrintSettings) GetShouldPrintHeaderAndFooter() (bool, error)

func (*ICoreWebView2PrintSettings) GetShouldPrintSelectionOnly ¶

func (i *ICoreWebView2PrintSettings) GetShouldPrintSelectionOnly() (bool, error)

func (*ICoreWebView2PrintSettings) PutFooterUri ¶

func (i *ICoreWebView2PrintSettings) PutFooterUri(footerUri string) error

func (*ICoreWebView2PrintSettings) PutHeaderTitle ¶

func (i *ICoreWebView2PrintSettings) PutHeaderTitle(headerTitle string) error

func (*ICoreWebView2PrintSettings) PutMarginBottom ¶

func (i *ICoreWebView2PrintSettings) PutMarginBottom(marginBottom float64) error

func (*ICoreWebView2PrintSettings) PutMarginLeft ¶

func (i *ICoreWebView2PrintSettings) PutMarginLeft(marginLeft float64) error

func (*ICoreWebView2PrintSettings) PutMarginRight ¶

func (i *ICoreWebView2PrintSettings) PutMarginRight(marginRight float64) error

func (*ICoreWebView2PrintSettings) PutMarginTop ¶

func (i *ICoreWebView2PrintSettings) PutMarginTop(marginTop float64) error

func (*ICoreWebView2PrintSettings) PutOrientation ¶

func (i *ICoreWebView2PrintSettings) PutOrientation(orientation COREWEBVIEW2_PRINT_ORIENTATION) error

func (*ICoreWebView2PrintSettings) PutPageHeight ¶

func (i *ICoreWebView2PrintSettings) PutPageHeight(pageHeight float64) error

func (*ICoreWebView2PrintSettings) PutPageWidth ¶

func (i *ICoreWebView2PrintSettings) PutPageWidth(pageWidth float64) error

func (*ICoreWebView2PrintSettings) PutScaleFactor ¶

func (i *ICoreWebView2PrintSettings) PutScaleFactor(scaleFactor float64) error

func (*ICoreWebView2PrintSettings) PutShouldPrintBackgrounds ¶

func (i *ICoreWebView2PrintSettings) PutShouldPrintBackgrounds(shouldPrintBackgrounds bool) error

func (*ICoreWebView2PrintSettings) PutShouldPrintHeaderAndFooter ¶

func (i *ICoreWebView2PrintSettings) PutShouldPrintHeaderAndFooter(shouldPrintHeaderAndFooter bool) error

func (*ICoreWebView2PrintSettings) PutShouldPrintSelectionOnly ¶

func (i *ICoreWebView2PrintSettings) PutShouldPrintSelectionOnly(shouldPrintSelectionOnly bool) error

type ICoreWebView2PrintSettings2 ¶

type ICoreWebView2PrintSettings2 struct {
	Vtbl *ICoreWebView2PrintSettings2Vtbl
}

func (*ICoreWebView2PrintSettings2) AddRef ¶

func (*ICoreWebView2PrintSettings2) GetCollation ¶

func (*ICoreWebView2PrintSettings2) GetColorMode ¶

func (*ICoreWebView2PrintSettings2) GetCopies ¶

func (i *ICoreWebView2PrintSettings2) GetCopies() (int32, error)

func (*ICoreWebView2PrintSettings2) GetDuplex ¶

func (*ICoreWebView2PrintSettings2) GetMediaSize ¶

func (*ICoreWebView2PrintSettings2) GetPageRanges ¶

func (i *ICoreWebView2PrintSettings2) GetPageRanges() (string, error)

func (*ICoreWebView2PrintSettings2) GetPagesPerSide ¶

func (i *ICoreWebView2PrintSettings2) GetPagesPerSide() (int32, error)

func (*ICoreWebView2PrintSettings2) GetPrinterName ¶

func (i *ICoreWebView2PrintSettings2) GetPrinterName() (string, error)

func (*ICoreWebView2PrintSettings2) PutCollation ¶

func (*ICoreWebView2PrintSettings2) PutColorMode ¶

func (*ICoreWebView2PrintSettings2) PutCopies ¶

func (i *ICoreWebView2PrintSettings2) PutCopies(value int32) error

func (*ICoreWebView2PrintSettings2) PutDuplex ¶

func (*ICoreWebView2PrintSettings2) PutMediaSize ¶

func (*ICoreWebView2PrintSettings2) PutPageRanges ¶

func (i *ICoreWebView2PrintSettings2) PutPageRanges(value string) error

func (*ICoreWebView2PrintSettings2) PutPagesPerSide ¶

func (i *ICoreWebView2PrintSettings2) PutPagesPerSide(value int32) error

func (*ICoreWebView2PrintSettings2) PutPrinterName ¶

func (i *ICoreWebView2PrintSettings2) PutPrinterName(value string) error

type ICoreWebView2PrintSettings2Vtbl ¶

type ICoreWebView2PrintSettings2Vtbl struct {
	IUnknownVtbl
	GetPageRanges   ComProc
	PutPageRanges   ComProc
	GetPagesPerSide ComProc
	PutPagesPerSide ComProc
	GetCopies       ComProc
	PutCopies       ComProc
	GetCollation    ComProc
	PutCollation    ComProc
	GetColorMode    ComProc
	PutColorMode    ComProc
	GetDuplex       ComProc
	PutDuplex       ComProc
	GetMediaSize    ComProc
	PutMediaSize    ComProc
	GetPrinterName  ComProc
	PutPrinterName  ComProc
}

type ICoreWebView2PrintSettingsVtbl ¶

type ICoreWebView2PrintSettingsVtbl struct {
	IUnknownVtbl
	GetOrientation                ComProc
	PutOrientation                ComProc
	GetScaleFactor                ComProc
	PutScaleFactor                ComProc
	GetPageWidth                  ComProc
	PutPageWidth                  ComProc
	GetPageHeight                 ComProc
	PutPageHeight                 ComProc
	GetMarginTop                  ComProc
	PutMarginTop                  ComProc
	GetMarginBottom               ComProc
	PutMarginBottom               ComProc
	GetMarginLeft                 ComProc
	PutMarginLeft                 ComProc
	GetMarginRight                ComProc
	PutMarginRight                ComProc
	GetShouldPrintBackgrounds     ComProc
	PutShouldPrintBackgrounds     ComProc
	GetShouldPrintSelectionOnly   ComProc
	PutShouldPrintSelectionOnly   ComProc
	GetShouldPrintHeaderAndFooter ComProc
	PutShouldPrintHeaderAndFooter ComProc
	GetHeaderTitle                ComProc
	PutHeaderTitle                ComProc
	GetFooterUri                  ComProc
	PutFooterUri                  ComProc
}

type ICoreWebView2PrintToPdfCompletedHandler ¶

type ICoreWebView2PrintToPdfCompletedHandler struct {
	Vtbl *ICoreWebView2PrintToPdfCompletedHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2PrintToPdfCompletedHandler) AddRef ¶

type ICoreWebView2PrintToPdfCompletedHandlerImpl ¶

type ICoreWebView2PrintToPdfCompletedHandlerImpl interface {
	IUnknownImpl
	PrintToPdfCompleted(errorCode uintptr, isSuccessful bool) uintptr
}

type ICoreWebView2PrintToPdfCompletedHandlerVtbl ¶

type ICoreWebView2PrintToPdfCompletedHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2PrintToPdfStreamCompletedHandler ¶

type ICoreWebView2PrintToPdfStreamCompletedHandler struct {
	Vtbl *ICoreWebView2PrintToPdfStreamCompletedHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2PrintToPdfStreamCompletedHandler) AddRef ¶

type ICoreWebView2PrintToPdfStreamCompletedHandlerImpl ¶

type ICoreWebView2PrintToPdfStreamCompletedHandlerImpl interface {
	IUnknownImpl
	PrintToPdfStreamCompleted(errorCode uintptr, pdfStream *IStream) uintptr
}

type ICoreWebView2PrintToPdfStreamCompletedHandlerVtbl ¶

type ICoreWebView2PrintToPdfStreamCompletedHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2ProcessFailedEventArgs ¶

type ICoreWebView2ProcessFailedEventArgs struct {
	Vtbl *ICoreWebView2ProcessFailedEventArgsVtbl
}

func (*ICoreWebView2ProcessFailedEventArgs) AddRef ¶

func (*ICoreWebView2ProcessFailedEventArgs) GetProcessFailedKind ¶

type ICoreWebView2ProcessFailedEventArgs2 ¶

type ICoreWebView2ProcessFailedEventArgs2 struct {
	Vtbl *ICoreWebView2ProcessFailedEventArgs2Vtbl
}

func (*ICoreWebView2ProcessFailedEventArgs2) AddRef ¶

func (*ICoreWebView2ProcessFailedEventArgs2) GetExitCode ¶

func (i *ICoreWebView2ProcessFailedEventArgs2) GetExitCode() (int, error)

func (*ICoreWebView2ProcessFailedEventArgs2) GetFrameInfosForFailedProcess ¶

func (i *ICoreWebView2ProcessFailedEventArgs2) GetFrameInfosForFailedProcess() (*ICoreWebView2FrameInfoCollection, error)

func (*ICoreWebView2ProcessFailedEventArgs2) GetProcessDescription ¶

func (i *ICoreWebView2ProcessFailedEventArgs2) GetProcessDescription() (string, error)

func (*ICoreWebView2ProcessFailedEventArgs2) GetReason ¶

type ICoreWebView2ProcessFailedEventArgs2Vtbl ¶

type ICoreWebView2ProcessFailedEventArgs2Vtbl struct {
	IUnknownVtbl
	GetReason                     ComProc
	GetExitCode                   ComProc
	GetProcessDescription         ComProc
	GetFrameInfosForFailedProcess ComProc
}

type ICoreWebView2ProcessFailedEventArgsVtbl ¶

type ICoreWebView2ProcessFailedEventArgsVtbl struct {
	IUnknownVtbl
	GetProcessFailedKind ComProc
}

type ICoreWebView2ProcessFailedEventHandler ¶

type ICoreWebView2ProcessFailedEventHandler struct {
	Vtbl *ICoreWebView2ProcessFailedEventHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2ProcessFailedEventHandler) AddRef ¶

type ICoreWebView2ProcessFailedEventHandlerImpl ¶

type ICoreWebView2ProcessFailedEventHandlerImpl interface {
	IUnknownImpl
	ProcessFailed(sender *ICoreWebView2, args *ICoreWebView2ProcessFailedEventArgs) uintptr
}

type ICoreWebView2ProcessFailedEventHandlerVtbl ¶

type ICoreWebView2ProcessFailedEventHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2ProcessInfo ¶

type ICoreWebView2ProcessInfo struct {
	Vtbl *ICoreWebView2ProcessInfoVtbl
}

func (*ICoreWebView2ProcessInfo) AddRef ¶

func (i *ICoreWebView2ProcessInfo) AddRef() uintptr

func (*ICoreWebView2ProcessInfo) GetKind ¶

func (*ICoreWebView2ProcessInfo) GetProcessId ¶

func (i *ICoreWebView2ProcessInfo) GetProcessId() (int32, error)

type ICoreWebView2ProcessInfoCollection ¶

type ICoreWebView2ProcessInfoCollection struct {
	Vtbl *ICoreWebView2ProcessInfoCollectionVtbl
}

func (*ICoreWebView2ProcessInfoCollection) AddRef ¶

func (*ICoreWebView2ProcessInfoCollection) GetCount ¶

func (*ICoreWebView2ProcessInfoCollection) GetValueAtIndex ¶

type ICoreWebView2ProcessInfoCollectionVtbl ¶

type ICoreWebView2ProcessInfoCollectionVtbl struct {
	IUnknownVtbl
	GetCount        ComProc
	GetValueAtIndex ComProc
}

type ICoreWebView2ProcessInfoVtbl ¶

type ICoreWebView2ProcessInfoVtbl struct {
	IUnknownVtbl
	GetProcessId ComProc
	GetKind      ComProc
}

type ICoreWebView2ProcessInfosChangedEventHandler ¶

type ICoreWebView2ProcessInfosChangedEventHandler struct {
	Vtbl *ICoreWebView2ProcessInfosChangedEventHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2ProcessInfosChangedEventHandler) AddRef ¶

type ICoreWebView2ProcessInfosChangedEventHandlerImpl ¶

type ICoreWebView2ProcessInfosChangedEventHandlerImpl interface {
	IUnknownImpl
	ProcessInfosChanged(sender *ICoreWebView2Environment, args *IUnknown) uintptr
}

type ICoreWebView2ProcessInfosChangedEventHandlerVtbl ¶

type ICoreWebView2ProcessInfosChangedEventHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2Profile ¶

type ICoreWebView2Profile struct {
	Vtbl *ICoreWebView2ProfileVtbl
}

func (*ICoreWebView2Profile) AddRef ¶

func (i *ICoreWebView2Profile) AddRef() uintptr

func (*ICoreWebView2Profile) GetDefaultDownloadFolderPath ¶

func (i *ICoreWebView2Profile) GetDefaultDownloadFolderPath() (string, error)

func (*ICoreWebView2Profile) GetIsInPrivateModeEnabled ¶

func (i *ICoreWebView2Profile) GetIsInPrivateModeEnabled() (bool, error)

func (*ICoreWebView2Profile) GetPreferredColorScheme ¶

func (i *ICoreWebView2Profile) GetPreferredColorScheme() (COREWEBVIEW2_PREFERRED_COLOR_SCHEME, error)

func (*ICoreWebView2Profile) GetProfileName ¶

func (i *ICoreWebView2Profile) GetProfileName() (string, error)

func (*ICoreWebView2Profile) GetProfilePath ¶

func (i *ICoreWebView2Profile) GetProfilePath() (string, error)

func (*ICoreWebView2Profile) PutDefaultDownloadFolderPath ¶

func (i *ICoreWebView2Profile) PutDefaultDownloadFolderPath(value string) error

func (*ICoreWebView2Profile) PutPreferredColorScheme ¶

func (i *ICoreWebView2Profile) PutPreferredColorScheme(value COREWEBVIEW2_PREFERRED_COLOR_SCHEME) error

type ICoreWebView2Profile2 ¶

type ICoreWebView2Profile2 struct {
	Vtbl *ICoreWebView2Profile2Vtbl
}

func (*ICoreWebView2Profile2) AddRef ¶

func (i *ICoreWebView2Profile2) AddRef() uintptr

func (*ICoreWebView2Profile2) ClearBrowsingData ¶

func (*ICoreWebView2Profile2) ClearBrowsingDataAll ¶

func (*ICoreWebView2Profile2) ClearBrowsingDataInTimeRange ¶

func (i *ICoreWebView2Profile2) ClearBrowsingDataInTimeRange(dataKinds COREWEBVIEW2_BROWSING_DATA_KINDS, startTime float64, endTime float64, handler *ICoreWebView2ClearBrowsingDataCompletedHandler) error

type ICoreWebView2Profile2Vtbl ¶

type ICoreWebView2Profile2Vtbl struct {
	IUnknownVtbl
	ClearBrowsingData            ComProc
	ClearBrowsingDataInTimeRange ComProc
	ClearBrowsingDataAll         ComProc
}

type ICoreWebView2Profile3 ¶

type ICoreWebView2Profile3 struct {
	Vtbl *ICoreWebView2Profile3Vtbl
}

func (*ICoreWebView2Profile3) AddRef ¶

func (i *ICoreWebView2Profile3) AddRef() uintptr

func (*ICoreWebView2Profile3) GetPreferredTrackingPreventionLevel ¶

func (i *ICoreWebView2Profile3) GetPreferredTrackingPreventionLevel() (COREWEBVIEW2_TRACKING_PREVENTION_LEVEL, error)

func (*ICoreWebView2Profile3) PutPreferredTrackingPreventionLevel ¶

func (i *ICoreWebView2Profile3) PutPreferredTrackingPreventionLevel(value COREWEBVIEW2_TRACKING_PREVENTION_LEVEL) error

type ICoreWebView2Profile3Vtbl ¶

type ICoreWebView2Profile3Vtbl struct {
	IUnknownVtbl
	GetPreferredTrackingPreventionLevel ComProc
	PutPreferredTrackingPreventionLevel ComProc
}

type ICoreWebView2Profile4 ¶

type ICoreWebView2Profile4 struct {
	Vtbl *ICoreWebView2Profile4Vtbl
}

func (*ICoreWebView2Profile4) AddRef ¶

func (i *ICoreWebView2Profile4) AddRef() uintptr

func (*ICoreWebView2Profile4) GetNonDefaultPermissionSettings ¶

func (i *ICoreWebView2Profile4) GetNonDefaultPermissionSettings(completedHandler *ICoreWebView2GetNonDefaultPermissionSettingsCompletedHandler) error

func (*ICoreWebView2Profile4) SetPermissionState ¶

type ICoreWebView2Profile4Vtbl ¶

type ICoreWebView2Profile4Vtbl struct {
	IUnknownVtbl
	SetPermissionState              ComProc
	GetNonDefaultPermissionSettings ComProc
}

type ICoreWebView2Profile5 ¶

type ICoreWebView2Profile5 struct {
	Vtbl *ICoreWebView2Profile5Vtbl
}

func (*ICoreWebView2Profile5) AddRef ¶

func (i *ICoreWebView2Profile5) AddRef() uintptr

func (*ICoreWebView2Profile5) GetCookieManager ¶

func (i *ICoreWebView2Profile5) GetCookieManager() (*ICoreWebView2CookieManager, error)

type ICoreWebView2Profile5Vtbl ¶

type ICoreWebView2Profile5Vtbl struct {
	IUnknownVtbl
	GetCookieManager ComProc
}

type ICoreWebView2Profile6 ¶

type ICoreWebView2Profile6 struct {
	Vtbl *ICoreWebView2Profile6Vtbl
}

func (*ICoreWebView2Profile6) AddRef ¶

func (i *ICoreWebView2Profile6) AddRef() uintptr

func (*ICoreWebView2Profile6) GetIsGeneralAutofillEnabled ¶

func (i *ICoreWebView2Profile6) GetIsGeneralAutofillEnabled() (bool, error)

func (*ICoreWebView2Profile6) GetIsPasswordAutosaveEnabled ¶

func (i *ICoreWebView2Profile6) GetIsPasswordAutosaveEnabled() (bool, error)

func (*ICoreWebView2Profile6) PutIsGeneralAutofillEnabled ¶

func (i *ICoreWebView2Profile6) PutIsGeneralAutofillEnabled(value bool) error

func (*ICoreWebView2Profile6) PutIsPasswordAutosaveEnabled ¶

func (i *ICoreWebView2Profile6) PutIsPasswordAutosaveEnabled(value bool) error

type ICoreWebView2Profile6Vtbl ¶

type ICoreWebView2Profile6Vtbl struct {
	IUnknownVtbl
	GetIsPasswordAutosaveEnabled ComProc
	PutIsPasswordAutosaveEnabled ComProc
	GetIsGeneralAutofillEnabled  ComProc
	PutIsGeneralAutofillEnabled  ComProc
}

type ICoreWebView2ProfileVtbl ¶

type ICoreWebView2ProfileVtbl struct {
	IUnknownVtbl
	GetProfileName               ComProc
	GetIsInPrivateModeEnabled    ComProc
	GetProfilePath               ComProc
	GetDefaultDownloadFolderPath ComProc
	PutDefaultDownloadFolderPath ComProc
	GetPreferredColorScheme      ComProc
	PutPreferredColorScheme      ComProc
}

type ICoreWebView2RasterizationScaleChangedEventHandler ¶

type ICoreWebView2RasterizationScaleChangedEventHandler struct {
	Vtbl *ICoreWebView2RasterizationScaleChangedEventHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2RasterizationScaleChangedEventHandler) AddRef ¶

type ICoreWebView2RasterizationScaleChangedEventHandlerImpl ¶

type ICoreWebView2RasterizationScaleChangedEventHandlerImpl interface {
	IUnknownImpl
	RasterizationScaleChanged(sender *ICoreWebView2Controller, args *IUnknown) uintptr
}

type ICoreWebView2RasterizationScaleChangedEventHandlerVtbl ¶

type ICoreWebView2RasterizationScaleChangedEventHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2ScriptDialogOpeningEventArgs ¶

type ICoreWebView2ScriptDialogOpeningEventArgs struct {
	Vtbl *ICoreWebView2ScriptDialogOpeningEventArgsVtbl
}

func (*ICoreWebView2ScriptDialogOpeningEventArgs) Accept ¶

func (*ICoreWebView2ScriptDialogOpeningEventArgs) AddRef ¶

func (*ICoreWebView2ScriptDialogOpeningEventArgs) GetDefaultText ¶

func (*ICoreWebView2ScriptDialogOpeningEventArgs) GetDeferral ¶

func (*ICoreWebView2ScriptDialogOpeningEventArgs) GetKind ¶

func (*ICoreWebView2ScriptDialogOpeningEventArgs) GetMessage ¶

func (*ICoreWebView2ScriptDialogOpeningEventArgs) GetResultText ¶

func (*ICoreWebView2ScriptDialogOpeningEventArgs) GetUri ¶

func (*ICoreWebView2ScriptDialogOpeningEventArgs) PutResultText ¶

func (i *ICoreWebView2ScriptDialogOpeningEventArgs) PutResultText(resultText string) error

type ICoreWebView2ScriptDialogOpeningEventArgsVtbl ¶

type ICoreWebView2ScriptDialogOpeningEventArgsVtbl struct {
	IUnknownVtbl
	GetUri         ComProc
	GetKind        ComProc
	GetMessage     ComProc
	Accept         ComProc
	GetDefaultText ComProc
	GetResultText  ComProc
	PutResultText  ComProc
	GetDeferral    ComProc
}

type ICoreWebView2ScriptDialogOpeningEventHandler ¶

type ICoreWebView2ScriptDialogOpeningEventHandler struct {
	Vtbl *ICoreWebView2ScriptDialogOpeningEventHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2ScriptDialogOpeningEventHandler) AddRef ¶

type ICoreWebView2ScriptDialogOpeningEventHandlerImpl ¶

type ICoreWebView2ScriptDialogOpeningEventHandlerImpl interface {
	IUnknownImpl
	ScriptDialogOpening(sender *ICoreWebView2, args *ICoreWebView2ScriptDialogOpeningEventArgs) uintptr
}

type ICoreWebView2ScriptDialogOpeningEventHandlerVtbl ¶

type ICoreWebView2ScriptDialogOpeningEventHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2ServerCertificateErrorDetectedEventArgs ¶

type ICoreWebView2ServerCertificateErrorDetectedEventArgs struct {
	Vtbl *ICoreWebView2ServerCertificateErrorDetectedEventArgsVtbl
}

func (*ICoreWebView2ServerCertificateErrorDetectedEventArgs) AddRef ¶

func (*ICoreWebView2ServerCertificateErrorDetectedEventArgs) GetAction ¶

func (*ICoreWebView2ServerCertificateErrorDetectedEventArgs) GetDeferral ¶

func (*ICoreWebView2ServerCertificateErrorDetectedEventArgs) GetErrorStatus ¶

func (*ICoreWebView2ServerCertificateErrorDetectedEventArgs) GetRequestUri ¶

func (*ICoreWebView2ServerCertificateErrorDetectedEventArgs) GetServerCertificate ¶

func (*ICoreWebView2ServerCertificateErrorDetectedEventArgs) PutAction ¶

type ICoreWebView2ServerCertificateErrorDetectedEventArgsVtbl ¶

type ICoreWebView2ServerCertificateErrorDetectedEventArgsVtbl struct {
	IUnknownVtbl
	GetErrorStatus       ComProc
	GetRequestUri        ComProc
	GetServerCertificate ComProc
	GetAction            ComProc
	PutAction            ComProc
	GetDeferral          ComProc
}

type ICoreWebView2ServerCertificateErrorDetectedEventHandler ¶

type ICoreWebView2ServerCertificateErrorDetectedEventHandler struct {
	Vtbl *ICoreWebView2ServerCertificateErrorDetectedEventHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2ServerCertificateErrorDetectedEventHandler) AddRef ¶

type ICoreWebView2ServerCertificateErrorDetectedEventHandlerImpl ¶

type ICoreWebView2ServerCertificateErrorDetectedEventHandlerImpl interface {
	IUnknownImpl
	ServerCertificateErrorDetected(sender *ICoreWebView2, args *ICoreWebView2ServerCertificateErrorDetectedEventArgs) uintptr
}

type ICoreWebView2ServerCertificateErrorDetectedEventHandlerVtbl ¶

type ICoreWebView2ServerCertificateErrorDetectedEventHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2SetPermissionStateCompletedHandler ¶

type ICoreWebView2SetPermissionStateCompletedHandler struct {
	Vtbl *ICoreWebView2SetPermissionStateCompletedHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2SetPermissionStateCompletedHandler) AddRef ¶

type ICoreWebView2SetPermissionStateCompletedHandlerImpl ¶

type ICoreWebView2SetPermissionStateCompletedHandlerImpl interface {
	IUnknownImpl
	SetPermissionStateCompleted(errorCode uintptr) uintptr
}

type ICoreWebView2SetPermissionStateCompletedHandlerVtbl ¶

type ICoreWebView2SetPermissionStateCompletedHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2Settings ¶

type ICoreWebView2Settings struct {
	Vtbl *ICoreWebView2SettingsVtbl
}

func (*ICoreWebView2Settings) AddRef ¶

func (i *ICoreWebView2Settings) AddRef() uintptr

func (*ICoreWebView2Settings) GetAreDefaultContextMenusEnabled ¶

func (i *ICoreWebView2Settings) GetAreDefaultContextMenusEnabled() (bool, error)

func (*ICoreWebView2Settings) GetAreDefaultScriptDialogsEnabled ¶

func (i *ICoreWebView2Settings) GetAreDefaultScriptDialogsEnabled() (bool, error)

func (*ICoreWebView2Settings) GetAreDevToolsEnabled ¶

func (i *ICoreWebView2Settings) GetAreDevToolsEnabled() (bool, error)

func (*ICoreWebView2Settings) GetAreHostObjectsAllowed ¶

func (i *ICoreWebView2Settings) GetAreHostObjectsAllowed() (bool, error)

func (*ICoreWebView2Settings) GetIsBuiltInErrorPageEnabled ¶

func (i *ICoreWebView2Settings) GetIsBuiltInErrorPageEnabled() (bool, error)

func (*ICoreWebView2Settings) GetIsScriptEnabled ¶

func (i *ICoreWebView2Settings) GetIsScriptEnabled() (bool, error)

func (*ICoreWebView2Settings) GetIsStatusBarEnabled ¶

func (i *ICoreWebView2Settings) GetIsStatusBarEnabled() (bool, error)

func (*ICoreWebView2Settings) GetIsWebMessageEnabled ¶

func (i *ICoreWebView2Settings) GetIsWebMessageEnabled() (bool, error)

func (*ICoreWebView2Settings) GetIsZoomControlEnabled ¶

func (i *ICoreWebView2Settings) GetIsZoomControlEnabled() (bool, error)

func (*ICoreWebView2Settings) PutAreDefaultContextMenusEnabled ¶

func (i *ICoreWebView2Settings) PutAreDefaultContextMenusEnabled(enabled bool) error

func (*ICoreWebView2Settings) PutAreDefaultScriptDialogsEnabled ¶

func (i *ICoreWebView2Settings) PutAreDefaultScriptDialogsEnabled(areDefaultScriptDialogsEnabled bool) error

func (*ICoreWebView2Settings) PutAreDevToolsEnabled ¶

func (i *ICoreWebView2Settings) PutAreDevToolsEnabled(areDevToolsEnabled bool) error

func (*ICoreWebView2Settings) PutAreHostObjectsAllowed ¶

func (i *ICoreWebView2Settings) PutAreHostObjectsAllowed(allowed bool) error

func (*ICoreWebView2Settings) PutIsBuiltInErrorPageEnabled ¶

func (i *ICoreWebView2Settings) PutIsBuiltInErrorPageEnabled(enabled bool) error

func (*ICoreWebView2Settings) PutIsScriptEnabled ¶

func (i *ICoreWebView2Settings) PutIsScriptEnabled(isScriptEnabled bool) error

func (*ICoreWebView2Settings) PutIsStatusBarEnabled ¶

func (i *ICoreWebView2Settings) PutIsStatusBarEnabled(isStatusBarEnabled bool) error

func (*ICoreWebView2Settings) PutIsWebMessageEnabled ¶

func (i *ICoreWebView2Settings) PutIsWebMessageEnabled(isWebMessageEnabled bool) error

func (*ICoreWebView2Settings) PutIsZoomControlEnabled ¶

func (i *ICoreWebView2Settings) PutIsZoomControlEnabled(enabled bool) error

type ICoreWebView2Settings2 ¶

type ICoreWebView2Settings2 struct {
	Vtbl *ICoreWebView2Settings2Vtbl
}

func (*ICoreWebView2Settings2) AddRef ¶

func (i *ICoreWebView2Settings2) AddRef() uintptr

func (*ICoreWebView2Settings2) GetUserAgent ¶

func (i *ICoreWebView2Settings2) GetUserAgent() (string, error)

func (*ICoreWebView2Settings2) PutUserAgent ¶

func (i *ICoreWebView2Settings2) PutUserAgent(userAgent string) error

type ICoreWebView2Settings2Vtbl ¶

type ICoreWebView2Settings2Vtbl struct {
	IUnknownVtbl
	GetUserAgent ComProc
	PutUserAgent ComProc
}

type ICoreWebView2Settings3 ¶

type ICoreWebView2Settings3 struct {
	Vtbl *ICoreWebView2Settings3Vtbl
}

func (*ICoreWebView2Settings3) AddRef ¶

func (i *ICoreWebView2Settings3) AddRef() uintptr

func (*ICoreWebView2Settings3) GetAreBrowserAcceleratorKeysEnabled ¶

func (i *ICoreWebView2Settings3) GetAreBrowserAcceleratorKeysEnabled() (bool, error)

func (*ICoreWebView2Settings3) PutAreBrowserAcceleratorKeysEnabled ¶

func (i *ICoreWebView2Settings3) PutAreBrowserAcceleratorKeysEnabled(areBrowserAcceleratorKeysEnabled bool) error

type ICoreWebView2Settings3Vtbl ¶

type ICoreWebView2Settings3Vtbl struct {
	IUnknownVtbl
	GetAreBrowserAcceleratorKeysEnabled ComProc
	PutAreBrowserAcceleratorKeysEnabled ComProc
}

type ICoreWebView2Settings4 ¶

type ICoreWebView2Settings4 struct {
	Vtbl *ICoreWebView2Settings4Vtbl
}

func (*ICoreWebView2Settings4) AddRef ¶

func (i *ICoreWebView2Settings4) AddRef() uintptr

func (*ICoreWebView2Settings4) GetIsGeneralAutofillEnabled ¶

func (i *ICoreWebView2Settings4) GetIsGeneralAutofillEnabled() (bool, error)

func (*ICoreWebView2Settings4) GetIsPasswordAutosaveEnabled ¶

func (i *ICoreWebView2Settings4) GetIsPasswordAutosaveEnabled() (bool, error)

func (*ICoreWebView2Settings4) PutIsGeneralAutofillEnabled ¶

func (i *ICoreWebView2Settings4) PutIsGeneralAutofillEnabled(value bool) error

func (*ICoreWebView2Settings4) PutIsPasswordAutosaveEnabled ¶

func (i *ICoreWebView2Settings4) PutIsPasswordAutosaveEnabled(value bool) error

type ICoreWebView2Settings4Vtbl ¶

type ICoreWebView2Settings4Vtbl struct {
	IUnknownVtbl
	GetIsPasswordAutosaveEnabled ComProc
	PutIsPasswordAutosaveEnabled ComProc
	GetIsGeneralAutofillEnabled  ComProc
	PutIsGeneralAutofillEnabled  ComProc
}

type ICoreWebView2Settings5 ¶

type ICoreWebView2Settings5 struct {
	Vtbl *ICoreWebView2Settings5Vtbl
}

func (*ICoreWebView2Settings5) AddRef ¶

func (i *ICoreWebView2Settings5) AddRef() uintptr

func (*ICoreWebView2Settings5) GetIsPinchZoomEnabled ¶

func (i *ICoreWebView2Settings5) GetIsPinchZoomEnabled() (bool, error)

func (*ICoreWebView2Settings5) PutIsPinchZoomEnabled ¶

func (i *ICoreWebView2Settings5) PutIsPinchZoomEnabled(enabled bool) error

type ICoreWebView2Settings5Vtbl ¶

type ICoreWebView2Settings5Vtbl struct {
	IUnknownVtbl
	GetIsPinchZoomEnabled ComProc
	PutIsPinchZoomEnabled ComProc
}

type ICoreWebView2Settings6 ¶

type ICoreWebView2Settings6 struct {
	Vtbl *ICoreWebView2Settings6Vtbl
}

func (*ICoreWebView2Settings6) AddRef ¶

func (i *ICoreWebView2Settings6) AddRef() uintptr

func (*ICoreWebView2Settings6) GetIsSwipeNavigationEnabled ¶

func (i *ICoreWebView2Settings6) GetIsSwipeNavigationEnabled() (bool, error)

func (*ICoreWebView2Settings6) PutIsSwipeNavigationEnabled ¶

func (i *ICoreWebView2Settings6) PutIsSwipeNavigationEnabled(enabled bool) error

type ICoreWebView2Settings6Vtbl ¶

type ICoreWebView2Settings6Vtbl struct {
	IUnknownVtbl
	GetIsSwipeNavigationEnabled ComProc
	PutIsSwipeNavigationEnabled ComProc
}

type ICoreWebView2Settings7 ¶

type ICoreWebView2Settings7 struct {
	Vtbl *ICoreWebView2Settings7Vtbl
}

func (*ICoreWebView2Settings7) AddRef ¶

func (i *ICoreWebView2Settings7) AddRef() uintptr

func (*ICoreWebView2Settings7) GetHiddenPdfToolbarItems ¶

func (i *ICoreWebView2Settings7) GetHiddenPdfToolbarItems() (COREWEBVIEW2_PDF_TOOLBAR_ITEMS, error)

func (*ICoreWebView2Settings7) PutHiddenPdfToolbarItems ¶

func (i *ICoreWebView2Settings7) PutHiddenPdfToolbarItems(hidden_pdf_toolbar_items COREWEBVIEW2_PDF_TOOLBAR_ITEMS) error

type ICoreWebView2Settings7Vtbl ¶

type ICoreWebView2Settings7Vtbl struct {
	IUnknownVtbl
	GetHiddenPdfToolbarItems ComProc
	PutHiddenPdfToolbarItems ComProc
}

type ICoreWebView2Settings8 ¶

type ICoreWebView2Settings8 struct {
	Vtbl *ICoreWebView2Settings8Vtbl
}

func (*ICoreWebView2Settings8) AddRef ¶

func (i *ICoreWebView2Settings8) AddRef() uintptr

func (*ICoreWebView2Settings8) GetIsReputationCheckingRequired ¶

func (i *ICoreWebView2Settings8) GetIsReputationCheckingRequired() (bool, error)

func (*ICoreWebView2Settings8) PutIsReputationCheckingRequired ¶

func (i *ICoreWebView2Settings8) PutIsReputationCheckingRequired(value bool) error

type ICoreWebView2Settings8Vtbl ¶

type ICoreWebView2Settings8Vtbl struct {
	IUnknownVtbl
	GetIsReputationCheckingRequired ComProc
	PutIsReputationCheckingRequired ComProc
}

type ICoreWebView2SettingsVtbl ¶

type ICoreWebView2SettingsVtbl struct {
	IUnknownVtbl
	GetIsScriptEnabled                ComProc
	PutIsScriptEnabled                ComProc
	GetIsWebMessageEnabled            ComProc
	PutIsWebMessageEnabled            ComProc
	GetAreDefaultScriptDialogsEnabled ComProc
	PutAreDefaultScriptDialogsEnabled ComProc
	GetIsStatusBarEnabled             ComProc
	PutIsStatusBarEnabled             ComProc
	GetAreDevToolsEnabled             ComProc
	PutAreDevToolsEnabled             ComProc
	GetAreDefaultContextMenusEnabled  ComProc
	PutAreDefaultContextMenusEnabled  ComProc
	GetAreHostObjectsAllowed          ComProc
	PutAreHostObjectsAllowed          ComProc
	GetIsZoomControlEnabled           ComProc
	PutIsZoomControlEnabled           ComProc
	GetIsBuiltInErrorPageEnabled      ComProc
	PutIsBuiltInErrorPageEnabled      ComProc
}

type ICoreWebView2SharedBuffer ¶

type ICoreWebView2SharedBuffer struct {
	Vtbl *ICoreWebView2SharedBufferVtbl
}

func (*ICoreWebView2SharedBuffer) AddRef ¶

func (i *ICoreWebView2SharedBuffer) AddRef() uintptr

func (*ICoreWebView2SharedBuffer) Close ¶

func (i *ICoreWebView2SharedBuffer) Close() error

func (*ICoreWebView2SharedBuffer) GetBuffer ¶

func (i *ICoreWebView2SharedBuffer) GetBuffer() (*uint8, error)

func (*ICoreWebView2SharedBuffer) GetFileMappingHandle ¶

func (i *ICoreWebView2SharedBuffer) GetFileMappingHandle() (HANDLE, error)

func (*ICoreWebView2SharedBuffer) GetSize ¶

func (i *ICoreWebView2SharedBuffer) GetSize() (uint64, error)

func (*ICoreWebView2SharedBuffer) OpenStream ¶

func (i *ICoreWebView2SharedBuffer) OpenStream() (*IStream, error)

type ICoreWebView2SharedBufferVtbl ¶

type ICoreWebView2SharedBufferVtbl struct {
	IUnknownVtbl
	GetSize              ComProc
	GetBuffer            ComProc
	OpenStream           ComProc
	GetFileMappingHandle ComProc
	Close                ComProc
}

type ICoreWebView2SourceChangedEventArgs ¶

type ICoreWebView2SourceChangedEventArgs struct {
	Vtbl *ICoreWebView2SourceChangedEventArgsVtbl
}

func (*ICoreWebView2SourceChangedEventArgs) AddRef ¶

func (*ICoreWebView2SourceChangedEventArgs) GetIsNewDocument ¶

func (i *ICoreWebView2SourceChangedEventArgs) GetIsNewDocument() (bool, error)

type ICoreWebView2SourceChangedEventArgsVtbl ¶

type ICoreWebView2SourceChangedEventArgsVtbl struct {
	IUnknownVtbl
	GetIsNewDocument ComProc
}

type ICoreWebView2SourceChangedEventHandler ¶

type ICoreWebView2SourceChangedEventHandler struct {
	Vtbl *ICoreWebView2SourceChangedEventHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2SourceChangedEventHandler) AddRef ¶

type ICoreWebView2SourceChangedEventHandlerImpl ¶

type ICoreWebView2SourceChangedEventHandlerImpl interface {
	IUnknownImpl
	SourceChanged(sender *ICoreWebView2, args *ICoreWebView2SourceChangedEventArgs) uintptr
}

type ICoreWebView2SourceChangedEventHandlerVtbl ¶

type ICoreWebView2SourceChangedEventHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2StateChangedEventHandler ¶

type ICoreWebView2StateChangedEventHandler struct {
	Vtbl *ICoreWebView2StateChangedEventHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2StateChangedEventHandler) AddRef ¶

type ICoreWebView2StateChangedEventHandlerImpl ¶

type ICoreWebView2StateChangedEventHandlerImpl interface {
	IUnknownImpl
	StateChanged(sender *ICoreWebView2DownloadOperation, args *IUnknown) uintptr
}

type ICoreWebView2StateChangedEventHandlerVtbl ¶

type ICoreWebView2StateChangedEventHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2StatusBarTextChangedEventHandler ¶

type ICoreWebView2StatusBarTextChangedEventHandler struct {
	Vtbl *ICoreWebView2StatusBarTextChangedEventHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2StatusBarTextChangedEventHandler) AddRef ¶

type ICoreWebView2StatusBarTextChangedEventHandlerImpl ¶

type ICoreWebView2StatusBarTextChangedEventHandlerImpl interface {
	IUnknownImpl
	StatusBarTextChanged(sender *ICoreWebView2, args *IUnknown) uintptr
}

type ICoreWebView2StatusBarTextChangedEventHandlerVtbl ¶

type ICoreWebView2StatusBarTextChangedEventHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2StringCollection ¶

type ICoreWebView2StringCollection struct {
	Vtbl *ICoreWebView2StringCollectionVtbl
}

func (*ICoreWebView2StringCollection) AddRef ¶

func (*ICoreWebView2StringCollection) GetCount ¶

func (i *ICoreWebView2StringCollection) GetCount() (uint, error)

func (*ICoreWebView2StringCollection) GetValueAtIndex ¶

func (i *ICoreWebView2StringCollection) GetValueAtIndex(index uint) (string, error)

type ICoreWebView2StringCollectionVtbl ¶

type ICoreWebView2StringCollectionVtbl struct {
	IUnknownVtbl
	GetCount        ComProc
	GetValueAtIndex ComProc
}

type ICoreWebView2TrySuspendCompletedHandler ¶

type ICoreWebView2TrySuspendCompletedHandler struct {
	Vtbl *ICoreWebView2TrySuspendCompletedHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2TrySuspendCompletedHandler) AddRef ¶

type ICoreWebView2TrySuspendCompletedHandlerImpl ¶

type ICoreWebView2TrySuspendCompletedHandlerImpl interface {
	IUnknownImpl
	TrySuspendCompleted(errorCode uintptr, isSuccessful bool) uintptr
}

type ICoreWebView2TrySuspendCompletedHandlerVtbl ¶

type ICoreWebView2TrySuspendCompletedHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2Vtbl ¶

type ICoreWebView2Vtbl struct {
	IUnknownVtbl
	GetSettings                            ComProc
	GetSource                              ComProc
	Navigate                               ComProc
	NavigateToString                       ComProc
	AddNavigationStarting                  ComProc
	RemoveNavigationStarting               ComProc
	AddContentLoading                      ComProc
	RemoveContentLoading                   ComProc
	AddSourceChanged                       ComProc
	RemoveSourceChanged                    ComProc
	AddHistoryChanged                      ComProc
	RemoveHistoryChanged                   ComProc
	AddNavigationCompleted                 ComProc
	RemoveNavigationCompleted              ComProc
	AddFrameNavigationStarting             ComProc
	RemoveFrameNavigationStarting          ComProc
	AddFrameNavigationCompleted            ComProc
	RemoveFrameNavigationCompleted         ComProc
	AddScriptDialogOpening                 ComProc
	RemoveScriptDialogOpening              ComProc
	AddPermissionRequested                 ComProc
	RemovePermissionRequested              ComProc
	AddProcessFailed                       ComProc
	RemoveProcessFailed                    ComProc
	AddScriptToExecuteOnDocumentCreated    ComProc
	RemoveScriptToExecuteOnDocumentCreated ComProc
	ExecuteScript                          ComProc
	CapturePreview                         ComProc
	Reload                                 ComProc
	PostWebMessageAsJson                   ComProc
	PostWebMessageAsString                 ComProc
	AddWebMessageReceived                  ComProc
	RemoveWebMessageReceived               ComProc
	CallDevToolsProtocolMethod             ComProc
	GetBrowserProcessId                    ComProc
	GetCanGoBack                           ComProc
	GetCanGoForward                        ComProc
	GoBack                                 ComProc
	GoForward                              ComProc
	GetDevToolsProtocolEventReceiver       ComProc
	Stop                                   ComProc
	AddNewWindowRequested                  ComProc
	RemoveNewWindowRequested               ComProc
	AddDocumentTitleChanged                ComProc
	RemoveDocumentTitleChanged             ComProc
	GetDocumentTitle                       ComProc
	AddHostObjectToScript                  ComProc
	RemoveHostObjectFromScript             ComProc
	OpenDevToolsWindow                     ComProc
	AddContainsFullScreenElementChanged    ComProc
	RemoveContainsFullScreenElementChanged ComProc
	GetContainsFullScreenElement           ComProc
	AddWebResourceRequested                ComProc
	RemoveWebResourceRequested             ComProc
	AddWebResourceRequestedFilter          ComProc
	RemoveWebResourceRequestedFilter       ComProc
	AddWindowCloseRequested                ComProc
	RemoveWindowCloseRequested             ComProc
}

type ICoreWebView2WebMessageReceivedEventArgs ¶

type ICoreWebView2WebMessageReceivedEventArgs struct {
	Vtbl *ICoreWebView2WebMessageReceivedEventArgsVtbl
}

func (*ICoreWebView2WebMessageReceivedEventArgs) AddRef ¶

func (*ICoreWebView2WebMessageReceivedEventArgs) GetSource ¶

func (*ICoreWebView2WebMessageReceivedEventArgs) GetWebMessageAsJson ¶

func (i *ICoreWebView2WebMessageReceivedEventArgs) GetWebMessageAsJson() (string, error)

func (*ICoreWebView2WebMessageReceivedEventArgs) TryGetWebMessageAsString ¶

func (i *ICoreWebView2WebMessageReceivedEventArgs) TryGetWebMessageAsString() (string, error)

type ICoreWebView2WebMessageReceivedEventArgs2 ¶

type ICoreWebView2WebMessageReceivedEventArgs2 struct {
	Vtbl *ICoreWebView2WebMessageReceivedEventArgs2Vtbl
}

func (*ICoreWebView2WebMessageReceivedEventArgs2) AddRef ¶

func (*ICoreWebView2WebMessageReceivedEventArgs2) GetAdditionalObjects ¶

type ICoreWebView2WebMessageReceivedEventArgs2Vtbl ¶

type ICoreWebView2WebMessageReceivedEventArgs2Vtbl struct {
	IUnknownVtbl
	GetAdditionalObjects ComProc
}

type ICoreWebView2WebMessageReceivedEventArgsVtbl ¶

type ICoreWebView2WebMessageReceivedEventArgsVtbl struct {
	IUnknownVtbl
	GetSource                ComProc
	GetWebMessageAsJson      ComProc
	TryGetWebMessageAsString ComProc
}

type ICoreWebView2WebMessageReceivedEventHandler ¶

type ICoreWebView2WebMessageReceivedEventHandler struct {
	Vtbl *ICoreWebView2WebMessageReceivedEventHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2WebMessageReceivedEventHandler) AddRef ¶

type ICoreWebView2WebMessageReceivedEventHandlerImpl ¶

type ICoreWebView2WebMessageReceivedEventHandlerImpl interface {
	IUnknownImpl
	WebMessageReceived(sender *ICoreWebView2, args *ICoreWebView2WebMessageReceivedEventArgs) uintptr
}

type ICoreWebView2WebMessageReceivedEventHandlerVtbl ¶

type ICoreWebView2WebMessageReceivedEventHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2WebResourceRequest ¶

type ICoreWebView2WebResourceRequest struct {
	Vtbl *ICoreWebView2WebResourceRequestVtbl
}

func (*ICoreWebView2WebResourceRequest) AddRef ¶

func (*ICoreWebView2WebResourceRequest) GetContent ¶

func (i *ICoreWebView2WebResourceRequest) GetContent() (*IStream, error)

func (*ICoreWebView2WebResourceRequest) GetHeaders ¶

func (*ICoreWebView2WebResourceRequest) GetMethod ¶

func (i *ICoreWebView2WebResourceRequest) GetMethod() (string, error)

func (*ICoreWebView2WebResourceRequest) GetUri ¶

func (*ICoreWebView2WebResourceRequest) PutContent ¶

func (i *ICoreWebView2WebResourceRequest) PutContent(content *IStream) error

func (*ICoreWebView2WebResourceRequest) PutMethod ¶

func (i *ICoreWebView2WebResourceRequest) PutMethod(method string) error

func (*ICoreWebView2WebResourceRequest) PutUri ¶

type ICoreWebView2WebResourceRequestVtbl ¶

type ICoreWebView2WebResourceRequestVtbl struct {
	IUnknownVtbl
	GetUri     ComProc
	PutUri     ComProc
	GetMethod  ComProc
	PutMethod  ComProc
	GetContent ComProc
	PutContent ComProc
	GetHeaders ComProc
}

type ICoreWebView2WebResourceRequestedEventArgs ¶

type ICoreWebView2WebResourceRequestedEventArgs struct {
	Vtbl *ICoreWebView2WebResourceRequestedEventArgsVtbl
}

func (*ICoreWebView2WebResourceRequestedEventArgs) AddRef ¶

func (*ICoreWebView2WebResourceRequestedEventArgs) GetDeferral ¶

func (*ICoreWebView2WebResourceRequestedEventArgs) GetRequest ¶

func (*ICoreWebView2WebResourceRequestedEventArgs) GetResourceContext ¶

func (*ICoreWebView2WebResourceRequestedEventArgs) GetResponse ¶

func (*ICoreWebView2WebResourceRequestedEventArgs) PutResponse ¶

type ICoreWebView2WebResourceRequestedEventArgsVtbl ¶

type ICoreWebView2WebResourceRequestedEventArgsVtbl struct {
	IUnknownVtbl
	GetRequest         ComProc
	GetResponse        ComProc
	PutResponse        ComProc
	GetDeferral        ComProc
	GetResourceContext ComProc
}

type ICoreWebView2WebResourceRequestedEventHandler ¶

type ICoreWebView2WebResourceRequestedEventHandler struct {
	Vtbl *ICoreWebView2WebResourceRequestedEventHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2WebResourceRequestedEventHandler) AddRef ¶

type ICoreWebView2WebResourceRequestedEventHandlerImpl ¶

type ICoreWebView2WebResourceRequestedEventHandlerImpl interface {
	IUnknownImpl
	WebResourceRequested(sender *ICoreWebView2, args *ICoreWebView2WebResourceRequestedEventArgs) uintptr
}

type ICoreWebView2WebResourceRequestedEventHandlerVtbl ¶

type ICoreWebView2WebResourceRequestedEventHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2WebResourceResponse ¶

type ICoreWebView2WebResourceResponse struct {
	Vtbl *ICoreWebView2WebResourceResponseVtbl
}

func (*ICoreWebView2WebResourceResponse) AddRef ¶

func (*ICoreWebView2WebResourceResponse) GetContent ¶

func (i *ICoreWebView2WebResourceResponse) GetContent() (*IStream, error)

func (*ICoreWebView2WebResourceResponse) GetHeaders ¶

func (*ICoreWebView2WebResourceResponse) GetReasonPhrase ¶

func (i *ICoreWebView2WebResourceResponse) GetReasonPhrase() (string, error)

func (*ICoreWebView2WebResourceResponse) GetStatusCode ¶

func (i *ICoreWebView2WebResourceResponse) GetStatusCode() (int, error)

func (*ICoreWebView2WebResourceResponse) PutContent ¶

func (i *ICoreWebView2WebResourceResponse) PutContent(content *IStream) error

func (*ICoreWebView2WebResourceResponse) PutReasonPhrase ¶

func (i *ICoreWebView2WebResourceResponse) PutReasonPhrase(reasonPhrase string) error

func (*ICoreWebView2WebResourceResponse) PutStatusCode ¶

func (i *ICoreWebView2WebResourceResponse) PutStatusCode(statusCode int) error

type ICoreWebView2WebResourceResponseReceivedEventArgs ¶

type ICoreWebView2WebResourceResponseReceivedEventArgs struct {
	Vtbl *ICoreWebView2WebResourceResponseReceivedEventArgsVtbl
}

func (*ICoreWebView2WebResourceResponseReceivedEventArgs) AddRef ¶

func (*ICoreWebView2WebResourceResponseReceivedEventArgs) GetRequest ¶

func (*ICoreWebView2WebResourceResponseReceivedEventArgs) GetResponse ¶

type ICoreWebView2WebResourceResponseReceivedEventArgsVtbl ¶

type ICoreWebView2WebResourceResponseReceivedEventArgsVtbl struct {
	IUnknownVtbl
	GetRequest  ComProc
	GetResponse ComProc
}

type ICoreWebView2WebResourceResponseReceivedEventHandler ¶

type ICoreWebView2WebResourceResponseReceivedEventHandler struct {
	Vtbl *ICoreWebView2WebResourceResponseReceivedEventHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2WebResourceResponseReceivedEventHandler) AddRef ¶

type ICoreWebView2WebResourceResponseReceivedEventHandlerImpl ¶

type ICoreWebView2WebResourceResponseReceivedEventHandlerImpl interface {
	IUnknownImpl
	WebResourceResponseReceived(sender *ICoreWebView2, args *ICoreWebView2WebResourceResponseReceivedEventArgs) uintptr
}

type ICoreWebView2WebResourceResponseReceivedEventHandlerVtbl ¶

type ICoreWebView2WebResourceResponseReceivedEventHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2WebResourceResponseView ¶

type ICoreWebView2WebResourceResponseView struct {
	Vtbl *ICoreWebView2WebResourceResponseViewVtbl
}

func (*ICoreWebView2WebResourceResponseView) AddRef ¶

func (*ICoreWebView2WebResourceResponseView) GetContent ¶

func (*ICoreWebView2WebResourceResponseView) GetHeaders ¶

func (*ICoreWebView2WebResourceResponseView) GetReasonPhrase ¶

func (i *ICoreWebView2WebResourceResponseView) GetReasonPhrase() (string, error)

func (*ICoreWebView2WebResourceResponseView) GetStatusCode ¶

func (i *ICoreWebView2WebResourceResponseView) GetStatusCode() (int, error)

type ICoreWebView2WebResourceResponseViewGetContentCompletedHandler ¶

type ICoreWebView2WebResourceResponseViewGetContentCompletedHandler struct {
	Vtbl *ICoreWebView2WebResourceResponseViewGetContentCompletedHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2WebResourceResponseViewGetContentCompletedHandler) AddRef ¶

type ICoreWebView2WebResourceResponseViewGetContentCompletedHandlerImpl ¶

type ICoreWebView2WebResourceResponseViewGetContentCompletedHandlerImpl interface {
	IUnknownImpl
	WebResourceResponseViewGetContentCompleted(errorCode uintptr, content *IStream) uintptr
}

type ICoreWebView2WebResourceResponseViewGetContentCompletedHandlerVtbl ¶

type ICoreWebView2WebResourceResponseViewGetContentCompletedHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2WebResourceResponseViewVtbl ¶

type ICoreWebView2WebResourceResponseViewVtbl struct {
	IUnknownVtbl
	GetHeaders      ComProc
	GetStatusCode   ComProc
	GetReasonPhrase ComProc
	GetContent      ComProc
}

type ICoreWebView2WebResourceResponseVtbl ¶

type ICoreWebView2WebResourceResponseVtbl struct {
	IUnknownVtbl
	GetContent      ComProc
	PutContent      ComProc
	GetHeaders      ComProc
	GetStatusCode   ComProc
	PutStatusCode   ComProc
	GetReasonPhrase ComProc
	PutReasonPhrase ComProc
}

type ICoreWebView2WindowCloseRequestedEventHandler ¶

type ICoreWebView2WindowCloseRequestedEventHandler struct {
	Vtbl *ICoreWebView2WindowCloseRequestedEventHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2WindowCloseRequestedEventHandler) AddRef ¶

type ICoreWebView2WindowCloseRequestedEventHandlerImpl ¶

type ICoreWebView2WindowCloseRequestedEventHandlerImpl interface {
	IUnknownImpl
	WindowCloseRequested(sender *ICoreWebView2, args *IUnknown) uintptr
}

type ICoreWebView2WindowCloseRequestedEventHandlerVtbl ¶

type ICoreWebView2WindowCloseRequestedEventHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2WindowFeatures ¶

type ICoreWebView2WindowFeatures struct {
	Vtbl *ICoreWebView2WindowFeaturesVtbl
}

func (*ICoreWebView2WindowFeatures) AddRef ¶

func (*ICoreWebView2WindowFeatures) GetHasPosition ¶

func (i *ICoreWebView2WindowFeatures) GetHasPosition() (bool, error)

func (*ICoreWebView2WindowFeatures) GetHasSize ¶

func (i *ICoreWebView2WindowFeatures) GetHasSize() (bool, error)

func (*ICoreWebView2WindowFeatures) GetHeight ¶

func (i *ICoreWebView2WindowFeatures) GetHeight() (uint32, error)

func (*ICoreWebView2WindowFeatures) GetLeft ¶

func (i *ICoreWebView2WindowFeatures) GetLeft() (uint32, error)

func (*ICoreWebView2WindowFeatures) GetShouldDisplayMenuBar ¶

func (i *ICoreWebView2WindowFeatures) GetShouldDisplayMenuBar() (bool, error)

func (*ICoreWebView2WindowFeatures) GetShouldDisplayScrollBars ¶

func (i *ICoreWebView2WindowFeatures) GetShouldDisplayScrollBars() (bool, error)

func (*ICoreWebView2WindowFeatures) GetShouldDisplayStatus ¶

func (i *ICoreWebView2WindowFeatures) GetShouldDisplayStatus() (bool, error)

func (*ICoreWebView2WindowFeatures) GetShouldDisplayToolbar ¶

func (i *ICoreWebView2WindowFeatures) GetShouldDisplayToolbar() (bool, error)

func (*ICoreWebView2WindowFeatures) GetTop ¶

func (i *ICoreWebView2WindowFeatures) GetTop() (uint32, error)

func (*ICoreWebView2WindowFeatures) GetWidth ¶

func (i *ICoreWebView2WindowFeatures) GetWidth() (uint32, error)

type ICoreWebView2WindowFeaturesVtbl ¶

type ICoreWebView2WindowFeaturesVtbl struct {
	IUnknownVtbl
	GetHasPosition             ComProc
	GetHasSize                 ComProc
	GetLeft                    ComProc
	GetTop                     ComProc
	GetHeight                  ComProc
	GetWidth                   ComProc
	GetShouldDisplayMenuBar    ComProc
	GetShouldDisplayStatus     ComProc
	GetShouldDisplayToolbar    ComProc
	GetShouldDisplayScrollBars ComProc
}

type ICoreWebView2ZoomFactorChangedEventHandler ¶

type ICoreWebView2ZoomFactorChangedEventHandler struct {
	Vtbl *ICoreWebView2ZoomFactorChangedEventHandlerVtbl
	// contains filtered or unexported fields
}

func (*ICoreWebView2ZoomFactorChangedEventHandler) AddRef ¶

type ICoreWebView2ZoomFactorChangedEventHandlerImpl ¶

type ICoreWebView2ZoomFactorChangedEventHandlerImpl interface {
	IUnknownImpl
	ZoomFactorChanged(sender *ICoreWebView2Controller, args *IUnknown) uintptr
}

type ICoreWebView2ZoomFactorChangedEventHandlerVtbl ¶

type ICoreWebView2ZoomFactorChangedEventHandlerVtbl struct {
	IUnknownVtbl
	Invoke ComProc
}

type ICoreWebView2_10 ¶

type ICoreWebView2_10 struct {
	Vtbl *ICoreWebView2_10Vtbl
}

func (*ICoreWebView2_10) AddBasicAuthenticationRequested ¶

func (i *ICoreWebView2_10) AddBasicAuthenticationRequested(eventHandler *ICoreWebView2BasicAuthenticationRequestedEventHandler) (EventRegistrationToken, error)

func (*ICoreWebView2_10) AddRef ¶

func (i *ICoreWebView2_10) AddRef() uintptr

func (*ICoreWebView2_10) RemoveBasicAuthenticationRequested ¶

func (i *ICoreWebView2_10) RemoveBasicAuthenticationRequested(token EventRegistrationToken) error

type ICoreWebView2_10Vtbl ¶

type ICoreWebView2_10Vtbl struct {
	IUnknownVtbl
	AddBasicAuthenticationRequested    ComProc
	RemoveBasicAuthenticationRequested ComProc
}

type ICoreWebView2_11 ¶

type ICoreWebView2_11 struct {
	Vtbl *ICoreWebView2_11Vtbl
}

func (*ICoreWebView2_11) AddContextMenuRequested ¶

func (*ICoreWebView2_11) AddRef ¶

func (i *ICoreWebView2_11) AddRef() uintptr

func (*ICoreWebView2_11) CallDevToolsProtocolMethodForSession ¶

func (i *ICoreWebView2_11) CallDevToolsProtocolMethodForSession(sessionId string, methodName string, parametersAsJson string, handler *ICoreWebView2CallDevToolsProtocolMethodCompletedHandler) error

func (*ICoreWebView2_11) RemoveContextMenuRequested ¶

func (i *ICoreWebView2_11) RemoveContextMenuRequested(token EventRegistrationToken) error

type ICoreWebView2_11Vtbl ¶

type ICoreWebView2_11Vtbl struct {
	IUnknownVtbl
	CallDevToolsProtocolMethodForSession ComProc
	AddContextMenuRequested              ComProc
	RemoveContextMenuRequested           ComProc
}

type ICoreWebView2_12 ¶

type ICoreWebView2_12 struct {
	Vtbl *ICoreWebView2_12Vtbl
}

func (*ICoreWebView2_12) AddRef ¶

func (i *ICoreWebView2_12) AddRef() uintptr

func (*ICoreWebView2_12) AddStatusBarTextChanged ¶

func (*ICoreWebView2_12) GetStatusBarText ¶

func (i *ICoreWebView2_12) GetStatusBarText() (string, error)

func (*ICoreWebView2_12) RemoveStatusBarTextChanged ¶

func (i *ICoreWebView2_12) RemoveStatusBarTextChanged(token EventRegistrationToken) error

type ICoreWebView2_12Vtbl ¶

type ICoreWebView2_12Vtbl struct {
	IUnknownVtbl
	AddStatusBarTextChanged    ComProc
	RemoveStatusBarTextChanged ComProc
	GetStatusBarText           ComProc
}

type ICoreWebView2_13 ¶

type ICoreWebView2_13 struct {
	Vtbl *ICoreWebView2_13Vtbl
}

func (*ICoreWebView2_13) AddRef ¶

func (i *ICoreWebView2_13) AddRef() uintptr

func (*ICoreWebView2_13) GetProfile ¶

func (i *ICoreWebView2_13) GetProfile() (*ICoreWebView2Profile, error)

type ICoreWebView2_13Vtbl ¶

type ICoreWebView2_13Vtbl struct {
	IUnknownVtbl
	GetProfile ComProc
}

type ICoreWebView2_14 ¶

type ICoreWebView2_14 struct {
	Vtbl *ICoreWebView2_14Vtbl
}

func (*ICoreWebView2_14) AddRef ¶

func (i *ICoreWebView2_14) AddRef() uintptr

func (*ICoreWebView2_14) AddServerCertificateErrorDetected ¶

func (i *ICoreWebView2_14) AddServerCertificateErrorDetected(eventHandler *ICoreWebView2ServerCertificateErrorDetectedEventHandler) (EventRegistrationToken, error)

func (*ICoreWebView2_14) ClearServerCertificateErrorActions ¶

func (i *ICoreWebView2_14) ClearServerCertificateErrorActions(handler *ICoreWebView2ClearServerCertificateErrorActionsCompletedHandler) error

func (*ICoreWebView2_14) RemoveServerCertificateErrorDetected ¶

func (i *ICoreWebView2_14) RemoveServerCertificateErrorDetected(token EventRegistrationToken) error

type ICoreWebView2_14Vtbl ¶

type ICoreWebView2_14Vtbl struct {
	IUnknownVtbl
	AddServerCertificateErrorDetected    ComProc
	RemoveServerCertificateErrorDetected ComProc
	ClearServerCertificateErrorActions   ComProc
}

type ICoreWebView2_15 ¶

type ICoreWebView2_15 struct {
	Vtbl *ICoreWebView2_15Vtbl
}

func (*ICoreWebView2_15) AddFaviconChanged ¶

func (*ICoreWebView2_15) AddRef ¶

func (i *ICoreWebView2_15) AddRef() uintptr

func (*ICoreWebView2_15) GetFavicon ¶

func (*ICoreWebView2_15) GetFaviconUri ¶

func (i *ICoreWebView2_15) GetFaviconUri() (string, error)

func (*ICoreWebView2_15) RemoveFaviconChanged ¶

func (i *ICoreWebView2_15) RemoveFaviconChanged(token EventRegistrationToken) error

type ICoreWebView2_15Vtbl ¶

type ICoreWebView2_15Vtbl struct {
	IUnknownVtbl
	AddFaviconChanged    ComProc
	RemoveFaviconChanged ComProc
	GetFaviconUri        ComProc
	GetFavicon           ComProc
}

type ICoreWebView2_16 ¶

type ICoreWebView2_16 struct {
	Vtbl *ICoreWebView2_16Vtbl
}

func (*ICoreWebView2_16) AddRef ¶

func (i *ICoreWebView2_16) AddRef() uintptr

func (*ICoreWebView2_16) Print ¶

func (*ICoreWebView2_16) PrintToPdfStream ¶

func (*ICoreWebView2_16) ShowPrintUI ¶

func (i *ICoreWebView2_16) ShowPrintUI(printDialogKind COREWEBVIEW2_PRINT_DIALOG_KIND) error

type ICoreWebView2_16Vtbl ¶

type ICoreWebView2_16Vtbl struct {
	IUnknownVtbl
	Print            ComProc
	ShowPrintUI      ComProc
	PrintToPdfStream ComProc
}

type ICoreWebView2_17 ¶

type ICoreWebView2_17 struct {
	Vtbl *ICoreWebView2_17Vtbl
}

func (*ICoreWebView2_17) AddRef ¶

func (i *ICoreWebView2_17) AddRef() uintptr

func (*ICoreWebView2_17) PostSharedBufferToScript ¶

func (i *ICoreWebView2_17) PostSharedBufferToScript(sharedBuffer *ICoreWebView2SharedBuffer, access COREWEBVIEW2_SHARED_BUFFER_ACCESS, additionalDataAsJson string) error

type ICoreWebView2_17Vtbl ¶

type ICoreWebView2_17Vtbl struct {
	IUnknownVtbl
	PostSharedBufferToScript ComProc
}

type ICoreWebView2_18 ¶

type ICoreWebView2_18 struct {
	Vtbl *ICoreWebView2_18Vtbl
}

func (*ICoreWebView2_18) AddLaunchingExternalUriScheme ¶

func (i *ICoreWebView2_18) AddLaunchingExternalUriScheme(eventHandler *ICoreWebView2LaunchingExternalUriSchemeEventHandler) (EventRegistrationToken, error)

func (*ICoreWebView2_18) AddRef ¶

func (i *ICoreWebView2_18) AddRef() uintptr

func (*ICoreWebView2_18) RemoveLaunchingExternalUriScheme ¶

func (i *ICoreWebView2_18) RemoveLaunchingExternalUriScheme(token EventRegistrationToken) error

type ICoreWebView2_18Vtbl ¶

type ICoreWebView2_18Vtbl struct {
	IUnknownVtbl
	AddLaunchingExternalUriScheme    ComProc
	RemoveLaunchingExternalUriScheme ComProc
}

type ICoreWebView2_19 ¶

type ICoreWebView2_19 struct {
	Vtbl *ICoreWebView2_19Vtbl
}

func (*ICoreWebView2_19) AddRef ¶

func (i *ICoreWebView2_19) AddRef() uintptr

func (*ICoreWebView2_19) GetMemoryUsageTargetLevel ¶

func (i *ICoreWebView2_19) GetMemoryUsageTargetLevel() (COREWEBVIEW2_MEMORY_USAGE_TARGET_LEVEL, error)

func (*ICoreWebView2_19) PutMemoryUsageTargetLevel ¶

func (i *ICoreWebView2_19) PutMemoryUsageTargetLevel(level COREWEBVIEW2_MEMORY_USAGE_TARGET_LEVEL) error

type ICoreWebView2_19Vtbl ¶

type ICoreWebView2_19Vtbl struct {
	IUnknownVtbl
	GetMemoryUsageTargetLevel ComProc
	PutMemoryUsageTargetLevel ComProc
}

type ICoreWebView2_2 ¶

type ICoreWebView2_2 struct {
	Vtbl *ICoreWebView2_2Vtbl
}

func (*ICoreWebView2_2) AddDOMContentLoaded ¶

func (*ICoreWebView2_2) AddRef ¶

func (i *ICoreWebView2_2) AddRef() uintptr

func (*ICoreWebView2_2) AddWebResourceResponseReceived ¶

func (i *ICoreWebView2_2) AddWebResourceResponseReceived(eventHandler *ICoreWebView2WebResourceResponseReceivedEventHandler) (EventRegistrationToken, error)

func (*ICoreWebView2_2) GetCookieManager ¶

func (i *ICoreWebView2_2) GetCookieManager() (*ICoreWebView2CookieManager, error)

func (*ICoreWebView2_2) GetEnvironment ¶

func (i *ICoreWebView2_2) GetEnvironment() (*ICoreWebView2Environment, error)

func (*ICoreWebView2_2) NavigateWithWebResourceRequest ¶

func (i *ICoreWebView2_2) NavigateWithWebResourceRequest(request *ICoreWebView2WebResourceRequest) error

func (*ICoreWebView2_2) RemoveDOMContentLoaded ¶

func (i *ICoreWebView2_2) RemoveDOMContentLoaded(token EventRegistrationToken) error

func (*ICoreWebView2_2) RemoveWebResourceResponseReceived ¶

func (i *ICoreWebView2_2) RemoveWebResourceResponseReceived(token EventRegistrationToken) error

type ICoreWebView2_2Vtbl ¶

type ICoreWebView2_2Vtbl struct {
	IUnknownVtbl
	AddWebResourceResponseReceived    ComProc
	RemoveWebResourceResponseReceived ComProc
	NavigateWithWebResourceRequest    ComProc
	AddDOMContentLoaded               ComProc
	RemoveDOMContentLoaded            ComProc
	GetCookieManager                  ComProc
	GetEnvironment                    ComProc
}

type ICoreWebView2_3 ¶

type ICoreWebView2_3 struct {
	Vtbl *ICoreWebView2_3Vtbl
}

func (*ICoreWebView2_3) AddRef ¶

func (i *ICoreWebView2_3) AddRef() uintptr

func (*ICoreWebView2_3) ClearVirtualHostNameToFolderMapping ¶

func (i *ICoreWebView2_3) ClearVirtualHostNameToFolderMapping(hostName string) error

func (*ICoreWebView2_3) GetIsSuspended ¶

func (i *ICoreWebView2_3) GetIsSuspended() (bool, error)

func (*ICoreWebView2_3) Resume ¶

func (i *ICoreWebView2_3) Resume() error

func (*ICoreWebView2_3) SetVirtualHostNameToFolderMapping ¶

func (i *ICoreWebView2_3) SetVirtualHostNameToFolderMapping(hostName string, folderPath string, accessKind COREWEBVIEW2_HOST_RESOURCE_ACCESS_KIND) error

func (*ICoreWebView2_3) TrySuspend ¶

type ICoreWebView2_3Vtbl ¶

type ICoreWebView2_3Vtbl struct {
	IUnknownVtbl
	TrySuspend                          ComProc
	Resume                              ComProc
	GetIsSuspended                      ComProc
	SetVirtualHostNameToFolderMapping   ComProc
	ClearVirtualHostNameToFolderMapping ComProc
}

type ICoreWebView2_4 ¶

type ICoreWebView2_4 struct {
	Vtbl *ICoreWebView2_4Vtbl
}

func (*ICoreWebView2_4) AddDownloadStarting ¶

func (*ICoreWebView2_4) AddFrameCreated ¶

func (*ICoreWebView2_4) AddRef ¶

func (i *ICoreWebView2_4) AddRef() uintptr

func (*ICoreWebView2_4) RemoveDownloadStarting ¶

func (i *ICoreWebView2_4) RemoveDownloadStarting(token EventRegistrationToken) error

func (*ICoreWebView2_4) RemoveFrameCreated ¶

func (i *ICoreWebView2_4) RemoveFrameCreated(token EventRegistrationToken) error

type ICoreWebView2_4Vtbl ¶

type ICoreWebView2_4Vtbl struct {
	IUnknownVtbl
	AddFrameCreated        ComProc
	RemoveFrameCreated     ComProc
	AddDownloadStarting    ComProc
	RemoveDownloadStarting ComProc
}

type ICoreWebView2_5 ¶

type ICoreWebView2_5 struct {
	Vtbl *ICoreWebView2_5Vtbl
}

func (*ICoreWebView2_5) AddClientCertificateRequested ¶

func (i *ICoreWebView2_5) AddClientCertificateRequested(eventHandler *ICoreWebView2ClientCertificateRequestedEventHandler) (EventRegistrationToken, error)

func (*ICoreWebView2_5) AddRef ¶

func (i *ICoreWebView2_5) AddRef() uintptr

func (*ICoreWebView2_5) RemoveClientCertificateRequested ¶

func (i *ICoreWebView2_5) RemoveClientCertificateRequested(token EventRegistrationToken) error

type ICoreWebView2_5Vtbl ¶

type ICoreWebView2_5Vtbl struct {
	IUnknownVtbl
	AddClientCertificateRequested    ComProc
	RemoveClientCertificateRequested ComProc
}

type ICoreWebView2_6 ¶

type ICoreWebView2_6 struct {
	Vtbl *ICoreWebView2_6Vtbl
}

func (*ICoreWebView2_6) AddRef ¶

func (i *ICoreWebView2_6) AddRef() uintptr

func (*ICoreWebView2_6) OpenTaskManagerWindow ¶

func (i *ICoreWebView2_6) OpenTaskManagerWindow() error

type ICoreWebView2_6Vtbl ¶

type ICoreWebView2_6Vtbl struct {
	IUnknownVtbl
	OpenTaskManagerWindow ComProc
}

type ICoreWebView2_7 ¶

type ICoreWebView2_7 struct {
	Vtbl *ICoreWebView2_7Vtbl
}

func (*ICoreWebView2_7) AddRef ¶

func (i *ICoreWebView2_7) AddRef() uintptr

func (*ICoreWebView2_7) PrintToPdf ¶

func (i *ICoreWebView2_7) PrintToPdf(resultFilePath string, printSettings *ICoreWebView2PrintSettings, handler *ICoreWebView2PrintToPdfCompletedHandler) error

type ICoreWebView2_7Vtbl ¶

type ICoreWebView2_7Vtbl struct {
	IUnknownVtbl
	PrintToPdf ComProc
}

type ICoreWebView2_8 ¶

type ICoreWebView2_8 struct {
	Vtbl *ICoreWebView2_8Vtbl
}

func (*ICoreWebView2_8) AddIsDocumentPlayingAudioChanged ¶

func (i *ICoreWebView2_8) AddIsDocumentPlayingAudioChanged(eventHandler *ICoreWebView2IsDocumentPlayingAudioChangedEventHandler) (EventRegistrationToken, error)

func (*ICoreWebView2_8) AddIsMutedChanged ¶

func (*ICoreWebView2_8) AddRef ¶

func (i *ICoreWebView2_8) AddRef() uintptr

func (*ICoreWebView2_8) GetIsDocumentPlayingAudio ¶

func (i *ICoreWebView2_8) GetIsDocumentPlayingAudio() (bool, error)

func (*ICoreWebView2_8) GetIsMuted ¶

func (i *ICoreWebView2_8) GetIsMuted() (bool, error)

func (*ICoreWebView2_8) PutIsMuted ¶

func (i *ICoreWebView2_8) PutIsMuted(value bool) error

func (*ICoreWebView2_8) RemoveIsDocumentPlayingAudioChanged ¶

func (i *ICoreWebView2_8) RemoveIsDocumentPlayingAudioChanged(token EventRegistrationToken) error

func (*ICoreWebView2_8) RemoveIsMutedChanged ¶

func (i *ICoreWebView2_8) RemoveIsMutedChanged(token EventRegistrationToken) error

type ICoreWebView2_8Vtbl ¶

type ICoreWebView2_8Vtbl struct {
	IUnknownVtbl
	AddIsMutedChanged                   ComProc
	RemoveIsMutedChanged                ComProc
	GetIsMuted                          ComProc
	PutIsMuted                          ComProc
	AddIsDocumentPlayingAudioChanged    ComProc
	RemoveIsDocumentPlayingAudioChanged ComProc
	GetIsDocumentPlayingAudio           ComProc
}

type ICoreWebView2_9 ¶

type ICoreWebView2_9 struct {
	Vtbl *ICoreWebView2_9Vtbl
}

func (*ICoreWebView2_9) AddRef ¶

func (i *ICoreWebView2_9) AddRef() uintptr

func (*ICoreWebView2_9) CloseDefaultDownloadDialog ¶

func (i *ICoreWebView2_9) CloseDefaultDownloadDialog() error

func (*ICoreWebView2_9) GetDefaultDownloadDialogCornerAlignment ¶

func (i *ICoreWebView2_9) GetDefaultDownloadDialogCornerAlignment() (COREWEBVIEW2_DEFAULT_DOWNLOAD_DIALOG_CORNER_ALIGNMENT, error)

func (*ICoreWebView2_9) GetDefaultDownloadDialogMargin ¶

func (i *ICoreWebView2_9) GetDefaultDownloadDialogMargin() (POINT, error)

func (*ICoreWebView2_9) GetIsDefaultDownloadDialogOpen ¶

func (i *ICoreWebView2_9) GetIsDefaultDownloadDialogOpen() (bool, error)

func (*ICoreWebView2_9) OpenDefaultDownloadDialog ¶

func (i *ICoreWebView2_9) OpenDefaultDownloadDialog() error

func (*ICoreWebView2_9) PutDefaultDownloadDialogCornerAlignment ¶

func (i *ICoreWebView2_9) PutDefaultDownloadDialogCornerAlignment(value COREWEBVIEW2_DEFAULT_DOWNLOAD_DIALOG_CORNER_ALIGNMENT) error

func (*ICoreWebView2_9) PutDefaultDownloadDialogMargin ¶

func (i *ICoreWebView2_9) PutDefaultDownloadDialogMargin(value POINT) error

func (*ICoreWebView2_9) RemoveIsDefaultDownloadDialogOpenChanged ¶

func (i *ICoreWebView2_9) RemoveIsDefaultDownloadDialogOpenChanged(token EventRegistrationToken) error

type ICoreWebView2_9Vtbl ¶

type ICoreWebView2_9Vtbl struct {
	IUnknownVtbl
	AddIsDefaultDownloadDialogOpenChanged    ComProc
	RemoveIsDefaultDownloadDialogOpenChanged ComProc
	GetIsDefaultDownloadDialogOpen           ComProc
	OpenDefaultDownloadDialog                ComProc
	CloseDefaultDownloadDialog               ComProc
	GetDefaultDownloadDialogCornerAlignment  ComProc
	PutDefaultDownloadDialogCornerAlignment  ComProc
	GetDefaultDownloadDialogMargin           ComProc
	PutDefaultDownloadDialogMargin           ComProc
}

type IDataObject ¶

type IDataObject struct {
	IUnknown
}

type IStream ¶

type IStream struct {
	Vtbl *IStreamVtbl
}

func (*IStream) Read ¶

func (i *IStream) Read(p []byte) (int, error)

func (*IStream) Release ¶

func (i *IStream) Release() error

type IStreamVtbl ¶

type IStreamVtbl struct {
	IUnknownVtbl
	Read  ComProc
	Write ComProc
}

type IUnknown ¶

type IUnknown struct {
	Vtbl *IUnknownVtbl
}

IUnknown

type IUnknownImpl ¶

type IUnknownImpl interface {
	QueryInterface(refiid, object uintptr) uintptr
	AddRef() uintptr
	Release() uintptr
}

type IUnknownVtbl ¶

type IUnknownVtbl struct {
	QueryInterface ComProc
	AddRef         ComProc
	Release        ComProc
}

func (*IUnknownVtbl) CallRelease ¶

func (i *IUnknownVtbl) CallRelease(this unsafe.Pointer) error

type POINT ¶

type POINT struct {
	X, Y int32
}

type RECT ¶

type RECT struct {
	Left   int32
	Top    int32
	Right  int32
	Bottom int32
}

type VARIANT ¶

type VARIANT uintptr

NOTE: For sure, this is wrong!

Source Files ¶

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL