On Tue, Oct 25, 2011 at 9:50 PM, liam mail
<liam.list@googlemail.com> wrote:
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.
No, GetProcAddress is a regular function, but on WinCE, GetProcAddressA does exist.
Regards,
Ignacio