' Remote Execution Custom Control
' (C) Copyright 1994 by Distinct Corporation
' All rights reserved

' actions
Const ACTION_NONE = 0
Const ACTION_CONNECT = 1
Const ACTION_DISCONNECT = 2
Const ACTION_ABORT = 3

' protocols
Const PROTOCOL_REXEC = 0
Const PROTOCOL_RLOGIN = 1
Const PROTOCOL_RSH = 2

' error codes
Const ERR_CANNOT_CONNECT = 1
Const ERR_HOST_NOT_DEFINED = 2
Const ERR_USER_NOT_DEFINED = 3
Const ERR_CHANGE_PROTOCOL = 4
Const ERR_NEED_PASSWORD = 5
Const ERR_IN_ACTION = 6
Const ERR_CONNECT_TO_SEND = 7
Const ERR_CANNOT_SEND = 8
