3ds Max C++ API Reference
I/O Results

Enumerations

enum  IOResult : int { IO_OK = 0 , IO_END = 1 , IO_ERROR = 2 , IO_INTERRUPT = 3 }
 

Detailed Description

Enumeration Type Documentation

◆ IOResult

enum IOResult : int
Enumerator
IO_OK 

The result was acceptable - no errors.

IO_END 

Indicates the end of the chunks at a certain level have been reached.

It is used as a signal to terminates the processing of chunks at that level. Returned from ILoad::OpenChunk()

IO_ERROR 

Returned when an error occurred.

Note that the plug-in should not put up a message box if a read error occurred. It should simply return the error status. This prevents a excess of messages from appearing.

IO_INTERRUPT 

Returned when clicking 'Esc' in busy auto-save process.

It is used as a signal to terminates the busy process.

193 {
195  IO_OK = 0,
199  IO_END = 1,
203  IO_ERROR = 2,
206  IO_INTERRUPT = 3
207 };
@ IO_ERROR
Returned when an error occurred.
Definition: maxtypes.h:203
@ IO_OK
The result was acceptable - no errors.
Definition: maxtypes.h:195
@ IO_INTERRUPT
Returned when clicking 'Esc' in busy auto-save process.
Definition: maxtypes.h:206
@ IO_END
Indicates the end of the chunks at a certain level have been reached.
Definition: maxtypes.h:199