diff options
author | George Hazan <george.hazan@gmail.com> | 2012-06-02 19:11:04 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-06-02 19:11:04 +0000 |
commit | 1d043e03a80e9cc06a33f7c5b53ccf9d0885ca18 (patch) | |
tree | 90e651350381a6a6b4d9e2f2dfa2c86b104e27ea /plugins/AssocMgr/assoclist.h | |
parent | c91ed38429bf6441ce150359978a14f15e5c0325 (diff) |
64-bit compilation fixes
git-svn-id: http://svn.miranda-ng.org/main/trunk@265 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/AssocMgr/assoclist.h')
-rw-r--r-- | plugins/AssocMgr/assoclist.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/AssocMgr/assoclist.h b/plugins/AssocMgr/assoclist.h index 8e8d5cc5da..5e8806b828 100644 --- a/plugins/AssocMgr/assoclist.h +++ b/plugins/AssocMgr/assoclist.h @@ -26,8 +26,8 @@ void CleanupMimeTypeAddedSettings(void); /* Assoc List Utils */
BOOL IsRegisteredAssocItem(const char *pszClassName);
/* Open Handler */
-int InvokeFileHandler(const TCHAR *pszFileName);
-int InvokeUrlHandler(const TCHAR *pszUrl);
+INT_PTR InvokeFileHandler(const TCHAR *pszFileName);
+INT_PTR InvokeUrlHandler(const TCHAR *pszUrl);
/* Misc */
void InitAssocList(void);
void UninitAssocList(void);
|