21 lines
751 B
C
21 lines
751 B
C
//-----------------------------------------------------------------------------
|
|
// util.h
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef _UTIL_H
|
|
#define _UTIL_H
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// includes
|
|
//-----------------------------------------------------------------------------
|
|
#include <sbs6base.h>
|
|
#include <shlobj.h>
|
|
#include <tchar.h>
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// file/directory/machine
|
|
//-----------------------------------------------------------------------------
|
|
BOOL STDMETHODCALLTYPE BDeleteDirTree( const TCHAR *szDir, BOOL bDeleteInputDir=TRUE );
|
|
|
|
#endif // _UTIL_H
|