You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 31, 2021. It is now read-only.
Copy file name to clipboardExpand all lines: engine/src/browser.lcb
+6-4Lines changed: 6 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -52,6 +52,8 @@ public type MCBrowserValueType is CInt
52
52
public type MCBrowserRequestType is CInt
53
53
public type MCBrowserRequestState is CInt
54
54
55
+
public type MCBrowserString is NativeCString
56
+
55
57
--
56
58
57
59
public foreign handler MCBrowserLibraryInitialize() returns CBool binds to "<builtin>"
@@ -71,13 +73,13 @@ public foreign handler MCBrowserGetNativeLayer(in pBrowser as MCBrowserRef) retu
71
73
public foreign handler MCBrowserGetBoolProperty(in pBrowser as MCBrowserRef, in pProperty as MCBrowserProperty, out rValue as CBool) returns CBool binds to "<builtin>"
72
74
public foreign handler MCBrowserSetBoolProperty(in pBrowser as MCBrowserRef, in pProperty as MCBrowserProperty, in pValue as CBool) returns CBool binds to "<builtin>"
73
75
74
-
public foreign handler MCBrowserGetStringProperty(in pBrowser as MCBrowserRef, in pProperty as MCBrowserProperty, out rValue as NativeCString) returns CBool binds to "<builtin>"
75
-
public foreign handler MCBrowserSetStringProperty(in pBrowser as MCBrowserRef, in pProperty as MCBrowserProperty, in pValue as NativeCString) returns CBool binds to "<builtin>"
76
+
public foreign handler MCBrowserGetStringProperty(in pBrowser as MCBrowserRef, in pProperty as MCBrowserProperty, out rValue as MCBrowserString) returns CBool binds to "<builtin>"
77
+
public foreign handler MCBrowserSetStringProperty(in pBrowser as MCBrowserRef, in pProperty as MCBrowserProperty, in pValue as MCBrowserString) returns CBool binds to "<builtin>"
76
78
77
79
public foreign handler MCBrowserGoBack(in pBrowser as MCBrowserRef) returns CBool binds to "<builtin>"
78
80
public foreign handler MCBrowserGoForward(in pBrowser as MCBrowserRef) returns CBool binds to "<builtin>"
79
-
public foreign handler MCBrowserGoToURL(in pBrowser as MCBrowserRef) returns CBool binds to "<builtin>"
80
-
public foreign handler MCBrowserEvaluateJavaScript(in pBrowser as MCBrowserRef, in pScript as NativeCString, out rResult as NativeCString) returns CBool binds to "<builtin>"
81
+
public foreign handler MCBrowserGoToURL(in pBrowser as MCBrowserRef, in pURL as MCBrowserString) returns CBool binds to "<builtin>"
82
+
public foreign handler MCBrowserEvaluateJavaScript(in pBrowser as MCBrowserRef, in pScript as MCBrowserString, out rResult as MCBrowserString) returns CBool binds to "<builtin>"
0 commit comments