PDA

Click to See Complete Forum and Search --> : Api


Help
Mar 30th, 2001, 03:09 PM
Are the api calls I use in VB, are they the same I would use in C/C++?
If not where is a site for C++ api's.

Thanks

Warmaster199
Mar 30th, 2001, 03:17 PM
All of the Windows API's are located in the Windows.h header file. Just include:

#include <Windows.h>

All of the API's are there... I hope this helps.

Help
Mar 30th, 2001, 03:26 PM
Okay im looking at windows.h and it isnt telling me what the api calls are .

parksie
Mar 30th, 2001, 04:34 PM
http://msdn.microsoft.com/library/default.asp
Look at the Platform SDK :)

PS: it's windows.h not Windows.h -- I know it makes no difference, but it stops you getting confused.

Mar 30th, 2001, 06:06 PM
It's not mandatory to put it all in lower case.

parksie
Mar 31st, 2001, 06:41 AM
No, but it's good practice -- I got burnt on this one when I used #include <IOStream> ...when I moved the code to Linux it stopped working :rolleyes: