/// <summary> /// 获取结果返回最大数量 /// </summary> /// <returns>结果返回最大数量(0xFFFFFFFF为所有结果)</returns> public static uint CF_GetMax() { try { if (CP_Platform == EPlatform.X86) { return(ModEverything32.Everything_GetMax()); } else { return(ModEverything64.Everything_GetMax()); } } catch (Exception ex) { throw ex; } }