MCPcopy Create free account
hub / github.com/bobranten/Ext4Fsd / Ext2Close

Function Ext2Close

Ext2Mgr/enumDisk.cpp:1399–1411  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1397}
1398
1399VOID
1400Ext2Close(HANDLE * Handle)
1401{
1402 NT::NTSTATUS status = 0;
1403 if (Handle != NULL && *Handle != 0 && *Handle != INVALID_HANDLE_VALUE) {
1404 status = NT::ZwClose(*Handle);
1405 if (NT_SUCCESS(status)) {
1406 *Handle = 0;
1407 } else {
1408 ::MessageBox(NULL, "Failed to close handle", "Ext2Close", MB_OK);
1409 }
1410 }
1411}
1412
1413BOOL
1414Ext2QuerySysConfig()

Callers 15

Ext2IsDeviceValidFunction · 0.70
Ext2SetPartitionTypeFunction · 0.70
Ext2FlushVolumeFunction · 0.70
Ext2QueryDrvLetterFunction · 0.70
Ext2LoadDisksFunction · 0.70
Ext2LoadCdromsFunction · 0.70
Ext2QueryDrvVersionFunction · 0.70
Ext2SetGlobalPropertyFunction · 0.70
Ext2IsServiceStartedFunction · 0.70
Ext2InitializeVolumeFunction · 0.70
Ext2ProcessExt2PropertyFunction · 0.70
Ext2VolumeArrivalNotifyFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected