2016-01-13 14 views
6

Tak więc próbuję stworzyć naprawdę prostą bibliotekę abstrakcji na interfejsie API systemu Windows przy użyciu C. Zrobiłem prosty plik Makefile i kiedy próbuję zrobić projekt przy użyciu Msys, otrzymuję to:Nieparzysty błąd "nieokreślonego odniesienia"

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 

i get_client_pid() jest zdefiniowana w winapi.c jak

#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; 
    } 

Ponieważ jest to błąd linkera, dodam moje 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 

Muszę powiedzieć, że próbowałem każdego możliwego miejsca, aby wstawić "-lIphlpapi" na wypadek, gdyby połączenie było w złym porządku, ale to nie pomogło.

+0

C++ przekręcona nazwa problem? –

+0

Spróbuj dodać połączenie do funkcji użytkownika user32 i zobacz, czy to jest link –

+0

Nie jestem całkowicie zadowolony z pliku Makefile. winapi.dll powinno zależeć od winapi.o, które powinno zależeć od winapi.c. 'clean' powinno usunąć tests.exe i winapi.dll. –

Odpowiedz

2

MinGW definiuje WINVER jako 0x400 (Windows NT) w windef.h, a to oznacza, że ​​niektóre nowsze funkcje systemu Windows nie będą łączyć.

#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 

Więc trzeba określić WINVER się do wersji systemu Windows są kierowane przed włącznie z nagłówkami Windows.

Użyj jednej z następujących definicji:

#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 
Powiązane problemy