?? dlportio.bas
字號:
Attribute VB_Name = "DLPortIO"
'****************************************************************************
'* @doc INTERNAL
'* @module dlportio.bas |
'*
'* DriverLINX Port I/O Driver Interface
'* <cp> Copyright 1996 Scientific Software Tools, Inc.<nl>
'* All Rights Reserved.<nl>
'* DriverLINX is a registered trademark of Scientific Software Tools, Inc.
'*
'* Win32 Prototypes for DriverLINX Port I/O
'*
'* Please report bugs to:
'* Scientific Software Tools, Inc.
'* 19 East Central Avenue
'* Paoli, PA 19301
'* USA
'* E-mail: support@sstnet.com
'* Web: www.sstnet.com
'*
'* @comm
'* Author: RoyF<nl>
'* Date: 09/26/96 14:08:58
'*
'* @group Revision History
'* @comm
'* $Revision: 1 $
'* <nl>
'* $Log: /DLPortIO/API/DLPORTIO.BAS $
'
' 1 9/27/96 2:03p Royf
' Initial revision.
'*
'****************************************************************************
Public Declare Function DlPortReadPortUchar Lib "dlportio.dll" (ByVal Port As Long) As Byte
Public Declare Function DlPortReadPortUshort Lib "dlportio.dll" (ByVal Port As Long) As Integer
Public Declare Function DlPortReadPortUlong Lib "dlportio.dll" (ByVal Port As Long) As Long
Public Declare Sub DlPortReadPortBufferUchar Lib "dlportio.dll" (ByVal Port As Long, Buffer As Any, ByVal Count As Long)
Public Declare Sub DlPortReadPortBufferUshort Lib "dlportio.dll" (ByVal Port As Long, Buffer As Any, ByVal Count As Long)
Public Declare Sub DlPortReadPortBufferUlong Lib "dlportio.dll" (ByVal Port As Long, Buffer As Any, ByVal Count As Long)
Public Declare Sub DlPortWritePortUchar Lib "dlportio.dll" (ByVal Port As Long, ByVal Value As Byte)
Public Declare Sub DlPortWritePortUshort Lib "dlportio.dll" (ByVal Port As Long, ByVal Value As Integer)
Public Declare Sub DlPortWritePortUlong Lib "dlportio.dll" (ByVal Port As Long, ByVal Value As Long)
Public Declare Sub DlPortWritePortBufferUchar Lib "dlportio.dll" (ByVal Port As Long, Buffer As Any, ByVal Count As Long)
Public Declare Sub DlPortWritePortBufferUshort Lib "dlportio.dll" (ByVal Port As Long, Buffer As Any, ByVal Count As Long)
Public Declare Sub DlPortWritePortBufferUlong Lib "dlportio.dll" (ByVal Port As Long, Buffer As Any, ByVal Count As Long)
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -