728x90
반응형
void MoveMemory(
_In_ PVOID Destination, -----①
_In_ const VOID *Source, -----②
_In_ SIZE_T Length -----③
);
함수 설명 :
정해진 크기의 메모리를 이동할 때 사용한다.
CopyMemory와의 차이는 중첩을 할수 있는가 없는가의 차이가 있다.
① Desination :
옮길 메모리
② Source :
옮겨 넣을 원본 메모리
③ Length :
옮길 메모리 크기
728x90
반응형
'Programming > Windows&C#' 카테고리의 다른 글
[Windows/WinAPI] WindowsAPI / GetPrivateProfileString (0) | 2014.01.12 |
---|---|
[Windows/WinAPI] WindowsAPI / GetPrivateProfileInt (0) | 2014.01.12 |
[Windows/WinAPI] WindowsAPI / CopyMemory (0) | 2014.01.03 |
[Windows/WinAPI] WindowsAPI / ZeroMemory (0) | 2014.01.03 |
[Windows/WinAPI] WindowAPI / FillMemory (0) | 2014.01.03 |