// Provide a default path to dwr.engine if (dwr == null) var dwr = {}; if (dwr.engine == null) dwr.engine = {}; if (DWREngine == null) var DWREngine = dwr.engine; dwr.engine._defaultPath = '/dwr'; if (FriendService == null) var FriendService = {}; FriendService._path = '/dwr'; FriendService.getMyFriendList = function(p0, p1, p2, callback) { dwr.engine._execute(FriendService._path, 'FriendService', 'getMyFriendList', p0, p1, p2, callback); } FriendService.getContactList = function(p0, p1, p2, callback) { dwr.engine._execute(FriendService._path, 'FriendService', 'getContactList', p0, p1, p2, callback); } FriendService.getBlockList = function(p0, p1, p2, callback) { dwr.engine._execute(FriendService._path, 'FriendService', 'getBlockList', p0, p1, p2, callback); } FriendService.countFriend = function(p0, callback) { dwr.engine._execute(FriendService._path, 'FriendService', 'countFriend', p0, callback); }