Difference between revisions of "Unit WebStatus"
From Ultibo.org
Line 28: | Line 28: | ||
---- | ---- | ||
− | '' | + | |
+ | '''RTL initialize final record''' | ||
+ | |||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;"> | ||
+ | |||
+ | <code>TRtlInitFinalRec = record</code> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | |colspan="2"|Note: See TInitFinalRec in system.inc | ||
+ | |- | ||
+ | | <code>InitProc:TProcedure;</code> | ||
+ | | style="width: 50%;"| | ||
+ | |- | ||
+ | | <code>FinalProc:TProcedure;</code> | ||
+ | | | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | |||
+ | '''RTL initialize final table''' | ||
+ | |||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;"> | ||
+ | <code>PRtlInitFinalTable = ^TRtlInitFinalTable;</code> | ||
+ | |||
+ | <code>TRtlInitFinalTable = record </code> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | |colspan="2"|Note: See TInitFinalTable in system.inc | ||
+ | |- | ||
+ | | <code>TableCount:LongWord;</code> | ||
+ | | style="width: 50%;"| | ||
+ | |- | ||
+ | | <code>InitCount:LongWord;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>Procs:array[1..RtlMaxUnits] of TRtlInitFinalRec;</code> | ||
+ | | | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | |||
+ | '''Web status data''' | ||
+ | |||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;"> | ||
+ | <code>PWebStatusData = ^TWebStatusData;</code> | ||
+ | |||
+ | <code>TWebStatusData = record</code> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | | <code>Document:TWebStatusSub;</code> | ||
+ | | style="width: 50%;"| | ||
+ | |- | ||
+ | | <code>Host:THTTPHost;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>Request:THTTPServerRequest;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>Response:THTTPServerResponse;</code> | ||
+ | | | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
=== Class definitions === | === Class definitions === |
Revision as of 04:09, 26 January 2017
Return to Unit Reference
Contents
[hide]Description
Ultibo Web Status unit
To be documented
Constants
[Expand]
Web status specific constants
RtlMaxUnits*
Type definitions
RTL initialize final record
[Expand]
TRtlInitFinalRec = record
RTL initialize final table
Web status data
Class definitions
To be documented
Public variables
None defined
Function declarations
Web status functions
[Expand]
function WebStatusRegister(AListener:THTTPListener; const AHost,AURL:String; ARedirect:Boolean):Boolean;
Description: To be documented
[Expand]
function WebStatusDeregister(AListener:THTTPListener; const AHost:String):Boolean;
Description: To be documented
Web status helper functions
[Expand]
function WebStatusDeviceEnumerate(Device:PDevice; Data:Pointer):LongWord;
Description: To be documented
[Expand]
function WebStatusDriverEnumerate(Driver:PDriver; Data:Pointer):LongWord;
Description: To be documented
[Expand]
function WebStatusUSBDeviceEnumerate(Device:PUSBDevice; Data:Pointer):LongWord;
Description: To be documented
[Expand]
function WebStatusUSBHostEnumerate(Host:PUSBHost; Data:Pointer):LongWord;
Description: To be documented
[Expand]
function WebStatusUSBDriverEnumerate(Driver:PUSBDriver; Data:Pointer):LongWord;
Description: To be documented
[Expand]
function WebStatusMMCEnumerate(MMC:PMMCDevice; Data:Pointer):LongWord;
Description: To be documented
[Expand]
function WebStatusSDHCIEnumerate(SDHCI:PSDHCIHost; Data:Pointer):LongWord;
Description: To be documented
[Expand]
function WebStatusNetworkEnumerate(Network:PNetworkDevice; Data:Pointer):LongWord;
Description: To be documented
[Expand]
function WebStatusStorageEnumerate(Storage:PStorageDevice; Data:Pointer):LongWord;
Description: To be documented
[Expand]
function WebStatusMouseEnumerate(Mouse:PMouseDevice; Data:Pointer):LongWord;
Description: To be documented
[Expand]
function WebStatusKeyboardEnumerate(Keyboard:PKeyboardDevice; Data:Pointer):LongWord;
Description: To be documented
Return to Unit Reference