Write the PCI command register.
Language
|
Description
|
C/C++
|
void WritePciCommandReg ( HANDLE hPci, USHORT CommandRegValue );
|
Delphi
|
procedure WritePciCommandReg ( hPci: THandle, CommandRegValue : Word ); stdcall;
|
VB
|
Sub WritePciCommandReg ( ByVal hPci As Long, ByVal CommandRegValue As Integer )
|
Parameters:
hPci - the handle returned by a successful call to OpenRapidPci
CommandRegValue - new value of the command register to write
Comments:
Use WritePciCommandRegBits function to set or clear individual bits. Refer to the PCI specification for more details.
|