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
4eeae1ad
Commit
4eeae1ad
authored
Oct 18, 2004
by
Vincent Béron
Committed by
Alexandre Julliard
Oct 18, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix some types problems.
parent
ea1b58b5
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
17 additions
and
17 deletions
+17
-17
dbghelp_private.h
dlls/dbghelp/dbghelp_private.h
+1
-1
memory.c
dlls/dbghelp/memory.c
+1
-1
datacache.c
dlls/ole32/datacache.c
+2
-2
olefont.c
dlls/oleaut32/olefont.c
+3
-3
olepicture.c
dlls/oleaut32/olepicture.c
+1
-1
typelib.c
dlls/oleaut32/typelib.c
+6
-6
shlview.c
dlls/shell32/shlview.c
+1
-1
axcore.idl
include/axcore.idl
+2
-2
No files found.
dlls/dbghelp/dbghelp_private.h
View file @
4eeae1ad
...
...
@@ -306,7 +306,7 @@ struct memory_access
extern
struct
memory_access
mem_access
;
#define read_mem(p,a,b,l) (mem_access.read_mem)((p),(a),(b),(l))
#define write_mem(p,a,b,l) (mem_access.write_mem)((p),(a),(b),(l))
extern
unsigned
long
WINAPI
addr_to_linear
(
HANDLE
hProcess
,
HANDLE
hThread
,
ADDRESS
*
addr
);
extern
DWORD
WINAPI
addr_to_linear
(
HANDLE
hProcess
,
HANDLE
hThread
,
ADDRESS
*
addr
);
/* module.c */
extern
struct
module
*
...
...
dlls/dbghelp/memory.c
View file @
4eeae1ad
...
...
@@ -46,7 +46,7 @@ struct memory_access mem_access = {win32_read_mem, win32_write_mem};
*
* converts an address into its linear value
*/
unsigned
long
WINAPI
addr_to_linear
(
HANDLE
hProcess
,
HANDLE
hThread
,
ADDRESS
*
addr
)
DWORD
WINAPI
addr_to_linear
(
HANDLE
hProcess
,
HANDLE
hThread
,
ADDRESS
*
addr
)
{
LDT_ENTRY
le
;
...
...
dlls/ole32/datacache.c
View file @
4eeae1ad
...
...
@@ -279,7 +279,7 @@ static HRESULT WINAPI DataCache_Draw(
LPCRECTL
lprcBounds
,
LPCRECTL
lprcWBounds
,
BOOL
(
CALLBACK
*
pfnContinue
)(
ULONG_PTR
dwContinue
),
DWORD
dwContinue
);
ULONG_PTR
dwContinue
);
static
HRESULT
WINAPI
DataCache_GetColorSet
(
IViewObject2
*
iface
,
DWORD
dwDrawAspect
,
...
...
@@ -1558,7 +1558,7 @@ static HRESULT WINAPI DataCache_Draw(
LPCRECTL
lprcBounds
,
LPCRECTL
lprcWBounds
,
BOOL
(
CALLBACK
*
pfnContinue
)(
ULONG_PTR
dwContinue
),
DWORD
dwContinue
)
ULONG_PTR
dwContinue
)
{
PresentationDataHeader
presData
;
HMETAFILE
presMetafile
=
0
;
...
...
dlls/oleaut32/olefont.c
View file @
4eeae1ad
...
...
@@ -139,7 +139,7 @@ static HRESULT WINAPI OLEFontImpl_put_Charset(IFont* iface, short charset);
static
HRESULT
WINAPI
OLEFontImpl_get_hFont
(
IFont
*
iface
,
HFONT
*
phfont
);
static
HRESULT
WINAPI
OLEFontImpl_Clone
(
IFont
*
iface
,
IFont
**
ppfont
);
static
HRESULT
WINAPI
OLEFontImpl_IsEqual
(
IFont
*
iface
,
IFont
*
pFontOther
);
static
HRESULT
WINAPI
OLEFontImpl_SetRatio
(
IFont
*
iface
,
long
cyLogical
,
long
cyHimetric
);
static
HRESULT
WINAPI
OLEFontImpl_SetRatio
(
IFont
*
iface
,
LONG
cyLogical
,
LONG
cyHimetric
);
static
HRESULT
WINAPI
OLEFontImpl_QueryTextMetrics
(
IFont
*
iface
,
TEXTMETRICOLE
*
ptm
);
static
HRESULT
WINAPI
OLEFontImpl_AddRefHfont
(
IFont
*
iface
,
HFONT
hfont
);
static
HRESULT
WINAPI
OLEFontImpl_ReleaseHfont
(
IFont
*
iface
,
HFONT
hfont
);
...
...
@@ -1048,8 +1048,8 @@ static HRESULT WINAPI OLEFontImpl_IsEqual(
*/
static
HRESULT
WINAPI
OLEFontImpl_SetRatio
(
IFont
*
iface
,
long
cyLogical
,
long
cyHimetric
)
LONG
cyLogical
,
LONG
cyHimetric
)
{
OLEFontImpl
*
this
=
(
OLEFontImpl
*
)
iface
;
TRACE
(
"(%p)->(%ld, %ld)
\n
"
,
this
,
cyLogical
,
cyHimetric
);
...
...
dlls/oleaut32/olepicture.c
View file @
4eeae1ad
...
...
@@ -519,7 +519,7 @@ static HRESULT WINAPI OLEPictureImpl_get_Height(IPicture *iface,
* OLEPictureImpl_Render
*/
static
HRESULT
WINAPI
OLEPictureImpl_Render
(
IPicture
*
iface
,
HDC
hdc
,
long
x
,
long
y
,
long
cx
,
long
cy
,
LONG
x
,
LONG
y
,
LONG
cx
,
LONG
cy
,
OLE_XPOS_HIMETRIC
xSrc
,
OLE_YPOS_HIMETRIC
ySrc
,
OLE_XSIZE_HIMETRIC
cxSrc
,
...
...
dlls/oleaut32/typelib.c
View file @
4eeae1ad
...
...
@@ -3997,8 +3997,8 @@ static ULONG WINAPI ITypeLibComp_fnRelease(ITypeComp * iface)
static
HRESULT
WINAPI
ITypeLibComp_fnBind
(
ITypeComp
*
iface
,
OLECHAR
*
szName
,
unsigned
long
lHash
,
unsigned
short
wFlags
,
ULONG
lHash
,
WORD
wFlags
,
ITypeInfo
**
ppTInfo
,
DESCKIND
*
pDescKind
,
BINDPTR
*
pBindPtr
)
...
...
@@ -4010,7 +4010,7 @@ static HRESULT WINAPI ITypeLibComp_fnBind(
static
HRESULT
WINAPI
ITypeLibComp_fnBindType
(
ITypeComp
*
iface
,
OLECHAR
*
szName
,
unsigned
long
lHash
,
ULONG
lHash
,
ITypeInfo
**
ppTInfo
,
ITypeComp
**
ppTComp
)
{
...
...
@@ -5834,8 +5834,8 @@ static ULONG WINAPI ITypeComp_fnRelease(ITypeComp * iface)
static
HRESULT
WINAPI
ITypeComp_fnBind
(
ITypeComp
*
iface
,
OLECHAR
*
szName
,
unsigned
long
lHash
,
unsigned
short
wFlags
,
ULONG
lHash
,
WORD
wFlags
,
ITypeInfo
**
ppTInfo
,
DESCKIND
*
pDescKind
,
BINDPTR
*
pBindPtr
)
...
...
@@ -5902,7 +5902,7 @@ static HRESULT WINAPI ITypeComp_fnBind(
static
HRESULT
WINAPI
ITypeComp_fnBindType
(
ITypeComp
*
iface
,
OLECHAR
*
szName
,
unsigned
long
lHash
,
ULONG
lHash
,
ITypeInfo
**
ppTInfo
,
ITypeComp
**
ppTComp
)
{
...
...
dlls/shell32/shlview.c
View file @
4eeae1ad
...
...
@@ -2314,7 +2314,7 @@ static HRESULT WINAPI ISVViewObject_Draw(
LPCRECTL
lprcBounds
,
LPCRECTL
lprcWBounds
,
BOOL
(
CALLBACK
*
pfnContinue
)(
ULONG_PTR
dwContinue
),
DWORD
dwContinue
)
ULONG_PTR
dwContinue
)
{
_ICOM_THIS_From_IViewObject
(
IShellViewImpl
,
iface
);
...
...
include/axcore.idl
View file @
4eeae1ad
...
...
@@ -386,9 +386,9 @@ interface IMediaSample : IUnknown
HRESULT
SetPreroll
(
BOOL
bIsPreroll
)
;
long
GetActualDataLength
(
void
)
;
LONG
GetActualDataLength
(
void
)
;
HRESULT
SetActualDataLength
(
long
length
)
;
HRESULT
SetActualDataLength
(
LONG
length
)
;
HRESULT
GetMediaType
(
AM_MEDIA_TYPE
**
ppMediaType
)
;
...
...
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