Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
29aea6e1
Commit
29aea6e1
authored
Feb 17, 2006
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed a couple of function prototypes.
parent
e95a2c21
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
elf_module.c
dlls/dbghelp/elf_module.c
+1
-1
wineacm.h
dlls/msacm/wineacm.h
+1
-1
winldap_private.h
dlls/wldap32/winldap_private.h
+2
-2
No files found.
dlls/dbghelp/elf_module.c
View file @
29aea6e1
...
...
@@ -1394,7 +1394,7 @@ static BOOL elf_load_cb(const char* name, unsigned long addr, void* user)
* 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
;
...
...
dlls/msacm/wineacm.h
View file @
29aea6e1
...
...
@@ -405,7 +405,7 @@ extern PWINE_ACMLOCALDRIVER MSACM_GetLocalDriver(HACMDRIVER hDriver);
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 */
...
...
dlls/wldap32/winldap_private.h
View file @
29aea6e1
...
...
@@ -375,8 +375,8 @@ ULONG ldap_parse_resultA(WLDAP32_LDAP*,WLDAP32_LDAPMessage*,ULONG*,PCHAR*,PCHAR*
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
*
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment