summaryrefslogtreecommitdiff
path: root/zen/file_id.h
diff options
context:
space:
mode:
Diffstat (limited to 'zen/file_id.h')
-rw-r--r--zen/file_id.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/zen/file_id.h b/zen/file_id.h
index f015569d..3fd4c6bb 100644
--- a/zen/file_id.h
+++ b/zen/file_id.h
@@ -7,6 +7,7 @@
#ifndef FILEID_H_INCLUDED
#define FILEID_H_INCLUDED
+#include "file_id_def.h"
#include "zstring.h"
#include <string>
@@ -15,8 +16,8 @@
namespace zen
{
//get unique file id (symbolic link handling: opens the link!!!)
-//returns empty string on error!
-std::string getFileID(const Zstring& filename);
+//returns initial FileId() on error!
+FileId getFileID(const Zstring& filename);
//test whether two distinct paths point to the same file or directory:
// true: paths point to same files/dirs
bgstack15