| Customize Help
| Save Settings

MmeasStream



Function Map
Synopsis
Load, restore, or save a marker from/to a file or a memory stream.
Syntax
void MmeasStream(
MIL_TEXT_PTR MemPtrOrFileName, //in-out
MIL_ID SysId, //in
MIL_INT64 Operation, //in
MIL_INT64 StreamType, //in
MIL_DOUBLE Version, //in
MIL_INT64 ControlFlag, //in
MIL_ID *MarkerMeasIdPtr, //in-out
MIL_INT *SizeByteVarPtr //out
)
Description

This function can load, restore, or save a marker from/to a file or memory stream.

To inquire the number of bytes necessary to save a marker to memory stream, you should first call this function (MmeasStream()) with M_INQUIRE_SIZE_BYTE.

The content saved to memory stream is equivalent to the content saved to file. This function is equivalent to a file saved using MmeasSaveMarker().

You can use this and other MIL stream functions, for example, to save all required MIL objects, as well as any other custom data, for your application to a memory stream. Once in a memory stream, you can write the stream to a single file or transfer it over a network. You are responsible for concatenating the streams and for saving the stream to file.

All the marker characteristics that were in effect when the marker was saved are restored. This function can also save an allocated marker, including all its characteristics, to a specified file or memory stream.

Using MmeasStream(), you can choose to save a backwards-compatible version of the marker object, which will work using a version of MIL that is up to one major release older than the current version (depending on which version is specified). For example, if you allocate a marker object using MIL 10.0 and save it to version 9.0, you can restore this object on a computer where MIL 9.0 is installed. However, all settings and features unique to the higher version will be ignored when restored using the lower version. Besides saving backwards-compatible versions, you can also load or restore marker objects saved using MIL version 7.0 with Processing Pack 1 or above. Settings that do not exist in the lower version will be filled with default values when the marker object is loaded or restored.

Note that this function reference has not been updated for a MIL system added during a MIL update. Refer to the MIL system's release note to see which MIL system’s documentation you should use in its place and any possible differences.
Parameters
This function is not supported on the selected boards.
This function reference has not been updated for the selected MIL system. To show the content of this page, choose a second MIL system; refer to the MIL system's release note to see which MIL system’s documentation to choose and any possible differences.
Parameters
MemPtrOrFileName
Accepts the address of one of the following (see the Parameter associations section for specifics on which is expected):
  • MIL_TEXT_PTR [optionally, in C++: a reference to a MIL_STRING]
  • Optionally, in C++: a reference to a std::vector of type MIL_UINT8

Specifies the file or memory stream.

See the Parameter associations section for possible values that can be returned/specified.

SysId

Specifies the system on which to restore the measurement marker.

See the Parameter associations section for possible values that can be specified.

Operation

Specifies the operation to perform on the measurement marker.

See the Parameter associations section for possible values that can be specified.

StreamType

Specifies the type of stream in which to store/from which to restore the measurement marker. This parameter must be set to one of the following values:

function map For specifying the stream that holds the measurement marker
Click to summarizeValue Description
Click to summarize M_FILE

Specifies a file stream.

Click to summarize M_MEMORY

Specifies a memory stream. You are responsible for allocating a block of memory for the stream.

(summarize)
Version

Specifies the MIL version of the marker object.

See the Parameter associations section for possible values that can be specified.

ControlFlag

Reserved for future expansion. This parameter must be set to M_DEFAULT.

MarkerMeasIdPtr

Specifies the address of the variable in which to write or from which to read the identifier of the marker.

See the Parameter associations section for possible values that can be returned/specified.

SizeByteVarPtr

Specifies the address of the variable in which to write the size of the measurement marker, in bytes.

If the size is not required, you can set this parameter to M_NULL.

Note that the size of a measurement marker will vary depending on the MIL version specified.

The table below lists possible values for the MemPtrOrFileName, SysId, Operation, Version, and MarkerMeasIdPtr parameters.

function map For performing the stream operation.
Click to summarize
Operation
Description
MemPtrOrFileName
- Possible values passed or returned
SysId
Version
MarkerMeasIdPtr
- Possible values passed or returned
Click to summarize M_INQUIRE_SIZE_BYTE

Inquires the number of bytes required to save a marker object to memory stream. This operation is not supported when the StreamType parameter is set to M_FILE.

(summarize)
Click to summarize MemPtrOrFileName

This parameter must be set to M_NULL.

(summarize)
Click to summarize SysId

This parameter must be set to M_NULL.

(summarize)
Click to summarize Version

Specifies the MIL version with which the marker object must be compatible when saved. The size of a marker object might differ from one MIL version to another.

(summarize)
Click to summarize M_DEFAULT

Specifies the current version of MIL.

Click to summarize M_PROC_VERSION_90

Specifies the version as being MIL 9.0.

Click to summarize M_PROC_VERSION_90_PP1

Specifies the version as being MIL 9.0 Processing Pack 1.

Click to summarize M_PROC_VERSION_90_PP2

Specifies the version as being MIL 9.0 Processing Pack 2.

Click to summarize M_PROC_VERSION_100

Specifies the version as being MIL 10.0.

Click to summarize M_PROC_VERSION_100_PP1

Specifies the version as being MIL 10.0 Processing Pack 1.

Click to summarize M_PROC_VERSION_100_PP2

Specifies the version as being MIL 10.0 Processing Pack 2.

Click to summarize M_PROC_VERSION_100_PP3

Specifies the version as being MIL 10.0 Processing Pack 3.

Click to summarize M_PROC_VERSION_100_SP4

Specifies the version as being MIL 10.0 Service Pack 4.

Click to summarize MarkerMeasIdPtr

Specifies the address of the variable containing the identifier of the marker object.

(summarize)
Click to summarize M_LOAD

Loads the content of a specified file or memory stream into a previously allocated marker object.

(summarize)
Click to summarize MemPtrOrFileName

Specifies the file or memory stream from which to load the context.

(summarize)
Click to summarize M_INTERACTIVE
[This is only applicable to Windows]

Opens a dialog box from which you can interactively specify the drive, directory, and name of the file, when the StreamType parameter is set to M_FILE.

Click to summarize MIL_TEXT("FileName") 1

Specifies the drive, directory, and name of the file (for example, "C:\mydirectory\myfile"), when the StreamType parameter is set to M_FILE. Marker objects typically have an MRK file extension. The function handles (internally) the opening and closing of the file.

To specify a file on a remote computer (under Distributed MIL), prefix the specified file name string with "remote:///" (for example, "remote:///C:\mydirectory\myfile").

(summarize)
Click to summarize MemPtr

Specifies the address of the block of memory, when the StreamType parameter is set to M_MEMORY. The block of memory should be of type MIL_UINT8. The specified address must correspond to the first memory address in which the object is located, and the block of memory must contain the entire object.

Note that when using a C compiler (not a C++ or other compiler), you must cast the MIL_UINT8 pointer to a MIL_TEXT_PTR.

(summarize)
Click to summarize SysId

This parameter must be set to M_NULL.

(summarize)
Click to summarize Version

This parameter must be set to M_DEFAULT.

(summarize)
Click to summarize MarkerMeasIdPtr

Specifies the address of the variable containing the identifier of the marker object. All previous settings are overwritten with those of the loaded context, or are set to the default value if the settings didn't exist in the version of MIL from which the context is being loaded.

(summarize)
Click to summarize M_RESTORE

Restores a marker object from a file or memory stream and assigns it a MIL identifier.

(summarize)
Click to summarize MemPtrOrFileName

Specifies the file or memory stream from which to restore the context.

(summarize)
Click to summarize M_INTERACTIVE
[This is only applicable to Windows]

Opens a dialog box from which you can interactively specify the drive, directory, and name of the file, when the StreamType parameter is set to M_FILE.

Click to summarize MIL_TEXT("FileName") 1

Specifies the drive, directory, and name of the file (for example, "C:\mydirectory\myfile"), when the StreamType parameter is set to M_FILE. Marker objects typically have an MRK file extension. The function handles (internally) the opening and closing of the file.

To specify a file on a remote computer (under Distributed MIL), prefix the specified file name string with "remote:///" (for example, "remote:///C:\mydirectory\myfile").

(summarize)
Click to summarize MemPtr

Specifies the address of the block of memory, when the StreamType parameter is set to M_MEMORY. The block of memory should be of type MIL_UINT8. The specified address must correspond to the first memory address in which the object is located, and the block of memory must contain the entire object.

Note that when using a C compiler (not a C++ or other compiler), you must cast the MIL_UINT8 pointer to a MIL_TEXT_PTR.

(summarize)
Click to summarize SysId

Specifies the system on which to allocate the marker object.

(summarize)
Click to summarize M_DEFAULT_HOST

Specifies the default Host system of the current MIL application.

Click to summarize MIL system identifier

Specifies a valid system identifier, previously allocated using MsysAlloc().

Click to summarize Version

This parameter must be set to M_DEFAULT.

(summarize)
Click to summarize MarkerMeasIdPtr

Specifies the address of the variable in which to write the identifier of the marker object. If the operation is not successful, M_NULL is returned.

(summarize)
Click to summarize M_SAVE

Saves a marker object to a specified file or memory stream.

(summarize)
Click to summarize MemPtrOrFileName

Specifies the file or memory stream.

(summarize)
Click to summarize M_INTERACTIVE
[This is only applicable to Windows]

Opens a dialog box from which you can interactively specify the drive, directory, and name of the file, when the StreamType parameter is set to M_FILE.

Click to summarize MIL_TEXT("FileName") 1

Specifies the drive, directory, and name of the file (for example, "C:\mydirectory\myfile"), when the StreamType parameter is set to M_FILE. For easier use with other Matrox Imaging software products, when saving a measurement context to a file, use the MRK file extension. The function handles (internally) the opening and closing of the file. If the file already exists, it will be overwritten.

To specify a file on a remote computer (under Distributed MIL), prefix the specified file name string with "remote:///" (for example, "remote:///C:\mydirectory\myfile").

(summarize)
Click to summarize MemPtr

Specifies the address of the block of memory, when the StreamType parameter is set to M_MEMORY. The block of memory should be of type MIL_UINT8. The specified address must correspond to the first memory address in which to write, and the block of memory must be large enough to stream the entire object. To determine the required size, call this function with M_INQUIRE_SIZE_BYTE.

Note that when using a C compiler (not a C++ or other compiler), you must cast the MIL_UINT8 pointer to a MIL_TEXT_PTR.

(summarize)
Click to summarize SysId

This parameter must be set to M_NULL.

(summarize)
Click to summarize Version

Specifies the MIL version with which the marker object must be compatible when saved. Note that the marker object can only be up to one major release older (MIL 9.0) than the current version.

(summarize)
Click to summarize M_DEFAULT

Specifies the current version of MIL.

Click to summarize M_PROC_VERSION_90

Specifies the version as being MIL 9.0.

Click to summarize M_PROC_VERSION_90_PP1

Specifies the version as being MIL 9.0 Processing Pack 1.

Click to summarize M_PROC_VERSION_90_PP2

Specifies the version as being MIL 9.0 Processing Pack 2.

Click to summarize M_PROC_VERSION_100

Specifies the version as being MIL 10.0.

Click to summarize M_PROC_VERSION_100_PP1

Specifies the version as being MIL 10.0 Processing Pack 1.

Click to summarize M_PROC_VERSION_100_PP2

Specifies the version as being MIL 10.0 Processing Pack 2.

Click to summarize M_PROC_VERSION_100_PP3

Specifies the version as being MIL 10.0 Processing Pack 3.

Click to summarize M_PROC_VERSION_100_SP4

Specifies the version as being MIL 10.0 Service Pack 4.

Click to summarize MarkerMeasIdPtr

Specifies the address of the variable containing the identifier of the marker object to save.

(summarize)

1 If you are passing the value in a variable, don't enclose it in MIL_TEXT().

Compilation information
Header Include mil.h.
Library Use mil.lib; milmeas.lib.
DLL Requires mil.dll; milmeas.dll.
FILE MEMORY INQUIRE SIZE BYTE NULL NULL DEFAULT PROC VERSION 90 PROC VERSION 90 PP1 PROC VERSION 90 PP2 PROC VERSION 100 PROC VERSION 100 PP1 PROC VERSION 100 PP2 PROC VERSION 100 PP3 PROC VERSION 100 SP4 LOAD INTERACTIVE NULL DEFAULT RESTORE INTERACTIVE DEFAULT HOST DEFAULT SAVE INTERACTIVE NULL DEFAULT PROC VERSION 90 PROC VERSION 90 PP1 PROC VERSION 90 PP2 PROC VERSION 100 PROC VERSION 100 PP1 PROC VERSION 100 PP2 PROC VERSION 100 PP3 PROC VERSION 100 SP4 FILE MEMORY