3ds Max C++ API Reference
ConfigurationBlock Struct Reference

#include <ConfigurationBlock.h>

+ Inheritance diagram for ConfigurationBlock:

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 voidoperator new (size_t size)
 Standard new operator used to allocate objects If there is insufficient memory, an exception will be thrown. More...
 
static UtilExport voidoperator 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 voidoperator 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 voidoperator 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 voidoperator 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 voidoperator 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 voidoperator 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 voidoperator 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 voidoperator 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 voidoperator 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 voidoperator new[] (size_t size, int block_type, const char *filename, int line)
 New operator used to allocate arrays of objects. More...
 
static UtilExport voidoperator 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 voidoperator 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 voidoperator 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 voidoperator 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 voidaligned_malloc (size_t size, size_t alignment)
 Allocates memory on a specified alignment boundary. More...
 
static UtilExport voidaligned_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...
 

Detailed Description

See also
Class MaxNetManager, Structure ManagerInfo, Structure ServerInfo, Structure ClientInfo
Remarks
This structure is available in release 4.0 and later only.

This structure is used by the Network Rendering API to store information about the system.

Member Data Documentation

◆ dwTotalPhys

SIZE_T dwTotalPhys

The systems total physical memory, retrieved through GlobalMemoryStatus().

◆ dwNumberOfProcessors

DWORD dwNumberOfProcessors

The number of processors in the system, retrieved through GetSystemInfo().

◆ dwMajorVersion

DWORD dwMajorVersion

The systems major version, retrieved through GetVersionEx().

◆ dwMinorVersion

DWORD dwMinorVersion

The systems minor version, retrieved through GetVersionEx().

◆ dwBuildNumber

DWORD dwBuildNumber

The systems build number, retrieved through GetVersionEx().

◆ dwPlatformId

DWORD dwPlatformId

The systems platform ID, retrieved through GetVersionEx().

◆ szCSDVersion

MCHAR szCSDVersion[128]

The systems CSD version, retrieved through GetVersionEx().

◆ user

MCHAR user[MAX_PATH]

The logged in users name, retrieved through GetUserName().

◆ tempdir

MCHAR tempdir[MAX_PATH]

The temporary directory, retrieved through ExpandEnvironmentStrings().

◆ name

MCHAR name[MAX_PATH]

The name of the computer, retrieved through GetComputerName().

◆ workDisk

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.

◆ disks

DWORD disks

The bit map representing the available disks.

Disk A = 0x1, B = 0x2, C = 0x4, etc.

◆ diskSpace

DWORD diskSpace[26]

The space available on disks in MegaBytes, indexed by drive letter.

Disk A = diskSpace[0], B = diskSpace[1], etc.

◆ mac

BYTE mac[8]

The computer NIC hardware address (00:00:00:00:00:00), which is 6 bytes and 2 padding bytes.

◆ reserved

MCHAR reserved[32]

Reserved for future use.