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
Printable View
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
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.
Okay im looking at windows.h and it isnt telling me what the api calls are .
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.
It's not mandatory to put it all in lower case.
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: