[r35]: / trunk / CODESYS_Control_Win_V3 / Plc Logic / Application / Types / PuzzleClient / svnobj  Maximize  Restore  History

Download this file

24 lines (22 with data), 2.3 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
TYPE PuzzleClient  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];
	MinDuration: TIME;
	MaxDuration: TIME;
	ActualState:PACK_ML.State;
    ActualStep:INT;
    Message:STRING;
    ErrorCode:INT;
    ErrorMessage:STRING;
	Progress: INT;	
	Level: Level; (*1=Beginner, 5=Advanced*)
	Duration: TIME;	
	Mode: Mode;	
END_STRUCT
END_TYPE$