home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1998 November
/
Chip_1998-11_cd.bin
/
tema
/
Cafe
/
PDESAMPL.BIN
/
Hello5Impl.cpp
< prev
next >
Wrap
C/C++ Source or Header
|
1997-09-06
|
314b
|
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;
}