Cosmetic fixes.
[wine/multimedia.git] / server / unicode.h
blobdc8f99f78d3de37a1dfa0067847d89fd083bf314
1 /*
2 * Unicode routines for use inside the server
4 * Copyright (C) 1999 Alexandre Julliard
5 */
7 #ifndef __WINE_SERVER_UNICODE_H
8 #define __WINE_SERVER_UNICODE_H
10 #include "windef.h"
11 #include "wine/unicode.h"
12 #include "object.h"
14 static inline WCHAR *strdupW( const WCHAR *str )
16 size_t len = (strlenW(str) + 1) * sizeof(WCHAR);
17 return memdup( str, len );
20 extern int dump_strW( const WCHAR *str, size_t len, FILE *f, char escape[2] );
22 #endif /* __WINE_SERVER_UNICODE_H */