home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / dsstlkt5.zip / dssos2tk / dss / LSDCEERR.H < prev    next >
Text File  |  1998-05-08  |  1KB  |  34 lines

  1. /**************************************************************************/
  2. /*                                                                        */
  3. /*              IBM OS/2(tm) Directory and Security Services (DSS)        */
  4. /*                            Version 5.0                                 */
  5. /*                   (C) Copyright IBM Corp. 1995                         */
  6. /*                  Licensed Materials - Property of IBM                  */
  7. /*                                                                        */
  8. /**************************************************************************/
  9.  
  10. #if !defined lsdceerr_h
  11.  
  12. /*----------------------------------*/
  13. /* Constants                        */
  14. /*----------------------------------*/
  15.  
  16. /* Output status buffer constants. */
  17. #define LSDCE_ERROR_TEXT_LEN     160
  18. #define LSDCE_EXT_ERROR_TEXT_LEN 1024
  19.  
  20. /*----------------------------------*/
  21. /* Structure Definitions            */
  22. /*----------------------------------*/
  23.  
  24. /* Output status buffer. */
  25. typedef struct lsdce_err_stat {
  26.    unsigned long  lsdce_err_code;
  27.    unsigned char  lsdce_err_text[LSDCE_ERROR_TEXT_LEN];
  28.    unsigned char  lsdce_err_ext_text[LSDCE_EXT_ERROR_TEXT_LEN];
  29. } lsdce_err_stat_t;
  30.  
  31. #define lsdceerr_h
  32.  
  33. #endif
  34.