vnote/src/vconstants.h
Le Tan e7c42ba5be refactor: add VFile and VDirectory
Signed-off-by: Le Tan <tamlokveer@gmail.com>
2016-11-30 22:58:00 +08:00

9 lines
191 B
C

#ifndef VCONSTANTS_H
#define VCONSTANTS_H
enum class DocType { Html, Markdown };
enum class ClipboardOpType { Invalid, CopyFile, CopyDir };
enum class OpenFileMode {Read = 0, Edit};
#endif