home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #12 / Amiga Plus CD - 2002 - No. 12.iso / AmigaOS / Aplus_Dev / AP-Website / download / pgp / pgp5gui-174b.lha / PGP5GUI-Src.lha / PGP5GUI-Src / SelPGPKeyGUI.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-06-23  |  788 b   |  36 lines

  1. /*
  2. ** PGP5GUI - A GUI using Magic User Interface v3.8
  3. **
  4. ** Copyright 23-JUNE-1998 by Stefan Zakarias, All Rights Reserved.
  5. **
  6. ** This source code is released as FREEWARE - Use it for whatever you like,
  7. ** as long as NO financial reward is gained by you for such usage.
  8. **
  9. ** If you use any parts of the this source code for anything, give ME credit
  10. ** wherever credit is due, please ;-)
  11. */
  12.  
  13. #ifndef SelPGPKeyGUI_FILE_H
  14. #define SelPGPKeyGUI_FILE_H
  15.  
  16. struct ObjApp_SelKey
  17. {
  18.     APTR App;
  19.     APTR WI_SelectPGP5Key;
  20.     APTR LV_KEYLISTVIEW;
  21.     APTR BT_SEL_OK;
  22.     APTR BT_SEL_CANCEL;
  23. };
  24.  
  25. #define SEL_OK        1
  26. #define SEL_CANCEL    2
  27.  
  28. #define ALGO_SIZE         4
  29. #define KEYID_SIZE      11
  30. #define CREATED_SIZE    11
  31. #define USERID_SIZE        256
  32.  
  33. #define BUFFER_SIZE (ALGO_SIZE+KEYID_SIZE+CREATED_SIZE+USERID_SIZE+8)
  34.  
  35. #endif
  36.