summaryrefslogtreecommitdiff
path: root/zen/file_id.h
blob: 0ff6d7ece696d8c53ce591cc11786c1b7e768df7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// **************************************************************************
// * This file is part of the FreeFileSync project. It is distributed under *
// * GNU General Public License: http://www.gnu.org/licenses/gpl.html       *
// * Copyright (C) Zenju (zenju AT gmx DOT de) - All Rights Reserved        *
// **************************************************************************

#ifndef FILEID_H_INCLUDED_32q87634289562345
#define FILEID_H_INCLUDED_32q87634289562345

#include "file_id_def.h"
#include "zstring.h"

//unique file identifier

namespace zen
{
//get unique file id (symbolic link handling: opens the link!!!)
//returns initial FileId() on error!
FileId getFileID(const Zstring& filename);
}

#endif //FILEID_H_INCLUDED_32q87634289562345
bgstack15