#include <maxnet_job.h>
Public Attributes |
|
DWORD | size |
The size of the structure, being
sizeof(Job). |
|
DWORD | version |
The structure version information, defined
by _JOB_VERSION. |
|
DWORD | server_pid |
The server Process ID which is used by 3ds
max to check server's health. |
|
DWORD | flags |
The job flags, defined as the following
values:
|
|
HJOB | hJob |
Handle to the job, assigned by the Manager
when a job is created/submitted. |
|
char | name [MAX_PATH] |
The name of the job. |
|
DWORD | filesize |
This variable is used internally when
transferring an archive and specifies its size. |
|
DWORD | filesizeextracted |
This variable is used internally when
transferring an archive and specifies its uncompressed size.
|
|
SYSTEMTIME | submission |
The system time, set when a job is
created/submitted. |
|
SYSTEMTIME | startjob |
The system time, set when a job starts.
|
|
SYSTEMTIME | endjob |
The system time, set when a job is
completed. |
|
int | servercount |
The number of servers defined for the job
(can be 0 if JOB_ALLSERVERS is set). |
|
AlertData | alerts |
The alert notification data structure.
|
|
int | jobtextcount |
The number of JobTextInfo records. |
|
int | firstframe |
The first frame in the range. |
|
int | lastframe |
The last frame in the range. |
|
int | step |
The frame step value (i.e. |
|
int | width |
The frame output dimensions (width /
height). |
|
int | height |
int | frames_completed |
The number of frames completed. |
|
char | priority |
The job priority level. |
|
char | reserved [32] |
Reserved for future use. |
|
union { | |
MaxJob maxJob | |
Specific information about a job pertaining
to 3ds Max. |
|
CombustionJob combustionJob | |
Specific information about a job pertaining
to Combustion. |
|
}; |
DWORD size |
The size of the structure, being sizeof(Job).
DWORD version |
The structure version information, defined by _JOB_VERSION.
DWORD server_pid |
The server Process ID which is used by 3ds max to check server's health.
DWORD flags |
The job flags, defined as the following values:
HJOB hJob |
Handle to the job, assigned by the Manager when a job is created/submitted.
This handle will be read-only after its creation.
char name[MAX_PATH] |
The name of the job.
DWORD filesize |
This variable is used internally when transferring an archive and specifies its size.
Used internally when transferring archive (size of archive file)
DWORD filesizeextracted |
This variable is used internally when transferring an archive and specifies its uncompressed size.
Used internally when transferring archive (size of expanded archive)
SYSTEMTIME submission |
The system time, set when a job is created/submitted.
SYSTEMTIME startjob |
The system time, set when a job starts.
SYSTEMTIME endjob |
The system time, set when a job is completed.
int servercount |
The number of servers defined for the job (can be 0 if JOB_ALLSERVERS is set).
The alert notification data structure.
int jobtextcount |
The number of JobTextInfo records.
int firstframe |
The first frame in the range.
int lastframe |
The last frame in the range.
int step |
int width |
The frame output dimensions (width / height).
int frames_completed |
The number of frames completed.
char priority |
The job priority level.
char reserved[32] |
Reserved for future use.
Specific information about a job pertaining to 3ds Max.
Specific information about a job pertaining to Combustion.
union { ... } |