|
HL-HDF
|
#include <pyhlcompat.h>#include "pyhlhdf_common.h"#include "hlhdf.h"#include "hlhdf_alloc.h"#include "hlhdf_private.h"#include "hlhdf_node_private.h"#include "hlhdf_debug.h"#include "hlhdf_defines_private.h"#include "structmember.h"Classes | |
| struct | PyhlNodelist |
| The nodelist object. More... | |
| struct | PyhlNode |
| The pyhl node object. More... | |
| struct | PyhlFileCreationProperty |
| The pyhl file creation property object. More... | |
| struct | PyhlCompression |
| The pyhl compression property object. More... | |
Macros | |
| #define | NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION |
| #define | HLHDF_PYMODULE_WITH_IMPORT_ARRAY |
| You have to define HLHDF_PYMODULE_WITH_IMPORT_ARRAY to be able to force arrayobject to be correctly imported. | |
| #define | raiseException(type, msg) {PyErr_SetString(type,msg);return NULL;} |
| Sets an error type and error message, then returns NULL. | |
| #define | setException(type, msg) {PyErr_SetString(type,msg);} |
| Sets an error type and error message. | |
| #define | PyhlNodelist_Check(op) (Py_TYPE(op) == &PyhlNodelist_Type) |
| Checks if the object is a Pyhl (nodelist) type. | |
| #define | PyhlNode_Check(op) (Py_TYPE(op) == &PyhlNode_Type) |
| Checks if the object is a Pyhl node type. | |
| #define | PyhlFileCreationProperty_Check(op) (Py_TYPE(op) == &PyhlFileCreationProperty_Type) |
| Checks if the object is a Pyhl file creation property object. | |
| #define | PyhlCompression_Check(op) (Py_TYPE(op) == &PyhlCompression_Type) |
| Checks if the object is a pyhl compression object. | |
Functions | |
| MOD_INIT (_pyhl) | |
| Initializes PyHL. | |
| #define HLHDF_PYMODULE_WITH_IMPORT_ARRAY |
You have to define HLHDF_PYMODULE_WITH_IMPORT_ARRAY to be able to force arrayobject to be correctly imported.
| #define PyhlCompression_Check | ( | op | ) | (Py_TYPE(op) == &PyhlCompression_Type) |
Checks if the object is a pyhl compression object.
| #define PyhlFileCreationProperty_Check | ( | op | ) | (Py_TYPE(op) == &PyhlFileCreationProperty_Type) |
Checks if the object is a Pyhl file creation property object.
| #define PyhlNode_Check | ( | op | ) | (Py_TYPE(op) == &PyhlNode_Type) |
Checks if the object is a Pyhl node type.
| #define PyhlNodelist_Check | ( | op | ) | (Py_TYPE(op) == &PyhlNodelist_Type) |
Checks if the object is a Pyhl (nodelist) type.
| #define raiseException | ( | type, | |
| msg ) {PyErr_SetString(type,msg);return NULL;} |
Sets an error type and error message, then returns NULL.
| #define setException | ( | type, | |
| msg ) {PyErr_SetString(type,msg);} |
Sets an error type and error message.
| MOD_INIT | ( | _pyhl | ) |
Initializes PyHL.