Former-commit-id:06a8b51d6d
[formerly 64fa9254b946eae7e61bbc3f513b7c3696c4f54f] Former-commit-id:9f19e3f712
28 lines
855 B
C
28 lines
855 B
C
#ifndef DISPLAY_PDC_TSL_JNI_H_
|
|
#define DISPLAY_PDC_TSL_JNI_H_
|
|
|
|
#include "jni.h"
|
|
|
|
void startjavavm();
|
|
void closejavavm();
|
|
|
|
JNIEnv * getJavaEnv ( );
|
|
JavaVM * getJavaVM ( );
|
|
|
|
void callPDCTimeSeriesLiteThroughJNI( const char *jdbcUrl,
|
|
char *stationId,
|
|
char *stationParm);
|
|
|
|
jclass getClassName(const char* javaClassName);
|
|
|
|
void callColorManagerThroughJNI(const char *jdbcUrl,
|
|
const char *logFilePath,
|
|
const char *applicationName,
|
|
const char *userID,
|
|
const char *defaultColorFilePath,
|
|
const char *rgbFilePath);
|
|
|
|
long getColorManagerSaveTimeThroughJNI( );
|
|
|
|
|
|
#endif /*DISPLAY_PDC_TSL_JNI_H_*/
|