public static void BrotliDecoderSetCustomDictionary(IntPtr state, UInt32 size, IntPtr dict) { if (UseX86) { Brolib32.BrotliDecoderSetCustomDictionary(state, size, dict); } else { Brolib64.BrotliDecoderSetCustomDictionary(state, size, dict); } }
public static void BrotliDecoderSetCustomDictionary( IntPtr state, UInt32 size, IntPtr dict) { if (USE_X86) { Brolib32.BrotliDecoderSetCustomDictionary(state, size, dict); return; } Brolib64.BrotliDecoderSetCustomDictionary(state, size, dict); }