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
3e18c250
Commit
3e18c250
authored
Oct 23, 1999
by
Eric Pouech
Committed by
Alexandre Julliard
Oct 23, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
First working version.
parent
aa67ac90
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
35 additions
and
2 deletions
+35
-2
animate.c
dlls/comctl32/animate.c
+0
-0
animate.h
include/animate.h
+35
-2
No files found.
dlls/comctl32/animate.c
View file @
3e18c250
This diff is collapsed.
Click to expand it.
include/animate.h
View file @
3e18c250
...
...
@@ -8,11 +8,44 @@
#define __WINE_ANIMATE_H
#include "windef.h"
#include "vfw.h"
typedef
struct
tagANIMATE_INFO
{
LPVOID
lpAvi
;
/* pointer to avi data */
HFILE
hFile
;
/* handle to avi file */
/* pointer to msvideo functions. it's easier to put them here.
* to be correct, they should be defined on a per process basis, but
* this would required a per process storage. We're using a per object
* storage instead, which is not efficient on memory usage, but
* will lead to less bugs in the future
*/
HIC
(
WINAPI
*
fnICOpen
)(
DWORD
,
DWORD
,
UINT
);
LRESULT
(
WINAPI
*
fnICClose
)(
HIC
);
LRESULT
(
WINAPI
*
fnICSendMessage
)(
HIC
,
UINT
,
DWORD
,
DWORD
);
DWORD
(
WINAPIV
*
fnICDecompress
)(
HIC
,
DWORD
,
LPBITMAPINFOHEADER
,
LPVOID
,
LPBITMAPINFOHEADER
,
LPVOID
);
/* reference to input stream (file or resource) */
HGLOBAL
hRes
;
HMMIO
hMMio
;
/* handle to mmio stream */
HWND
hWnd
;
/* information on the loaded AVI file */
MainAVIHeader
mah
;
AVIStreamHeader
ash
;
LPBITMAPINFOHEADER
inbih
;
LPDWORD
lpIndex
;
/* data for the decompressor */
HIC
hic
;
LPBITMAPINFOHEADER
outbih
;
LPVOID
indata
;
LPVOID
outdata
;
/* data for the background mechanism */
CRITICAL_SECTION
cs
;
HANDLE
hService
;
UINT
uTimer
;
/* data for playing the file */
int
nFromFrame
;
int
nToFrame
;
int
nLoop
;
int
currFrame
;
}
ANIMATE_INFO
;
...
...
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