home *** CD-ROM | disk | FTP | other *** search
/ Network Support Encyclopedia 96-1 / novell-nsepro-1996-1-cd2.iso / download / netware / dbsamp.exe / DBAPP / SERVER / DBNLM.H < prev    next >
Text File  |  1994-12-01  |  590b  |  32 lines

  1. /*
  2.     File: ncpauthx.H        (client/server header file)
  3.  
  4.     Note:    This header file is cross platform enabled.
  5.  
  6.  
  7.     Author: NDA Team
  8.  
  9.     Copyright (C) 1994 by Novell, Inc.
  10.  
  11.     See modules: ncpauthx.C (client), ncpauthx.C (server)
  12. */
  13.  
  14. /* ---------- Macro Definitions ---------- */
  15.  
  16. #define NCPEXTNAME    "DBSAuth"
  17.  
  18. #define DO_AUTH        1
  19.  
  20. /* ---------- Type Definitions ---------- */
  21.  
  22. typedef struct AUTHREQUEST {
  23.     unsigned short    Command;
  24.     char         objectName[516];
  25. } AUTHREQUEST;
  26.  
  27. typedef struct AUTHREPLY {
  28.     unsigned char    completionCode;     /* Zero means successful */
  29. } AUTHREPLY;
  30.  
  31.  
  32.