home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / c / cuj9301.zip / 1101022A < prev    next >
Text File  |  1992-11-06  |  140b  |  9 lines

  1. /* API.H */
  2. typedef struct tagREGION
  3. {
  4.   int vertex_count;
  5.   int *vertices;
  6. } REGION;
  7. int DefineHotSpot (int id, REGION *pRegion);
  8.  
  9.