]> git.saurik.com Git - apple/security.git/blobdiff - OSX/libsecurity_codesigning/lib/dirscanner.h
Security-57740.1.18.tar.gz
[apple/security.git] / OSX / libsecurity_codesigning / lib / dirscanner.h
index ddd5e56f6b9297611cf1d50e8d8f4ec5c527a6d7..44d4d381ca0fc5a2486f87e41e352daaa69f4388 100644 (file)
@@ -41,10 +41,14 @@ public:
 
        struct dirent *getNext();       // gets the next item out of this DirScanner
        bool initialized();                     // returns false if the constructor failed to initialize the dirent
+       
+       void unlink(const struct dirent* ent, int flags);
+       bool isRegularFile(dirent* dp);
 
 private:
        string path;
        DIR *dp = NULL;
+       struct dirent entBuffer;
        void initialize();
        bool init;
 };