Borneq

net.sf.junace.ACEFiles

Sep 4th, 2013
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.28 KB | None | 0 0
  1. package net.sf.junace;
  2.  
  3. /** This structure is used in the function specific structures.
  4.     The application has to use this structure to indicate which files
  5.     have to be processed by the DLL. */
  6. public class ACEFiles {
  7.     String sourceDir;       // maybe a real or an archive directory
  8.     String fileList;        // pointer to list of files to process;
  9.                             // zero-terminated; files have to be
  10.                             // separated by carriage-return (0xd);
  11.                             // FileList may/will be modified by the
  12.                             // Dll; if nothing is specified, "*"
  13.                             // will be used
  14.                             // (attention at ACEDelete!!)
  15.    String excludeList;      // list of files to exclude from process
  16.    boolean fullMatch;       // specifications must fully match
  17.                             // (no files with the same name in
  18.               //  subdirs are processed)
  19.    boolean recurseSubDirs;  // recurse subdirectories
  20.                   // (valid for add operations only)
  21.    byte[] reserved[];       // 60 bytes
  22.                             // has to be filled with zeros
  23.                             // for future: possibly in-/excluding
  24.                             // file attributes and date/time range
  25. }
Advertisement
Add Comment
Please, Sign In to add comment