• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* Copyright 2017 Google Inc. All Rights Reserved.
2 
3    Distributed under MIT license.
4    See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
5 */
6 
7 package org.brotli.wrapper.common;
8 
9 import java.nio.ByteBuffer;
10 
11 /**
12  * JNI wrapper for brotli common.
13  */
14 class CommonJNI {
nativeSetDictionaryData(ByteBuffer data)15   static native boolean nativeSetDictionaryData(ByteBuffer data);
16 }
17