#ifndef UTILS_H #define UTILS_H #include #ifdef __cplusplus extern "C" { #endif HRESULT IExtractIcon_GetIconLocationThunk(IExtractIconW *peiw, UINT uFlags, LPSTR szIconFile, UINT cchMax, int * piIndex, UINT * pwFlags); HRESULT IExtractIcon_ExtractThunk(IExtractIconW *peiw, LPCSTR pszFile, UINT nIconIndex, HICON * phiconLarge, HICON * phiconSmall, UINT nIconSize); void FireSubscriptionEvent(int nCmdID, const SUBSCRIPTIONCOOKIE UNALIGNED *pCookie); int WCMessageBox(HWND hwnd, UINT idTextFmt, UINT idCaption, UINT uType, ...); HRESULT GetCacheInfo(LPINTERNET_CACHE_CONFIG_INFOA *, DWORD *, DWORD *); HRESULT SetCacheSize(LPINTERNET_CACHE_CONFIG_INFOA, DWORD); HRESULT _CreatePropSheet(HWND, POOEBuf); int _GetCmdID(LPCSTR); int _CompareShortName(LPMYPIDL, LPMYPIDL); int _CompareURL(LPMYPIDL, LPMYPIDL); int _CompareNextUpdate(LPMYPIDL, LPMYPIDL); int _CompareLastUpdate(LPMYPIDL, LPMYPIDL); int _CompareIdentities(LPMYPIDL, LPMYPIDL); int _CompareGroup(LPMYPIDL, LPMYPIDL); int _CompareStatus(LPMYPIDL, LPMYPIDL); int _ComparePriority(LPMYPIDL, LPMYPIDL); void _GenerateEvent(LONG, LPITEMIDLIST, LPITEMIDLIST, BOOL bRefresh = TRUE); int _LaunchApp(HWND, LPCTSTR); BOOL _ValidateIDListArray(UINT cidl, LPCITEMIDLIST *ppidl); UINT BufferSize(POOEBuf); VOID CannotSaveProperty(HWND); BOOL ConfirmDelete(HWND, UINT, LPMYPIDL *); void CopyToMyPooe(POOEBuf, POOEntry); void CopyToOOEBuf(POOEntry, POOEBuf); HRESULT CreateBSTRFromTSTR(BSTR *, LPCTSTR); BOOL DATE2DateTimeString(CFileTime&, LPTSTR, int); void VariantTimeToFileTime(double dt, FILETIME& ft); void SetListViewToString (HWND hLV, LPCTSTR pszString); void GlobalAutoDial_Enable (BOOL bEnable); BOOL GlobalAutoDial_IsEnabled (void); BOOL GlobalAutoDial_ShouldEnable (HWND hParentWnd); BOOL FailsWin95SecurityCheck (HWND hParentWnd); BOOL IsHTTPPrefixed(LPCTSTR szURL); HRESULT LoadOOEntryInfo(POOEBuf pooeBuf, SUBSCRIPTIONCOOKIE *pCookie, DWORD *pdwSize); HRESULT LoadSubscription(LPCTSTR, LPMYPIDL *); UINT MergeMenuHierarchy(HMENU, HMENU, UINT, UINT, BOOL); UINT MergePopupMenu(HMENU *phMenu, UINT idResource, UINT uSubOffset, UINT indexMenu, UINT idCmdFirst, UINT idCmdLast); HRESULT MergeOOEBuf(OOEBuf *pBuf1, OOEBuf *pBuf2, DWORD fMask); HRESULT SendUpdateRequests(HWND hwnd, CLSID *, UINT count); HRESULT PersistUpdate(POOEntry, BOOL bCreate); HRESULT SaveBufferChange(POOEBuf newBuf, BOOL bCreate); HRESULT LoadGroupCookie(NOTIFICATIONCOOKIE *, SUBSCRIPTIONSCHEDULE subGroup); DWORD Random(DWORD nMax); void CreateCookie(GUID UNALIGNED *pCookie); BOOL _InitComCtl32(); //REVIEW Do we need the indirect versions? #undef CreateDialogParam #undef CreateDialog #undef DialogBoxParam #undef DialogBox #undef PropertySheet inline HWND CreateDialogParam(HINSTANCE hInstance, LPCTSTR lpTemplateName, HWND hWndParent, DLGPROC lpDialogFunc, LPARAM dwInitParam) { _InitComCtl32(); return CreateDialogParamW(hInstance, lpTemplateName, hWndParent, lpDialogFunc, dwInitParam); } inline HWND CreateDialog(HINSTANCE hInstance, LPCTSTR lpTemplateName, HWND hWndParent, DLGPROC lpDialogFunc) { return CreateDialogParam(hInstance, lpTemplateName, hWndParent, lpDialogFunc, 0L); } inline INT_PTR DialogBoxParam(HINSTANCE hInstance, LPCTSTR lpTemplateName, HWND hWndParent, DLGPROC lpDialogFunc, LPARAM dwInitParam) { _InitComCtl32(); return DialogBoxParamW(hInstance, lpTemplateName, hWndParent, lpDialogFunc, dwInitParam); } inline INT_PTR DialogBox(HINSTANCE hInstance, LPCTSTR lpTemplate, HWND hWndParent, DLGPROC lpDialogFunc) { return DialogBoxParam(hInstance, lpTemplate, hWndParent, lpDialogFunc, 0L); } inline INT_PTR PropertySheet(LPCPROPSHEETHEADER lppsph) { _InitComCtl32(); return PropertySheetW(lppsph); } #ifdef __cplusplus }; #endif #endif UTILS_H