home *** CD-ROM | disk | FTP | other *** search
/ PC PowerPlay 58 / pcpp58a.iso / extras / quake 3 source / Q3A_ToolSource.exe / Main / iscriplib.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-01-02  |  1.9 KB  |  66 lines

  1. //-----------------------------------------------------------------------------
  2. //
  3. // $LogFile$
  4. // $Revision: 1.1.1.4 $
  5. // $Author: ttimo $
  6. // $Date: 2000/01/18 00:17:12 $
  7. // $Log: iscriplib.h,v $
  8. // Revision 1.1.1.4  2000/01/18 00:17:12  ttimo
  9. // merging in for RC
  10. //
  11. // Revision 1.3  2000/01/17 23:53:44  TBesset
  12. // ready for merge in sourceforge (RC candidate)
  13. //
  14. // Revision 1.2  2000/01/07 16:40:13  TBesset
  15. // merged from BSP frontend
  16. //
  17. // Revision 1.1.1.3  1999/12/29 18:31:27  TBesset
  18. // Q3Radiant public version
  19. //
  20. // Revision 1.1.1.1.2.1  1999/12/29 21:39:45  TBesset
  21. // updated to update3 from Robert
  22. //
  23. // Revision 1.1.1.3  1999/12/29 18:31:27  TBesset
  24. // Q3Radiant public version
  25. // Revision 1.1.1.3  1999/12/29 18:31:27  TBesset
  26. // Q3Radiant public version
  27. //
  28. // Revision 1.2  1999/11/22 17:46:48  Timo & Christine
  29. // merged EARadiant into the main tree
  30. // bug fixes for Q3Plugin / EAPlugin
  31. // export for Robert
  32. //
  33. // Revision 1.1.2.2  1999/11/14 16:26:14  Timo & Christine
  34. // first beta of the ritualmap surface plugin
  35. //
  36. // Revision 1.1.2.1  1999/10/08 16:28:15  Timo & Christine
  37. // started plugin extensions for EA features support in Q3Radiant
  38. // MEAN files plugin, and Surface Properties plugin
  39. //
  40. //
  41. // DESCRIPTION:
  42. // all purpose scriplib interface for Q3Radiant plugins (cf. parse.h)
  43. //
  44.  
  45. #ifndef __ISCRIPLIB_H_
  46. #define __ISCRIPLIB_H_
  47.  
  48. // {4B115280-95FC-11d3-8EF3-0000E8E8657B}
  49. static const GUID QERScripLibTable_GUID = 
  50. { 0x4b115280, 0x95fc, 0x11d3, { 0x8e, 0xf3, 0x0, 0x0, 0xe8, 0xe8, 0x65, 0x7b } };
  51.  
  52. typedef qboolean    (WINAPI* PFN_GETTOKEN)        (qboolean crossline);
  53. typedef void        (WINAPI* PFN_UNGETTOKEN)    ();
  54. // only used to retrieve &token
  55. typedef char*        (WINAPI* PFN_TOKEN) ();
  56.  
  57. struct _QERScripLibTable
  58. {
  59.     float m_fVersion;
  60.     int m_nSize;
  61.     PFN_GETTOKEN    m_pfnGetToken;
  62.     PFN_UNGETTOKEN    m_pfnUnGetToken;
  63.     PFN_TOKEN        m_pfnToken;
  64. };
  65.  
  66. #endif