ISDBDevice::DeviceStartEx: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
(Updated documentation.) |
||
Line 4: | Line 4: | ||
{{MethodParameters | {{MethodParameters | ||
|LibraryHandle |Long | | |LibraryHandle |Long |DLL handle of the library. | ||
|DeviceID |String | | |DeviceID |String |A string uniquely identifying the device (it's up to device plug-in to write anything here). | ||
|DeviceCaption |String | | |DeviceCaption |String |Title of the device to show in MM UI. | ||
|DeviceDriveLetter |Long |}} | |DeviceDriveLetter |Long |Drive letter of the device (can be -1 if the device doesn't have one).}} | ||
===Method description=== | ===Method description=== | ||
Adds new device for handling by MM. Its icon is shown in the tree then. | |||
===Example code=== | |||
<source lang="vb">See some device plug-in source code for examples.</source> | |||
[[Category:Scripting|{{PAGENAME}}]] | [[Category:Scripting|{{PAGENAME}}]] |
Latest revision as of 13:35, 16 March 2010
CoClass SDBDevice, Interface ISDBDevice
Function DeviceStartEx(LibraryHandle As Long, DeviceID As String, DeviceCaption As String, DeviceDriveLetter As Long) As Long
Parameters
Name | Type | Description |
---|---|---|
LibraryHandle | Long | DLL handle of the library. |
DeviceID | String | A string uniquely identifying the device (it's up to device plug-in to write anything here). |
DeviceCaption | String | Title of the device to show in MM UI. |
DeviceDriveLetter | Long | Drive letter of the device (can be -1 if the device doesn't have one). |
Method description
Adds new device for handling by MM. Its icon is shown in the tree then.
Example code
See some device plug-in source code for examples.