Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than kernel32, prefix the name with the module name and a period.
[DllImport("kernel32.dll")]
public static extern bool ReleaseMutex( IntPtr hMutex );
...
/// <summary>
/// This value can be returned by CreateMutex() and is found in
/// C++ in the error.h header file.
/// </summary>
public const int ERROR_ALREADY_EXISTS = 183;
...
}
}
//// frmMain.cs ///////////////////////////////
...
using nsWin32Calls; // encapsulates Win32 calls
...
namespace DISCStreamHub
{
public class frmMain : System.Windows.Forms.Form
{
...
// helper objects
private static frmMain form = null;
...
/// <summary>
/// Main entry point for the application.
/// </summary>
[STAThread]
public static void Main()
{
// create IntPtrs for use with CreateMutex()
IntPtr ipMutexAttr = new IntPtr( 0 );
IntPtr ipHMutex = new IntPtr( 0 );
try
{
// Create the mutex and verify its status BEFORE construction
// of the main form.
if (ipHMutex != (IntPtr)0)
{
// check GetLastError value (MUST use this call. See MSDN)
int iGLE = Marshal.GetLastWin32Error();
// if we get the ERROR_ALREADY_EXISTS value, there is
// already another instance of this application running.
if (iGLE == Win32Calls.ERROR_ALREADY_EXISTS)
// So, don't allow this instance to run.
return;
}
else
{ // CreateMutex() failed.
// once the app is up and running, I log the failure from
// within the frmMain constructor.
m_bMutexFailed = true;
}
// construct the main form object and
form = new frmMain();
// cleanup the main form object instance.
if (form != null) {
form.Dispose();
}
}
}
...
}
}
I tried to format as well as possible, but this thing is a bit weird. If I leave one blank line, this darn thing leaves two. If I leave none, it leaves none. :s
Alternative Managed API:
Please edit this page!
Do you have...
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).