3ds Max C++ API Reference
|
#include <ConfigurationBlock.h>
Public Attributes | |
SIZE_T | dwTotalPhys |
The systems total physical memory, retrieved through GlobalMemoryStatus(). More... | |
DWORD | dwNumberOfProcessors |
The number of processors in the system, retrieved through GetSystemInfo(). More... | |
DWORD | dwMajorVersion |
The systems major version, retrieved through GetVersionEx(). More... | |
DWORD | dwMinorVersion |
The systems minor version, retrieved through GetVersionEx(). More... | |
DWORD | dwBuildNumber |
The systems build number, retrieved through GetVersionEx(). More... | |
DWORD | dwPlatformId |
The systems platform ID, retrieved through GetVersionEx(). More... | |
MCHAR | szCSDVersion [128] |
The systems CSD version, retrieved through GetVersionEx(). More... | |
MCHAR | user [MAX_PATH] |
The logged in users name, retrieved through GetUserName(). More... | |
MCHAR | tempdir [MAX_PATH] |
The temporary directory, retrieved through ExpandEnvironmentStrings(). More... | |
MCHAR | name [MAX_PATH] |
The name of the computer, retrieved through GetComputerName(). More... | |
MCHAR | workDisk |
The disk, indexed by drive letter, used for server files such as incoming jobs. More... | |
DWORD | disks |
The bit map representing the available disks. More... | |
DWORD | diskSpace [26] |
The space available on disks in MegaBytes, indexed by drive letter. More... | |
BYTE | mac [8] |
The computer NIC hardware address (00:00:00:00:00:00), which is 6 bytes and 2 padding bytes. More... | |
MCHAR | reserved [32] |
Reserved for future use. More... | |
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. More... | |
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. More... | |
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. More... | |
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. More... | |
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. More... | |
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. More... | |
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. More... | |
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. More... | |
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. More... | |
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. More... | |
static UtilExport void * | operator new[] (size_t size, int block_type, const char *filename, int line) |
New operator used to allocate arrays of objects. More... | |
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. More... | |
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. More... | |
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. More... | |
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. More... | |
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. More... | |
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. More... | |
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. More... | |
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. More... | |
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. More... | |
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. More... | |
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. More... | |
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. More... | |
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. More... | |
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. More... | |
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. More... | |
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. More... | |
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. More... | |
static UtilExport void * | operator new (size_t size, void *placement_ptr) |
Placement new operator. More... | |
static UtilExport void | operator delete (void *ptr, void *placement_ptr) |
Placement delete operator. More... | |
static UtilExport void * | aligned_malloc (size_t size, size_t alignment) |
Allocates memory on a specified alignment boundary. More... | |
static UtilExport void * | aligned_realloc (void *ptr, size_t size, size_t alignment) |
Reallocates memory on a specified alignment boundary. More... | |
static UtilExport void | aligned_free (void *ptr) |
Frees a block of memory that was allocated with aligned_malloc/aligned_realloc. More... | |
SIZE_T dwTotalPhys |
The systems total physical memory, retrieved through GlobalMemoryStatus().
DWORD dwNumberOfProcessors |
The number of processors in the system, retrieved through GetSystemInfo().
DWORD dwMajorVersion |
The systems major version, retrieved through GetVersionEx().
DWORD dwMinorVersion |
The systems minor version, retrieved through GetVersionEx().
DWORD dwBuildNumber |
The systems build number, retrieved through GetVersionEx().
DWORD dwPlatformId |
The systems platform ID, retrieved through GetVersionEx().
MCHAR szCSDVersion[128] |
The systems CSD version, retrieved through GetVersionEx().
MCHAR user[MAX_PATH] |
The logged in users name, retrieved through GetUserName().
MCHAR tempdir[MAX_PATH] |
The temporary directory, retrieved through ExpandEnvironmentStrings().
MCHAR name[MAX_PATH] |
The name of the computer, retrieved through GetComputerName().
MCHAR workDisk |
The disk, indexed by drive letter, used for server files such as incoming jobs.
The index is alphabetical, disk A = 0, disk B = 1, etc.
DWORD disks |
The bit map representing the available disks.
Disk A = 0x1, B = 0x2, C = 0x4, etc.
DWORD diskSpace[26] |
The space available on disks in MegaBytes, indexed by drive letter.
Disk A = diskSpace[0], B = diskSpace[1], etc.
BYTE mac[8] |
The computer NIC hardware address (00:00:00:00:00:00), which is 6 bytes and 2 padding bytes.
MCHAR reserved[32] |
Reserved for future use.