home *** CD-ROM | disk | FTP | other *** search
/ Programming Tool Box / SIMS_2.iso / vb_code1 / ni_vb / nwmess.bas < prev    next >
BASIC Source File  |  1993-04-27  |  2KB  |  26 lines

  1. 'NWMSG.BAS  NetWare Message Services Interface for Visual Basic For Windows
  2. 'Version 1.0
  3. 'Novell Systems Research Department, Novell, Inc.
  4. 'Copyright (c) 1993, Novell, Inc.
  5. 'This interface is not supported through Novell's regular
  6. 'support channels.  See README.TXT for more information.
  7.  
  8. Declare Function BroadcastToConsole Lib "NWNETAPI.DLL" (ByVal message$) As Integer
  9. Declare Function CheckPipeStatus Lib "NWNETAPI.DLL" (connectionList&, resultList%, connectionCount&) As Integer     '2.x only
  10. Declare Function CloseMessagePipe Lib "NWNETAPI.DLL" (connectionList&, resultList%, connectionCount&) As Integer    '2.x only
  11. Declare Function DisableBroadcasts Lib "NWNETAPI.DLL" () As Integer
  12. Declare Function EnableBroadcasts Lib "NWNETAPI.DLL" () As Integer
  13. 'messageBuffer must be initialized to 56 bytes
  14. Declare Function GetBroadcastMessage Lib "NWNETAPI.DLL" (ByVal messageBuffer$) As Integer
  15. Declare Function GetBroadcastMode Lib "NWNETAPI.DLL" () As Integer
  16. 'messageBuffer must be initialized to 127 bytes
  17. Declare Function GetPersonalMessage Lib "NWNETAPI.DLL" (ByVal messageBuffer$, sourceConnection&) As Integer     '2.x only
  18. Declare Function LogNetWorkMessage Lib "NWNETAPI.DLL" (ByVal message$) As Integer     '2.x only
  19. Declare Function OpenMessagePipe Lib "NWNETAPI.DLL" (connectionList&, resultList%, ByVal connectionCount&) As Integer     '2.x only
  20. Declare Function SendBroadcastMessage Lib "NWNETAPI.DLL" (ByVal message$, connectionList&, resultList%, ByVal connectionCount&) As Integer
  21. Declare Function SendPersonalMessage Lib "NWNETAPI.DLL" (ByVal message$, connectionList&, resultList%, ByVal connectionCount%) As Integer     '2.x only
  22. Declare Function SetBroadcastMode Lib "NWNETAPI.DLL" (ByVal broadcastMode%) As Integer
  23.  
  24.  
  25.  
  26.