Make global.h global
[cacao.git] / nat / FileOutputStream.h
1 /* This file is machine generated, don't edit it !*/
2
3 /* Structure information for class: java/io/FileOutputStream */
4
5 typedef struct java_io_FileOutputStream {
6    java_objectheader header;
7    struct java_io_FileDescriptor* fd;
8 } java_io_FileOutputStream;
9
10 /*
11  * Class:     java/io/FileOutputStream
12  * Method:    close
13  * Signature: ()V
14  */
15 JNIEXPORT void JNICALL Java_java_io_FileOutputStream_close (JNIEnv *env ,  struct java_io_FileOutputStream* this );
16 /*
17  * Class:     java/io/FileOutputStream
18  * Method:    initIDs
19  * Signature: ()V
20  */
21 JNIEXPORT void JNICALL Java_java_io_FileOutputStream_initIDs (JNIEnv *env );
22 /*
23  * Class:     java/io/FileOutputStream
24  * Method:    open
25  * Signature: (Ljava/lang/String;)V
26  */
27 JNIEXPORT void JNICALL Java_java_io_FileOutputStream_open (JNIEnv *env ,  struct java_io_FileOutputStream* this , struct java_lang_String* par1);
28 /*
29  * Class:     java/io/FileOutputStream
30  * Method:    openAppend
31  * Signature: (Ljava/lang/String;)V
32  */
33 JNIEXPORT void JNICALL Java_java_io_FileOutputStream_openAppend (JNIEnv *env ,  struct java_io_FileOutputStream* this , struct java_lang_String* par1);
34 /*
35  * Class:     java/io/FileOutputStream
36  * Method:    write
37  * Signature: (I)V
38  */
39 JNIEXPORT void JNICALL Java_java_io_FileOutputStream_write (JNIEnv *env ,  struct java_io_FileOutputStream* this , s4 par1);
40 /*
41  * Class:     java/io/FileOutputStream
42  * Method:    writeBytes
43  * Signature: ([BII)V
44  */
45 JNIEXPORT void JNICALL Java_java_io_FileOutputStream_writeBytes (JNIEnv *env ,  struct java_io_FileOutputStream* this , java_bytearray* par1, s4 par2, s4 par3);