Hi All...
In API Viewer, I only see Win32api, mapi32 and Apiload.
Can somebody tell me how to add some other files?
Thank you...
Printable View
Hi All...
In API Viewer, I only see Win32api, mapi32 and Apiload.
Can somebody tell me how to add some other files?
Thank you...
Just change the directory/path to whatever file you want.
But I don't have those files. How will I find'em?
What do you need files for? The ones supplied cover the Win32 API and the Mail API in pretty good detail, however some recent things will be missing. For those you can just go to MSDN and get the prototype, then convert it to VB (not tricky).
Thank you for info. But I think it's more complicated than I think.
...converting???
For example, MSDN gives this for SendMessageA:
Then to convert the data types. In this case they all become Long, so you end up with:Code:LRESULT SendMessageA(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
Code:Public Declare Function SendMessageA Lib "kernel32" (ByVal hWnd As Long, ByVal uMsg As Long, ByVal wParam As Long, ByVal lParam As Long) As Long
Got it... thanks...
Be careful not to convert everything to long, though. LPCSTR, LPCTSTR, LPSTR lpsz???? all converts to a String.
Or why don't you just go to www.allapi.net and download their software? It contains more documentation than the standard API viewer.