mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
4b1574577d
of the implementated functions are included. - Corrected mismatching prototypes. - Cleaned up the include section.
13 lines
439 B
C
13 lines
439 B
C
#ifndef __WINE_OLEAUT32_OLE2DISP_H
|
|
#define __WINE_OLEAUT32_OLE2DISP_H
|
|
|
|
#include "wtypes.h"
|
|
|
|
BSTR16 WINAPI SysAllocString16(LPCOLESTR16);
|
|
BSTR16 WINAPI SysAllocStringLen16(const char*, int);
|
|
VOID WINAPI SysFreeString16(BSTR16);
|
|
INT16 WINAPI SysReAllocString16(LPBSTR16,LPCOLESTR16);
|
|
int WINAPI SysReAllocStringLen16(BSTR16*, const char*, int);
|
|
int WINAPI SysStringLen16(BSTR16);
|
|
|
|
#endif /* !defined(__WINE_OLEAUT32_OLE2DISP_H) */
|