Writes a double word (four bytes) value to the specified port address.
Language
|
Description
|
C/C++
|
void SetPortLong ( HANDLE hPci, ULONG PortAddress, ULONG dwValue);
|
Delphi
|
procedure SetPortLong ( hPci: THandle; PortAddress: Longword; dwValue: Longword ); stdcall;
|
VB
|
Sub SetPortLong ( ByVal hPci As Long, ByVal PortAddress As Long, ByVal dwValue As Long)
|
Parameters:
hPci - the handle returned by a successful call to OpenRapidPci ;
PortAddress - the port address in I/O space
dwValue - specifies a double word to be written to the port.
Return Value : None.
See also :GetPortByte GetPortWord GetPortLong SetPortByte SetPortWord
|