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

Method Format

source/TextIO.h:91–96  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

89 return Write(str, (DWORD)str.GetLength()) / sizeof(TCHAR);
90 }
91 INT_PTR Format(LPCTSTR fmt, ...)
92 {
93 va_list ap;
94 va_start(ap, fmt);
95 return FormatV(fmt, ap);
96 }
97
98 bool AtEOF()
99 // Returns true if there is no more data in the read buffer

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected