728x90
반응형
void CopyMemory(
_In_ PVOID Destination, -----①
_In_ const VOID *Source, -----②
_In_ SIZE_T Length -----③
);
함수 설명 :
정해진 크기의 메모리를 복사
① Destination :
복사를 값을 저장할 메모리
② Source :
복사할 값을 가진 메모리, 여기서 const 선언이 되어 있는 이유는 복사하다가 값이 변하는것을 막기 위해서 이다.
③ Length :
복사할 크기
728x90
반응형
'Programming > Windows&C#' 카테고리의 다른 글
[Windows/WinAPI] WindowsAPI / GetPrivateProfileInt (0) | 2014.01.12 |
---|---|
[Windows/WinAPI] WindowsAPI / MoveMemory (0) | 2014.01.03 |
[Windows/WinAPI] WindowsAPI / ZeroMemory (0) | 2014.01.03 |
[Windows/WinAPI] WindowAPI / FillMemory (0) | 2014.01.03 |
[Windows/WinAPI] WindowsAPI / CreateNamedPipe (0) | 2013.11.20 |