3 //////////////////////////////////////////////////////////////////////
8 //---------------------------------------------------------------------------
9 extern char* g_szActions
[] = {
11 "Created Project", // = 1
12 "Added Project", // = 2
14 "Destroyed Project", // = 4
15 "Destroyed File", // = 5
16 "Deleted Project", // = 6
17 "Deleted File", // = 7
18 "Recovered Project", // = 8
19 "Recovered File", // = 9
20 "Renamed Project", // = 10
21 "Renamed File", // = 11
22 "Action 12", // missing action 12
23 "Action 13", // missing action 13
24 "Shared File", // = 14
25 "Branch File", // = 15 ???
26 "Created File", // = 16
28 "Action 18", // missing action 18
30 // missing known actions: branches, archives, restores
33 const char* CAction::ActionToString (eAction e
)
35 if (e
< countof (g_szActions
))
36 return g_szActions
[e
];