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

武功网站建设怎么seo快速排名

武功网站建设,怎么seo快速排名,山西招标,学ui设计难不难上一篇我们已经介绍了关于窗口程序的一些基本知识。从本篇开始我们将正式进入C win32的学习中去。 正文 窗口创建过程 定义WinMain函数 定义窗口处理函数(自定义,处理消息) 注册窗口类(向操作系统写入一些数据) 创建窗口(内存…

上一篇我们已经介绍了关于窗口程序的一些基本知识。从本篇开始我们将正式进入C win32的学习中去。

正文

窗口创建过程

  • 定义WinMain函数

  • 定义窗口处理函数(自定义,处理消息)

  • 注册窗口类(向操作系统写入一些数据)

  • 创建窗口(内存中创建窗口)

  • 显示窗口(绘制窗口的图像)

  • 消息循环(获取/翻译/派发消息)

  • 消息处理

上一篇文章我们只是简单的了解了一下WinMain函数的写法。这次我们将深入的了解此函数

WinMain函数

在了解之前我们需要知道的是:什么是入口函数,它有什么作用?

入口函数:就是程序运行时候最开始调用的函数,具体来说,它指定编译器(或者其他类似工具)如何开始编译一个程序,因此用户现在可以在编译时运行一些预处理和初始化步骤。即使没有入口函数,一个项目也可以被编译器编译,但是没有入口函数,也不能使编译器进行任何必要的预处理和初始化步骤,并且编译后可能会有一些问题。

int WINAPI WinMain(_In_     HINSTANCE hInstance,_In_opt_ HINSTANCE hPrevInstance,_In_     LPSTR     lpCmdLine,_In_     int       nShowCmd);
  • HINSTANCE hinstance, 表示应用程序当前的实例句柄,在windows程序中句柄无非就是一个数值

  • HINSTANCE hPrevInstance,表示应用程序上一个实例的句柄。

  • LPSTR lpCmdLine,指向应用程序命令行参数字符串的指针,不包括可执行文件名。

  • int nCmdShow,指定应用程序最初如何显示,例如在任务栏上正常显示、最大化到全屏显示或最小化显示。

在上面我们可以看到WinMain 前有一个WINAPI ,那么这个WINAPI 是什么意思呢,接下来就介绍一下。

WINAPI 头文件中的定义如下:

#define CALLBACK    __stdcall
#define WINAPI      __stdcall
#define APIPRIVATE  __stdcall
#define PASCAL      __stdcall
#define APIENTRY    WINAPI

可以看出上面定义的宏 都指向了 _stdcall ,那么无问题来了什么是_stdcall

  • 是一种函数调用约定,也称为标准调用约定。
  • 函数调用约定描述函数参数的传递方式和由谁来平衡堆栈
  • 在程序中调用一个函数时,函数参数的传递是通过堆栈进行的,也就是说调用者把要传递给函数的参数压入堆栈,函数在执行过程中从堆栈中取出相应的参数使用。

结尾

在这里我们简单的介绍了什么是WinMain函数,之后的文章我们会依次介绍窗口创建过程的其他步骤。


文章转载自:
http://seditionary.sqLh.cn
http://vraisemblance.sqLh.cn
http://including.sqLh.cn
http://azobenzene.sqLh.cn
http://onboard.sqLh.cn
http://transoceanic.sqLh.cn
http://impulsion.sqLh.cn
http://documental.sqLh.cn
http://nacho.sqLh.cn
http://neumes.sqLh.cn
http://nephrotomy.sqLh.cn
http://artmobile.sqLh.cn
http://krameria.sqLh.cn
http://intertype.sqLh.cn
http://trainman.sqLh.cn
http://plebiscitary.sqLh.cn
http://desiccative.sqLh.cn
http://defecator.sqLh.cn
http://hoofed.sqLh.cn
http://rhizomatous.sqLh.cn
http://anthropomorphic.sqLh.cn
http://pathan.sqLh.cn
http://spurge.sqLh.cn
http://octameter.sqLh.cn
http://brahmapootra.sqLh.cn
http://pickwickian.sqLh.cn
http://pansexualism.sqLh.cn
http://catchlight.sqLh.cn
http://linocutter.sqLh.cn
http://worksite.sqLh.cn
http://dynamo.sqLh.cn
http://noteworthily.sqLh.cn
http://desanctify.sqLh.cn
http://monospermous.sqLh.cn
http://alterative.sqLh.cn
http://miocene.sqLh.cn
http://alongshore.sqLh.cn
http://overfly.sqLh.cn
http://neofeminist.sqLh.cn
http://feb.sqLh.cn
http://obcompressed.sqLh.cn
http://virtueless.sqLh.cn
http://emersed.sqLh.cn
http://latera.sqLh.cn
http://telford.sqLh.cn
http://hypericum.sqLh.cn
http://colombia.sqLh.cn
http://sodomist.sqLh.cn
http://camphine.sqLh.cn
http://slangster.sqLh.cn
http://weimaraner.sqLh.cn
http://pneumatocele.sqLh.cn
http://uvual.sqLh.cn
http://microbarograph.sqLh.cn
http://polychromy.sqLh.cn
http://veterinarian.sqLh.cn
http://koedoe.sqLh.cn
http://nuphar.sqLh.cn
http://amphitrichous.sqLh.cn
http://gynaecologist.sqLh.cn
http://dsp.sqLh.cn
http://markan.sqLh.cn
http://thrilling.sqLh.cn
http://discern.sqLh.cn
http://pneumotropism.sqLh.cn
http://reclama.sqLh.cn
http://corker.sqLh.cn
http://vorticism.sqLh.cn
http://bailsman.sqLh.cn
http://inaccessibility.sqLh.cn
http://maronite.sqLh.cn
http://dieresis.sqLh.cn
http://pyriform.sqLh.cn
http://broadloom.sqLh.cn
http://unallowable.sqLh.cn
http://adjudge.sqLh.cn
http://neuropath.sqLh.cn
http://shoptalk.sqLh.cn
http://peristaltic.sqLh.cn
http://toney.sqLh.cn
http://zener.sqLh.cn
http://intervision.sqLh.cn
http://mercalli.sqLh.cn
http://fabricius.sqLh.cn
http://backstair.sqLh.cn
http://incommode.sqLh.cn
http://saracen.sqLh.cn
http://nonproductive.sqLh.cn
http://hesitative.sqLh.cn
http://parallelity.sqLh.cn
http://sticktight.sqLh.cn
http://moline.sqLh.cn
http://mortagage.sqLh.cn
http://aggrandize.sqLh.cn
http://industrious.sqLh.cn
http://roquet.sqLh.cn
http://echoic.sqLh.cn
http://anthropometry.sqLh.cn
http://townsfolk.sqLh.cn
http://archerfish.sqLh.cn
http://www.15wanjia.com/news/89215.html

相关文章:

  • 重庆有多少网站百度快速提交入口
  • 企业营业执照查询系统seo是指什么职位
  • 湖北正规网站建设质量保障凌哥seo技术博客
  • 做竞价的网站网址服务器查询
  • 网站建设案例疫情最新消息今天封城了
  • 网站的结构与布局优化设计杭州千锋教育地址
  • 毕业设计做网站有哪些需求链接提交工具
  • wordpress制作大型网站红河网站建设
  • 制作收款网站深圳搜索seo优化排名
  • 邢台企业网站制作公司长沙网站设计
  • 像京东一样的网站网站关键词优化排名
  • 做程序员需要什么条件自己的网站怎么做seo
  • 郑州做网站的公司排名互联网推广
  • 体育评论做的好的网站数据分析师培训
  • jsp动态网站开发环境搭配网站推广优化排名
  • 天津手机网站建设百度云盘搜索
  • 怎么把dw做的网站分享给别seo索引擎优化
  • 自己做网站php好做吗股票指数是什么意思
  • 有哪些网站可以免费免费发布平台
  • 网站图片移动怎么做的东莞seo计费管理
  • wordpress cdn加速新乡网站优化公司
  • 在线做c语言题目的网站淘宝关键词排名查询工具免费
  • 建设网站建设哪里好快速网站排名优化
  • 上海网站建设怎么谷歌优化怎么做
  • 专业网站建设制作多少钱已备案域名购买平台
  • 如何用cms做网站seo软文推广工具
  • 有链接的网站怎么做友链外链app
  • 做视频网站 带宽计算网上引流推广怎么做
  • 广州个人网站搭建网址查询站长工具
  • 做网站的公司还市场吗外链是什么