Tagged Questions
3
votes
6answers
397 views
How to check whether there's enough space before WriteFile in c in windows?
hPipe = CreateNamedPipe(
lpszPipename, // pipe name
PIPE_ACCESS_DUPLEX, // read/write access
PIPE_TYPE_MESSAGE | // message type pipe
...
1
vote
2answers
192 views
Writing synchronously to a file opened with FILE_FLAG_OVERLAPPED
I have opened a file using
HANDLE handle=
CreateFileW(
fileName, GENERIC_READ | GENERIC_WRITE, 0, NULL, OPEN_EXISTING,
FILE_FLAG_OVERLAPPED, NULL);
The file handle is then ...
-1
votes
1answer
83 views
Write String to Mapped File With Windows Api
I'm trying to write a string to a mapped file with c and visual studio.
( pFile = (char *) MapViewOfFile(hMMap,FILE_MAP_ALL_ACCESS,0,0,0))
start = pFile;
while(pFile < start + 750){
...