摘要: 0 COLOR_SCROLLBAR COLOR_SCROLLBAR 1 COLOR_BACKGROUND COLOR_BACKGROUND 2 COLOR_ACTIVECAPTION COLOR_ACTIVECAPTION 3 COLOR_INACTIVECAPTION COLOR_INACTIVE 阅读全文
posted @ 2023-03-03 20:48 Yofoo 阅读(52) 评论(0) 推荐(0) 编辑
摘要: 函数定义 4次多项式: y=a*x*x*x+b*x*x+c*x+d 指数方程: y=a*pow(e,b*x)+c 4参数方程: y=(a-d)/(1+pow(x/c,b))+d 其他为插值方式 数据源 数据源自热敏电阻的温度曲线, 型号为10K 三菱.TH11-3H103F 测试为0-100度的阻值 阅读全文
posted @ 2023-02-27 13:28 Yofoo 阅读(297) 评论(0) 推荐(0) 编辑
摘要: 一个软件,汉化后乱码, delphi写的 检查资源 object frmConfig: TfrmConfig Left = 780 Top = 304 BorderStyle = bsDialog Caption = '配置' ClientHeight = 382 ClientWidth = 533 阅读全文
posted @ 2023-02-24 18:22 Yofoo 阅读(264) 评论(0) 推荐(0) 编辑
摘要: setlocale 支持的参数具体的资料很少, 可以跟踪源码获取相关信息 setlocale 设置的包括, 语言,区域,国家,代码页等 以下列出系统安装的相关表 static BOOL CALLBACK LocEnumProc(CHAR *pHexCode) { LCID dwLcid; CHAR 阅读全文
posted @ 2023-02-23 11:05 Yofoo 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 应用场景如: ShowWindow + SetForegroundWindow, 用来切换窗体, 有时切换失败 对其他窗体 SendMessage WM_KEYDOWN 或其他消息控制动作, 有时逻辑异常 问题原因: 其他窗体在动作时, 会异步执行, 目前无法知道目标是否执行完成, 简单情况可以用s 阅读全文
posted @ 2023-02-17 13:12 Yofoo 阅读(31) 评论(0) 推荐(0) 编辑
摘要: windows字体问题(Win7)1. 乱码某些Delphi写的软件字体乱码;区域/语言等全改美国/英语, 然后再改成中国/中文, 3个地方, 以上操作完成后正常 2. 语言标识代码如中文 0804#define MAKELANGID(p, s) ((((WORD )(s)) << 10) | (W 阅读全文
posted @ 2023-02-17 11:20 Yofoo 阅读(129) 评论(0) 推荐(0) 编辑
摘要: | Opcode | Instruction | Description | | | | | | 0x00 | nop | Do nothing. | | 0x01 | break | Inform a debugger that a breakpoint has been reached. | | 阅读全文
posted @ 2023-02-15 13:57 Yofoo 阅读(107) 评论(0) 推荐(0) 编辑
摘要: clr中new delete导致异常, 可以使用静态对象 CSharpProxy * CSharpProxy::Instance() { static CSharpProxy s_Obj; if(g_pSharpProxy == NULL) { #if(1) g_pSharpProxy = &s_O 阅读全文
posted @ 2023-02-04 16:16 Yofoo 阅读(141) 评论(0) 推荐(0) 编辑
摘要: xxxxx.exe 中的 0x78ebb746 处最可能的异常: 0xC0000005: 读取位置 0xffffffffffffffff 时发生访问冲突 对应位置指令 0000000078EBB746 0F AE 81 00 01 00 00 fxsave [rcx+100h] 这个指令可以查看说明 阅读全文
posted @ 2023-01-29 19:03 Yofoo 阅读(76) 评论(1) 推荐(1) 编辑
摘要: ASUS的显卡TUF-GTX1660TI-6G-EVO-GAMING, 在win7下会发现这个设备, 而且nvidia没有这个win7的驱动, 有时会自动搜索这个驱动很烦 本身这个东西是没有实际硬件, 属于一个虚拟设备, 而且win7不支持这个架构, 所以没法有驱动 可以手动创建一个inf给这个设备 阅读全文
posted @ 2023-01-29 11:46 Yofoo 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 如dll导出函数, 需要定义以及QueryInterface, 其中函数有多个, 如果想代码尽量简洁, 只有这个方法 定义 #define NVIDIA_API_DEF(_fun) decltype(_fun) * _##_fun = NULL; #define NVIDIA_API_USE(_fu 阅读全文
posted @ 2023-01-22 09:44 Yofoo 阅读(41) 评论(0) 推荐(0) 编辑
摘要: 获取温度 memset(&Config, 0, sizeof(Config)); Config.version = NV_GPU_THERMAL_SETTINGS_VER; Stat = _NvAPI_GPU_GetThermalSettings(m_hNvGpu[i], NVAPI_THERMAL 阅读全文
posted @ 2023-01-18 12:37 Yofoo 阅读(371) 评论(0) 推荐(0) 编辑
摘要: UnityPlayer.dll新版加入了Jobs系统, 以前是用户使用 lib_burst 也就是JobsUtility 直接使用容易出现CPU过高问题 Unity系统使用多个线程, 线程数=CPU核心-1, 代码不好容易出现CPU一直满负载, 而且全没意义 可手动修改 JobsUtility.Jo 阅读全文
posted @ 2023-01-16 11:52 Yofoo 阅读(47) 评论(0) 推荐(0) 编辑
摘要: | mnemonic | op1 | op2 | op3 | tested f | modif f | description, notes | | | | | | | | | | ADC | r/m8 | r8 | | .......c | o..szapc | Add with Carry | 阅读全文
posted @ 2023-01-14 17:13 Yofoo 阅读(254) 评论(0) 推荐(0) 编辑
摘要: MFC在加载消息字符资源 GetMessageString 失败时会输出调试信息 解决方法: 为对应的ID添加对应资源(修改对应资源的信息非空) 重载函数修改 GetMessageString 其中包括两种方法都可以 void CMainFrame::GetMessageString(UINT nI 阅读全文
posted @ 2023-01-06 19:06 Yofoo 阅读(128) 评论(0) 推荐(0) 编辑
摘要: FileName = ..\domekeeper.exe PathList\0000\Descrip = add-jmp PathList\0000\NewHex = E916FE4400909090 PathList\0000\Offset = 01691815; PathList\0000\Ol 阅读全文
posted @ 2022-11-05 22:12 Yofoo 阅读(670) 评论(0) 推荐(0) 编辑
摘要: FileName = ..\Against the Storm - Experimental_Data\Managed\Assembly-CSharp.dll PathList\0000\Descrip = CornerstonesService__Reroll PathList\0000\NewH 阅读全文
posted @ 2022-11-05 21:44 Yofoo 阅读(180) 评论(0) 推荐(0) 编辑
摘要: FileName = ..\Crimson Dawn_Data\Managed\Assembly-CSharp.dll PathList\0000\Descrip = DropItem__Reset PathList\0000\NewHex = 1A PathList\0000\Offset = 0 阅读全文
posted @ 2022-11-05 21:42 Yofoo 阅读(64) 评论(0) 推荐(0) 编辑
摘要: FileName = ..\TankMechanicSimulator_Data\Managed\Assembly-CSharp.dll PathList\0000\Descrip = InteractionTime PathList\0000\NewHex = 220AD7A33C801B4100 阅读全文
posted @ 2022-10-27 17:26 Yofoo 阅读(40) 评论(0) 推荐(0) 编辑
摘要: FileName = ..\InsectSwarm_Data\Managed\Assembly-CSharp.dll PathList\0000\Descrip = CrystalFrags::multiplying PathList\0000\NewHex = 02027BC00000041F0A 阅读全文
posted @ 2022-10-24 20:28 Yofoo 阅读(565) 评论(0) 推荐(0) 编辑
摘要: FileName = ..\This Land Is My Land_Data\Managed\Assembly-CSharp.dll PathList\0000\Descrip = AdvancedTerrainShaderSetup::GrassDensity PathList\0000\New 阅读全文
posted @ 2022-10-22 10:27 Yofoo 阅读(37) 评论(0) 推荐(0) 编辑
摘要: FileName = ..\GameAssembly.dll PathList\0000\Descrip = AddCaverium PathList\0000\NewHex = 428D1438C1E202 PathList\0000\Offset = 003FEB89; PathList\000 阅读全文
posted @ 2022-10-22 10:24 Yofoo 阅读(365) 评论(0) 推荐(0) 编辑
摘要: FileName = ..\en_us\client\bin\pc\wwz_server_dllRetail.dll PathList\0000\Descrip = value__operate-jmp PathList\0000\NewHex = E954165401 PathList\0000\ 阅读全文
posted @ 2022-09-02 17:34 Yofoo 阅读(243) 评论(0) 推荐(0) 编辑
摘要: FileName = ..\GameAssembly.dll PathList\0000\Descrip = CombatUpdateTimeSpeedLimit PathList\0000\NewHex = EB17F30F1005986932010F2FC6720AF30F100DA365310 阅读全文
posted @ 2022-09-02 16:59 Yofoo 阅读(339) 评论(0) 推荐(0) 编辑
摘要: FileName = ..\GameAssembly.dll PathList\0000\Descrip = get_craftingTime PathList\0000\NewHex = 488B0131D2FFC2F30F2AC2F30F118090000000C3 PathList\0000\ 阅读全文
posted @ 2022-09-02 16:58 Yofoo 阅读(137) 评论(0) 推荐(0) 编辑
摘要: FileName = ..\Sheltered2_Data\Managed\Assembly-CSharp.dll PathList\0000\Descrip = CreateDirectionalLight PathList\0000\NewHex = 0000000000000000000000 阅读全文
posted @ 2022-09-02 16:57 Yofoo 阅读(391) 评论(0) 推荐(0) 编辑
摘要: FileName = ..\x64\Game.dll PathList\0000\Descrip = ReceiveExperience PathList\0000\NewHex = C6811B1A000000C3C1E204488BC4EB03EBF69055 PathList\0000\Off 阅读全文
posted @ 2022-09-02 16:54 Yofoo 阅读(130) 评论(1) 推荐(0) 编辑
摘要: FileName = ..\LC_Data\Managed\Assembly-CSharp.dll PathList\0000\Descrip = SkillRequired PathList\0000\NewHex = 027BB50300046F220E00067B730300043A00000 阅读全文
posted @ 2022-09-02 16:48 Yofoo 阅读(182) 评论(0) 推荐(0) 编辑
摘要: FileName = ..\DecisionRedDaze_Data\Managed\Assembly-CSharp.dll PathList\0000\Descrip = DynamicStatSleep__UpdatePerSecond PathList\0000\NewHex = 6FF826 阅读全文
posted @ 2022-09-02 16:48 Yofoo 阅读(371) 评论(0) 推荐(0) 编辑
摘要: FileName = ..\GameAssembly.dll PathList\0000\Descrip = GetRarityConfig PathList\0000\NewHex = 33C9FFC1F30F2AC990904D8BC54531C9 PathList\0000\Offset = 阅读全文
posted @ 2022-07-30 15:43 Yofoo 阅读(93) 评论(0) 推荐(0) 编辑
摘要: FileName = ..\GameAssembly.dll PathList\0000\Descrip = get_Cost PathList\0000\NewHex = F30F2CC0678D00 PathList\0000\Offset = 00496456;004979DD; PathLi 阅读全文
posted @ 2022-07-30 15:38 Yofoo 阅读(45) 评论(0) 推荐(0) 编辑
摘要: FileName = ..\Dream Engines_Data\Managed\Assembly-CSharp.dll PathList\0000\Descrip = CameraScript__RemoveFogOfWar PathList\0000\NewHex = 1700000000002 阅读全文
posted @ 2022-07-30 15:35 Yofoo 阅读(116) 评论(0) 推荐(0) 编辑
摘要: FileName = G:\Game\Loop Hero\Loop Hero.exe PathList\0000\Descrip = .mydata-flag PathList\0000\NewHex = 400000F0 PathList\0000\Offset = 000002BC; PathL 阅读全文
posted @ 2022-06-20 10:02 Yofoo 阅读(244) 评论(0) 推荐(0) 编辑
摘要: FileName = ..\Nomad Survival.exe PathList\0000\Descrip = thread PathList\0000\NewHex = 833D80C28D00007D5756 PathList\0000\Offset = 0006F370; PathList\ 阅读全文
posted @ 2022-06-19 21:35 Yofoo 阅读(2336) 评论(1) 推荐(0) 编辑
摘要: FileName = ..\GameAssembly.dll PathList\0000\Descrip = UpdateMaxStorageResources PathList\0000\NewHex = 7438488B4424704885C00F84E20100008078300074D74C 阅读全文
posted @ 2022-06-19 21:16 Yofoo 阅读(106) 评论(0) 推荐(0) 编辑
摘要: FileName = ..\TSS_Data\Managed\TSS.Logic.dll PathList\0000\Descrip = Cluster__Turn PathList\0000\NewHex = 289F01000622000000005828A00100060000000000 P 阅读全文
posted @ 2022-06-19 21:15 Yofoo 阅读(219) 评论(0) 推荐(0) 编辑
摘要: FileName = G:\Game\Zombie.Shooter.Ares.Virus-Unleashed\zbs_steam\Zombie Shoot_Data\Managed\Assembly-CSharp.dll PathList\0000\Descrip = maxBulletNum-dr 阅读全文
posted @ 2022-06-19 21:13 Yofoo 阅读(139) 评论(0) 推荐(0) 编辑
摘要: FileName = ..\Northend Tower Defense_Data\Managed\Assembly-CSharp.dll PathList\0000\Descrip = hpGain PathList\0000\NewHex = 310002027B53000004185A027B 阅读全文
posted @ 2022-06-19 21:11 Yofoo 阅读(393) 评论(0) 推荐(0) 编辑
摘要: FileName = ..\GameAssembly.dll PathList\0000\Descrip = $$RerollCostX PathList\0000\NewHex = 8B402090 PathList\0000\Offset = 0024E101; PathList\0000\Ol 阅读全文
posted @ 2022-06-19 21:10 Yofoo 阅读(229) 评论(0) 推荐(0) 编辑
摘要: FileName = ..\Space Scavenger_Data\Managed\Assembly-CSharp.dll PathList\0000\Descrip = rerollPrice PathList\0000\NewHex = 02167D2207000400000000000000 阅读全文
posted @ 2022-05-19 17:41 Yofoo 阅读(30) 评论(0) 推荐(0) 编辑