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
79673e91
Commit
79673e91
authored
Apr 03, 2003
by
Paul McNett
Committed by
Alexandre Julliard
Apr 03, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stubs for BeginUpdateResourceA(), BeginUpdateResourceW(),
EndUpdateResourceA(), and EndUpdateResourceW().
parent
ff152b65
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
46 additions
and
4 deletions
+46
-4
kernel32.spec
dlls/kernel/kernel32.spec
+4
-4
kernel32.c
win32/kernel32.c
+42
-0
No files found.
dlls/kernel/kernel32.spec
View file @
79673e91
...
...
@@ -143,8 +143,8 @@
@ stdcall BackupSeek(ptr long long ptr ptr ptr)
@ stdcall BackupWrite(ptr ptr long ptr long long ptr)
@ stdcall Beep(long long)
@ st
ub BeginUpdateResourceA
@ st
ub BeginUpdateResourceW
@ st
dcall BeginUpdateResourceA(str long)
@ st
dcall BeginUpdateResourceW(wstr long)
@ stdcall BuildCommDCBA(str ptr)
@ stdcall BuildCommDCBAndTimeoutsA(str ptr ptr)
@ stdcall BuildCommDCBAndTimeoutsW(wstr ptr ptr)
...
...
@@ -231,8 +231,8 @@
@ stdcall DisconnectNamedPipe(long)
@ stdcall DosDateTimeToFileTime(long long ptr)
@ stdcall DuplicateHandle(long long long ptr long long long)
@ st
ub EndUpdateResourceA
@ st
ub EndUpdateResourceW
@ st
dcall EndUpdateResourceA(long long)
@ st
dcall EndUpdateResourceW(long long)
@ stdcall EnterCriticalSection(ptr) ntdll.RtlEnterCriticalSection
@ stdcall EnumCalendarInfoA(ptr long long long)
@ stub EnumCalendarInfoW
...
...
win32/kernel32.c
View file @
79673e91
...
...
@@ -36,6 +36,48 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
win32
);
/***********************************************************************
* BeginUpdateResourceA (KERNEL32.@)
*/
HANDLE
WINAPI
BeginUpdateResourceA
(
LPCSTR
pFileName
,
BOOL
bDeleteExistingResources
)
{
FIXME
(
"(%s,%d): stub
\n
"
,
debugstr_a
(
pFileName
),
bDeleteExistingResources
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
0
;
}
/***********************************************************************
* BeginUpdateResourceW (KERNEL32.@)
*/
HANDLE
WINAPI
BeginUpdateResourceW
(
LPCWSTR
pFileName
,
BOOL
bDeleteExistingResources
)
{
FIXME
(
"(%s,%d): stub
\n
"
,
debugstr_w
(
pFileName
),
bDeleteExistingResources
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
0
;
}
/***********************************************************************
* EndUpdateResourceA (KERNEL32.@)
*/
BOOL
WINAPI
EndUpdateResourceA
(
HANDLE
hUpdate
,
BOOL
fDiscard
)
{
FIXME
(
"(%p,%d): stub
\n
"
,
hUpdate
,
fDiscard
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/***********************************************************************
* EndUpdateResourceW (KERNEL32.@)
*/
BOOL
WINAPI
EndUpdateResourceW
(
HANDLE
hUpdate
,
BOOL
fDiscard
)
{
FIXME
(
"(%p,%d): stub
\n
"
,
hUpdate
,
fDiscard
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/***********************************************************************
* UpdateResourceA (KERNEL32.@)
*/
BOOL
WINAPI
UpdateResourceA
(
...
...
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