|
-
Mar 17th, 2001, 04:35 PM
#1
Thread Starter
New Member
Hi All...
In API Viewer, I only see Win32api, mapi32 and Apiload.
Can somebody tell me how to add some other files?
Thank you...
-
Mar 17th, 2001, 05:12 PM
#2
Just change the directory/path to whatever file you want.
-
Mar 17th, 2001, 05:41 PM
#3
Thread Starter
New Member
But I don't have those files. How will I find'em?
-
Mar 17th, 2001, 05:46 PM
#4
Monday Morning Lunatic
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).
I refuse to tie my hands behind my back and hear somebody say "Bend Over, Boy, Because You Have It Coming To You".
-- Linus Torvalds
-
Mar 17th, 2001, 06:03 PM
#5
Thread Starter
New Member
Thank you for info. But I think it's more complicated than I think.
...converting???
-
Mar 17th, 2001, 06:09 PM
#6
Monday Morning Lunatic
For example, MSDN gives this for SendMessageA:
Code:
LRESULT SendMessageA(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
Then to convert the data types. In this case they all become Long, so you end up with:
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
I refuse to tie my hands behind my back and hear somebody say "Bend Over, Boy, Because You Have It Coming To You".
-- Linus Torvalds
-
Mar 17th, 2001, 06:24 PM
#7
Thread Starter
New Member
-
Mar 18th, 2001, 10:15 AM
#8
Be careful not to convert everything to long, though. LPCSTR, LPCTSTR, LPSTR lpsz???? all converts to a String.
-
Mar 18th, 2001, 10:31 AM
#9
Or why don't you just go to www.allapi.net and download their software? It contains more documentation than the standard API viewer.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|