[r34]: / trunk / Display_Escape_PLC / Plc Logic / Application / Types / IOClient / svnobj  Maximize  Restore  History

Download this file

18 lines (16 with data), 1.8 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
TYPE IOClient  EXTENDS Client   :
STRUCT
	ID: INT;
    Name : STRING;
	GUID : STRING;
	
    LockCommands : ARRAY[0..50] OF STRING[25];
	KeyCommands : ARRAY[0..50] OF STRING[25];
	IOCommands : ARRAY[0..50] OF STRING[25];
	MediaCommands : ARRAY[0..50] OF STRING[25];
	ActualState:PACK_ML.State;
    ActualStep:INT;
    Message:STRING;
    ErrorCode:INT;
    ErrorMessage:STRING;	
END_STRUCT
END_TYPE