Quote:
>How can I tell what an API is? If an alien came down and hadn't heard of
>Windows (with Bill on marketing, yeah right), how would I tell it (?) that
>SendMessage is an API, but GetMyName isn't, even though they're both
>functions in a DLL?
>Thanks,
>--
>Bodi Klamph
>Azure Dragon Software
Why do you say GetMyName() is not an API call? As far as I know it is. API
stands for Application Programmer's Interface (or something very close to
that) and means any (fairly) low-level routine used to access the graphics
system (GDI), system itself (KERNEL) or the general Windows functions
(USER). There are also other APIs into other DLLs, such as SHELL, TOOLKIT,
OLE2, etc., which are used for more obscure functions that have been added
for all the weird and wonderful activities later versions of Windows
provide. Basically, any call you make to the system by bypassing VB's
natural(?) language, or VC++'s classes, etc. Generally, a Windows C program
uses API calls directly.
_ _
o o Jason Teagle
<
Please ONLY respond via e-mail if you want to catch my attention - I don't
necessarily look at the newsgroups all the time.