winapi – 如何从Cygwin程序中调用Win32 API

我正在寻找在我正在开发的项目中使用Win32 API.但是我不知道如何从我的cygwin项目中调用Win32 API.有人能指出我正确的方向吗?

解决方法

可以通过包含“ windows.h”头文件从cygwin程序访问Win32 API.这意味着你安装了win32软件包,当然.这是一个示例程序:

#include <iostream>
#include <string>
#include <windows.h>

int main(int argc,char *argv[])
{
    std::string val;

    if (argc > 1)
    {
        val = argv[1];
    }

    std::cout << "You typed: " << val << std::endl;
    ::MessageBox(NULL,val.c_str(),"You Typed:",MB_OK);

    return 0;
}

这可以编译并与“make filename”链接,其中filename.cpp包含上述源.然后在bash提示符下键入./filename xxxx来执行.然后xxxx将出现在消息框窗口中.

相关文章

Windows2012R2备用域控搭建 前置操作 域控主域控的主dns:自...
主域控角色迁移和夺取(转载) 转载自:http://yupeizhi.blo...
Windows2012R2 NTP时间同步 Windows2012R2里没有了internet时...
Windows注册表操作基础代码 Windows下对注册表进行操作使用的...
黑客常用WinAPI函数整理之前的博客写了很多关于Windows编程的...
一个简单的Windows Socket可复用框架说起网络编程,无非是建...