-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrunningmode.go
More file actions
41 lines (37 loc) · 826 Bytes
/
runningmode.go
File metadata and controls
41 lines (37 loc) · 826 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// DO NOT EDIT.
//
// Generated: Fri Apr 19 02:39:20 2019
// From: runningmode.enum
// By: andy
//
package main
type RunningMode int
const (
RunningMode_Zero_ RunningMode = iota
ModeNotSpecified
CompileAndLink
CompileSourceFiles
CompileAndMakeLib
CompileAndMakeDLL
CompileAndMakePlugin
)
func (v RunningMode) String() string {
switch v {
case RunningMode_Zero_:
return "*!!!* UNINITIALIZED RunningMode VALUE *!!!*"
case ModeNotSpecified:
return "ModeNotSpecified"
case CompileAndLink:
return "CompileAndLink"
case CompileSourceFiles:
return "CompileSourceFiles"
case CompileAndMakeLib:
return "CompileAndMakeLib"
case CompileAndMakeDLL:
return "CompileAndMakeDLL"
case CompileAndMakePlugin:
return "CompileAndMakePlugin"
default:
return "*!* INVALID RunningMode VALUE *!*"
}
}