3ds Max C++ API Reference
|
#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. | |
MCHAR | 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. | |
MCHAR | priority |
The job priority level. | |
MCHAR | reserved [32] |
Reserved for future use. | |
MaxJob | maxJob |
Specific information about a job pertaining to 3ds Max. | |
Additional Inherited Members | |
Static Public Member Functions inherited from MaxHeapOperators | |
static UtilExport void * | operator new (size_t size) |
Standard new operator used to allocate objects If there is insufficient memory, an exception will be thrown. | |
static UtilExport void * | operator new (size_t size, const std::nothrow_t &e) |
Standard new operator used to allocate objects if there is insufficient memory, NULL will be returned. | |
static UtilExport void * | operator new (size_t size, const char *filename, int line) |
New operator used to allocate objects that takes the filename and line number where the new was called If there is insufficient memory, an exception will be thrown. | |
static UtilExport void * | operator new (size_t size, int block_type, const char *filename, int line) |
New operator used to allocate objects that takes the type of memory, filename and line number where the new was called If there is insufficient memory, an exception will be thrown. | |
static UtilExport void * | operator new (size_t size, const std::nothrow_t &e, const char *filename, int line) |
New operator used to allocate objects that takes the filename and line number where the new was called If there is insufficient memory, NULL will be returned. | |
static UtilExport void * | operator new (size_t size, unsigned long flags) |
New operator used to allocate objects that takes extra flags to specify special operations If there is insufficient memory, an exception will be thrown. | |
static UtilExport void * | operator new (size_t size, const std::nothrow_t &e, unsigned long flags) |
New operator used to allocate objects that takes extra flags to specify special operations If there is insufficient memory, NULL will be returned. | |
static UtilExport void * | operator new[] (size_t size) |
New operator used to allocate arrays of objects If there is insufficient memory, an exception will be thrown. | |
static UtilExport void * | operator new[] (size_t size, const std::nothrow_t &e) |
New operator used to allocate arrays of objects If there is insufficient memory, NULL will be returned. | |
static UtilExport void * | operator new[] (size_t size, const char *filename, int line) |
New operator used to allocate arrays of objects If there is insufficient memory, an exception will be thrown. | |
static UtilExport void * | operator new[] (size_t size, int block_type, const char *filename, int line) |
New operator used to allocate arrays of objects. | |
static UtilExport void * | operator new[] (size_t size, const std::nothrow_t &e, const char *filename, int line) |
New operator used to allocate arrays of objects If there is insufficient memory, NULL will be returned. | |
static UtilExport void * | operator new[] (size_t size, unsigned long flags) |
New operator used to allocate arrays of objects If there is insufficient memory, an exception will be thrown. | |
static UtilExport void * | operator new[] (size_t size, const std::nothrow_t &e, unsigned long flags) |
New operator used to allocate arrays of objects If there is insufficient memory, NULL will be returned. | |
static UtilExport void | operator delete (void *ptr) |
Standard delete operator used to deallocate an object If the pointer is invalid, an exception will be thrown. | |
static UtilExport void | operator delete (void *ptr, const std::nothrow_t &e) |
Standard delete operator used to deallocate an object If the pointer is invalid, nothing will happen. | |
static UtilExport void | operator delete (void *ptr, const char *filename, int line) |
Delete operator used to deallocate an object that takes the filename and line number where the delete was called If the pointer is invalid, an exception will be thrown. | |
static UtilExport void | operator delete (void *ptr, int block_type, const char *filename, int line) |
Delete operator used to deallocate an object that takes the type of memory, filename and line number where the delete was called If the pointer is invalid, an exception will be thrown. | |
static UtilExport void | operator delete (void *ptr, const std::nothrow_t &e, const char *filename, int line) |
Delete operator used to deallocate an object that takes the filename and line number where the delete was called If the pointer is invalid, nothing will happen. | |
static UtilExport void | operator delete (void *ptr, unsigned long flags) |
Delete operator used to deallocate an object that takes extra flags to specify special operations If the pointer is invalid, an exception will be thrown. | |
static UtilExport void | operator delete (void *ptr, const std::nothrow_t &e, unsigned long flags) |
Delete operator used to deallocate an object that takes extra flags to specify special operations If the pointer is invalid, nothing will happen. | |
static UtilExport void | operator delete[] (void *ptr) |
Standard delete operator used to deallocate an array of objects If the pointer is invalid, an exception will be thrown. | |
static UtilExport void | operator delete[] (void *ptr, const std::nothrow_t &e) |
Standard delete operator used to deallocate an array of objects If the pointer is invalid, nothing will happen. | |
static UtilExport void | operator delete[] (void *ptr, const char *filename, int line) |
Delete operator used to deallocate an array of objects that takes the filename and line number where the delete was called If the pointer is invalid, an exception will be thrown. | |
static UtilExport void | operator delete[] (void *ptr, int block_type, const char *filename, int line) |
Delete operator used to deallocate an array of objects that takes the type of memory, filename and line number where the delete was called If the pointer is invalid, an exception will be thrown. | |
static UtilExport void | operator delete[] (void *ptr, const std::nothrow_t &e, const char *filename, int line) |
Delete operator used to deallocate an array of objects that takes the filename and line number where the delete was called If the pointer is invalid, nothing will happen. | |
static UtilExport void | operator delete[] (void *ptr, unsigned long flags) |
Delete operator used to deallocate an array of objects that takes extra flags to specify special operations If the pointer is invalid, an exception will be thrown. | |
static UtilExport void | operator delete[] (void *ptr, const std::nothrow_t &e, unsigned long flags) |
Delete operator used to deallocate an array of objects that takes extra flags to specify special operations If the pointer is invalid, an exception will be thrown. | |
static UtilExport void * | operator new (size_t size, void *placement_ptr) |
Placement new operator. | |
static UtilExport void | operator delete (void *ptr, void *placement_ptr) |
Placement delete operator. | |
static UtilExport void * | aligned_malloc (size_t size, size_t alignment) |
Allocates memory on a specified alignment boundary. | |
static UtilExport void * | aligned_realloc (void *ptr, size_t size, size_t alignment) |
Reallocates memory on a specified alignment boundary. | |
static UtilExport void | aligned_free (void *ptr) |
Frees a block of memory that was allocated with aligned_malloc/aligned_realloc. | |
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.
MCHAR 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).
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.
every n-th frame).
int width |
The frame output dimensions (width / height).
int height |
int frames_completed |
The number of frames completed.
MCHAR priority |
The job priority level.
MCHAR reserved[32] |
Reserved for future use.