lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


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