EvEmu  0.8.4
11 September 2021
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
LSC Namespace Reference

Enumerations

enum  Type {
  global = 1, corp = 2, region = 3, constellation = 4,
  solarsystem = 5, solarsystem2 = 6, character = 7, alliance = 8,
  fleet = 9, wing = 10, squad = 11, warfaction = 12,
  incursion = 13, normal = 14, custom = 15
}
 
enum  Mode {
  chDisallowed = -2, chUnspecified = -1, chNone = 0, chListener = 1,
  chSpeaker = 2, chConversationalist = 3, chOperator = 7, chCreator = 15
}
 
enum  Error {
  errUnspecified = -1, errDisallowed = -2, errNoSuchChannel = -3, errAccessDenied = -4,
  errWrongPass = -5, errChannelExists = -6, errTooManyChannels = -7
}
 

Enumeration Type Documentation

enum LSC::Error
Enumerator
errUnspecified 
errDisallowed 
errNoSuchChannel 
errAccessDenied 
errWrongPass 
errChannelExists 
errTooManyChannels 

Definition at line 102 of file EVE_LSC.h.

enum LSC::Mode
Enumerator
chDisallowed 
chUnspecified 
chNone 
chListener 
chSpeaker 
chConversationalist 
chOperator 
chCreator 

Definition at line 91 of file EVE_LSC.h.

91  {
92  chDisallowed = -2,
93  chUnspecified = -1,
94  chNone = 0,
95  chListener = 1,
96  chSpeaker = 2,
98  chOperator = 7,
99  chCreator = 15
100  };
enum LSC::Type
Enumerator
global 
corp 
region 
constellation 
solarsystem 
solarsystem2 
character 
alliance 
fleet 
wing 
squad 
warfaction 
incursion 
normal 
custom 

Definition at line 71 of file EVE_LSC.h.

71  {
72  global = 1, // send channelID as tuple(id, desc) uses full memberlist, never memberless
73  corp = 2, // send channelID as tuple(id, desc) uses full memberlist, never memberless
74  region = 3, // send channelID as tuple(id, desc) uses full memberlist, never memberless, not used in w-space
75  constellation = 4, // send channelID as tuple(id, desc) uses full memberlist, never memberless, not used in w-space
76  solarsystem = 5, // send channelID as tuple(id, desc) used in w-space, memberless, changes chat window title from "Local" to "System"
77  solarsystem2 = 6, // send channelID as tuple(id, desc) uses full memberlist, never memberless, not used in w-space (k-space "Local" channel)
78  // end of static channels
79  character = 7, // for mailing lists using channelID = charID
80  // begin dynamic channels
81  alliance = 8,
82  fleet = 9,
83  wing = 10,
84  squad = 11,
85  warfaction = 12,
86  incursion = 13,
87  normal = 14, // trial accts arent time buffered (channelID > 2100000000)
88  custom = 15 // invite only. channelID < 0
89  };