public static ErrorCode Decompress( byte[] dest, ref uint destLen, byte[] src, ref uint srcLen, byte[] props, uint propsSize) { if (Is64Bit == true) { return((ErrorCode)Native64.DecompressInternal( dest, ref destLen, src, ref srcLen, props, propsSize)); } return((ErrorCode)Native32.DecompressInternal( dest, ref destLen, src, ref srcLen, props, propsSize)); }