* miscfuncs.cc (WritePipeOverlapped): Define second parameter LPCVOID,

rather than PCVOID.
	* miscfuncs.h (WritePipeOverlapped): Ditto.
This commit is contained in:
Corinna Vinschen
2012-06-27 13:35:48 +00:00
parent 25f3ea84f8
commit 165f575341
3 changed files with 9 additions and 3 deletions

View File

@ -365,7 +365,7 @@ ReadPipeOverlapped (HANDLE h, PVOID buf, DWORD len, LPDWORD ret_len,
}
BOOL WINAPI
WritePipeOverlapped (HANDLE h, PCVOID buf, DWORD len, LPDWORD ret_len,
WritePipeOverlapped (HANDLE h, LPCVOID buf, DWORD len, LPDWORD ret_len,
DWORD timeout)
{
OVERLAPPED ov;