| #!/usr/bin/python  | 
| # -*- coding: GBK -*-  | 
| #-------------------------------------------------------------------------------  | 
| #  | 
| #-------------------------------------------------------------------------------  | 
| #  | 
| ##@package Player.RemoteQuery.GY_Query_MergePKAddCnt  | 
| #  | 
| # @todo:¿ç·þPKÔö¼ÓPK´ÎÊý  | 
| # @author hxp  | 
| # @date 2015-10-25  | 
| # @version 1.0  | 
| #  | 
| # ÏêϸÃèÊö: ¿ç·þPKÔö¼ÓPK´ÎÊý  | 
| #  | 
| #---------------------------------------------------------------------  | 
| """Version = 2015-10-25 17:00"""  | 
| #---------------------------------------------------------------------  | 
|   | 
| import GameWorld  | 
| import PlayerMergePK  | 
|   | 
|   | 
| ## Ö´Ðнá¹û  | 
| #  @param curPlayer ·¢³öÇëÇóµÄÍæ¼Ò  | 
| #  @param callFunName ¹¦ÄÜÃû³Æ  | 
| #  @param funResult ²éѯµÄ½á¹û  | 
| #  @param tick µ±Ç°Ê±¼ä  | 
| #  @return None  | 
| #  @remarks º¯ÊýÏêϸ˵Ã÷.  | 
| def DoResult(curPlayer, callFunName, funResult, tick):  | 
|     GameWorld.DebugLog("GY_Query_MergePKAddCnt funResult=%s" % funResult)  | 
|     PlayerMergePK.AddMergePKCnt(curPlayer)  | 
|     return  | 
|   |