DCB

谁能给我解释一下什么是DCB?
Private type DCB是什么意思?

解决方案 »

  1.   

    DCB是类型名private type是定义类型的语句
      

  2.   

    谁能给我解释一下什么是DCB?
    Private type DCB是什么意思?
    ==================================================
    设备控制块( Device Control Block ),简称DCB...
    在Win95系统中,串行口和串行通信驱动程序是通过一个数据结构进行配置的,这个数据结构被称为设备控制块..............Public Type DCB
            DCBlength As Long
            BaudRate As Long
            fBitFields As Long 'See Comments in Win32API.Txt
            wReserved As Integer
            XonLim As Integer
            XoffLim As Integer
            ByteSize As Byte
            Parity As Byte
            StopBits As Byte
            XonChar As Byte
            XoffChar As Byte
            ErrorChar As Byte
            EofChar As Byte
            EvtChar As Byte
            wReserved1 As Integer 'Reserved; Do Not Use 
    End Type
    参考:
    http://www.mypcera.com/softxue/vb/new/m70.htm