windows-nt/Source/XPSP1/NT/admin/wizards/shrwiz/utils.h
2020-09-26 16:20:57 +08:00

39 lines
588 B
C

#ifndef _UTILS_H_
#define _UTILS_H_
void
GetDisplayMessage(
OUT CString& cstrMsg,
IN DWORD dwErr,
IN UINT iStringId,
...);
int
DisplayMessageBox(
IN HWND hwndParent,
IN UINT uType,
IN DWORD dwErr,
IN UINT iStringId,
...);
BOOL IsLocalComputer(IN LPCTSTR lpszComputer);
void GetFullPath(
IN LPCTSTR lpszServer,
IN LPCTSTR lpszDir,
OUT CString& cstrPath
);
HRESULT
VerifyDriveLetter(
IN LPCTSTR lpszServer,
IN LPCTSTR lpszDrive
);
HRESULT
IsAdminShare(
IN LPCTSTR lpszServer,
IN LPCTSTR lpszDrive
);
#endif // _UTILS_H_