add commit

This commit is contained in:
steven
2026-02-28 12:45:29 +09:00
parent 392640a686
commit d9a6b6d02b
400 changed files with 52300 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
#include <jni.h>
#ifndef _SERIAL_PORT
#define _SERIAL_PORT
#ifdef __cplusplus
extern "C" {
#endif
JNIEXPORT void JNICALL
Java_com_laseroptek_raman_data_source_serial_SerialPort_open(JNIEnv *, jobject, int, int);
JNIEXPORT void JNICALL
Java_com_laseroptek_raman_data_source_serial_SerialPort_write(JNIEnv *, jobject, int, jbyteArray);
JNIEXPORT void JNICALL
Java_com_laseroptek_raman_data_source_serial_SerialPort_close(JNIEnv *, jobject, int);
#ifdef __cplusplus
}
#endif
#endif