d3b4b1c2de9be73da2be83f0e1ce7031fb86ae99
[cacao.git] / src / native / vm / cldc1.1 / com_sun_cldchi_io_ConsoleOutputStream.cpp
1 /* src/native/vm/cldc1.1/com_sun_cldchi_io_ConsoleOutputStream.cpp
2
3    Copyright (C) 2006, 2007, 2008
4    CACAOVM - Verein zur Foerderung der freien virtuellen Maschine CACAO
5
6    This file is part of CACAO.
7
8    This program is free software; you can redistribute it and/or
9    modify it under the terms of the GNU General Public License as
10    published by the Free Software Foundation; either version 2, or (at
11    your option) any later version.
12
13    This program is distributed in the hope that it will be useful, but
14    WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16    General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21    02110-1301, USA.
22
23 */
24
25
26 #include "config.h"
27
28 #include <stdint.h>
29 #include <stdio.h>
30
31 #include "vm/types.h"
32
33 #include "native/jni.hpp"
34 #include "native/native.h"
35
36 #if defined(ENABLE_JNI_HEADERS)
37 # include "native/include/com_sun_cldchi_io_ConsoleOutputStream.h"
38 #endif
39
40
41 // Native functions are exported as C functions.
42 extern "C" {
43
44 /*
45  * Class:     com/sun/cldchi/io/ConsoleOutputStream
46  * Method:    write
47  * Signature: (I)V
48  */
49 JNIEXPORT void JNICALL Java_com_sun_cldchi_io_ConsoleOutputStream_write(JNIEnv *env, jobject _this, jint c)
50 {
51         (void) fputc(c, stdout);
52 }
53
54 } // extern "C"
55
56
57 /* native methods implemented by this file ************************************/
58  
59 static JNINativeMethod methods[] = {
60         { (char*) "write", (char*) "(I)V", (void*) (uintptr_t) &Java_com_sun_cldchi_io_ConsoleOutputStream_write },
61 };
62
63  
64 /* _Jv_com_sun_cldchi_io_ConsoleOutputStream_init ******************************
65  
66    Register native functions.
67  
68 *******************************************************************************/
69  
70 // FIXME
71 extern "C" { 
72 void _Jv_com_sun_cldchi_io_ConsoleOutputStream_init(void)
73 {
74         utf *u;
75  
76         u = utf_new_char("com/sun/cldchi/io/ConsoleOutputStream");
77  
78         native_method_register(u, methods, NATIVE_METHODS_COUNT);
79 }
80 }
81
82
83 /*
84  * These are local overrides for various environment variables in Emacs.
85  * Please do not remove this and leave it at the end of the file, where
86  * Emacs will automagically detect them.
87  * ---------------------------------------------------------------------
88  * Local variables:
89  * mode: c++
90  * indent-tabs-mode: t
91  * c-basic-offset: 4
92  * tab-width: 4
93  * End:
94  * vim:noexpandtab:sw=4:ts=4:
95  */