Microsoft KB Archive/106385

From BetaArchive Wiki
< Microsoft KB Archive
Revision as of 21:58, 16 July 2020 by X010 (talk | contribs) (1 revision imported: importing part 2)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

HOWTO: Identify a Previous Instance of an Application

Q106385



The information in this article applies to:


  • Microsoft Win32 Software Development Kit (SDK)





SUMMARY

The entry point of both 16-bit (Win16) and 32-bit (Win32) Windows applications is documented as follows:

   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 Win32, 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 INFORMATION

The 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 Win16, 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 Win32, because hPrevInstance is always NULL, InitApplication() is always called, and each instance of an application will correctly register its window classes.

Additional query words: prevent CreateMutex

Keywords : kbOSWinNT kbOSWin2000 kbSDKWin32 kbGrpDSUser kbOSWin95 kbOSWin98
Issue type : kbhowto
Technology : kbWin32SDKSearch kbAudDeveloper kbSDKSearch kbWin32sSearch


Last Reviewed: July 12, 2000
© 2001 Microsoft Corporation. All rights reserved. Terms of Use.