|
MCI_LOAD
The MCI_LOAD command loads a file. Digital-video and video-overlay devices recognize this
command.
MCIERROR mciSendCommand(MCIDEVICEID wDeviceID, MCI_LOAD,
DWORD dwFlags, (DWORD) (LPMCI_LOAD_PARMS) lpLoad);
Parameters
wDeviceID
Device identifier of the MCI device that is to receive the command message.
dwFlags
MCI_NOTIFY, MCI_WAIT, or, for digital-video devices, MCI_TEST. For information
about these flags, see The Wait, Notify, and Test Flags.
lpLoad
Address of an MCI_LOAD_PARMS structure. (Devices with additional parameters might replace this structure
with a device-specific structure. For digital-video devices, the lpLoad parameter points to an MCI_DGV_LOAD_PARMS structure.)
Return Values
Returns zero if successful or an error otherwise.
Remarks
The following additional flag applies to all devices supporting MCI_LOAD:
MCI_LOAD_FILE
The lpfilename member of the structure identified by lpLoad contains an address of a buffer containing the filename.
The following additional flag is used with the overlay device type:
MCI_OVLY_RECT
The rc member of the structure identified by lpLoad contains a valid display rectangle that identifies the area of the video
buffer to update.
For video-overlay devices, the lpLoad parameter points to an MCI_OVLY_LOAD_PARMS structure.
See Also
MCI_DGV_LOAD_PARMS, MCI_LOAD_PARMS, MCI_OVLY_LOAD_PARMS
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
More Online Helps
Win32 Programmer's Reference (win32.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|