Example #1
0
		MemoryStreamFixedExt CreateMemoryStream( uiw offset = 0 )
		{
			ASSUME( IsOpened() );
			if( IsWritable() )
			{
				return MemoryStreamFixedExt( Memory(), Size(), offset );
			}
			return MemoryStreamFixedExt( CMemory(), Size(), offset );
		}
Example #2
0
CMemory C_CaControl::GetMemory()
{
    LPDISPATCH pDispatch;
    InvokeHelper(0x68030004, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&pDispatch, NULL);
    return CMemory(pDispatch);
}
Example #3
0
		MemoryStreamFixedExt CCreateMemoryStream( uiw offset = 0 ) const
		{
			ASSUME( IsOpened() );
			return MemoryStreamFixedExt( CMemory(), Size(), offset );
		}