Kaydet (Commit) ea2de71d authored tarafından Enrico Tröger's avatar Enrico Tröger

added enum for utils_make_human_readable_str()


git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@212 ea778897-0a13-0410-b9d1-a72fbfd435f5
üst 4abb456c
......@@ -255,6 +255,12 @@ enum
RIGHT
};
enum {
KILOBYTE = 1024,
MEGABYTE = (KILOBYTE*1024),
GIGABYTE = (MEGABYTE*1024)
};
// prototype from tagmanager/parse.h, used in document.c, ugly but it works
extern langType getNamedLanguage(const char *const name);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment