2.2.3.1 ReadCache_Return

The ReadCache_Return structure is used to obtain the data that corresponds to the lookup item requested in ReadCacheA_Call as specified in section 2.2.2.25, or ReadCacheW_Call as specified in section 2.2.2.26. For more call information, see sections 3.1.4.42 and 3.1.4.43.

 typedef struct _ReadCache_Return {
   long ReturnCode;
   [range(0,65536)] unsigned long cbDataLen;
   [unique] [size_is(cbDataLen)] byte *pbData;
 } ReadCache_Return;

ReturnCode: HRESULT or Win32 Error codes. Zero indicates success; any other value indicates failure.

cbDataLen: The number of bytes in the pbData field.

pbData: The value of the look up item.