Code:
Declare Function apiCopyFile Lib "KERNEL32" Alias "CopyFileA" _
(ByVal lpExistingFileName As String, _
ByVal lpNewFileName As String, _
ByVal bFailIfExists As Long) As Long
I get the following compile error:
The code in this project must be updated to use on 64-bit systems. Please review and uodate Declare statements and the mark them with the PtrSafe attribute.
How do I do that?
Thank you.