00001 00032 #ifndef LL_LLLOGINFLAGS_H 00033 #define LL_LLLOGINFLAGS_H 00034 00035 // Is this your first login to Second Life? 00036 const U32 LOGIN_FLAG_FIRST_LOGIN = (1 << 0); 00037 00038 // Is this a trial account? 00039 const U32 LOGIN_FLAG_TRIAL = (1 << 1); 00040 00041 // Stipend paid since last login? 00042 const U32 LOGIN_FLAG_STIPEND_SINCE_LOGIN = (1 << 2); 00043 00044 // Is your account enabled? 00045 const U32 LOGIN_FLAG_ENABLED = (1 << 3); 00046 00047 // Is the Pacific Time zone (aka the server time zone) 00048 // currently observing daylight savings time? 00049 const U32 LOGIN_FLAG_PACIFIC_DAYLIGHT_TIME = (1 << 4); 00050 00051 // Does the avatar have wearables or not 00052 const U32 LOGIN_FLAG_GENDERED = (1 << 5); 00053 00054 // Kick flags 00055 const U32 LOGIN_KICK_OK = 0x0; 00056 const U32 LOGIN_KICK_NO_AGENT = (1 << 0); 00057 const U32 LOGIN_KICK_SESSION_MISMATCH = (1 << 1); 00058 const U32 LOGIN_KICK_NO_SIMULATOR = (1 << 2); 00059 00060 #endif