This document is archived and information here might be outdated. Recommended version. |
Add a variable length record or extended variable length record using C-Style array.
[Visual Basic .NET]
Public Sub AddVlrCStyle ( _
ByVal bIsEVLR As Boolean, _
ByVal length As Integer, _
ByRef pVLR As Byte& _
)
[C#]
public void AddVlrCStyle (
bool bIsEVLR,
int length,
ref Byte& pVLR
);
[C++]
HRESULT AddVlrCStyle(
VARIANT_BOOL bIsEVLR,
long length,
System.Byte* pVLR
);
[C++] Parameters bIsEVLR [in]
bIsEVLR is a parameter of type bool length [in]
length is a parameter of type long pVLR [in]
pVLR is a parameter of type unsigned char*