PROGRAM_EXECUTION_EX
This structure provides extended information about program execution, including line tracking, elapsed time, and associated file name.
BYTE# |
Field Name |
Data Type |
Value |
Remarks |
|---|---|---|---|---|
0 |
|
|
≥ 0 |
Line number currently being executed |
4 |
|
|
s |
Time elapsed since the start of program execution |
8 |
|
|
File name of the DRL program being executed |
Total size: 264 bytes
Defined in: DRFS.h
typedef struct _PROGRAM_EXECUTION_EX
{
/* line number currently executing */
unsigned int _iLineNumber;
/* total elapsed time (seconds) */
float _fElapseTime;
/* DRL program file name */
char _szFile[MAX_STRING_SIZE];
} PROGRAM_EXECUTION_EX, *LPPROGRAM_EXECUTION_EX;