CeGetUserNotificationHandles (coredll)
Last changed: -12.30.230.138

.
Summary
This function returns an array of currently stored notifications.

C# Signature:

[DllImport("coredll.dll", EntryPoint="CeGetUserNotificationHandles", SetLastError=true)]  
private static extern bool CeGetUserNotificationHandles(IntPtr[] rghNotifications, uint cHandles, ref uint pcHandlesNeeded);

VB Signature:

Declare Function CeGetUserNotificationHandles Lib "coredll" (ByVal rghNotifications As IntPtr(), ByVal chandles As UInt32, ByRef pcHandlesNeeded As UInt32) As Boolean

User-Defined Types:

None.

Alternative Managed API:

Do you know one? Please contribute it!

Notes:

Taken from openNetCF in OpenNETCF.Win32.Notify

Declare a new IntPtr array before calling and pass it as rghNotifications.

cHandles should be set to the size of the IntPtr array.

pcHandlesNeeded will return actual number of notifications available.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Documentation