home *** CD-ROM | disk | FTP | other *** search
/ Network Support Encyclopedia 96-1 / novell-nsepro-1996-1-cd2.iso / download / netware / os2hdr.exe / NWMSG.H < prev    next >
C/C++ Source or Header  |  1993-06-21  |  1KB  |  48 lines

  1. /*--------------------------------------------------------------------------
  2.      (C) Copyright Novell, Inc. 1991  All Rights Reserved.
  3.  
  4.  No part of this file may be duplicated, revised, translated, localized or
  5.  modified in any manner or compiled, linked, or uploaded or downloaded to or
  6.  from any computer system without the prior written consent of Novell, Inc.
  7. --------------------------------------------------------------------------*/
  8. #ifndef NWMSG_INC
  9. #define NWMSG_INC
  10.  
  11. #ifndef NWCALDEF_INC
  12. #include <nwcaldef.h>
  13. #endif
  14.  
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18.  
  19. NWCCODE NWAPI NWDisableBroadcasts(NWCONN_HANDLE conn);
  20. NWCCODE NWAPI NWEnableBroadcasts(NWCONN_HANDLE conn);
  21.  
  22. NWCCODE NWAPI NWSendBroadcastMessage(
  23.   NWCONN_HANDLE conn,
  24.   char NWPTR message,
  25.   WORD connCount,
  26.   WORD NWPTR connList,
  27.   BYTE NWPTR resultList);
  28.  
  29. NWCCODE NWAPI NWGetBroadcastMessage(
  30.   NWCONN_HANDLE conn,
  31.   char NWPTR message);
  32.  
  33. NWCCODE NWAPI NWGetBroadcastMode(NWCONN_HANDLE conn, WORD NWPTR mode);
  34. NWCCODE NWAPI NWSetBroadcastMode(NWCONN_HANDLE conn, WORD mode);
  35. NWCCODE NWAPI NWBroadcastToConsole(NWCONN_HANDLE conn, char NWPTR message);
  36.  
  37. NWCCODE NWAPI NWSendConsoleBroadcast(
  38.   NWCONN_HANDLE conn,
  39.   char NWPTR message,
  40.   WORD connCount,
  41.   WORD NWPTR connList);
  42. #ifdef __cplusplus
  43. }
  44. #endif
  45.  
  46. #endif
  47.  
  48.