summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorTatsuo Ishii1999-07-11 22:47:21 +0000
committerTatsuo Ishii1999-07-11 22:47:21 +0000
commit8f02f2252dfd6724058a60ac9fd619030dc2ec70 (patch)
treec45b0df7606acd45d4a15c16b66246187dabc5dc /src/include
parent2859bde10913145924f8f16c6de3149e05187a1a (diff)
Fix some compiler warnings (Tomoaki Nishiyama), add WIN1250 support (Pavel Behal)
Diffstat (limited to 'src/include')
-rw-r--r--src/include/mb/pg_wchar.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/include/mb/pg_wchar.h b/src/include/mb/pg_wchar.h
index 5e28b9a4f31..c007560f41e 100644
--- a/src/include/mb/pg_wchar.h
+++ b/src/include/mb/pg_wchar.h
@@ -1,4 +1,4 @@
-/* $Id: pg_wchar.h,v 1.8 1999/05/25 16:14:04 momjian Exp $ */
+/* $Id: pg_wchar.h,v 1.9 1999/07/11 22:47:19 ishii Exp $ */
#ifndef PG_WCHAR_H
#define PG_WCHAR_H
@@ -29,6 +29,7 @@
/* followings are for client encoding only */
#define SJIS 32 /* Shift JIS */
#define BIG5 33 /* Big5 */
+#define WIN1250 34 /* windows-1250 */
#ifdef MULTIBYTE
typedef unsigned int pg_wchar;
@@ -79,7 +80,7 @@ typedef struct
{
int encoding; /* encoding symbol value */
char *name; /* encoding name */
- int is_client_only; /* 0: server/client bothg supported 1:
+ int is_client_only; /* 0: server/client both supported 1:
* client only */
void (*to_mic) (); /* client encoding to MIC */
void (*from_mic) (); /* MIC to client encoding */