-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFileSystemWatcherNative.h
93 lines (73 loc) · 3.04 KB
/
FileSystemWatcherNative.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#include <jni.h>
#include <stdlib.h>
#include <string.h>
/* Header for class utils_ntfs_FileSystemWatcherNative */
#ifndef _Included_javaxt_io_FileSystemWatcherNative
#define _Included_javaxt_io_FileSystemWatcherNative
#ifdef __cplusplus
extern "C" {
#endif
#undef utils_ntfs_FileSystemWatcherNative_INFINITE
#define utils_ntfs_FileSystemWatcherNative_INFINITE -1L
#undef utils_ntfs_FileSystemWatcherNative_WAIT_FAILED
#define utils_ntfs_FileSystemWatcherNative_WAIT_FAILED -1L
#undef utils_ntfs_FileSystemWatcherNative_WAIT_ABANDONED
#define utils_ntfs_FileSystemWatcherNative_WAIT_ABANDONED 128L
#undef utils_ntfs_FileSystemWatcherNative_WAIT_OBJECT_0
#define utils_ntfs_FileSystemWatcherNative_WAIT_OBJECT_0 0L
#undef utils_ntfs_FileSystemWatcherNative_WAIT_TIMEOUT
#define utils_ntfs_FileSystemWatcherNative_WAIT_TIMEOUT 258L
//**************************************************************************
//** FindFirstChangeNotification
//**************************************************************************
/*
* Class: utils_ntfs_FileSystemWatcherNative
* Method: FindFirstChangeNotification
* Signature: (Ljava/lang/String;ZI)J
*/
JNIEXPORT jlong JNICALL Java_javaxt_io_FileSystemWatcherNative_FindFirstChangeNotification
(JNIEnv *, jclass, jstring, jboolean, jint);
//**************************************************************************
//** FindNextChangeNotification
//**************************************************************************
/*
* Class: utils_ntfs_FileSystemWatcherNative
* Method: FindNextChangeNotification
* Signature: (J)V
*/
JNIEXPORT void JNICALL Java_javaxt_io_FileSystemWatcherNative_FindNextChangeNotification
(JNIEnv *, jclass, jlong);
//**************************************************************************
//** FindCloseChangeNotification
//**************************************************************************
/*
* Class: utils_ntfs_FileSystemWatcherNative
* Method: FindCloseChangeNotification
* Signature: (J)V
*/
JNIEXPORT void JNICALL Java_javaxt_io_FileSystemWatcherNative_FindCloseChangeNotification
(JNIEnv *, jclass, jlong);
//**************************************************************************
//** WaitForSingleObject
//**************************************************************************
/*
* Class: utils_ntfs_FileSystemWatcherNative
* Method: WaitForSingleObject
* Signature: (JI)I
*/
JNIEXPORT jint JNICALL Java_javaxt_io_FileSystemWatcherNative_WaitForSingleObject
(JNIEnv *, jclass, jlong, jint);
//**************************************************************************
//** ReadDirectoryChangesW
//**************************************************************************
/*
* Class: utils_ntfs_FileSystemWatcherNative
* Method: ReadDirectoryChangesW
* Signature: (Ljava/lang/String;ZI)J
*/
JNIEXPORT jstring JNICALL Java_javaxt_io_FileSystemWatcherNative_ReadDirectoryChangesW
(JNIEnv *, jclass);
#ifdef __cplusplus
}
#endif
#endif