G
Guest
I am converting a VB6 application to VB.Net. I need to find the documentation for building a declare statement to access Win API's. In VB6, this documentation was stored in a file called "Win32api.txt"
VB6 Example
Private Declare Sub CopyMemory Lib "kernel32" Alias "RtlMoveMemory" (ByRef lpvDest As any,
ByRef lpvSource As Any, ByVal cbCopy As Integer
VB6 Example
Private Declare Sub CopyMemory Lib "kernel32" Alias "RtlMoveMemory" (ByRef lpvDest As any,
ByRef lpvSource As Any, ByVal cbCopy As Integer