repo.or.cz
/
wine
/
multimedia.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Use Callout table instead of direct GetProcAddress.
[wine/multimedia.git]
/
include
/
xmalloc.h
blob
e909cb80b904d510695d938da55a935f4e2ce545
1
#ifndef __WINE_XMALLOC_H
2
#define __WINE_XMALLOC_H
3
4
#ifdef __cplusplus
5
extern
"C"
{
6
#endif
7
8
void
*
xmalloc
(
int
size
);
9
void
*
xcalloc
(
int
size
);
10
void
*
xrealloc
(
void
*
ptr
,
int
size
);
11
char
*
xstrdup
(
const char
*
str
);
12
13
#ifdef __cplusplus
14
}
15
#endif
16
17
#endif
/* __WINE_XMALLOC_H */