Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package net.sf.junace;
- public interface IHandleState {
- final static int ACE_CALLBACK_RETURN_OK = 0; // also "yes" at requests
- final static int ACE_CALLBACK_RETURN_NO = 1; // no, do not retry
- final static int ACE_CALLBACK_RETURN_CANCEL = 2; // abort operation
- int startArchive();
- int startFile();
- int progress();
- }
Advertisement
Add Comment
Please, Sign In to add comment