Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

21 lines
623 B

/****************************************************************************
*
* comm.h
*
* Copyright (c) 1993 Microsoft Corporation. All Rights Reserved
*
* MCI Device Driver for the Pioneer 4200 Videodisc Player
*
* Win32/Win16 specific comms definitions
*
***************************************************************************/
#ifdef WIN32
INT WINAPI OpenComm(LPCTSTR, UINT, UINT);
#define CloseComm(h) (INT)!CloseHandle((HANDLE)h)
INT ReadComm(int, void FAR*, int);
INT WriteComm(int, const void FAR*, int);
INT GetCommError(int, COMSTAT FAR* );
#endif /* !WIN32 */