File: voicerec.h

package info (click to toggle)
freespace2 3.7.4%2Brepack-1.1
  • links: PTS, VCS
  • area: non-free
  • in suites: bullseye
  • size: 22,268 kB
  • sloc: cpp: 393,535; ansic: 4,106; makefile: 1,091; xml: 181; sh: 137
file content (11 lines) | stat: -rw-r--r-- 375 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
#ifndef __VOICEREC_H__
#define __VOICEREC_H__

#define GRAMMARID1      161                     // Arbitrary grammar id
#define WM_RECOEVENT    WM_USER+190             // Arbitrary user defined message for reco callback

bool VOICEREC_init(HWND hWnd, int event_id, int grammar_id, int command_resource);
void VOICEREC_deinit();
void VOICEREC_process_event(HWND hWnd);

#endif