Leaked source code of windows server 2003
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.

35 lines
776 B

  1. #ifndef _REG_DB_H_
  2. #define _REG_DB_H_
  3. HRESULT AddJobToRegistry(LPWSTR pwzURL,
  4. LPWSTR pwzTempFile,
  5. IBackgroundCopyJob *pJob,
  6. DWORD dwFlags);
  7. #define RJFR_DELETE_FILES (0x1)
  8. HRESULT RemoveJobFromRegistry(IBackgroundCopyJob *pJob,
  9. GUID *pGUID, SHREGDEL_FLAGS dwDelRegFlags,
  10. DWORD dwFlags);
  11. void FusionFormatGUID(GUID guid, CString& sGUID);
  12. HRESULT FusionParseGUID(
  13. LPWSTR String,
  14. SIZE_T Cch,
  15. GUID &rGuid
  16. );
  17. HRESULT ProcessOrphanedJobs();
  18. /*
  19. HRESULT StringToGUID(LPCWSTR pSrc, UINT cSrc, GUID *pGUID);
  20. HRESULT GUIDToString(GUID *pGUID, CString& sGUID);
  21. */
  22. #endif // _REG_DB_H_