WinBatch Tech Support Home

Database Search

If you can't find the information using the categories below, post a question over in our WinBatch Tech Support Forum.

TechHome

DllCall Information

Can't find the information you are looking for here? Then leave a message over on our WinBatch Tech Support Forum.

SHQueryUserNotificationState

 Keywords: SHQueryUserNotificationState DllCall Presentation Mode 

bb = BinaryAlloc(4)
BinaryEodSet( bb, BinaryEodGet( bb ) )
dllfile = DirWindows(1):"shell32.dll"
result = DllCall(dllfile, long:"SHQueryUserNotificationState", lpbinary:bb)
If result != 0
   err = DllLastError()
   Pause('SHQueryUserNotificationState Error', err)
   BinaryFree(bb)
EndIf
state = BinaryPeek4(bb, 0)
BinaryFree(bb)
Pause('SHQueryUserNotificationState', state)

Article ID:   W17796
Filename:   SHQueryUserNotificationState.txt
File Created: 2011:01:07:13:48:38
Last Updated: 2011:01:07:13:48:38