Skip to content

Instantly share code, notes, and snippets.

@nibasya
nibasya / afxmt.inl
Created November 24, 2022 13:31
CSingleLock::IsLocked()
_AFXMT_INLINE BOOL (::CSingleLock::IsLocked())
{
return m_bAcquired;
}
@nibasya
nibasya / Afxmt.h
Created November 24, 2022 13:32
Definition of CSingleLock::m_bAcquired
class CSingleLock
{
// snip
protected:
BOOL m_bAcquired;
};