home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / zfamily.zip / zfamily / ZISFUNCS / SAMPLE / ZZZLOGO.H < prev    next >
Text File  |  1993-09-01  |  2KB  |  51 lines

  1. /*
  2. ** /----------------------------------------------------------------------\
  3. ** |             IBM Z Family Reusable Libraries/2 (5641-504)             |
  4. ** |----------------------------------------------------------------------|
  5. ** | (C) Copyright International Business Machines Corporation 1993, 1994 |
  6. ** |----------------------------------------------------------------------|
  7. ** |                       DISCLAIMER OF WARRANTIES                       |
  8. ** |                       ------------------------                       |
  9. ** | The following code is sample code created by IBM Corporation.        |
  10. ** | Such a code is provided to you solely for the purpose of assisting   |
  11. ** | you in the development of your applications. The code is provided    |
  12. ** | "AS IS", without warranty of any kind.  IBM shall not be liable for  |
  13. ** | any damages arising out of your use of the following code, even if   |
  14. ** | they have been advised of the possibility of such damages.           |                                                                         *
  15. ** \----------------------------------------------------------------------/
  16. **
  17. **  Header  : ZZZLOGO.H
  18. **  Author  : Dario de Judicibus (DEJUDICI at ROMEPPC)
  19. **  Created : 30 Aug 1993
  20. **  Updated : 30 Aug 1993
  21. **  Version : 1.00
  22. **  Content : Logo Data definitions, structure, and types
  23. **
  24. */
  25.  #include <zzzlogo.rch>
  26.  
  27. /*
  28. **  Define's
  29. */
  30.  #define zzzMAXSTRLEN 80
  31.  
  32. /*
  33. **  Types
  34. */
  35.  typedef _Packed struct zzzLogoData
  36.  {
  37.    ULONG cb        ;
  38.    CHAR  Library   [zzzMAXSTRLEN] ;
  39.    CHAR  Version   [zzzMAXSTRLEN] ;
  40.    CHAR  Author    [zzzMAXSTRLEN] ;
  41.    CHAR  Copyright [zzzMAXSTRLEN] ;
  42.  }
  43.  zzzLOGODATA, *zzzPLOGODATA ;
  44.  
  45. /*
  46. **  Prototypes
  47. */
  48.  MRESULT EXPENTRY zzzLogoDlgProc  ( HWND, ULONG, MPARAM, MPARAM ) ;
  49.  LONG    EXPENTRY zzzCenterDialog ( HWND, HWND ) ;
  50.  
  51.