- return (mciSendCommand(m_internal->m_dev_id, MCI_STOP, 0, NULL) == 0);
+ if (::mciSendCommand(m_internal->m_dev_id, MCI_STOP, 0, NULL) != 0)
+ return FALSE;
+
+ seekStruct.dwCallback = 0;
+ seekStruct.dwTo = 0;
+ return (::mciSendCommand(m_internal->m_dev_id, MCI_SEEK, 0, (DWORD)(LPVOID)&seekStruct) == 0);
+}
+
+
+// TODO TODO
+
+wxString wxVideoWindows::GetMovieCodec() const
+{
+ return wxT("No info");
+}
+
+wxString wxVideoWindows::GetAudioCodec() const
+{
+ return wxT("No info");
+}
+
+wxUint32 wxVideoWindows::GetSampleRate() const
+{
+ return 22500;
+}
+
+wxUint8 wxVideoWindows::GetChannels() const
+{
+ return 1;
+}
+
+wxUint8 wxVideoWindows::GetBPS() const
+{
+ return 8;
+}
+
+double wxVideoWindows::GetFrameRate() const
+{
+ return 1.0;
+}
+
+wxUint32 wxVideoWindows::GetNbFrames() const
+{
+ return 0;