Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
c2879802
Commit
c2879802
authored
Jun 23, 2003
by
Michael Günnewig
Committed by
Alexandre Julliard
Jun 23, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- added stubs for GetOpenFileNamePreview{A,W}
- added stubs for GetSaveFileNamePreview{A,W} - removed invalid VIDC.MRLD line from system.ini
parent
9b5cde85
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
45 additions
and
5 deletions
+45
-5
msvfw32.spec
dlls/msvideo/msvfw32.spec
+4
-4
msvideo_main.c
dlls/msvideo/msvideo_main.c
+40
-0
msvideo_private.h
dlls/msvideo/msvideo_private.h
+1
-0
system.ini
documentation/samples/system.ini
+0
-1
No files found.
dlls/msvideo/msvfw32.spec
View file @
c2879802
...
@@ -18,10 +18,10 @@
...
@@ -18,10 +18,10 @@
@ stdcall DrawDibStop(long)
@ stdcall DrawDibStop(long)
@ stub DrawDibTime
@ stub DrawDibTime
@ stub GetOpenFileNamePreview
@ stub GetOpenFileNamePreview
@ st
ub GetOpenFileNamePreviewA
@ st
dcall GetOpenFileNamePreviewA(ptr)
@ st
ub GetOpenFileNamePreviewW
@ st
dcall GetOpenFileNamePreviewW(ptr)
@ st
ub GetSaveFileNamePreviewA
@ st
dcall GetSaveFileNamePreviewA(ptr)
@ st
ub GetSaveFileNamePreviewW
@ st
dcall GetSaveFileNamePreviewW(ptr)
@ stdcall ICClose(long)
@ stdcall ICClose(long)
@ cdecl ICCompress(long long ptr ptr ptr ptr ptr ptr long long long ptr ptr)
@ cdecl ICCompress(long long ptr ptr ptr ptr ptr ptr long long long ptr ptr)
@ stdcall ICCompressorChoose(long long ptr ptr ptr ptr)
@ stdcall ICCompressorChoose(long long ptr ptr ptr ptr)
...
...
dlls/msvideo/msvideo_main.c
View file @
c2879802
...
@@ -890,3 +890,43 @@ err:
...
@@ -890,3 +890,43 @@ err:
return
(
HANDLE
)
hMem
;
return
(
HANDLE
)
hMem
;
}
}
/***********************************************************************
* GetOpenFileNamePreviewA [MSVFW32.@]
*/
BOOL
WINAPI
GetOpenFileNamePreviewA
(
LPOPENFILENAMEA
lpofn
)
{
FIXME
(
"(%p), stub!
\n
"
,
lpofn
);
return
FALSE
;
}
/***********************************************************************
* GetOpenFileNamePreviewW [MSVFW32.@]
*/
BOOL
WINAPI
GetOpenFileNamePreviewW
(
LPOPENFILENAMEW
lpofn
)
{
FIXME
(
"(%p), stub!
\n
"
,
lpofn
);
return
FALSE
;
}
/***********************************************************************
* GetSaveFileNamePreviewA [MSVFW32.@]
*/
BOOL
WINAPI
GetSaveFileNamePreviewA
(
LPOPENFILENAMEA
lpofn
)
{
FIXME
(
"(%p), stub!
\n
"
,
lpofn
);
return
FALSE
;
}
/***********************************************************************
* GetSaveFileNamePreviewW [MSVFW32.@]
*/
BOOL
WINAPI
GetSaveFileNamePreviewW
(
LPOPENFILENAMEW
lpofn
)
{
FIXME
(
"(%p), stub!
\n
"
,
lpofn
);
return
FALSE
;
}
dlls/msvideo/msvideo_private.h
View file @
c2879802
...
@@ -22,6 +22,7 @@
...
@@ -22,6 +22,7 @@
#define COM_NO_WINDOWS_H
#define COM_NO_WINDOWS_H
#include "winbase.h"
#include "winbase.h"
#include "windef.h"
#include "windef.h"
#include "commdlg.h"
#include "vfw.h"
#include "vfw.h"
/* HIC struct (same layout as Win95 one) */
/* HIC struct (same layout as Win95 one) */
...
...
documentation/samples/system.ini
View file @
c2879802
...
@@ -10,5 +10,4 @@ MPEGVideo=mciqtz.drv
...
@@ -10,5 +10,4 @@ MPEGVideo=mciqtz.drv
[drivers32]
[drivers32]
MSACM.imaadpcm
=
imaadp32.acm
MSACM.imaadpcm
=
imaadp32.acm
MSACM.msadpcm
=
msadp32.acm
MSACM.msadpcm
=
msadp32.acm
VIDC.MRLD
=
msrle32.dll
VIDC.MRLE
=
msrle32.dll
VIDC.MRLE
=
msrle32.dll
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment