home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Ware Multimedia 1999 February
/
CDW0299.iso
/
Demos
/
Cafe
/
PDESAMPL.BIN
/
Hello5Impl.cpp
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1997-09-06
|
314 b
|
17 lines
/*
* Hello5Impl.cpp
*
* This file contains the implementation of
* the JNI method printHello in Hello5.java.
*/
#include <iostream.h>
#include "Hello5.h"
JNIEXPORT void JNICALL
Java_samples_jni1_Hello5_printHello( JNIEnv * env, jobject obj )
{
cout << "Hi 5!" << endl;
return;
}