enum { LJNoLoginFlags = 0, LJGetMoodsLoginFlag = 0x00000001, LJGetMenuLoginFlag = 0x00000002, LJGetUserPicturesLoginFlag = 0x00000004, LJDoNotUseFastServersLoginFlag = 0x00000008, LJDefaultLoginFlags = 0x00000007, LJReservedLoginFlags = 0xFFFFFFF0, };
These flags are used with the loginWithPassword:flags: method to
determine what features of the LJKit you wish to enable or disable.
They can be combined with the bitwise OR operator (|).
Name Description LJNoLoginFlags Don't download any extra information. LJGetMoodsLoginFlag Download mood information. Updates the current mood object if it has already been set using the setMoods: method. Otherwise, creates a new moods object. LJGetMenuLoginFlag Creates a web menu. After login it can be retrieved with the menu method. LJGetUserPicturesLoginFlag Download keywords and URLs for account pictures. After login they can be retrieved with the userPicturesDictionary method. LJDoNotUseFastServersLoginFlag Don't enable fast server access, even if the server offers it. Has no effect if fast server access is not offered. LJDefaultLoginFlags Downloads all available information and enabled fast server access if offered. LJReservedLoginFlags These bits are reserved and must be set to zero.
(Last Updated 2/17/2003)