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.
20 lines
751 B
20 lines
751 B
//-----------------------------------------------------------------------------
|
|
// 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
|