home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / machack / Hacks95 / Closure.sit / Closure / Sources / PhotoshopHeaders / PIAbout.h < prev    next >
Text File  |  1995-06-24  |  948b  |  38 lines

  1. /*
  2.     File: PIAbout.h
  3.  
  4.     Copyright 1992-95 by Adobe Systems, Inc.
  5.  
  6.     This file describes version 4.0 of Photoshop's plug-in module interface
  7.     for the about box selector.
  8. */
  9.  
  10. /******************************************************************************/
  11. /* Pragma to byte align structures; only for Borland C */
  12.  
  13. #if defined(__BORLANDC__)
  14. #pragma option -a-
  15. #endif
  16.  
  17. /******************************************************************************/
  18. #define plugInSelectorAbout      0
  19.  
  20. typedef struct AboutRecord 
  21.     {
  22.  
  23.     void *        platformData;        /* Platform specific information. */
  24.  
  25.     char        reserved [252];     /* Set to zero */
  26.  
  27.     }
  28. AboutRecord, *AboutRecordPtr;
  29.  
  30. /******************************************************************************/
  31. /* turn off the byte align pragma back to its original state; only for Borland C */
  32.  
  33. #if defined(__BORLANDC__)
  34. #pragma option -a.
  35. #endif
  36.  
  37. /******************************************************************************/
  38.