commit 24/07/2025

This commit is contained in:
2025-07-24 10:34:42 +07:00
parent b0ad8b5189
commit c2f7106f70
25 changed files with 416 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
package CRSDK;
@SuppressWarnings("unused")
public enum CrFTPJobControlType {
CrFTPJobControlType_Add (0x00000001),
CrFTPJobControlType_Delete (CrFTPJobControlType_Add.getValue()+1),
CrFTPJobControlType_Suspend (CrFTPJobControlType_Add.getValue()+2),
CrFTPJobControlType_Resume (CrFTPJobControlType_Add.getValue()+3);
private final CrInt32u value;
CrFTPJobControlType(int value) {
this.value = new CrInt32u(value);
}
public int getValue() {
return value.intValue();
}
}