~misono/nvdajp/MiscellaneousDependencies

« back to all changes in this revision

Viewing changes to include/espeak/platforms/windows/windows_sapi/src/speech.h

  • Committer: Takuya Nishimoto
  • Date: 2012-05-06 14:35:57 UTC
  • Revision ID: nishimotz@gmail.com-20120506143557-1h0itsvl96dsnd4s
imporeted espeak-1.46.17 05.May.2012

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
typedef unsigned short USHORT;
49
49
typedef unsigned char  UCHAR;
50
50
typedef double DOUBLEX;
 
51
#ifdef __WIN64__
 
52
typedef uint64_t long64;  // use this for conversion between pointers and integers
 
53
#else
 
54
typedef unsigned long long64;
 
55
#endif
51
56
 
52
57
 
53
58