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

Function DefineFileClass

source/TextIO.cpp:1075–1080  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1073Object *FileObject::sPrototype;
1074
1075void DefineFileClass()
1076{
1077 FileObject::sPrototype = Object::CreatePrototype(_T("File"), Object::sPrototype
1078 , FileObject::sMembers, _countof(FileObject::sMembers));
1079 Object::CreateClass(_T("File"), Object::sClass, FileObject::sPrototype, nullptr);
1080}
1081
1082FileObject *FileObject::Open(LPCTSTR aFileSpec, DWORD aFlags, UINT aCodePage)
1083{

Callers 1

CreateRootPrototypesMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected