[DllImportAttribute("Kernel32.dll", ExactSpelling = true, SetLastError = true)]
public static bool TransmitCommChar(
IntPtr hFile,
byte char
)
<DllImportAttribute("Kernel32.dll", ExactSpelling := true, SetLastError := true>]
Public Shared Function TransmitCommChar (
hFile As IntPtr,
char As Byte
) As Boolean
Dim hFile As IntPtr
Dim char As Byte
Dim returnValue As Boolean
returnValue = Kernel32.TransmitCommChar(hFile,
char)
public:
[DllImportAttribute(L"Kernel32.dll", ExactSpelling = true, SetLastError = true)]
static bool TransmitCommChar(
[InAttribute] IntPtr hFile,
unsigned char char
)
[<DllImportAttribute("Kernel32.dll", ExactSpelling = true, SetLastError = true)>]
static member TransmitCommChar :
hFile : IntPtr *
char : byte -> bool
No code example is currently available or this language may not be supported.
[Missing <param name="char"/> documentation for "M:DevCase.Win32.NativeMethods.Kernel32.TransmitCommChar(System.IntPtr,System.Byte)"]