1999-11-23 20:39:11 +01:00
|
|
|
/*
|
|
|
|
* Unicode routines for use inside the server
|
|
|
|
*
|
|
|
|
* Copyright (C) 1999 Alexandre Julliard
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __WINE_SERVER_UNICODE_H
|
|
|
|
#define __WINE_SERVER_UNICODE_H
|
|
|
|
|
|
|
|
#ifndef __WINE_SERVER__
|
|
|
|
#error This file can only be used in the Wine server
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "windef.h"
|
2000-07-25 23:01:59 +02:00
|
|
|
#include "wine/unicode.h"
|
1999-11-25 22:30:24 +01:00
|
|
|
#include "object.h"
|
1999-11-23 20:39:11 +01:00
|
|
|
|
|
|
|
static inline WCHAR *strdupW( const WCHAR *str )
|
|
|
|
{
|
|
|
|
size_t len = (strlenW(str) + 1) * sizeof(WCHAR);
|
|
|
|
return memdup( str, len );
|
|
|
|
}
|
|
|
|
|
1999-11-25 22:30:24 +01:00
|
|
|
extern int dump_strW( const WCHAR *str, size_t len, FILE *f, char escape[2] );
|
|
|
|
|
1999-11-23 20:39:11 +01:00
|
|
|
#endif /* __WINE_SERVER_UNICODE_H */
|