~ubuntu-branches/ubuntu/lucid/libchewing/lucid

« back to all changes in this revision

Viewing changes to include/internal/char-private.h

  • Committer: Bazaar Package Importer
  • Author(s): Kanru Chen
  • Date: 2008-12-04 15:34:03 UTC
  • mfrom: (1.1.4 upstream) (2.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20081204153403-l9cksddl1k2e71zy
Tags: 0.3.2-1
* New Upstream Version 
* [5d96bf5] Update watch address
* [351d417] Add Vcs-Git field
* [63cd26a] Add Vcs-Browser field
* [e2a59e2] Conflict with scim-chewing << 0.3.3
* [cd15be8] Change libchewing3-data from all to any since we build
  binary data now.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**
 
2
 * char-private.h
 
3
 *
 
4
 * Copyright (c) 2008
 
5
 *      libchewing Core Team. See ChangeLog for details.
 
6
 *
 
7
 * See the file "COPYING" for information on usage and redistribution
 
8
 * of this file.
 
9
 */
 
10
 
 
11
#ifndef _CHEWING_CHAR_PRIVATE_H
 
12
#define _CHEWING_CHAR_PRIVATE_H
 
13
 
 
14
#include "global.h"
 
15
 
 
16
#ifndef SEEK_SET
 
17
#define SEEK_SET 0
 
18
#endif
 
19
 
 
20
typedef struct {
 
21
        char word[ 7 ];
 
22
} Word;
 
23
 
 
24
int GetCharFirst( Word *, uint16 );
 
25
int GetCharNext ( Word * );
 
26
int InitChar( const char * );
 
27
 
 
28
#endif