Tagged Questions
6
votes
4answers
565 views
What causes WriteFile to return ERROR_ACCESS_DENIED?
We currently face the problem of a call to WriteFile (or, rather CFile::Write - but that just calls WriteFile internally) causing the Win32 error 5 ERROR_ACCESS_DENIED.
(EDIT: Note that we can't ...
3
votes
1answer
103 views
Why does WriteFile crash when writing to the standard output?
Here's a "Hello world" program that uses WinAPI's WriteFile (compiled in Microsoft Visual C++ 2008 Express):
int _tmain(int argc, _TCHAR* argv[])
{
wchar_t str[] = L"Hello world";
HANDLE out ...
3
votes
6answers
390 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
91 views
Why the following c++ snippet gives exception?
VIDEOINFOHEADER *pVih = (VIDEOINFOHEADER*)pmtConfig->pbFormat;;
...
WriteFile( hHandle, pVih, sizeof(VIDEOINFOHEADER), NULL, NULL );
Through debugging I found WriteFile reports exception, how to ...
0
votes
2answers
659 views
Simple Mailslot program not working?
Using the client and server examples found here: http://www.winsocketdotnetworkprogramming.com/winsock2programming/winsock2advancedmailslot14.html Compiling them with VS2008, running the server and ...
0
votes
3answers
255 views
saving file to network
I have a file that's about 7 MB that saves to my local share in a matter of seconds. However, saving that file to a network location takes minutes. I'm wondering what I can do to speed this up. ...