~misono/nvdajp/MiscellaneousDependencies

« back to all changes in this revision

Viewing changes to include/espeak/platforms/windows/windows_cmd/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:
43
43
typedef unsigned short USHORT;
44
44
typedef unsigned char  UCHAR;
45
45
typedef double DOUBLEX;
 
46
#ifdef __WIN64__
 
47
typedef uint64_t long64;  // use this for conversion between pointers and integers
 
48
#else
 
49
typedef unsigned long long64;
 
50
#endif
46
51
 
47
52
 
48
53