1 2 #include "precomp.h" 3 4 VOID 5 Test_Release(VOID) 6 { 7 HANDLE MutantHandle; 8 NTSTATUS Status; 9 10 Status = NtCreateMutant(&MutantHandle, 0, NULL, TRUE); 11 ok_ntstatus(Status, STATUS_SUCCESS); 12 13 Status = NtReleaseMutant(MutantHandle, NULL); 14 ok_ntstatus(Status, STATUS_SUCCESS); 15 16 } 17 18 19 20 START_TEST(NtMutant) 21 { 22 Test_Release(); 23 } 24