Articles
80
Tags
32
Categories
9
Home
Seagull Blog
01-内核对象
Back to Home
Home
01-内核对象
Created
2025-08-08
|
Updated
2025-10-14
|
windows客户端&内核开发
1-windows核心编程
|
Post Views:
正在更新中…
Author:
LYJ
Link:
http://lyjseagull.github.io/windows-kernel-01-Program/
Copyright Notice:
All articles on this blog are licensed under
CC BY-NC-SA 4.0
unless otherwise stated.
内核对象
Previous
01-WindowsAPI下的窗口构建
windows api 窗口部分int APIENTRY wWinMain( _In_ HINSTANCE hInstance, //本应用程序实例句柄,唯一指代当前程序 _In_opt_ HINSTANCE hPrevInstance, //本程序前一个实例,一般是null _In_ LPWSTR lpCmdLine, //应用程序运行参数 _In_ int nCmdShow) //窗口如何显示(最大化、最小化、隐藏),不需理会{ if (!app->initApplication(hInstance, 800, 600)) { return -1; } //将bmp指向的内存配置到sgl当中 sgl->initSurface(app->getWidth(), app->getHeight(), app->getCanvas()); bool alive = true; while (alive) { alive = app->peekMessage(); render(...
LYJ
Articles
80
Tags
32
Categories
9
Follow Me
Announcement
This is Seagull Blog
Contents
1.
正在更新中…
Post Series
01-内核对象
2025-08-08
Recent Posts
01-Assimp库解析网格文件
2025-10-30
15-了解异常处理(exception handling)的成本
2025-10-29
14-明智运用exception specifications
2025-10-28
13-以by reference方式捕捉exceptions
2025-10-27
12-了解“抛出一个exception”与“传递一个参数”或“调用一个虚函数”之间的差异
2025-10-26