Difference between revisions of "Unit ShellUSB"
From Ultibo.org
(One intermediate revision by the same user not shown) | |||
Line 5: | Line 5: | ||
---- | ---- | ||
− | '''Ultibo USB Shell | + | '''Ultibo USB Shell Extension unit''' |
=== Constants === | === Constants === | ||
Line 69: | Line 69: | ||
---- | ---- | ||
− | '' | + | |
+ | '''Shell USB data''' | ||
+ | |||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;"> | ||
+ | <code>PShellUSBData = ^TShellUSBData;</code> | ||
+ | |||
+ | <code>TShellUSBData = record</code> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | | <code>Shell:TShell;</code> | ||
+ | | style="width: 50%;"| | ||
+ | |- | ||
+ | | <code>Session:TShellSession;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>Parameters:TStrings;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>Data:Pointer;</code> | ||
+ | | | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
=== Class definitions === | === Class definitions === |
Latest revision as of 06:07, 31 August 2021
Return to Unit Reference
Contents
Description
Ultibo USB Shell Extension unit
Constants
Shell USB command
SHELL_USB_COMMAND_*
SHELL_USB_COMMAND_USB = 'USB';
|
Shell USB action
SHELL_USB_ACTION_*
SHELL_USB_ACTION_START = 'START';
|
|
SHELL_USB_ACTION_STOP = 'STOP';
|
|
SHELL_USB_ACTION_LIST = 'LIST';
|
|
SHELL_USB_ACTION_TREE = 'TREE';
|
|
SHELL_USB_ACTION_INFO = 'INFO';
|
Shell USB item
SHELL_USB_ITEM_*
SHELL_USB_ITEM_ALL = 'ALL';
|
|
SHELL_USB_ITEM_HOSTS = 'HOSTS';
|
|
SHELL_USB_ITEM_DEVICES = 'DEVICES';
|
|
SHELL_USB_ITEM_DRIVERS = 'DRIVERS';
|
Type definitions
Shell USB data
PShellUSBData = ^TShellUSBData;
TShellUSBData = record
Shell:TShell;
|
|
Session:TShellSession;
|
|
Parameters:TStrings;
|
|
Data:Pointer;
|
Class definitions
Shell USB specific classes
TShellUSB = class(TShellCommand)
|
Public variables
None defined
Function declarations
Initialization functions
procedure ShellUSBInit;
Description: To be documented
Note | None documented |
---|
Shell USB helper functions
function ShellUSBLogDeviceCallback(Device:PUSBDevice; Data:Pointer):LongWord;
Description: To be documented
Note | None documented |
---|
function ShellUSBLogTreeCallback(Device:PUSBDevice; Data:Pointer):LongWord;
Description: To be documented
Note | None documented |
---|
function ShellUSBHostEnumerate(Host:PUSBHost; Data:Pointer):LongWord;
Description: To be documented
Note | None documented |
---|
function ShellUSBDeviceEnumerate(Device:PUSBDevice; Data:Pointer):LongWord;
Description: To be documented
Note | None documented |
---|
function ShellUSBDriverEnumerate(Driver:PUSBDriver; Data:Pointer):LongWord;
Description: To be documented
Note | None documented |
---|
Return to Unit Reference