コード例 #1
0
        public virtual int sceNetResolverStop(int rid)
        {
            ResolverID currentRID = RIDs[rid];

            if (!currentRID.IDStatus)
            {
                return(SceKernelErrors.ERROR_NET_RESOLVER_ALREADY_STOPPED);
            }

            currentRID.stop();

            return(0);
        }