Contains miscellaneous types used in Assimp's C API.
More...
Contains miscellaneous types used in Assimp's C API.
Enumerates predefined log streaming destinations.
Logging to these streams can be enabled with a single call to aiAttachPredefinedLogStream().
| Enumerator |
|---|
| FILE |
Stream the log to a file.
|
| STDOUT |
Stream the log to standard output.
|
| STDERR |
Stream the log to standard error.
|
| DEBUGGER |
MSVC only: Stream the log the the debugger (this relies on OutputDebugString from the Win32 SDK).
|
Seek origins (for the virtual file system API).
| Enumerator |
|---|
| SET |
Beginning of the file.
|
| CUR |
Current position of the file pointer.
|
| END |
End of the file.
Offsets must be negative.
|
Standard return type for some library functions.
| Enumerator |
|---|
| SUCCESS |
Indicates that a function was successful.
|
| FAILURE |
Indicates that a function failed.
|
| OUTOFMEMORY |
Indicates that not enough memory was available to perform the requested operation.
|
Initial value:{
FALSE = 0,
TRUE = 1
}
int aiBool
Our own C boolean type.
Definition: cimport.h:89
void(* aiLogStreamCallback)(const char *, char *)
Definition: cimport.h:56
| const size_t assimp::types::MAXLEN = 1024 |