mirror of https://github.com/lianthony/NT4.0
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.
22 lines
730 B
22 lines
730 B
#ifndef _BITBUCK_INC
|
|
#define _BITBUCK_INC
|
|
|
|
#include <shguidp.h>
|
|
#include <shellp.h>
|
|
#include "undo.h"
|
|
|
|
BOOL BBDeleteFile(LPTSTR lpszFile, LPINT lpiReturn, LPUNDOATOM lpua, BOOL fIsDir, WIN32_FIND_DATA *pfd);
|
|
void BBTerminate();
|
|
void BBFlushCache();
|
|
DWORD CALLBACK BitBucketFlushCacheCheckPurge(BOOL fCheckPurge);
|
|
BOOL IsFileInBitBucket(LPCTSTR pszPath);
|
|
void BBUndeleteFiles(LPCTSTR lpszOriginal, LPCTSTR lpszDelFile);
|
|
BOOL BBGetPathFromIDList(LPCITEMIDLIST pidl, LPTSTR lpszPath, UINT uOpts);
|
|
|
|
// BUGBUG!!!: This needs to move to a public header, Bob, since it's exported by name!
|
|
void SHUpdateRecycleBinIcon();
|
|
|
|
BOOL BitBucketWillRecycle(LPCTSTR lpszFile);
|
|
void BBCheckRestoredFiles(LPTSTR lpszSrc);
|
|
void BBInitCache();
|
|
#endif
|