blob: 6212d86e79924fa128547c26aaef2e384de70dac (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef INCLUDED_SRC_BUILDOOL_MAIN_MAIN_HPP
#define INCLUDED_SRC_BUILDOOL_MAIN_MAIN_HPP
enum ExitCodes {
kExitSuccess = 0,
kExitFailure = 1,
kExitSuccessFailedArtifacts = 2
};
#endif
|