You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
3.6 KiB
62 lines
3.6 KiB
6 years ago
|
EnableExplicit
|
||
|
|
||
|
Global PBEx_WebGadget
|
||
|
|
||
|
CompilerIf #PB_Compiler_Processor = #PB_Processor_x86
|
||
|
PBEx_WebGadget = OpenLibrary(#PB_Any, "PB.Ex_WebGadget_x86.dll")
|
||
|
CompilerElseIf #PB_Compiler_Processor = #PB_Processor_x64
|
||
|
PBEx_WebGadget = OpenLibrary(#PB_Any, "PB.Ex_WebGadget_x64.dll")
|
||
|
CompilerEndIf
|
||
|
|
||
|
If PBEx_WebGadget
|
||
|
Prototype WebGadgetEx(ID, X, Y, Width, Height, URL.p-Unicode, ParentWindowID, ErrorOutput)
|
||
|
Global WebGadgetEx.WebGadgetEx = GetFunction(PBEx_WebGadget, "WebGadgetEx")
|
||
|
Prototype SetWebGadgetExText(ID, URL.p-Unicode, ErrorOutput)
|
||
|
Global SetWebGadgetExText.SetWebGadgetExText = GetFunction(PBEx_WebGadget, "SetWebGadgetExText")
|
||
|
Prototype GetWebGadgetExText(ID, Output, ErrorOutput)
|
||
|
Global GetWebGadgetExText.GetWebGadgetExText = GetFunction(PBEx_WebGadget, "GetWebGadgetExText")
|
||
|
Prototype SetWebGadgetExState(ID, State, ErrorOutput)
|
||
|
Global SetWebGadgetExState.SetWebGadgetExState = GetFunction(PBEx_WebGadget, "SetWebGadgetExState")
|
||
|
Prototype SetWebGadgetExItemText(ID, Entry, Text.p-Unicode, ErrorOutput)
|
||
|
Global SetWebGadgetExItemText.SetWebGadgetExItemText = GetFunction(PBEx_WebGadget, "SetWebGadgetExItemText")
|
||
|
Prototype GetWebGadgetExItemText(ID, Entry, Output, ErrorOutput)
|
||
|
Global GetWebGadgetExItemText.GetWebGadgetExItemText = GetFunction(PBEx_WebGadget, "GetWebGadgetExItemText")
|
||
|
Prototype FreeWebGadgetEx(ID, ErrorOutput)
|
||
|
Global FreeWebGadgetEx.FreeWebGadgetEx = GetFunction(PBEx_WebGadget, "FreeWebGadgetEx")
|
||
|
Prototype IsWebGadgetEx(ID, ErrorOutput)
|
||
|
Global IsWebGadgetEx.IsWebGadgetEx = GetFunction(PBEx_WebGadget, "IsWebGadgetEx")
|
||
|
Prototype WebGadgetExWidth(ID, ErrorOutput)
|
||
|
Global WebGadgetExWidth.WebGadgetExWidth = GetFunction(PBEx_WebGadget, "WebGadgetExWidth")
|
||
|
Prototype WebGadgetExHeight(ID, ErrorOutput)
|
||
|
Global WebGadgetExHeight.WebGadgetExHeight = GetFunction(PBEx_WebGadget, "WebGadgetExHeight")
|
||
|
Prototype WebGadgetExX(ID, ErrorOutput)
|
||
|
Global WebGadgetExX.WebGadgetExX = GetFunction(PBEx_WebGadget, "WebGadgetExX")
|
||
|
Prototype WebGadgetExY(ID, ErrorOutput)
|
||
|
Global WebGadgetExY.WebGadgetExY = GetFunction(PBEx_WebGadget, "WebGadgetExY")
|
||
|
Prototype WebGadgetExID(ID, ErrorOutput)
|
||
|
Global WebGadgetExID.WebGadgetExID = GetFunction(PBEx_WebGadget, "WebGadgetExID")
|
||
|
Prototype HideWebGadgetEx(ID, State, ErrorOutput)
|
||
|
Global HideWebGadgetEx.HideWebGadgetEx = GetFunction(PBEx_WebGadget, "HideWebGadgetEx")
|
||
|
Prototype ResizeWebGadgetEx(ID, X, Y, Width, Height, ErrorOutput)
|
||
|
Global ResizeWebGadgetEx.ResizeWebGadgetEx = GetFunction(PBEx_WebGadget, "ResizeWebGadgetEx")
|
||
|
Prototype HideWebGadgetExDevTools(ID, State, ErrorOutput)
|
||
|
Global HideWebGadgetExDevTools.HideWebGadgetExDevTools = GetFunction(PBEx_WebGadget, "HideWebGadgetExDevTools")
|
||
|
Prototype ExecuteWebGadgetExJavaScript(ID, Code.p-Unicode, Output, ErrorOutput)
|
||
|
Global ExecuteWebGadgetExJavaScript.ExecuteWebGadgetExJavaScript = GetFunction(PBEx_WebGadget, "ExecuteWebGadgetExJavaScript")
|
||
|
Prototype BindWebGadgetExJavaScript(ID, PBProcedureName.p-Unicode, PBProcedureHandle, PID, ErrorOutput)
|
||
|
Global BindWebGadgetExJavaScript.BindWebGadgetExJavaScript = GetFunction(PBEx_WebGadget, "BindWebGadgetExJavaScript")
|
||
|
Prototype GetWebGadgetExAttribute(ID, Attribute, ErrorOutput)
|
||
|
Global GetWebGadgetExAttribute.GetWebGadgetExAttribute = GetFunction(PBEx_WebGadget, "GetWebGadgetExAttribute")
|
||
|
Prototype EnableRemoteDebugger(Port, ErrorOutput)
|
||
|
Global EnableRemoteDebugger.EnableRemoteDebugger = GetFunction(PBEx_WebGadget, "EnableRemoteDebugger")
|
||
|
|
||
|
EndIf
|
||
|
|
||
|
; IDE Options = PureBasic 5.60 (Windows - x64)
|
||
|
; CursorPosition = 53
|
||
|
; EnableXP
|
||
|
; EnableUser
|
||
|
; Executable = PB.Ex_MSSQL.exe
|
||
|
; CompileSourceDirectory
|
||
|
; EnableCompileCount = 417
|
||
|
; EnableBuildCount = 7
|