Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
55146dbe
Commit
55146dbe
authored
Dec 24, 2000
by
François Gouget
Committed by
Alexandre Julliard
Dec 24, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed a few type clashes in preparation for the switch to STRICT.
parent
345acc90
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
9 additions
and
9 deletions
+9
-9
change.c
files/change.c
+1
-1
objects.c
graphics/enhmetafiledrv/objects.c
+1
-1
winuser.h
include/winuser.h
+2
-2
pe_resource.c
loader/pe_resource.c
+2
-2
resource.c
loader/resource.c
+2
-2
handle.c
scheduler/handle.c
+1
-1
No files found.
files/change.c
View file @
55146dbe
...
...
@@ -28,7 +28,7 @@ DEFAULT_DEBUG_CHANNEL(file);
HANDLE
WINAPI
FindFirstChangeNotificationA
(
LPCSTR
lpPathName
,
BOOL
bWatchSubtree
,
DWORD
dwNotifyFilter
)
{
HANDLE
ret
=
-
1
;
HANDLE
ret
=
INVALID_HANDLE_VALUE
;
FIXME
(
"this is not supported yet (non-trivial).
\n
"
);
...
...
graphics/enhmetafiledrv/objects.c
View file @
55146dbe
...
...
@@ -244,7 +244,7 @@ static HPEN EMFDRV_PEN_SelectObject(DC *dc, HPEN hPen )
{
EMRSELECTOBJECT
emr
;
DWORD
index
;
H
FONT
hOldPen
;
H
PEN
hOldPen
;
/* If the object is a stock pen object, do not need to create it.
* See definitions in wingdi.h for range of stock pens.
...
...
include/winuser.h
View file @
55146dbe
...
...
@@ -3564,8 +3564,8 @@ BOOL WINAPI KillTimer(HWND,UINT);
HACCEL
WINAPI
LoadAcceleratorsA
(
HINSTANCE
,
LPCSTR
);
HACCEL
WINAPI
LoadAcceleratorsW
(
HINSTANCE
,
LPCWSTR
);
#define LoadAccelerators WINELIB_NAME_AW(LoadAccelerators)
HBITMAP
WINAPI
LoadBitmapA
(
HANDL
E
,
LPCSTR
);
HBITMAP
WINAPI
LoadBitmapW
(
HANDL
E
,
LPCWSTR
);
HBITMAP
WINAPI
LoadBitmapA
(
HINSTANC
E
,
LPCSTR
);
HBITMAP
WINAPI
LoadBitmapW
(
HINSTANC
E
,
LPCWSTR
);
#define LoadBitmap WINELIB_NAME_AW(LoadBitmap)
HCURSOR
WINAPI
LoadCursorA
(
HINSTANCE
,
LPCSTR
);
HCURSOR
WINAPI
LoadCursorW
(
HINSTANCE
,
LPCWSTR
);
...
...
loader/pe_resource.c
View file @
55146dbe
...
...
@@ -251,7 +251,7 @@ HRSRC PE_FindResourceW( HMODULE hmod, LPCWSTR name, LPCWSTR type )
/**********************************************************************
* PE_LoadResource
*/
H
ANDLE
PE_LoadResource
(
HMODULE
hmod
,
HANDLE
hRsrc
)
H
GLOBAL
PE_LoadResource
(
HMODULE
hmod
,
HRSRC
hRsrc
)
{
if
(
!
hRsrc
)
return
0
;
return
(
HANDLE
)(
hmod
+
((
PIMAGE_RESOURCE_DATA_ENTRY
)
hRsrc
)
->
OffsetToData
);
...
...
@@ -261,7 +261,7 @@ HANDLE PE_LoadResource( HMODULE hmod, HANDLE hRsrc )
/**********************************************************************
* PE_SizeofResource
*/
DWORD
PE_SizeofResource
(
H
ANDLE
hRsrc
)
DWORD
PE_SizeofResource
(
H
RSRC
hRsrc
)
{
if
(
!
hRsrc
)
return
0
;
return
((
PIMAGE_RESOURCE_DATA_ENTRY
)
hRsrc
)
->
Size
;
...
...
loader/resource.c
View file @
55146dbe
...
...
@@ -325,7 +325,7 @@ HRSRC16 WINAPI FindResource16( HMODULE16 hModule, LPCSTR name, LPCSTR type )
/**********************************************************************
* FindResourceA (KERNEL32.128)
*/
H
ANDLE
WINAPI
FindResourceA
(
HMODULE
hModule
,
LPCSTR
name
,
LPCSTR
type
)
H
RSRC
WINAPI
FindResourceA
(
HMODULE
hModule
,
LPCSTR
name
,
LPCSTR
type
)
{
return
RES_FindResource
(
hModule
,
type
,
name
,
MAKELANGID
(
LANG_NEUTRAL
,
SUBLANG_NEUTRAL
),
FALSE
,
FALSE
);
...
...
@@ -334,7 +334,7 @@ HANDLE WINAPI FindResourceA( HMODULE hModule, LPCSTR name, LPCSTR type )
/**********************************************************************
* FindResourceExA (KERNEL32.129)
*/
H
ANDLE
WINAPI
FindResourceExA
(
HMODULE
hModule
,
H
RSRC
WINAPI
FindResourceExA
(
HMODULE
hModule
,
LPCSTR
type
,
LPCSTR
name
,
WORD
lang
)
{
return
RES_FindResource
(
hModule
,
type
,
name
,
...
...
scheduler/handle.c
View file @
55146dbe
...
...
@@ -110,7 +110,7 @@ BOOL WINAPI DuplicateHandle( HANDLE source_process, HANDLE source,
*/
HANDLE
WINAPI
ConvertToGlobalHandle
(
HANDLE
hSrc
)
{
HANDLE
ret
=
-
1
;
HANDLE
ret
=
INVALID_HANDLE_VALUE
;
DuplicateHandle
(
GetCurrentProcess
(),
hSrc
,
(
HANDLE
)
-
1
,
&
ret
,
0
,
FALSE
,
DUP_HANDLE_MAKE_GLOBAL
|
DUP_HANDLE_SAME_ACCESS
|
DUP_HANDLE_CLOSE_SOURCE
);
return
ret
;
...
...
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