| 12 | |
| 13 | |
| 14 | NTSTATUS Section::Initialize(SectionType type){ |
| 15 | // Initialize this object |
| 16 | _type = type; |
| 17 | |
| 18 | // Initialize our singleton |
| 19 | RtlRunOnceInitialize(&_sectionSingletonState); |
| 20 | |
| 21 | return STATUS_SUCCESS; |
| 22 | } |
| 23 | |
| 24 | // Get DLL section object |
| 25 | NTSTATUS Section::GetSection(DllStats** ppSectionInfo) { |
no outgoing calls
no test coverage detected