blob: 9512a02bc35188d7054d8fb20f34bff648ba9b2e (
plain)
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
|
/*************************************************
*
* = PACKAGE
* ACE.ASX
*
* = FILENAME
* TaskFlags.java
*
*@author Prashant Jain
*
*************************************************/
package ACE.ASX;
public abstract class IOCntlCmds
{
/** Set the low water mark. */
public static final int SET_LWM = 1;
/** Get the low water mark. */
public static final int GET_LWM = 2;
/** Set the high water mark. */
public static final int SET_HWM = 3;
/** Get the high water mark. */
public static final int GET_HWM = 4;
/** Link modules */
public static final int MOD_LINK = 5;
/** Unlink modules */
public static final int MOD_UNLINK = 6;
}
|