PDA

Click to See Complete Forum and Search --> : API Function


Neandrake
Jul 27th, 2001, 07:09 PM
Can anyone help me with an API Function? I haven't seen the WriteProcessMemory function declared before, how would I go about using it, if it's possible? Thanks for any help, nean

Matthew Gates
Jul 27th, 2001, 11:00 PM
Perhaps this thread (http://www.vbforums.com/showthread.php?s=&threadid=86470) may help some.

Neandrake
Jul 27th, 2001, 11:02 PM
Sorry, I appreciate it though.

benchin
Jul 28th, 2001, 12:12 AM
Is this what you mean, the declaration?

Public Declare Function WriteProcessMemory Lib "kernel32" Alias "WriteProcessMemory" (ByVal hProcess As Long, lpBaseAddress As Any, lpBuffer As Any, ByVal nSize As Long, lpNumberOfBytesWritten As Long) As Long

To get example, you can try looking at www.vbapi.com.
There are quite many useful API with source code. Good luck . :)