NotifDef.def: Translation to Stony Brook Modula-2

Last updated: 30.12.1997, 10:31

DEFINITION MODULE NotifDef;
IMPORT  WIN32;
TYPE
  CONTROLNOTIFICATIONS = RECORD
                           nCode : INTEGER;
                           pName : WIN32.LPSTR;
                         END;
PROCEDURE QueryNotifyText (nNotifyCode : CARDINAL; VAR pName : WIN32.LPSTR) : BOOLEAN;
PROCEDURE ViewNotificationsToggle (hwnd : WIN32.HWND) : WIN32.HWND;
PROCEDURE DisplayText (pText : WIN32.LPSTR);
PROCEDURE DisplayNotificationDetails (wParam : WIN32.WPARAM; lParam : WIN32.LPARAM);
PROCEDURE ClearNotificationList ();
END NotifDef.