zoukankan      html  css  js  c++  java
  • WIN32中GetCommandLine函数

         刚学习不太理解GetCommandLine函数的作用,所以网上搜索了一下,做个笔记,理解不一定准确,还望大家指点。    

         win32可执行程序分为两种类型,基于控制台(Consol-based)的和基于窗口(Windows-based)的。基于控制台程序它的入口函数是传统的main,基于窗口的则是WinMain。这两个入口函数一大区别是对于命令行参数的处理。WinMain函数原型为:

     

    int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nShowCmd)

    窗口应用程序的运行需要命令行参数的支持,即WinMain函数第三个参数,举个例子:当我们打开一个txt文件时,我们可以这样 notepad.exe c:abc.txt ,这时c:abc.txt就是一个命令行参数,命令行参数的作用就好像是给应用程序notepad.exe提供一个提示:要打开哪个文件,在这个例子中就是文件的路径。

    GetCommandLine函数的作用是获取程序的命令行参数然后以参数的形式传递给WinMain函数

    invoke GetCommandLine; mov    CommandLine,eax

  • 相关阅读:
    springcloud(三)
    springcloud(二)
    spring-cloud(一)
    springboot(三)
    springboot(二)
    springboot(一)
    dubbox
    SpringBoot终章(整合小型进销系统)
    SpringBoot第三节(thymeleaf的配置与SpringBoot注解大全)
    SpringBoot--集成Shiro
  • 原文地址:https://www.cnblogs.com/wxl2578/p/3252148.html
Copyright © 2011-2022 走看看