Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package net.sf.junace;
- /** This structure is used in the function specific structures.
- The application has to use this structure to indicate which files
- have to be processed by the DLL. */
- public class ACEFiles {
- String sourceDir; // maybe a real or an archive directory
- String fileList; // pointer to list of files to process;
- // zero-terminated; files have to be
- // separated by carriage-return (0xd);
- // FileList may/will be modified by the
- // Dll; if nothing is specified, "*"
- // will be used
- // (attention at ACEDelete!!)
- String excludeList; // list of files to exclude from process
- boolean fullMatch; // specifications must fully match
- // (no files with the same name in
- // subdirs are processed)
- boolean recurseSubDirs; // recurse subdirectories
- // (valid for add operations only)
- byte[] reserved[]; // 60 bytes
- // has to be filled with zeros
- // for future: possibly in-/excluding
- // file attributes and date/time range
- }
Advertisement
Add Comment
Please, Sign In to add comment