How do the below three differ?
Private Declare Sub CopyMemory Lib "kernel32" Alias "RtlMoveMemory" _
(Destination As Any,
Source As Any,
ByVal Length As Long)
Private Declare Sub CpyMem Lib "kernel32" Alias "RtlMoveMemory" _
(pDst As Any, _
pSrc As Any, _
ByVal cBytes As Long)
Private Declare Sub CopyPTRtoBYTES Lib "Kernel32.dll" Alias "RtlMoveMemory" _
(ByRef ByteDest As Byte, _
ByVal PtrSrc As Long, _
ByVal length As Long)
Private Declare Sub CopyMemory Lib "kernel32" Alias "RtlMoveMemory" _
(Destination As Any,
Source As Any,
ByVal Length As Long)
Private Declare Sub CpyMem Lib "kernel32" Alias "RtlMoveMemory" _
(pDst As Any, _
pSrc As Any, _
ByVal cBytes As Long)
Private Declare Sub CopyPTRtoBYTES Lib "Kernel32.dll" Alias "RtlMoveMemory" _
(ByRef ByteDest As Byte, _
ByVal PtrSrc As Long, _
ByVal length As Long)