MIL_ID EventId, | //in |
MIL_INT64 InfoType, | //in |
void *UserVarPtr | //out |
This function retrieves information about the event that caused the hook-handler function to be called. This function should only be called within the scope of a classification object hook-handler function call (see MclassHookFunction()).
Specifies the classification object event identifier received by the hook-handler function. See MclassHookFunction() for more information. The event will be of the type passed to the HookType parameter of the hook-handler function.
Specifies the type of information to get.
See the Parameter associations section for possible values that can be specified.
Specifies the address in which to write the requested information. Note that when getting parameter values, the UserVarPtr parameter should be of the same data type as value of the selected parameter.
See the Parameter associations section for possible values that can be returned.
The tables below list possible values for the InfoType parameter and possible values returned to the UserVarPtr parameter.
If the hook-handler function was called due to an M_EPOCH_TRAINED event type on a CNN training context object, the InfoType parameter can be set to one of the values below.
For training (CNN) - retrieving information about a
trained epoch event
|
|||||||||||||||||||||||||||||||||||||||
|
Description | ||||||||||||||||||||||||||||||||||||||
UserVarPtr - Possible values returned |
|||||||||||||||||||||||||||||||||||||||
M_DEV_DATASET_ACCURACY + |
Retrieves the accuracy on the development dataset using the trained context obtained at the end of the epoch. (summarize)Retrieves the accuracy on the development dataset using the trained context obtained at the end of the epoch. (more details...) |
||||||||||||||||||||||||||||||||||||||
UserVarPtr extra info |
Data type info: Data
type: address of a
MIL_DOUBLE
Data type info: Data
type: address of a
MIL_DOUBLE
|
||||||||||||||||||||||||||||||||||||||
0.0 <= Value <= 100.0 |
Specifies the accuracy on the development dataset, as a percentage. |
||||||||||||||||||||||||||||||||||||||
M_DEV_DATASET_CONFUSION_MATRIX + |
Retrieves an array that represents the confusion matrix calculated using the development dataset. (summarize)Retrieves an array that represents the confusion matrix calculated using the development dataset. (more details...) |
||||||||||||||||||||||||||||||||||||||
UserVarPtr extra info |
Data type info: Data
type: array of type MIL_INT [optionally, in C++: a
reference to a std::vector<MIL_INT>
] MORE
Data type info: Data
type: array of type MIL_INT [optionally, in C++: a
reference to a std::vector<MIL_INT>
] MORE
|
||||||||||||||||||||||||||||||||||||||
M_DEV_DATASET_CONFUSION_MATRIX_SIZE_X + |
Retrieves the X-dimension (number of rows) of the confusion matrix calculated using the development dataset. (summarize)Retrieves the X-dimension (number of rows) of the confusion matrix calculated using the development dataset. (more details...) |
||||||||||||||||||||||||||||||||||||||
UserVarPtr extra info |
Data type info: Data
type: address of a MIL_DOUBLE
MORE
Data type info: Data
type: address of a MIL_DOUBLE
MORE
|
||||||||||||||||||||||||||||||||||||||
Value >= 1 |
Specifies the number of rows in the confusion matrix. |
||||||||||||||||||||||||||||||||||||||
M_DEV_DATASET_CONFUSION_MATRIX_SIZE_Y + |
Retrieves the Y-dimension (number of columns) of the confusion matrix calculated using the development dataset. (summarize)Retrieves the Y-dimension (number of columns) of the confusion matrix calculated using the development dataset. (more details...) |
||||||||||||||||||||||||||||||||||||||
UserVarPtr extra info |
Data type info: Data
type: address of a MIL_DOUBLE
MORE
Data type info: Data
type: address of a MIL_DOUBLE
MORE
|
||||||||||||||||||||||||||||||||||||||
Value >= 1 |
Specifies the number of columns in the confusion matrix. |
||||||||||||||||||||||||||||||||||||||
M_DEV_DATASET_EPOCH_ERROR_ENTRIES + |
Retrieves the array containing the MIL_UUIDs of each image in the development dataset that could not be loaded. (summarize)Retrieves the array containing the MIL_UUIDs of each image in the development dataset that could not be loaded. (more details...) |
||||||||||||||||||||||||||||||||||||||
UserVarPtr extra info |
Data type info: Data
type: array of type MIL_UUID [optionally, in C++: a
reference to a std::vector<MIL_UUID>
] MORE
Data type info: Data
type: array of type MIL_UUID [optionally, in C++: a
reference to a std::vector<MIL_UUID>
] MORE
|
||||||||||||||||||||||||||||||||||||||
M_DEV_DATASET_ERROR_RATE |
Retrieves the error rate on the development dataset using the trained context obtained at the end of the epoch. (summarize)Retrieves the error rate on the development dataset using the trained context obtained at the end of the epoch. (more details...) |
||||||||||||||||||||||||||||||||||||||
UserVarPtr extra info |
Data type info: Data
type: address of a
MIL_DOUBLE
Data type info: Data
type: address of a
MIL_DOUBLE
|
||||||||||||||||||||||||||||||||||||||
0.0 <= Value <= 100.0 |
Specifies the error on the development dataset, as a percentage. |
||||||||||||||||||||||||||||||||||||||
M_DEV_DATASET_USED_ENTRIES + |
Retrieves the array that contains the MIL_UUID of each image in the development dataset used during training. (summarize)Retrieves the array that contains the MIL_UUID of each image in the development dataset used during training. (more details...) |
||||||||||||||||||||||||||||||||||||||
UserVarPtr extra info |
Data type info: Data
type: array of type MIL_UUID [optionally, in C++: a
reference to a std::vector<MIL_UUID>
] MORE
Data type info: Data
type: array of type MIL_UUID [optionally, in C++: a
reference to a std::vector<MIL_UUID>
] MORE
|
||||||||||||||||||||||||||||||||||||||
M_TRAIN_DATASET_ACCURACY |
Retrieves the accuracy of the training dataset using the trained context obtained at the end of the epoch. (summarize)Retrieves the accuracy of the training dataset using the trained context obtained at the end of the epoch. (more details...) |
||||||||||||||||||||||||||||||||||||||
UserVarPtr extra info |
Data type info: Data
type: address of a
MIL_DOUBLE
Data type info: Data
type: address of a
MIL_DOUBLE
|
||||||||||||||||||||||||||||||||||||||
0.0 <= Value <= 100.0 |
Specifies the accuracy of the training dataset, as a percentage. |
||||||||||||||||||||||||||||||||||||||
M_TRAIN_DATASET_CONFUSION_MATRIX + |
Retrieves an array that represents the confusion matrix calculated using the training dataset. (summarize)Retrieves an array that represents the confusion matrix calculated using the training dataset. (more details...) |
||||||||||||||||||||||||||||||||||||||
UserVarPtr extra info |
Data type info: Data
type: array of type MIL_INT [optionally, in C++: a
reference to a std::vector<MIL_INT>
] MORE
Data type info: Data
type: array of type MIL_INT [optionally, in C++: a
reference to a std::vector<MIL_INT>
] MORE
|
||||||||||||||||||||||||||||||||||||||
M_TRAIN_DATASET_CONFUSION_MATRIX_SIZE_X + |
Retrieves the X-dimension (number of rows) of the confusion matrix calculated using the training dataset. (summarize)Retrieves the X-dimension (number of rows) of the confusion matrix calculated using the training dataset. (more details...) |
||||||||||||||||||||||||||||||||||||||
UserVarPtr extra info |
Data type info: Data
type: address of a MIL_DOUBLE
MORE
Data type info: Data
type: address of a MIL_DOUBLE
MORE
|
||||||||||||||||||||||||||||||||||||||
Value >= 1 |
Specifies the number of rows in the confusion matrix. |
||||||||||||||||||||||||||||||||||||||
M_TRAIN_DATASET_CONFUSION_MATRIX_SIZE_Y + |
Retrieves the Y-dimension (number of columns) of the confusion matrix calculated using the training dataset. (summarize)Retrieves the Y-dimension (number of columns) of the confusion matrix calculated using the training dataset. (more details...) |
||||||||||||||||||||||||||||||||||||||
UserVarPtr extra info |
Data type info: Data
type: address of a MIL_DOUBLE
MORE
Data type info: Data
type: address of a MIL_DOUBLE
MORE
|
||||||||||||||||||||||||||||||||||||||
Value >= 1 |
Specifies the number of columns in the confusion matrix. |
||||||||||||||||||||||||||||||||||||||
M_TRAIN_DATASET_EPOCH_ERROR_ENTRIES + |
Retrieves the array containing the MIL_UUIDs of each image in the training dataset that could not be loaded. (summarize)Retrieves the array containing the MIL_UUIDs of each image in the training dataset that could not be loaded. (more details...) |
||||||||||||||||||||||||||||||||||||||
UserVarPtr extra info |
Data type info: Data
type: array of type MIL_UUID [optionally, in C++: a
reference to a std::vector<MIL_UUID>
] MORE
Data type info: Data
type: array of type MIL_UUID [optionally, in C++: a
reference to a std::vector<MIL_UUID>
] MORE
|
||||||||||||||||||||||||||||||||||||||
M_TRAIN_DATASET_ERROR_RATE |
Retrieves the error rate of the training dataset using the trained context obtained at the end of the epoch. (summarize)Retrieves the error rate of the training dataset using the trained context obtained at the end of the epoch. (more details...) |
||||||||||||||||||||||||||||||||||||||
UserVarPtr extra info |
Data type info: Data
type: address of a
MIL_DOUBLE
Data type info: Data
type: address of a
MIL_DOUBLE
|
||||||||||||||||||||||||||||||||||||||
0.0 <= Value <= 100.0 |
Specifies the error of the training dataset, as a percentage. |
||||||||||||||||||||||||||||||||||||||
M_TRAIN_DATASET_USED_ENTRIES + |
Retrieves the array that contains the MIL_UUID of each image in the training dataset used during the training phase. (summarize)Retrieves the array that contains the MIL_UUID of each image in the training dataset used during the training phase. (more details...) |
||||||||||||||||||||||||||||||||||||||
UserVarPtr extra info |
Data type info: Data
type: array of type MIL_UUID [optionally, in C++: a
reference to a std::vector<MIL_UUID>
] MORE
Data type info: Data
type: array of type MIL_UUID [optionally, in C++: a
reference to a std::vector<MIL_UUID>
] MORE
|
||||||||||||||||||||||||||||||||||||||
M_TRAINED_CNN_PARAMETERS_UPDATED + |
Retrieves whether the current CNN parameters are up to date. (summarize)Retrieves whether the current CNN parameters are up to date. (more details...) |
||||||||||||||||||||||||||||||||||||||
UserVarPtr extra info |
Data type info: Data
type: address of a MIL_DOUBLE
MORE
Data type info: Data
type: address of a MIL_DOUBLE
MORE
|
||||||||||||||||||||||||||||||||||||||
M_FALSE |
Specifies that the current CNN parameters are not up to date. |
||||||||||||||||||||||||||||||||||||||
M_TRUE |
Specifies that the current CNN parameters are up to date. |
If the hook-handler function was called due to an M_MINI_BATCH_TRAINED event type on a CNN training context object, the InfoType parameter can be set to one of the values below.
For training (CNN) - retrieving information about a
trained mini-batch event
|
|||||||||||||||||||||||||||||||||||||||
|
Description | ||||||||||||||||||||||||||||||||||||||
UserVarPtr - Possible values returned |
|||||||||||||||||||||||||||||||||||||||
M_MINI_BATCH_INDEX + |
Retrieves the index of the last mini-batch. (summarize)Retrieves the index of the last mini-batch. (more details...) |
||||||||||||||||||||||||||||||||||||||
UserVarPtr extra info |
Data type info: Data
type: address of a MIL_DOUBLE
MORE
Data type info: Data
type: address of a MIL_DOUBLE
MORE
|
||||||||||||||||||||||||||||||||||||||
M_MINI_BATCH_LOSS + |
Retrieves the loss at the end of training a mini-batch. You can use the loss to evaluate the lack of confidence (doubt) associated with the training. (summarize)Retrieves the loss at the end of training a mini-batch. (more details...) |
||||||||||||||||||||||||||||||||||||||
UserVarPtr extra info |
Data type info: Data
type: address of a
MIL_DOUBLE
Data type info: Data
type: address of a
MIL_DOUBLE
|
If the hook-handler function was called due to an M_EPOCH_TRAINED or an M_MINI_BATCH_TRAINED event type on a CNN training context object, the InfoType parameter can be set to one of the values below.
For training (CNN) - retrieving information about a
trained epoch or mini-batch event
|
|||||||||||||||||||||||||||||||||||||||
|
Description | ||||||||||||||||||||||||||||||||||||||
UserVarPtr - Possible values returned |
|||||||||||||||||||||||||||||||||||||||
M_EPOCH_INDEX + |
Retrieves the index of the last epoch. (summarize)Retrieves the index of the last epoch. (more details...) |
||||||||||||||||||||||||||||||||||||||
UserVarPtr extra info |
Data type info: Data
type: address of a MIL_DOUBLE
MORE
Data type info: Data
type: address of a MIL_DOUBLE
MORE
|
||||||||||||||||||||||||||||||||||||||
M_MINI_BATCH_PER_EPOCH + |
Retrieves the number of mini-batches per epoch. (summarize)Retrieves the number of mini-batches per epoch. (more details...) |
||||||||||||||||||||||||||||||||||||||
UserVarPtr extra info |
Data type info: Data
type: address of a MIL_DOUBLE
MORE
Data type info: Data
type: address of a MIL_DOUBLE
MORE
|
If the hook-handler function was called due to an M_TREE_TRAINED event type on a tree ensemble training context object, the InfoType parameter can be set to one of the values below.
Note, bagging information is typically unreliable if your training dataset has augmented entries.
For training (tree ensemble) - retrieving information
about a trained tree event
|
|||||||||||||||||||||||||||||||||||||||
|
Description | ||||||||||||||||||||||||||||||||||||||
UserVarPtr - Possible values returned |
|||||||||||||||||||||||||||||||||||||||
M_TREE_DEPTH_ACHIEVED + |
Retrieves the tree depth of the current tree. The current tree is equivalent to the last tree added to the tree ensemble. (summarize)Retrieves the tree depth of the current tree. (more details...) |
||||||||||||||||||||||||||||||||||||||
UserVarPtr extra info |
Data type info: Data
type: address of a MIL_DOUBLE
MORE
Data type info: Data
type: address of a MIL_DOUBLE
MORE
|
||||||||||||||||||||||||||||||||||||||
M_TREE_INDEX + |
Retrieves the index of the tree being trained. (summarize)Retrieves the index of the tree being trained. (more details...) |
||||||||||||||||||||||||||||||||||||||
UserVarPtr extra info |
Data type info: Data
type: address of a MIL_DOUBLE
MORE
Data type info: Data
type: address of a MIL_DOUBLE
MORE
|
||||||||||||||||||||||||||||||||||||||
M_TREE_NUMBER_OF_LEAF_NODES_ACHIEVED + |
Retrieves the number of leaf nodes of the current tree. The current tree is equivalent to the last tree added to the tree ensemble. (summarize)Retrieves the number of leaf nodes of the current tree. (more details...) |
||||||||||||||||||||||||||||||||||||||
UserVarPtr extra info |
Data type info: Data
type: address of a MIL_DOUBLE
MORE
Data type info: Data
type: address of a MIL_DOUBLE
MORE
|
If the hook-handler function was called due to an M_EPOCH_TRAINED, M_MINI_BATCH_TRAINED, or M_TREE_TRAINED event type on a training context object, the InfoType parameter can be set to one of the values below. Note, M_EPOCH_TRAINED and M_MINI_BATCH_TRAINED apply when training a CNN classifier, while M_TREE_TRAINED applies when training a tree ensemble classifier.
For training (CNN or tree ensemble) - retrieving
information about a trained epoch, mini-batch, or tree
event
|
|||||||||||||||||||||||||||||||||||||||
|
Description | ||||||||||||||||||||||||||||||||||||||
UserVarPtr - Possible values returned |
|||||||||||||||||||||||||||||||||||||||
M_DEV_DATASET_ID + |
Retrieves the identifier of the development dataset. (summarize)Retrieves the identifier of the development dataset. (more details...) |
||||||||||||||||||||||||||||||||||||||
UserVarPtr extra info |
Data type info: Data
type: address of a MIL_ID
Data type info: Data
type: address of a MIL_ID
|
||||||||||||||||||||||||||||||||||||||
M_RESULT_ID + |
Retrieves the identifier of the result context. (summarize)Retrieves the identifier of the result context. (more details...) |
||||||||||||||||||||||||||||||||||||||
UserVarPtr extra info |
Data type info: Data
type: address of a MIL_ID
Data type info: Data
type: address of a MIL_ID
|
||||||||||||||||||||||||||||||||||||||
M_TRAIN_CONTEXT_ID + |
Retrieves the identifier of the training context. (summarize)Retrieves the identifier of the training context. (more details...) |
||||||||||||||||||||||||||||||||||||||
UserVarPtr extra info |
Data type info: Data
type: address of a MIL_ID
Data type info: Data
type: address of a MIL_ID
|
||||||||||||||||||||||||||||||||||||||
M_TRAIN_DATASET_ID + |
Retrieves the identifier of the training dataset. (summarize)Retrieves the identifier of the training dataset. (more details...) |
||||||||||||||||||||||||||||||||||||||
UserVarPtr extra info |
Data type info: Data
type: address of a MIL_ID
Data type info: Data
type: address of a MIL_ID
|
If the hook-handler function was called due to an M_PREDICT_ENTRY event type on a trained CNN or tree ensemble classifier context object used to predict dataset entries (MclassPredict() with ContextClassId), the InfoType parameter can be set to one of the values below.
For prediction (CNN or tree ensemble) - retrieving
information about a predict entry event
|
|||||||||||||||||||||||||||||||||||||||
|
Description | ||||||||||||||||||||||||||||||||||||||
UserVarPtr - Possible values returned |
|||||||||||||||||||||||||||||||||||||||
M_BEST_CLASS_INDEX + |
Retrieves the index of the class with the highest score, for the last entry being predicted. (summarize)Retrieves the index of the class with the highest score, for the last entry being predicted. (more details...) |
||||||||||||||||||||||||||||||||||||||
UserVarPtr extra info |
Data type info: Data
type: address of a MIL_DOUBLE
MORE
Data type info: Data
type: address of a MIL_DOUBLE
MORE
|
||||||||||||||||||||||||||||||||||||||
M_ENTRY_KEY |
Retrieves the key of the last entry being predicted. (summarize)Retrieves the key of the last entry being predicted. (more details...) |
||||||||||||||||||||||||||||||||||||||
UserVarPtr extra info |
Data type info: Data
type: address of a MIL_UUID
Data type info: Data
type: address of a MIL_UUID
|
||||||||||||||||||||||||||||||||||||||
M_INPUT_DATASET_ID + |
Retrieves the identifier of the dataset whose entries get predicted (MclassPredict() with TargetMilObjectId). (summarize)Retrieves the identifier of the dataset whose entries get predicted (MclassPredict() with TargetMilObjectId). (more details...) |
||||||||||||||||||||||||||||||||||||||
UserVarPtr extra info |
Data type info: Data
type: address of a MIL_DOUBLE
MORE
Data type info: Data
type: address of a MIL_DOUBLE
MORE
|
||||||||||||||||||||||||||||||||||||||
M_NUMBER_OF_ENTRIES_IN_ERROR + |
Retrieves the current number of entries that could not be predicted. (summarize)Retrieves the current number of entries that could not be predicted. (more details...) |
||||||||||||||||||||||||||||||||||||||
UserVarPtr extra info |
Data type info: Data
type: address of a MIL_DOUBLE
MORE
Data type info: Data
type: address of a MIL_DOUBLE
MORE
|
||||||||||||||||||||||||||||||||||||||
M_NUMBER_OF_PREDICTED_ENTRIES + |
Retrieves the current number of entries that were predicted. (summarize)Retrieves the current number of entries that were predicted. (more details...) |
||||||||||||||||||||||||||||||||||||||
UserVarPtr extra info |
Data type info: Data
type: address of a MIL_DOUBLE
MORE
Data type info: Data
type: address of a MIL_DOUBLE
MORE
|
||||||||||||||||||||||||||||||||||||||
M_OUTPUT_DATASET_ID + |
Retrieves the identifier of the dataset in which the entries and their predictions are written (MclassPredict() with DatasetContextOrResultClassId). (summarize)Retrieves the identifier of the dataset in which the entries and their predictions are written (MclassPredict() with DatasetContextOrResultClassId). (more details...) |
||||||||||||||||||||||||||||||||||||||
UserVarPtr extra info |
Data type info: Data
type: address of a MIL_DOUBLE
MORE
Data type info: Data
type: address of a MIL_DOUBLE
MORE
|
||||||||||||||||||||||||||||||||||||||
M_PREDICT_CONTEXT_ID + |
Retrieves the identifier of the trained classifier context used to predict dataset entries (MclassPredict() with ContextClassId). (summarize)Retrieves the identifier of the trained classifier context used to predict dataset entries (MclassPredict() with ContextClassId). (more details...) |
||||||||||||||||||||||||||||||||||||||
UserVarPtr extra info |
Data type info: Data
type: address of a MIL_DOUBLE
MORE
Data type info: Data
type: address of a MIL_DOUBLE
MORE
|
||||||||||||||||||||||||||||||||||||||
M_PREDICT_SCORE + |
Retrieves the highest class score of the last entry being predicted. (summarize)Retrieves the highest class score of the last entry being predicted. (more details...) |
||||||||||||||||||||||||||||||||||||||
UserVarPtr extra info |
Data type info: Data
type: address of a
MIL_DOUBLE
Data type info: Data
type: address of a
MIL_DOUBLE
|
||||||||||||||||||||||||||||||||||||||
M_PREDICT_SCORE_AVERAGE + |
Retrieves the average prediction score of the predicted entries. (summarize)Retrieves the average prediction score of the predicted entries. (more details...) |
||||||||||||||||||||||||||||||||||||||
UserVarPtr extra info |
Data type info: Data
type: address of a
MIL_DOUBLE
Data type info: Data
type: address of a
MIL_DOUBLE
|
||||||||||||||||||||||||||||||||||||||
M_PREDICT_SCORE_MAX + |
Retrieves the maximum prediction score of the predicted entries. (summarize)Retrieves the maximum prediction score of the predicted entries. (more details...) |
||||||||||||||||||||||||||||||||||||||
UserVarPtr extra info |
Data type info: Data
type: address of a
MIL_DOUBLE
Data type info: Data
type: address of a
MIL_DOUBLE
|
||||||||||||||||||||||||||||||||||||||
M_PREDICT_SCORE_MIN + |
Retrieves the minimum prediction score of predicted entries. (summarize)Retrieves the minimum prediction score of predicted entries. (more details...) |
||||||||||||||||||||||||||||||||||||||
UserVarPtr extra info |
Data type info:
Data type: address of a
MIL_DOUBLE
Data type info:
Data type: address of a
MIL_DOUBLE
|
||||||||||||||||||||||||||||||||||||||
M_STATUS + |
Retrieves the status of the last predicted entry. (summarize)Retrieves the status of the last predicted entry. (more details...) |
||||||||||||||||||||||||||||||||||||||
UserVarPtr extra info |
Data type info:
Data type: address of a
MIL_DOUBLE MORE
Data type info:
Data type: address of a
MIL_DOUBLE MORE
|
||||||||||||||||||||||||||||||||||||||
M_COMPLETE |
Specifies that the prediction completed. |
||||||||||||||||||||||||||||||||||||||
M_IMAGE_FILE_NOT_FOUND |
Specifies that the image entry is missing. This only applies to predefined CNNs. (summarize)Specifies that the image entry is missing. (more details...) |
||||||||||||||||||||||||||||||||||||||
M_INTERNAL_ERROR |
Specifies that an internal error occurred during the current entry predict. |
||||||||||||||||||||||||||||||||||||||
M_INVALID_NUMBER_OF_FEATURES |
Specifies that the entry has an invalid number of features. This only applies to tree ensembles. (summarize)Specifies that the entry has an invalid number of features. (more details...) |
You can add the following value to the above-mentioned values to determine the required number of elements in the array (array size).
For determining the required number of elements in
the array (array size)
|
|||||||||||||||||||||||||||||||||||||||
InfoType combination value | Description | ||||||||||||||||||||||||||||||||||||||
UserVarPtr - Possible values returned |
|||||||||||||||||||||||||||||||||||||||
M_NB_ELEMENTS |
Retrieves the required array size (number of elements) to store the returned values. (summarize)Retrieves the required array size (number of elements) to store the returned values. (more details...) |
||||||||||||||||||||||||||||||||||||||
UserVarPtr extra info |
Data type info:
Data type: address of a
MIL_DOUBLE MORE
Data type info:
Data type: address of a
MIL_DOUBLE MORE
|
You can add one of the following values to the above-mentioned values to cast the requested information to a required data type.
For specifying the data type
|
|||||||||||||||||||||||||||||||||||||||
InfoType | Description | ||||||||||||||||||||||||||||||||||||||
UserVarPtr - Possible values returned |
|||||||||||||||||||||||||||||||||||||||
M_TYPE_MIL_DOUBLE |
Casts the requested information to a MIL_DOUBLE. (summarize)Casts the requested information to a MIL_DOUBLE. (more details...) |
||||||||||||||||||||||||||||||||||||||
UserVarPtr extra info |
Data type info:
Data type: address of a
MIL_DOUBLE
Data type info:
Data type: address of a
MIL_DOUBLE
|
||||||||||||||||||||||||||||||||||||||
M_TYPE_MIL_ID |
Casts the requested information to a MIL_ID. (summarize)Casts the requested information to a MIL_ID. (more details...) |
||||||||||||||||||||||||||||||||||||||
UserVarPtr extra info |
Data type info:
Data type: address of a
MIL_ID
Data type info:
Data type: address of a
MIL_ID
|
||||||||||||||||||||||||||||||||||||||
M_TYPE_MIL_INT |
Casts the requested information to a MIL_INT. (summarize)Casts the requested information to a MIL_INT. (more details...) |
||||||||||||||||||||||||||||||||||||||
UserVarPtr extra info |
Data type info:
Data type: address of a
MIL_INT
Data type info:
Data type: address of a
MIL_INT
|
||||||||||||||||||||||||||||||||||||||
M_TYPE_MIL_INT32 |
Casts the requested information to a MIL_INT32. (summarize)Casts the requested information to a MIL_INT32. (more details...) |
||||||||||||||||||||||||||||||||||||||
UserVarPtr extra info |
Data type info:
Data type: address of a
MIL_INT32
Data type info:
Data type: address of a
MIL_INT32
|
||||||||||||||||||||||||||||||||||||||
M_TYPE_MIL_INT64 |
Casts the requested information to a MIL_INT64. (summarize)Casts the requested information to a MIL_INT64. (more details...) |
||||||||||||||||||||||||||||||||||||||
UserVarPtr extra info |
Data type info:
Data type: address of a
MIL_INT64
Data type info:
Data type: address of a
MIL_INT64
|
Header | Include mil.h. |
Library | Use mil.lib; milclass.lib. |
DLL | Requires mil.dll; milclass.dll. |