DWORD WINAPI GetTempPath(
__in DWORD nBufferLength,
__out LPTSTR lpBuffer
);
그 컴퓨터의 temporary files경로를 가져 옴
nBufferLength : 가져올 문자열 담을 변수 크기
lpBuffer : 담을 버퍼 주소
성공하면 그 값의 길이를 반환
실패하면 0
'My Study > Function' 카테고리의 다른 글
ExitThread (0) | 2010.02.24 |
---|---|
ShellExecute (0) | 2010.02.24 |
SetFileTime (0) | 2010.02.24 |
CreatePipe (0) | 2010.02.24 |
DuplicateHandle (0) | 2010.02.24 |