diff options
| author | manuel <manuel@mausz.at> | 2013-03-09 15:14:01 +0100 |
|---|---|---|
| committer | manuel <manuel@mausz.at> | 2013-03-09 15:14:01 +0100 |
| commit | 41f7119d8631a142fa5a97285a8443f9d7eb7e14 (patch) | |
| tree | 75e35bffcfc8e82c989331335e11bac0c86da131 /enum2string.h | |
| download | steamcmd-41f7119d8631a142fa5a97285a8443f9d7eb7e14.tar.gz steamcmd-41f7119d8631a142fa5a97285a8443f9d7eb7e14.tar.bz2 steamcmd-41f7119d8631a142fa5a97285a8443f9d7eb7e14.zip | |
initial import of UpdateTool 0.4
Diffstat (limited to 'enum2string.h')
| -rw-r--r-- | enum2string.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/enum2string.h b/enum2string.h new file mode 100644 index 0000000..3e441b6 --- /dev/null +++ b/enum2string.h | |||
| @@ -0,0 +1,16 @@ | |||
| 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 | ||
| 9 | |||
| 10 | enum EAppState; | ||
| 11 | enum EResult; | ||
| 12 | enum EAppUpdateError; | ||
| 13 | |||
| 14 | const char* AppState2String(EAppState eState); | ||
| 15 | const char* EResult2String(EResult eResult); | ||
| 16 | const char* EAppUpdateError2String(EAppUpdateError eError); | ||
