Vincent R. wrote:
> On Tue, 07 Apr 2009 14:58:27 +0200, Marcel Smit <ms...@remedy.nl> wrote:
>> Hi all,
>>
>> I managed to compile my project with CE gcc. Now I run into some linker 
>> problems.
>> The following references cannot be found:
>>
>> - LockFileEx
>> - UnlockFileEx
>> - GetSystemTimeAsFileTime
>>
>> Using arm-wince-mingw32ce-nm -C doesn't reveal these functions in any of 
>> the supplied CE gcc libraries.
>> The latter function (GetSystemTimeAsFileTime) was introduced in Windows 
>> CE 6.0. Could it be that this one isn't implemented yet?
>>
>> I managed to link my projects using workarounds but since my project is 
>> a platform independent library, supporting as many as possible API 
>> functions for various platforms, I prefer not to use workarounds at this 
>> point.
>>
>> Thanks in advance for your answers !!
>>
>> Regards,
>> Marcel.
>>
> Your workaround are not workaround !
> It just means that cegcc is lacking some definitions and in this case you
> have to wait a project Manager adds it to cegcc repository.
> About void GetSystemTimeAsFileTime you should be able to replace it by two
> functions GetSystemTime followed by SystemTimeToFileTime.
> 
> Regards
> 

You're right about that. Since my project is a multiplatform library, 
it's quite easy to turn of/on certain behavior. This is what my 
workaround is all about; I'm aware of the fact that the end user is 
unable to use certain features (in this case file locking)...

Hope the project leader is able to add these to the cegcc repository 
soon....

Regarding GetSystemTimeAsFileTime: we did just what you mention: make 
use of GetSystemTime and SystemTimeToFileTime.

> 
Thanks,

Marcel.
> 
> 
> 

------------------------------------------------------------------------------
This SF.net email is sponsored by:
High Quality Requirements in a Collaborative Environment.
Download a free trial of Rational Requirements Composer Now!
http://p.sf.net/sfu/www-ibm-com
_______________________________________________
Cegcc-devel mailing list
Cegcc-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/cegcc-devel

Reply via email to