Commit a9446b9c authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

winex11.drv: Remove unused items.

parent 6b808baf
...@@ -287,7 +287,6 @@ static WINE_CLIPFORMAT ClipFormats[] = ...@@ -287,7 +287,6 @@ static WINE_CLIPFORMAT ClipFormats[] =
static const WCHAR wszRichTextFormat[] = {'R','i','c','h',' ','T','e','x','t',' ','F','o','r','m','a','t',0}; static const WCHAR wszRichTextFormat[] = {'R','i','c','h',' ','T','e','x','t',' ','F','o','r','m','a','t',0};
static const WCHAR wszGIF[] = {'G','I','F',0}; static const WCHAR wszGIF[] = {'G','I','F',0};
static const WCHAR wszHTMLFormat[] = {'H','T','M','L',' ','F','o','r','m','a','t',0}; static const WCHAR wszHTMLFormat[] = {'H','T','M','L',' ','F','o','r','m','a','t',0};
static const WCHAR wszRICHHTMLFormat[] = {'H','T','M','L',' ','F','o','r','m','a','t',0};
static const struct static const struct
{ {
LPCWSTR lpszFormat; LPCWSTR lpszFormat;
......
...@@ -62,13 +62,6 @@ int IsLegalDBCSChar_cp950( BYTE lead, BYTE trail ) ...@@ -62,13 +62,6 @@ int IsLegalDBCSChar_cp950( BYTE lead, BYTE trail )
( trail >= (BYTE)0xa1 && trail <= (BYTE)0xfe ) ) ); ( trail >= (BYTE)0xa1 && trail <= (BYTE)0xfe ) ) );
} }
static inline
int IsLegalDBCSChar_euc( BYTE lead, BYTE trail )
{
return ( ( lead >= (BYTE)0xa1 && lead <= (BYTE)0xfe ) &&
( trail >= (BYTE)0xa1 && trail <= (BYTE)0xfe ) );
}
/*********************************************************************** /***********************************************************************
* DBCSCharToXChar2b for cp932/euc * DBCSCharToXChar2b for cp932/euc
...@@ -103,15 +96,6 @@ void DBCSCharToXChar2b_cp932( XChar2b* pch, BYTE lead, BYTE trail ) ...@@ -103,15 +96,6 @@ void DBCSCharToXChar2b_cp932( XChar2b* pch, BYTE lead, BYTE trail )
pch->byte2 = (unsigned char)low; pch->byte2 = (unsigned char)low;
} }
static inline
void DBCSCharToXChar2b_euc( XChar2b* pch, BYTE lead, BYTE trail )
{
pch->byte1 = lead & (BYTE)0x7f;
pch->byte2 = trail & (BYTE)0x7f;
}
static WORD X11DRV_enum_subfont_charset_normal( UINT index ) static WORD X11DRV_enum_subfont_charset_normal( UINT index )
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment