Fixed CloseHandle() on global handles.
[wine/multimedia.git] / include / debugstr.h
blob4483283728a8e04f613343d4c1ca3d112e6b30af
1 #ifndef __WINE_DEBUGSTR_H
2 #define __WINE_DEBUGSTR_H
4 #include "wintypes.h"
6 /* These function return a printable version of a string, including
7 quotes. The string will be valid for some time, but not indefinitely
8 as strings are re-used. */
10 LPSTR debugstr_an (LPCSTR s, int n);
11 LPSTR debugstr_a (LPCSTR s);
12 LPSTR debugstr_wn (LPCWSTR s, int n);
13 LPSTR debugstr_w (LPCWSTR s);
14 LPSTR debugres_a (LPCSTR res);
15 LPSTR debugres_w (LPCWSTR res);
16 void debug_dumpstr (LPCSTR s);
18 #endif /* __WINE_DEBUGSTR_H */