summaryrefslogtreecommitdiffstats
path: root/utils.h
diff options
context:
space:
mode:
authormanuel <manuel@mausz.at>2013-03-09 15:14:01 +0100
committermanuel <manuel@mausz.at>2013-03-09 15:14:01 +0100
commit41f7119d8631a142fa5a97285a8443f9d7eb7e14 (patch)
tree75e35bffcfc8e82c989331335e11bac0c86da131 /utils.h
downloadsteamcmd-41f7119d8631a142fa5a97285a8443f9d7eb7e14.tar.gz
steamcmd-41f7119d8631a142fa5a97285a8443f9d7eb7e14.tar.bz2
steamcmd-41f7119d8631a142fa5a97285a8443f9d7eb7e14.zip
initial import of UpdateTool 0.4
Diffstat (limited to 'utils.h')
-rw-r--r--utils.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/utils.h b/utils.h
new file mode 100644
index 0000000..6530e3f
--- /dev/null
+++ b/utils.h
@@ -0,0 +1,14 @@
1/*
2 This file is a part of "Didrole's Update Tool"
3 ©2k12, Didrole
4
5 License : Public domain
6*/
7
8#pragma once
9typedef unsigned int AppId_t;
10
11const char* GetAppName(AppId_t uAppId);
12void FormatSize(char* szOutput, unsigned int uOutputSize, unsigned long long ullBytes);
13bool IsDir(const char* cszPath);
14void mSleep(unsigned int uMS);