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

Method _Write

source/TextIO.cpp:679–684  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

677}
678
679DWORD TextFile::_Write(LPCVOID aBuffer, DWORD aBufSize)
680{
681 DWORD dwWritten = 0;
682 WriteFile(mFile, aBuffer, aBufSize, &dwWritten, NULL);
683 return dwWritten;
684}
685
686bool TextFile::_Seek(__int64 aDistance, int aOrigin)
687{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected