Implemented stub for InitThreadInput.
[wine/multimedia.git] / include / xmalloc.h
blobe909cb80b904d510695d938da55a935f4e2ce545
1 #ifndef __WINE_XMALLOC_H
2 #define __WINE_XMALLOC_H
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
8 void *xmalloc( int size );
9 void *xcalloc( int size );
10 void *xrealloc( void *ptr, int size );
11 char *xstrdup( const char *str );
13 #ifdef __cplusplus
15 #endif
17 #endif /* __WINE_XMALLOC_H */