| 298 | SoundData *WA2InputModule::GetSoundData(){ return sdat; } |
| 299 | |
| 300 | void WA2InputModule::QueueFile(const char *file) |
| 301 | { |
| 302 | COPYDATASTRUCT cds; |
| 303 | cds.dwData = IPC_PLAYFILE; |
| 304 | cds.lpData = (void *) file; |
| 305 | cds.cbData = strlen(file)+1; // include space for null char |
| 306 | SendMessage(pMod->hMainWindow, WM_COPYDATA,(WPARAM)NULL,(LPARAM)&cds); |
| 307 | } |
| 308 | |
| 309 | void WA2InputModule::PlayStart() |
| 310 | { |
no outgoing calls
no test coverage detected