mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
[MCIAVI32] Sync with Wine Staging 3.3. CORE-14434
This commit is contained in:
parent
4dd96d425c
commit
ba65d708f6
9 changed files with 45 additions and 23 deletions
|
@ -8,7 +8,7 @@ list(APPEND SOURCE
|
|||
mciavi.c
|
||||
mmoutput.c
|
||||
wnd.c
|
||||
private_mciavi.h)
|
||||
precomp.h)
|
||||
|
||||
add_library(mciavi32 SHARED
|
||||
${SOURCE}
|
||||
|
@ -18,5 +18,5 @@ add_library(mciavi32 SHARED
|
|||
set_module_type(mciavi32 win32dll)
|
||||
target_link_libraries(mciavi32 wine)
|
||||
add_importlibs(mciavi32 msvfw32 winmm user32 gdi32 msvcrt kernel32 ntdll)
|
||||
add_pch(mciavi32 private_mciavi.h SOURCE)
|
||||
add_pch(mciavi32 precomp.h SOURCE)
|
||||
add_cd_file(TARGET mciavi32 DESTINATION reactos/system32 FOR all)
|
||||
|
|
|
@ -18,7 +18,12 @@
|
|||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
#include <string.h>
|
||||
#include "private_mciavi.h"
|
||||
#include "wine/debug.h"
|
||||
#include "wine/unicode.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(mciavi);
|
||||
|
||||
/**************************************************************************
|
||||
* MCIAVI_ConvertFrameToTimeFormat [internal]
|
||||
|
|
|
@ -37,10 +37,12 @@
|
|||
* audio is played... still should be stopped ASAP
|
||||
*/
|
||||
|
||||
#include <string.h>
|
||||
#include "private_mciavi.h"
|
||||
#include "wine/debug.h"
|
||||
#include "wine/unicode.h"
|
||||
|
||||
#include <mciavi.h>
|
||||
#include <wine/unicode.h>
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(mciavi);
|
||||
|
||||
static DWORD MCIAVI_mciStop(UINT, DWORD, LPMCI_GENERIC_PARMS);
|
||||
|
||||
|
|
|
@ -17,10 +17,10 @@
|
|||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
//#include "windef.h"
|
||||
//#include "winbase.h"
|
||||
#include <mmddk.h>
|
||||
#include <digitalv.h>
|
||||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
#include "mmddk.h"
|
||||
#include "digitalv.h"
|
||||
|
||||
#ifdef MCI_INTEGER64
|
||||
#define MCI_DWORD_PTR MCI_INTEGER64
|
||||
|
|
|
@ -20,6 +20,9 @@
|
|||
*/
|
||||
|
||||
#include "private_mciavi.h"
|
||||
#include "wine/debug.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(mciavi);
|
||||
|
||||
static BOOL MCIAVI_GetInfoAudio(WINE_MCIAVI* wma, const MMCKINFO* mmckList, MMCKINFO *mmckStream)
|
||||
{
|
||||
|
|
13
dll/win32/mciavi32/precomp.h
Normal file
13
dll/win32/mciavi32/precomp.h
Normal file
|
@ -0,0 +1,13 @@
|
|||
|
||||
#ifndef _MCIAVI_PRECOMP_H
|
||||
#define _MCIAVI_PRECOMP_H
|
||||
|
||||
#define WIN32_NO_STATUS
|
||||
#define _INC_WINDOWS
|
||||
#define COM_NO_WINDOWS_H
|
||||
|
||||
#include "private_mciavi.h"
|
||||
|
||||
#include <wine/debug.h>
|
||||
|
||||
#endif /* !_MCIAVI_PRECOMP_H */
|
|
@ -22,20 +22,15 @@
|
|||
#define __WINE_PRIVATE_MCIAVI_H
|
||||
|
||||
#include <stdarg.h>
|
||||
|
||||
#define WIN32_NO_STATUS
|
||||
#define _INC_WINDOWS
|
||||
#define COM_NO_WINDOWS_H
|
||||
|
||||
#include <windef.h>
|
||||
#include <wingdi.h>
|
||||
#include <mmddk.h>
|
||||
#include <digitalv.h>
|
||||
#include <vfw.h>
|
||||
#include <wownt32.h>
|
||||
|
||||
#include <wine/debug.h>
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(mciavi);
|
||||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
#include "wingdi.h"
|
||||
#include "winuser.h"
|
||||
#include "mmddk.h"
|
||||
#include "digitalv.h"
|
||||
#include "vfw.h"
|
||||
#include "wownt32.h"
|
||||
#include "mciavi.h"
|
||||
|
||||
struct MMIOPos {
|
||||
DWORD dwOffset;
|
||||
|
|
|
@ -19,7 +19,11 @@
|
|||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
#include <string.h>
|
||||
#include "private_mciavi.h"
|
||||
#include "wine/debug.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(mciavi);
|
||||
|
||||
static const WCHAR mciaviW[] = {'M','C','I','A','V','I',0};
|
||||
|
||||
|
|
|
@ -90,7 +90,7 @@ reactos/dll/win32/jsproxy # Synced to WineStaging-3.3
|
|||
reactos/dll/win32/loadperf # Synced to WineStaging-3.3
|
||||
reactos/dll/win32/lz32 # Synced to WineStaging-3.3
|
||||
reactos/dll/win32/mapi32 # Synced to WineStaging-3.3
|
||||
reactos/dll/win32/mciavi32 # Synced to WineStaging-2.9
|
||||
reactos/dll/win32/mciavi32 # Synced to WineStaging-3.3
|
||||
reactos/dll/win32/mcicda # Synced to WineStaging-2.9
|
||||
reactos/dll/win32/mciqtz32 # Synced to WineStaging-2.9
|
||||
reactos/dll/win32/mciseq # Synced to WineStaging-2.9
|
||||
|
|
Loading…
Reference in a new issue