Mailing-List: contact cygwin-help@sourceware.cygnus.com; run by ezmlm
List-Subscribe: <mailto:cygwin-subscribe@sources.redhat.com>
List-Archive: <http://sources.redhat.com/ml/cygwin/>
List-Post: <mailto:cygwin@sources.redhat.com>
List-Help: <mailto:cygwin-help@sources.redhat.com>, <http://sources.redhat.com/ml/#faqs>
Sender: cygwin-owner@sources.redhat.com
Delivered-To: mailing list cygwin@sources.redhat.com
From: Chris Faylor <cgf@cygnus.com>
Date: Thu, 28 Sep 2000 21:30:13 -0400
To: cygwin@sources.redhat.com
Subject: Re: GetSecurityInfo() link problem
Message-ID: <20000928213013.A16204@cygnus.com>
Reply-To: cygwin@sources.redhat.com
Mail-Followup-To: cygwin@sources.redhat.com
References: <200009281312.PAA01402@mail.eng.it>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.3.6i
In-Reply-To: <200009281312.PAA01402@mail.eng.it>; from lauri@mail.eng.it on Thu, Sep 28, 2000 at 03:12:00PM +0200

On Thu, Sep 28, 2000 at 03:12:00PM +0200, Gian Uberto Lauri wrote:
>I had problem while trying to use this call. Even if I added advapi32 to
>the linking list I got a missing simbol error from ld.
>
>/*
>	I was trying to use this call and GetWindowThreadProcessID()
>	because an attempt to CreateProcess() in a window procedure
>	crashed and the same attempt from a spawned thread failed.
>
>	Then I reverted to the good old system() and everything
>	is o.k. now... 
>
>	But the linker error is still there...
>*/

#if 1
You are probably not including the correct header file to declare
these two functions.  You probably need to include "windows.h".
From the MSDN documentation, GetWindowThreadProcessId is located in
user32.dll.
#endif

// cgf

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

