MCPcopy Create free account
hub / github.com/AutoHotkey/AutoHotkey / _Read

Method _Read

source/TextIO.cpp:672–677  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

670}
671
672DWORD TextFile::_Read(LPVOID aBuffer, DWORD aBufSize)
673{
674 DWORD dwRead = 0;
675 ReadFile(mFile, aBuffer, aBufSize, &dwRead, NULL);
676 return dwRead;
677}
678
679DWORD TextFile::_Write(LPCVOID aBuffer, DWORD aBufSize)
680{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected