This reference page is linked to from the following overview
topics: Network
Rendering.
#include <WTypes.h>
#include "..\strbasic.h"
#include "..\maxnet_types.h"
#include "MaxNetExport.h"
Go to the source code of this
file.
Enumerations
|
enum |
MAXNET_PLATFORM
{
MAXNET_PLATFORM_NATIVE = 0,
MAXNET_PLATFORM_32BIT = 32,
MAXNET_PLATFORM_64BIT = 64 } |
Functions
|
MAXNETEXPORT
MaxNetManager
* |
CreateManager
() |
MAXNETEXPORT
void |
DestroyManager
(MaxNetManager
*mgr) |
MAXNETEXPORT
bool |
jobReadMAXProperties
(char *max_filename, Job
*job, CJobText
&jobText) |
MAXNETEXPORT
void |
jobSetJobDefaults
(Job *job) |
MAXNETEXPORT
void |
NumberedFilename
(MCHAR *infile, MCHAR *outfile, int number) |
MAXNETEXPORT
bool |
IsMacNull
(BYTE *addr) |
MAXNETEXPORT
bool |
GetMacAddress
(BYTE *addr) |
MAXNETEXPORT
bool |
MatchMacAddress
(BYTE *addr1, BYTE *addr2) |
MAXNETEXPORT
void |
Mac2String
(BYTE *addr, MCHAR *string) |
MAXNETEXPORT
void |
Mac2StringCondensed
(BYTE *addr, MCHAR *string) |
MAXNETEXPORT
void |
StringCondensed2Mac
(MCHAR *string, BYTE *addr) |
MAXNETEXPORT
void |
InitConfigurationInfo
(ConfigurationBlock &cb,
MCHAR workdisk=0) |
MAXNETEXPORT
bool |
MatchServers
(HSERVER srv1,
HSERVER
srv2) |
MAXNETEXPORT
bool |
Maz (MCHAR
*archivename, MCHAR *file_list, DWORD *filesize=0) |
MAXNETEXPORT
bool |
UnMaz (MCHAR
*archivename, MCHAR *output_path) |
MAXNETEXPORT
MCHAR * |
ResString
(int id, MCHAR *buffer=0) |
MAXNETEXPORT
bool |
ConvertOldJobFile
(MCHAR *oldFile, MCHAR *newFile) |
MAXNETEXPORT
MaxNetManager
* |
CreateManager
(int platform) |
MAXNETEXPORT
bool |
ConvertOldJobFile
(MCHAR *oldFile, MCHAR *newFile, int platform) |
Enumeration Type Documentation
- Enumerator:
-
MAXNET_PLATFORM_NATIVE |
|
MAXNET_PLATFORM_32BIT |
|
MAXNET_PLATFORM_64BIT |
|
Definition at line 105 of file Util.h.
Function Documentation
- Parameters:
- MaxNetManager* mgr
Points to the MaxNetManager object to
destroy.
MAXNETEXPORT bool jobReadMAXProperties |
( |
char * |
max_filename, |
|
|
Job
* |
job, |
|
|
CJobText & |
jobText |
|
) |
|
|
- Parameters:
- char* filename
The filename of the 3ds Max scene file (*.max).
Job* job
A pointer to an empty job structure which will be initialized by
the method. Because the function will initialize the structure any
values present prior to calling this method will be reset.
CJobText&
jobText
A reference to an empty CJobText class which will be
initialized by the function. Just like the job structure, any
values present prior to calling this function will be reset.
- Returns:
- TRUE if reading the properties was successful, otherwise
FALSE.
MAXNETEXPORT void jobSetJobDefaults |
( |
Job
* |
job |
) |
|
- Parameters:
- Job *job
The job structure containing the information about the job. See the
Job structure description
for an explanation.
MAXNETEXPORT void NumberedFilename |
( |
MCHAR * |
infile, |
|
|
MCHAR * |
outfile, |
|
|
int |
number |
|
) |
|
|
MAXNETEXPORT bool IsMacNull |
( |
BYTE * |
addr |
) |
|
MAXNETEXPORT bool GetMacAddress |
( |
BYTE * |
addr |
) |
|
MAXNETEXPORT bool MatchMacAddress |
( |
BYTE * |
addr1, |
|
|
BYTE * |
addr2 |
|
) |
|
|
MAXNETEXPORT void Mac2String |
( |
BYTE * |
addr, |
|
|
MCHAR * |
string |
|
) |
|
|
MAXNETEXPORT void Mac2StringCondensed |
( |
BYTE * |
addr, |
|
|
MCHAR * |
string |
|
) |
|
|
MAXNETEXPORT void StringCondensed2Mac |
( |
MCHAR * |
string, |
|
|
BYTE * |
addr |
|
) |
|
|
MAXNETEXPORT bool Maz |
( |
MCHAR * |
archivename, |
|
|
MCHAR * |
file_list, |
|
|
DWORD * |
filesize = 0 |
|
) |
|
|
- Parameters:
- MCHAR* archivename
The full path and filename of the archive you want to create.
MCHAR* file_list
A list of NULL terminated filenames to include in the archive. You
should provide a full path and filename. However, only the file
names will be saved in the archive and all files are going to be
un-archived in the same directory.
An example: file_list[] =
{"c:\\path\\file.maz/0c:\\anotherpath\\maps.tga/0/0"};
DWORD* filesize
Optional pointer to a variable to receive the accumulated size of
all files included in the archive. This is the "uncompressed" size.
You can use this to compute the disk space necessary to uncompress
the archive.
- Returns:
- TRUE if the archive was successfully created, otherwise
FALSE.
MAXNETEXPORT bool UnMaz |
( |
MCHAR * |
archivename, |
|
|
MCHAR * |
output_path |
|
) |
|
|
- Parameters:
- MCHAR* archivename
The full path and filename of the archive you want to
un-archive.
MCHAR* output_path
The path you want the files extracted to.
- Returns:
- TRUE if the archive was successfully extracted, otherwise
FALSE.
MAXNETEXPORT MCHAR* ResString |
( |
int |
id, |
|
|
MCHAR * |
buffer = 0 |
|
) |
|
|
MAXNETEXPORT bool ConvertOldJobFile |
( |
MCHAR * |
oldFile, |
|
|
MCHAR * |
newFile |
|
) |
|
|
MAXNETEXPORT bool ConvertOldJobFile |
( |
MCHAR * |
oldFile, |
|
|
MCHAR * |
newFile, |
|
|
int |
platform |
|
) |
|
|