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.

17 lines
731 B

  1. //
  2. // wrappers around Kernel API's that generate FS notification messages.
  3. //
  4. STDAPI_(BOOL) SHMoveFile(LPCTSTR pszExisting, LPCTSTR pszNew, LONG lEvent);
  5. STDAPI_(BOOL) CreateWriteCloseFile(HWND hwnd, LPCTSTR pszFileName, void *pData, DWORD cbData);
  6. STDAPI_(BOOL) Win32MoveFile(LPCTSTR pszExisting, LPCTSTR pszNew, BOOL fDir);
  7. STDAPI_(BOOL) Win32CreateDirectory(LPCTSTR pszPath, LPSECURITY_ATTRIBUTES lpsa);
  8. STDAPI_(BOOL) Win32RemoveDirectory(LPCTSTR pszDir);
  9. STDAPI_(BOOL) Win32DeleteFile(LPCTSTR pszFileName);
  10. STDAPI_(BOOL) Win32DeleteFilePidl(LPCTSTR pszFileName, LPCITEMIDLIST pidlFile);
  11. STDAPI_(HANDLE) Win32CreateFile(LPCTSTR pszFileName, DWORD dwAttrib);
  12. STDAPI_(BOOL) SuspendSHNotify();
  13. STDAPI_(BOOL) ResumeSHNotify();