Hi,

I'm trying to use gcc 3.4.4 to compile the Microsoft C sample at
http://msdn.microsoft.com/en-us/library/aa370663(VS.85).aspx to build a
small test program that makes the "NetWkstaGetInfo" Windows NetAPI
request. The Cygwin gcc library includes a libnetapi32.a library that
seems to include that function (see below) but linking with it gives an
"undefined reference to `_netwkstageti...@12'" error. Any idea what I am
missing - is there some other library that I need to link in too?

[Temp]: gcc -l netapi32 -o winTst2.exe winTst2.c
/cygdrive/c/Users/IPULES~2/Temp/cc4my5mj.o:winTst2.c:(.text+0x9a):
undefined reference to `_netwkstageti...@12'
/cygdrive/c/Users/IPULES~2/Temp/cc4my5mj.o:winTst2.c:(.text+0x169):
undefined reference to `_netapibufferf...@4'
collect2: ld returned 1 exit status
[Temp]: 
[Temp]: nm /usr/lib/w32api/libnetapi32.a | grep NetWkstaGetInfo
00000000 T _netwkstageti...@12
00000000 I __imp__netwkstageti...@12
[Temp]: 
[Temp]: nm /usr/lib/w32api/libnetapi32.a | grep NetApiBufferFree
00000000 T _netapibufferf...@4
00000000 I __imp__netapibufferf...@4
[Temp]:

Ian

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

Reply via email to