Alexandre Julliard : Fixed a couple of function prototypes.

Alexandre Julliard julliard at wine.codeweavers.com
Fri Feb 17 07:20:53 CST 2006


Module: wine
Branch: refs/heads/master
Commit: 29aea6e1c7f12458d092af5db17d268921a5e459
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=29aea6e1c7f12458d092af5db17d268921a5e459

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Fri Feb 17 14:08:38 2006 +0100

Fixed a couple of function prototypes.

---

 dlls/dbghelp/elf_module.c      |    2 +-
 dlls/msacm/wineacm.h           |    2 +-
 dlls/wldap32/winldap_private.h |    4 ++--
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dlls/dbghelp/elf_module.c b/dlls/dbghelp/elf_module.c
index 1c8a983..6331b57 100644
--- a/dlls/dbghelp/elf_module.c
+++ b/dlls/dbghelp/elf_module.c
@@ -1394,7 +1394,7 @@ static BOOL elf_load_cb(const char* name
  * Also, find module real name and load address from
  * the real loaded modules list in pcs address space
  */
-struct module*  elf_load_module(struct process* pcs, const char* name, DWORD addr)
+struct module*  elf_load_module(struct process* pcs, const char* name, unsigned long addr)
 {
     struct elf_load     el;
 
diff --git a/dlls/msacm/wineacm.h b/dlls/msacm/wineacm.h
index abbb4f8..e28c948 100644
--- a/dlls/msacm/wineacm.h
+++ b/dlls/msacm/wineacm.h
@@ -405,7 +405,7 @@ extern PWINE_ACMLOCALDRIVER MSACM_GetLoc
 extern HINSTANCE MSACM_hInstance32;
 
 /* From pcmcnvtr.c */
-LRESULT CALLBACK	PCM_DriverProc(DWORD dwDevID, HDRVR hDriv, UINT wMsg,
+LRESULT CALLBACK	PCM_DriverProc(DWORD_PTR dwDevID, HDRVR hDriv, UINT wMsg,
 				       LPARAM dwParam1, LPARAM dwParam2);
 
 /* Dialog box templates */
diff --git a/dlls/wldap32/winldap_private.h b/dlls/wldap32/winldap_private.h
index ad71c0c..730a8d2 100644
--- a/dlls/wldap32/winldap_private.h
+++ b/dlls/wldap32/winldap_private.h
@@ -375,8 +375,8 @@ ULONG ldap_parse_resultA(WLDAP32_LDAP*,W
 ULONG ldap_parse_resultW(WLDAP32_LDAP*,WLDAP32_LDAPMessage*,ULONG*,PWCHAR*,PWCHAR*,PWCHAR**,PLDAPControlW**,BOOLEAN);
 ULONG ldap_parse_sort_controlA(WLDAP32_LDAP*,PLDAPControlA*,ULONG*,PCHAR*);
 ULONG ldap_parse_sort_controlW(WLDAP32_LDAP*,PLDAPControlW*,ULONG*,PWCHAR*);
-int ldap_parse_vlv_controlA(WLDAP32_LDAP*,LDAPControlA**,unsigned long*,unsigned long*,struct WLDAP32_berval**,int*);
-int ldap_parse_vlv_controlW(WLDAP32_LDAP*,LDAPControlW**,unsigned long*,unsigned long*,struct WLDAP32_berval**,int*);
+int ldap_parse_vlv_controlA(WLDAP32_LDAP*,LDAPControlA**,ULONG*,ULONG*,struct WLDAP32_berval**,INT*);
+int ldap_parse_vlv_controlW(WLDAP32_LDAP*,LDAPControlW**,ULONG*,ULONG*,struct WLDAP32_berval**,INT*);
 void WLDAP32_ldap_perror(WLDAP32_LDAP*,const PCHAR);
 ULONG ldap_rename_extA(WLDAP32_LDAP*,PCHAR,PCHAR,PCHAR,INT,PLDAPControlA*,PLDAPControlA*,ULONG*);
 ULONG ldap_rename_extW(WLDAP32_LDAP*,PWCHAR,PWCHAR,PWCHAR,INT,PLDAPControlW*,PLDAPControlW*,ULONG*);




More information about the wine-cvs mailing list