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