|
CoLockObjectExternal
Called either to lock an object to ensure that it stays in memory, or to
release such a lock. Call CoLockObjectExternal to place a strong lock on an object to ensure that it stays in memory.
STDAPI CoLockObjectExternal(
IUnknown * pUnk,
| //Pointer to object to be locked or unlocked
| BOOL fLock,
| //TRUE = lock, FALSE = unlock
| BOOL fLastUnlockReleases
| //TRUE = release all pointers to object
| );
|
|
Parameters
pUnk
Points to the object (through its IUnknown interface) to be locked or unlocked.
fLock
Specifies whether the object is to be locked or released. Specifying TRUE
holds a reference to the object (keeping it in memory), locking it independently of
external or internal AddRef/Release operations, registrations, or revocations. If fLock is TRUE, fLastLockReleases is ignored. FALSE releases a lock previously set with a call to this function.
fLastUnlockReleases
Specifies whether a given lock is the last reference that is supposed to keep
an object alive. If it is, TRUE releases all pointers to the object (there may
be other references that are not supposed to keep it alive).
Return Values
S_OK
Indicates the object was locked successfully.
E_OUTOFMEMORY
Out of memory.
E_INVALIDARG
Indicates one or more arguments are invalid.
E_UNEXPECTED
Indicates an unexpected error occurred.
Comments
The CoLockObjectExternal function prevents the reference count of an object from going to zero,
thereby "locking" it into existence until the lock is released. The same function
(with different parameters) releases the lock. The lock is implemented by having
the system call IUnknown::AddRef on the object. The system then waits to call IUnknown::Release on the object until a later call to CoLockObjectExternal with fLock set to FALSE. This function can be used to maintain a reference count on the
object on behalf of the end-user, because it acts outside of the object, as
does the user.
The CoLockObjectExternal function must be called in the process in which the object actually resides (the EXE
process, not the process in which handlers may be loaded).
Calling CoLockObjectExternal sets a strong lock on an object. A strong lock keeps an object in memory,
while a weak lock does not. Strong locks are required, for example, during a
silent update to an OLE embedding. The embedded object's container must remain in
memory until the update process is complete. There must also be a strong lock on
an application object to ensure that the application stays alive until it has
finished providing services to its clients. All external references place a
strong reference lock on an object.
The CoLockObjectExternal function is typically called in the following situations:
- Object applications should call CoLockObjectExternal with both fLock and fLastLockReleases set to TRUE when they become visible. This call creates a strong lock on
behalf of the user. When the application is closing, free the lock with a call to CoLockObjectExternal, setting fLock to FALSE and fLastLockReleases to TRUE.
- A call to CoLockObjectExternal on the application object can also be used in the implementation of IOleContainer::LockContainer.
There are several things to be aware of when you use CoLockObjectExternal in the implementation of IOleContainer::LockContainer. An embedded object would call IOleContainer::LockContainer on its container to keep it running (to lock it) in the absence of other
reasons to keep it running. When the embedded object becomes visible, the container
must weaken its connection to the embedded object with a call to the OleSetContainedObject function, so other connections can affect the object.
Unless an application manages all aspects of its application and document
shutdown completely with calls to CoLockObjectExternal, the container must keep a private lock count in IOleContainer::LockContainer so that it exits when the lock count reaches zero and the container is
invisible. Maintaining all aspects of shutdown, and thereby avoiding keeping a
private lock count, means that CoLockObjectExternal should be called whenever one of the following conditions occur:
- A document is created and destroyed or made visible or invisible.
- An application is started and shut down by the user.
- A pseudo-object is created and destroyed.
For debugging purposes, it may be useful to keep a count of the number of
external locks (and unlocks) set on the application.
Note The end-user has explicit control over the lifetime of an application, even
if there are external locks on it. That is, if a user decides to close the
application (File, Exit), it must shut down. In the presence of external locks (such as the lock set by CoLockObjectExternal), the application can call the CoDisconnectObject function to force these connections to close prior to shutdown.
See Also
IOleContainer::LockContainer, OleSetContainedObject
| Last news from Greatis Software |
 |
|
Nostalgia .Net |
|
.Net is powerful, but not all-powerful, so sometimes we need to use Win32 API for our .Net applications. It's simple enough with Platform Invoke if you have Win32 skill, but we do not always have time to dig the ancient documentation, declare the special types that are compatible with Win32, find the values of the Win32's constants and so on. Nostalgia .Net offers several simple-to-use classes, and components that will allow you to forget about the headache of Win32 and just use the power of Win32 in your application the same way as you use the native. Net classes. More » |
| Recommended software for developers |
 |
|
Ultimate Pack |
|
Component pack for Delphi and C++ Builder that contains runtime form designer, runtime object inspector, print suite and much more for the very special price. More » |
 |
|
Form Designer .Net |
|
Unique runtime form design solution that allows to edit any form in .Net WinForms application at runtime with full source codes for only 300 euro! More » |
 |
|
Print Suite .Net |
|
Print Suite .Net is a set of components for easy printing texts, images and grids from your WinForms applications. Full C# source codes are available More » |
 |
|
Gradient Controls .Net |
|
Gradient Controls .Net offers controls with gradient background feature. Labels, panels and so on... Full C# source codes are available More » |
 |
|
Greatis iGrid |
|
iGrid plots drawing grid right over your desktop, so you can use it everywhere, with any drawing application without any special plugins for different graphic editors. More » |
All the contacts and projectsDmitry Vasiliev (just.dmitry)
Related LinksSoftware for Visual Studio .NET developers Software for Delphi and C++ Builder developers Software for Visual Basic 6 developers Delphi Tips&Tricks MegaDetailed.NET More Online Helps Win32 Programmer's Reference Win32 Multimedia Programmer's Reference OLE Programmer's Reference Microsoft Windows Pen API Programmer's Reference Microsoft Windows Sockets 2 Reference Microsoft Windows Telephony API (TAPI) Programmer's Reference Unix Manual Pages
|