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.
21 lines
632 B
21 lines
632 B
#ifndef _IE_NT5_MIGRATION_UTILS_H_
|
|
#define _IE_NT5_MIGRATION_UTILS_H_
|
|
|
|
|
|
// Function Prototypes :
|
|
//////////////////////////
|
|
BOOL IsRatingsEnabled();
|
|
DWORD CountMultiStringBytes(LPCSTR lpString);
|
|
BOOL AppendString(LPSTR *lpBuffer, DWORD *lpdwSize, LPCSTR lpStr);
|
|
void GenerateFilePaths();
|
|
//BOOL NeedToMigrateIE();
|
|
BOOL GetRatingsPathFromMigInf( LPSTR *lpOutBuffer);
|
|
|
|
void MoveRegBranch(HKEY hFrom, HKEY hTo);
|
|
BOOL PathEndsInFile(LPSTR lpPath, LPCSTR szFile);
|
|
BOOL UpgradeRatings();
|
|
DWORD GetFixedPath(LPSTR, DWORD, LPCSTR);
|
|
LPWSTR MakeWideStrFromAnsi(LPSTR psz);
|
|
|
|
#endif //_IE_NT5_MIGRATION_UTILS_H_
|
|
|