[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: lua-5.1.4 and lua-5.2.0-beta patches for WinCE and better Win32 integration
- From: liam mail <liam.list@...>
- Date: Wed, 26 Oct 2011 00:50:18 +0100
On 25 October 2011 22:07, Geoff Leyland <geoff_leyland@fastmail.fm> wrote:
> Are the "A" API calls available in all versions of windows?
GetProcAddress is a macro that on a desktop is defined based in the
mode you compile with, in ANSI mode it translates to GetProcAddressA
and in UNICODE GetProcAddressW. If you can not use the 'A' version on
a desktop then you are probably compiling using UNICODE, whilst
Windows CE exposes both the 'A' and 'W' functions.
Liam