Ken Wakasa | ce9e52a | 2011-06-18 13:09:55 +0900 | [diff] [blame] | 1 | /* |
Ken Wakasa | a10b1a8 | 2013-01-08 17:23:43 +0900 | [diff] [blame] | 2 | * Copyright (C) 2011 The Android Open Source Project |
Ken Wakasa | 0bbb917 | 2012-07-25 17:51:43 +0900 | [diff] [blame] | 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
Ken Wakasa | ce9e52a | 2011-06-18 13:09:55 +0900 | [diff] [blame] | 16 | |
| 17 | #ifndef LATINIME_JNI_COMMON_H |
| 18 | #define LATINIME_JNI_COMMON_H |
| 19 | |
| 20 | #include "jni.h" |
| 21 | |
| 22 | namespace latinime { |
Ken Wakasa | ad0c6d7 | 2013-06-04 19:16:47 +0900 | [diff] [blame] | 23 | int registerNativeMethods(JNIEnv *env, const char *const className, const JNINativeMethod *methods, |
| 24 | const int numMethods); |
Ken Wakasa | ce9e52a | 2011-06-18 13:09:55 +0900 | [diff] [blame] | 25 | } // namespace latinime |
Ken Wakasa | ce9e52a | 2011-06-18 13:09:55 +0900 | [diff] [blame] | 26 | #endif // LATINIME_JNI_COMMON_H |