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

#ifndef _REG_DB_H_
#define _REG_DB_H_
HRESULT AddJobToRegistry(LPWSTR pwzURL,
LPWSTR pwzTempFile,
IBackgroundCopyJob *pJob,
DWORD dwFlags);
#define RJFR_DELETE_FILES (0x1)
HRESULT RemoveJobFromRegistry(IBackgroundCopyJob *pJob,
GUID *pGUID, SHREGDEL_FLAGS dwDelRegFlags,
DWORD dwFlags);
void FusionFormatGUID(GUID guid, CString& sGUID);
HRESULT FusionParseGUID(
LPWSTR String,
SIZE_T Cch,
GUID &rGuid
);
HRESULT ProcessOrphanedJobs();
/*
HRESULT StringToGUID(LPCWSTR pSrc, UINT cSrc, GUID *pGUID);
HRESULT GUIDToString(GUID *pGUID, CString& sGUID);
*/
#endif // _REG_DB_H_