Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

AddMonitor (winspool)
 
.
Summary
The AddMonitor function installs a local port monitor and links the configuration, data, and monitor files.
Summary
TODO - a short description

C# Signature:

[DllImport("winspool.drv", SetLastError = true, CharSet = CharSet.Auto)]
private static extern Int32 AddMonitor(String pName, UInt32 Level, ref MONITOR_INFO_2 pMonitors);

VB Signature:

User-Defined Types:

MONITOR_INFO_2

Alternative Managed API:

Do you know one? Please contribute it!

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

String sErrorTitle="Installing monitor";
String szMonitor="MyMonitor";

MONITOR_INFO_2 mi2 = new MONITOR_INFO_2();

mi2.pName = szMonitor;
mi2.pEnvironment = null;          
mi2.pDLLName = "mymon.dll";

try
{
    if (AddMonitor(null, 2, ref mi2) == 0)
    {
    string errorMessage = new Win32Exception(Marshal.GetLastWin32Error()).Message;
    MessageBox.Show(String.Format("Adding the monitor failed.\n\nError: {0}", errorMessage), sErrorTitle, MessageBoxButtons.OK, MessageBoxIcon.Error);

    return;
    }
}
catch (Exception e)
{
    MessageBox.Show(String.Format("Adding the monitor failed:\n\nException: {0}", e.ToString()), sErrorTitle, MessageBoxButtons.OK, MessageBoxIcon.Error);
}

Documentation
AddMonitor on MSDN

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).

 
Access PInvoke.net directly from VS:
Terms of Use
Edit This Page
Find References
Show Printable Version
Revisions