|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| No
| Win32s
| No
| Import Library
| kernel32.lib
| Header File
| winbase.h
| Unicode
| WinNT
| Platform Notes
| None
|
|
|
EndUpdateResource
The EndUpdateResource function ends a resource update in an executable file.
BOOL EndUpdateResource(
HANDLE hUpdate,
| // update-file handle
| BOOL fDiscard
| // write flag
| );
|
|
Parameters
hUpdate
Specifies an update handle. This handle is returned by the BeginUpdateResource function.
fDiscard
Specifies whether to write resource updates to an executable file. If this
parameter is TRUE, no changes are made to the executable file. If it is FALSE, the
changes are made.
Return Values
If the function succeeds and the accumulated resource modifications specified
by calls to the UpdateResource function are written to the specified executable file, the return value is
nonzero.
If the function fails, the return value is zero. To get extended error
information, call GetLastError.
See Also
BeginUpdateResource, UpdateResource
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
TMS Scripter Studio Pro components for Delphi/C++Builder
More Online Helps
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|