-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin_defs.h
48 lines (42 loc) · 919 Bytes
/
plugin_defs.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/**
* @file plugin_defs.h
*
* <EN>
* @brief Definitions for JPI Plugin
* </EN>
*
* <JA>
* @brief JPI ¥×¥é¥°¥¤¥óÍÑÄêµÁ
* </JA>
*
* @author Akinobu Lee
* @date Sat Aug 9 23:46:32 2008
*
* $Revision: 1.4 $
*
*/
/*
* Copyright (c) 1991-2013 Kawahara Lab., Kyoto University
* Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology
* Copyright (c) 2005-2013 Julius project team, Nagoya Institute of Technology, Nagoya Institute of Technology
* All rights reserved
*/
#ifndef __JULIUS_PLUGIN_DEFS__
#define __JULIUS_PLUGIN_DEFS__
typedef unsigned char boolean;
typedef short SP16;
typedef int SP32;
#ifndef TRUE
#define TRUE 1
#endif
#ifndef FALSE
#define FALSE 0
#endif
#ifndef AFMT_S32_LE
#define AFMT_S32_LE 0x00001000
#endif
/// Return code of adin_read()
#define ADIN_EOF -1
#define ADIN_ERROR -2
#define ADIN_SEGMENT -3
#endif /* __JULIUS_PLUGIN_DEFS__ */