XLL+ Class Library (6.3)

CXlMarshaledData::CXlMarshaledData

Constructs a CXlMarshaledData object

CXlMarshaledData( );
CXlMarshaledData(
   const char* pszFnName,
   void* pvFirstArg,
   bool bPrefixFn
);
CXlMarshaledData(
   void* pvData,
   size_t cbData
);
CXlMarshaledData(
   const CXlMarshaledData& srcKey
);

Parameters

pszFnName

Name of add-in function whose arguments are being converted to a byte stream.

pvFirstArg

Address of the first argument to the add-in function. This pointer is used to traverse the argument stack, using the add-in function's registered definition to interpret the items in the stack.

bPrefixFn

If true, the name of the function will be prefixed to the byte stream. This is useful if a single cache is used for more than one add-in function. If false, then the function is not prefixed. This is appropriate if each add-in function uses its own cache.

pvData

A pointer to an array of bytes, of size cbData.

cbData

Size of array of bytes.

srcKey

An object to be deep copied.

Remarks

This method constructs a CXlMarshaledData object.

Requirements

Header: xlmarshal.h

See Also

CXlMarshaledData Class | CXlMarshaledData Methods