Source code of Windows XP (NT5)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
//+-------------------------------------------------------------------------
//
// Microsoft Windows
//
// Copyright (C) Microsoft Corporation, 1997 - 1999
//
// File: cscutils.h
//
//--------------------------------------------------------------------------
#ifndef _INC_CSCVIEW_CSCUTILS_H
#define _INC_CSCVIEW_CSCUTILS_H
//-----------------------------------------------------------------------------
// class CscFindHandle
//-----------------------------------------------------------------------------
//
// Trivial class to ensure cleanup of FindFirst/FindNext handle.
//
class CscFindHandle { public: explicit CscFindHandle(HANDLE hFind) : m_hFind(hFind) { }
~CscFindHandle(void) { if (IsValidHandle()) CSCFindClose(m_hFind); }
operator HANDLE() const { return m_hFind; }
bool IsValidHandle(void) const { return (INVALID_HANDLE_VALUE != m_hFind); }
HANDLE Handle(void) const { return m_hFind; }
private: HANDLE m_hFind; };
#endif //_INC_CSCVIEW_CSCUTILS_H
|