Identifying a Previous Instance of an ApplicationLast reviewed: November 2, 1995Article ID: Q106385 |
The information in this article applies to:
SUMMARYThe entry point of both Windows and Windows NT applications is documented to be:
int WinMain( hInstance, hPrevInstance, lpszCmdLine, nCmdShow ) HINSTANCE hInstance; /* Handle of current instance */ HINSTANCE hPrevInstance; /* Handle of previous instance */ LPSTR lpszCmdLine; /* Address of command line */ int nCmdShow; /* Show state of window */However, under Windows NT, hPrevInstance is documented to always be NULL. The reason is that each application runs in its own address space and may have the same ID as another application. To determine whether another instance of the application is running, use a named mutex. If opening the mutex fails, then there are no other instances of the application running. FindWindow() can be used with the class and window name. However, note that a second instance of the application could be started, and could execute the FindWindow() call before the first instance has created its window. Use a named object to ensure that this does not happen.
MORE INFORMATIONThe fact that hPrevInstance is set to NULL simplifies porting Win16 applications. Most 16-bit Windows-based applications contain the following logic:
if( !hPrevInstance ) if( !InitApplication(hInstance) ) return FALSE;Under Windows, window classes only are registered by the first instance of an application. Consequently, if hPrevInstance is not NULL, then the window classes have already been registered and InitApplication() is not called. Under Windows NT, because hPrevInstance is always NULL, InitApplication() is always called, and each instance of an application will correctly register its window classes.
|
Additional reference words: 3.10 3.50 3.51 4.00 95
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |