home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / VCAFE.3.0A / Sample.bin / Hello5Impl.cpp < prev    next >
C/C++ Source or Header  |  1997-09-06  |  314b  |  17 lines

  1. /*
  2.  *  Hello5Impl.cpp
  3.  *
  4.  *  This file contains the implementation of
  5.  *  the JNI method printHello in Hello5.java.
  6.  */
  7.  
  8. #include <iostream.h>
  9. #include "Hello5.h"
  10.  
  11. JNIEXPORT void JNICALL 
  12. Java_samples_jni1_Hello5_printHello( JNIEnv * env, jobject obj )
  13. {
  14.     cout << "Hi 5!" << endl;
  15.     return;
  16. }
  17.