summaryrefslogtreecommitdiff
path: root/native
diff options
context:
space:
mode:
authorMario Torre <neugens@limasoftware.net>2006-09-27 18:36:09 +0000
committerMario Torre <neugens@limasoftware.net>2006-09-27 18:36:09 +0000
commite210a70e75f478e8f681f52f496db5c91a5db42b (patch)
tree03bd8811e93a08b9ae1176c0cf8d19abf258b5b4 /native
parent1d889e1920fd93df8f6c1687c87d3d8e21007720 (diff)
downloadclasspath-e210a70e75f478e8f681f52f496db5c91a5db42b.tar.gz
2006-09-27 Mario Torre <neugens@limasoftware.net>
* scripts/check_jni_methods.sh: removed methods from the ignore list: Java_gnu_java_util_prefs_gconf_GConfNativePeer_finalize_1class Java_gnu_java_util_prefs_gconf_GConfNativePeer_init_1id_1cache Java_gnu_java_util_prefs_gconf_GConfNativePeer_init_1class Java_gnu_java_util_prefs_gconf_GConfNativePeer_gconf_1escape_1key Java_gnu_java_util_prefs_gconf_GConfNativePeer_gconf_1unescape_1key * native/jni/gconf-peer/GConfNativePeer.c: fixed coding style to better follow the GNU style. * include/gnu_java_util_prefs_gconf_GConfNativePeer.h. regenerated header file for GConfNativePeer.
Diffstat (limited to 'native')
-rw-r--r--native/jni/gconf-peer/GConfNativePeer.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/native/jni/gconf-peer/GConfNativePeer.c b/native/jni/gconf-peer/GConfNativePeer.c
index b116cd65e..42986c33a 100644
--- a/native/jni/gconf-peer/GConfNativePeer.c
+++ b/native/jni/gconf-peer/GConfNativePeer.c
@@ -108,8 +108,8 @@ static jclass get_jlist_reference (JNIEnv * env, jclass jlist_class);
* Method: init_class
* Signature: ()V
*/
-JNIEXPORT void
-JNICALL Java_gnu_java_util_prefs_gconf_GConfNativePeer_init_1class
+JNIEXPORT void JNICALL
+Java_gnu_java_util_prefs_gconf_GConfNativePeer_init_1class
(JNIEnv *env, jclass clazz)
{
if (reference_count == 0)
@@ -127,8 +127,8 @@ JNICALL Java_gnu_java_util_prefs_gconf_GConfNativePeer_init_1class
* Method: init_id_chache
* Signature: ()V
*/
-JNIEXPORT void
-JNICALL Java_gnu_java_util_prefs_gconf_GConfNativePeer_init_1id_1cache
+JNIEXPORT void JNICALL
+Java_gnu_java_util_prefs_gconf_GConfNativePeer_init_1id_1cache
(JNIEnv *env, jclass clazz __attribute__ ((unused)))
{
reference_count++;
@@ -530,8 +530,8 @@ Java_gnu_java_util_prefs_gconf_GConfNativePeer_gconf_1client_1dir_1exists
* Method: finalize_class
* Signature: ()V
*/
-JNIEXPORT void
-JNICALL Java_gnu_java_util_prefs_gconf_GConfNativePeer_finalize_1class
+JNIEXPORT void JNICALL
+Java_gnu_java_util_prefs_gconf_GConfNativePeer_finalize_1class
(JNIEnv *env, jclass clazz __attribute__ ((unused)))
{
if (reference_count == 0)
@@ -558,8 +558,8 @@ JNICALL Java_gnu_java_util_prefs_gconf_GConfNativePeer_finalize_1class
* Method: Java_gnu_java_util_prefs_gconf_GConfNativePeer_gconf_1escape_1key
* Signature: (Ljava/lang/String;)Z
*/
-JNIEXPORT jstring
-JNICALL Java_gnu_java_util_prefs_gconf_GConfNativePeer_gconf_1escape_1key
+JNIEXPORT jstring JNICALL
+Java_gnu_java_util_prefs_gconf_GConfNativePeer_gconf_1escape_1key
(JNIEnv *env, jclass clazz __attribute__ ((unused)), jstring plain)
{
const char *escaped = NULL;
@@ -592,8 +592,8 @@ JNICALL Java_gnu_java_util_prefs_gconf_GConfNativePeer_gconf_1escape_1key
* Method: Java_gnu_java_util_prefs_gconf_GConfNativePeer_gconf_1unescape_1key
* Signature: (Ljava/lang/String;)Z
*/
-JNIEXPORT jstring
-JNICALL Java_gnu_java_util_prefs_gconf_GConfNativePeer_gconf_1unescape_1key
+JNIEXPORT jstring JNICALL
+Java_gnu_java_util_prefs_gconf_GConfNativePeer_gconf_1unescape_1key
(JNIEnv *env, jclass clazz __attribute__ ((unused)), jstring escaped)
{
const char *plain = NULL;