当前位置: 首页 > news >正文

0x0118消息 WM_SYSTIMER

0x0118消息就是WM_SYSTIMER

编辑框出现输入光标时,产生的消息.

0x0118 would be the undocumented WM_SYSTIMER, which appears to be used for caret blinks.

0x0118是一个undocument 消息, 微软没有记录。
但在一些库的源码中可以看到,比如ATL的库文件atlapp.h中,如此写到:

static BOOL IsIdleMessage(MSG* pMsg)
{
// These messages should NOT cause idle processing
switch(pMsg->message)
{
case WM_MOUSEMOVE:
#ifndef _WIN32_WCE
case WM_NCMOUSEMOVE:
#endif //!_WIN32_WCE
case WM_PAINT:
case 0x0118: // WM_SYSTIMER (caret blink)
return FALSE;
}return TRUE;
}


由此可知0x0118是WM_SYSTIMER 消息

INFO: Windows WM_SYSTIMER Message Is an Undocumented Message
Q108938
The information in this article applies to:
Microsoft Win32 Software Development Kit (SDK)
Microsoft Windows Software Development Kit (SDK) 3.1

SUMMARY
The WM_SYSTIMER message in Windows is an undocumented system message; it should not be trapped or relied on by an application. This message can occasionally be viewed in Spy or in CodeView while debugging. Windows uses the WM_SYSTIMER message internally to control the scroll rate of highlighted text (text selected by the user) in edit controls, or highlighted items in list boxes.
NOTE: The WM_SYSTIMER message is for Windows's internal use only and can be changed without prior notice.

http://www.lryc.cn/news/498637.html

相关文章:

  • 【机器学习】机器学习的基本分类-无监督学习(Unsupervised Learning)
  • [代码随想录09]字符串2的总结
  • java注解(一):什么是注解?什么是元注解?如何自定义注解?注解的原理是什么?
  • AD20 原理图库更新到原理图
  • .NET用C#导入Excel数据到数据库
  • 小身躯大能量-供热系统通过EtherCAT转Profinet网关进行升级
  • Android11.0系统关闭App所有通知
  • # issue 8 TCP内部原理和UDP编程
  • 力扣100题--移动零
  • Spring 邮件发送
  • 利用 360 安全卫士极速版关闭电脑开机自启动软件教程
  • 楼房销售系统
  • UML箭线图的理解和实践
  • Qt入门8——Qt文件
  • 鸿翼受邀出席2024海峡两岸档案暨缩微学术交流会
  • 支持win7系统的onnxruntime
  • 如何利用内链策略提升网站的整体权重?
  • 鸿蒙分享(二):引入zrouter路由跳转+封装
  • 【计算机网络】实验11:边界网关协议BGP
  • leetcode 1853 转换日期格式(postgresql)
  • 掌握时间,从`datetime`开始
  • 剖析千益畅行,共享旅游-卡,合规运营与技术赋能双驱下的旅游新篇
  • 集合框架(2)List
  • 【子查询】.NET开源 ORM 框架 SqlSugar 系列
  • 西安理工大学丨ChatGPT助力学术论文写作训练营-助力发表SCI一区、二区
  • go get依赖包失败,502 Bad gateway
  • 71、docker镜像制作上传/下载到阿里云
  • ZLMediaKit+wvp (ffmpeg+obs)推拉流测试
  • POSTGRESQL跟ORACLE语法区别和相同之处
  • 【知识点】图与图论入门