- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
因此,我尝试使用 C 在 Windows API 之上创建一个非常简单的抽象库。我创建了一个简单的 Makefile,当我尝试使用 Msys 创建项目时,我得到了这个:
winapi.o: In function `get_client_pid':
(long path)/winapi.c:13: undefined reference to `GetExtendedTcpTable'
(long path)/winapi.c:31: undefined reference to `GetExtendedTcpTable'
collect2.exe: error: ld returned 1 exit status
make: *** [lib] Error 1
get_client_pid() 在 winapi.c 中定义为
#include <stdint.h>
#include <stdio.h>
#include <windows.h>
#include <Iphlpapi.h>
#define true 1
#define false 0
uint32_t get_client_pid()
{
MIB_TCPTABLE_OWNER_PID *tcpTable;
PDWORD tableSize;
DWORD ret = GetExtendedTcpTable(tcpTable,
tableSize,
true,
2,
TCP_TABLE_OWNER_PID_ALL,
0);
if (ret == NO_ERROR) {
printf("ERROR get_client_pid: No error with table size at 0?\n");
return 0;
}
if (ret != ERROR_INSUFFICIENT_BUFFER) {
printf("ERROR get_client_pid: No insufficient buffer with table size at 0?\n");
return 0;
}
printf("TABLE SIZE %d\n", *tableSize);
tcpTable = malloc(*tableSize);
ret = GetExtendedTcpTable( tcpTable,
tableSize,
true,
2,
TCP_TABLE_OWNER_PID_ALL,
0);
if (ret != NO_ERROR) {
printf("ERROR get_client_pid: GetExtendedTcpTable error: %d\n", ret);
free(tcpTable);
return 0;
}
int i;
for (i = 0; i < tcpTable->dwNumEntries; i++) {
MIB_TCPROW_OWNER_PID row = tcpTable->table[i];
if (row.dwRemotePort == 0x208 && row.dwRemoteAddr == 0x100007F) {
printf("FOUND PROCESS: %d\n", row.dwOwningPid);
free(tcpTable);
return row.dwOwningPid;
}
}
free(tcpTable);
return 0;
}
由于这是一个链接器错误,我将添加我的 makefile:
current_dir = $(shell pwd)
all: test
test: lib
gcc -c -g tests.c
gcc -o tests.exe tests.o -L$(current_dir) -lwinapi
lib:
gcc -c -g winapi.c
gcc -shared -o winapi.dll winapi.o -lIphlpapi -luser32
clean:
rm *.o
我不得不说,我尝试了所有可能的地方来插入“-lIphlpapi”,以防链接顺序错误,但这没有帮助。
最佳答案
MinGW 在 windef.h 中将 WINVER
定义为 0x400
(Windows NT),这意味着 Windows 的一些较新的功能将不会链接。
#ifndef WINVER
#define WINVER 0x0400
/*
* If you need Win32 API features newer the Win95 and WinNT then you must
* define WINVER before including windows.h or any other method of including
* the windef.h header.
*/
#endif
因此,您需要自己定义 WINVER
到您之前针对的 Windows 版本,包括任何 Windows header 。
使用以下定义之一:
#define WINVER 0x0500 // Windows 2000
#define WINVER 0x0501 // Windows XP
#define WINVER 0x0502 // Windows Server 2003
#define WINVER 0x0600 // Windows Vista, Windows Server 2008
#define WINVER 0x0601 // Windows 7
#define WINVER 0x0602 // Windows 8
#define WINVER 0x0603 // Windows 8.1
#define WINVER 0x0A00 // Windows 10
关于c - 奇数 "undefined reference"错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34776543/
我只是有一个更琐碎的问题。 为什么undefined == undefined 返回true,而undefined >= undefined 为false? undefined 等于 undefine
用PHP 7.2编写套接字服务器。根据Firefox 60中的“网络”选项卡,服务器的一些HTTP响应的第一行随机变为undefined undefined undefined。因此,我尝试记录套接字
在 JavaScript 中这是真的: undefined == undefined 但这是错误的: undefined <= undefined 起初我以为<=运算符包含第一个,但我猜它试图将其转换
在回答这个问题 (Difference between [Object, Object] and Array(2)) 时,我在 JavaScript 数组中遇到了一些我以前不知道的东西(具有讽刺意味的
来自https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Array/of , Note: thi
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
当我添加 到我的 PrimeFaces Mobile 页面,然后我在服务器日志中收到以下警告 WARNING: JSF1064: Unable to find or serve resource, u
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我是一名优秀的程序员,十分优秀!