Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Gautam Chitnis
web-ui-redesign
Commits
45ff435b
Commit
45ff435b
authored
May 27, 2006
by
Sam Hocevar
Browse files
* modules/codec/realaudio.c: only use WINAPI for function declarations, not
for function pointers.
parent
df0cb344
Changes
1
Show whitespace changes
Inline
Side-by-side
modules/codec/realaudio.c
View file @
45ff435b
...
@@ -107,20 +107,20 @@ struct decoder_sys_t
...
@@ -107,20 +107,20 @@ struct decoder_sys_t
#endif
#endif
void
*
win32_dll
;
void
*
win32_dll
;
unsigned
long
WINAPI
(
*
wraCloseCodec
)(
void
*
);
unsigned
long
(
*
wraCloseCodec
)(
void
*
);
unsigned
long
WINAPI
(
*
wraDecode
)(
void
*
,
char
*
,
unsigned
long
,
char
*
,
unsigned
long
(
*
wraDecode
)(
void
*
,
char
*
,
unsigned
long
,
char
*
,
unsigned
int
*
,
long
);
unsigned
int
*
,
long
);
unsigned
long
WINAPI
(
*
wraFlush
)(
unsigned
long
,
unsigned
long
,
unsigned
long
(
*
wraFlush
)(
unsigned
long
,
unsigned
long
,
unsigned
long
);
unsigned
long
);
unsigned
long
WINAPI
(
*
wraFreeDecoder
)(
void
*
);
unsigned
long
(
*
wraFreeDecoder
)(
void
*
);
void
*
WINAPI
(
*
wraGetFlavorProperty
)(
void
*
,
unsigned
long
,
void
*
(
*
wraGetFlavorProperty
)(
void
*
,
unsigned
long
,
unsigned
long
,
int
*
);
unsigned
long
,
int
*
);
unsigned
long
WINAPI
(
*
wraInitDecoder
)(
void
*
,
void
*
);
unsigned
long
(
*
wraInitDecoder
)(
void
*
,
void
*
);
unsigned
long
WINAPI
(
*
wraOpenCodec
)(
void
*
);
unsigned
long
(
*
wraOpenCodec
)(
void
*
);
unsigned
long
WINAPI
(
*
wraOpenCodec2
)(
void
*
,
void
*
);
unsigned
long
(
*
wraOpenCodec2
)(
void
*
,
void
*
);
unsigned
long
WINAPI
(
*
wraSetFlavor
)(
void
*
,
unsigned
long
);
unsigned
long
(
*
wraSetFlavor
)(
void
*
,
unsigned
long
);
void
WINAPI
(
*
wraSetDLLAccessPath
)(
char
*
);
void
(
*
wraSetDLLAccessPath
)(
char
*
);
void
WINAPI
(
*
wraSetPwd
)(
char
*
,
char
*
);
void
(
*
wraSetPwd
)(
char
*
,
char
*
);
};
};
/* linux dlls doesn't need packing */
/* linux dlls doesn't need packing */
...
...
Write
Preview
Supports
Markdown
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