This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author loewis
Recipients amaury.forgeotdarc, janglin, loewis, pitrou
Date 2010-09-24.22:54:47
SpamBayes Score 0.09855438
Marked as misclassified No
Message-id <1285368889.07.0.40130176057.issue9784@psf.upfronthosting.co.za>
In-reply-to
Content
See, for example, the link you gave in msg115750. It has this sample code in it (listed in the "Examples" section):

FNFCIREAD(fnFileRead)
{
    DWORD dwBytesRead = 0;

    UNREFERENCED_PARAMETER(pv);

    if( ReadFile((HANDLE)hf, memory, cb, &dwBytesRead, NULL) == FALSE )
    {
        dwBytesRead = (DWORD)-1;
        *err = GetLastError();
    }
		 
    return dwBytesRead;
}
History
Date User Action Args
2010-09-24 22:54:49loewissetrecipients: + loewis, amaury.forgeotdarc, pitrou, janglin
2010-09-24 22:54:49loewissetmessageid: <1285368889.07.0.40130176057.issue9784@psf.upfronthosting.co.za>
2010-09-24 22:54:47loewislinkissue9784 messages
2010-09-24 22:54:47loewiscreate