home *** CD-ROM | disk | FTP | other *** search
/ Revista CD Expert 51 / PCGamer51_17Demos.iso / games / CM / CyclingManagerDemoCangas.exe / CyclingManagerDemo / scripts / common / console / console_raster.cnh < prev    next >
Text File  |  2001-01-22  |  2KB  |  60 lines

  1. // func i32x Raster_List_Event (i32x _iComponentID,i32x _iEvent)
  2. typedef func i32x TYPE_Raster_List_Event (i32x _iComponentID,i32x _iEvent);
  3. var TYPE_Raster_List_Event Raster_List_Event;
  4.  
  5. // func void RasterItem_UpdateDisplay (i32x _iItem)
  6. typedef func void TYPE_RasterItem_UpdateDisplay (i32x _iItem);
  7. var TYPE_RasterItem_UpdateDisplay RasterItem_UpdateDisplay;
  8.  
  9. // func void RasterItem_Create ()
  10. typedef func void TYPE_RasterItem_Create ();
  11. var TYPE_RasterItem_Create RasterItem_Create;
  12.  
  13. // func i32x RasterItem (i32x _iComponentID,i32x _iEvent)
  14. typedef func i32x TYPE_RasterItem (i32x _iComponentID,i32x _iEvent);
  15. var TYPE_RasterItem RasterItem;
  16.  
  17. // func void InitRasterItem()
  18. typedef func void TYPE_InitRasterItem();
  19. var TYPE_InitRasterItem InitRasterItem;
  20.  
  21. // func void RasterOption_Create ()
  22. typedef func void TYPE_RasterOption_Create ();
  23. var TYPE_RasterOption_Create RasterOption_Create;
  24.  
  25. // func i32x RasterOption_Event (i32x _iComponentID,i32x _iEvent)
  26. typedef func i32x TYPE_RasterOption_Event (i32x _iComponentID,i32x _iEvent);
  27. var TYPE_RasterOption_Event RasterOption_Event;
  28.  
  29. // func void InitRasterOption()
  30. typedef func void TYPE_InitRasterOption();
  31. var TYPE_InitRasterOption InitRasterOption;
  32.  
  33. // ---------------------------------------------------------------------------
  34.  
  35. typedef struct sRasterItem
  36. {
  37.     //Id of the name
  38.     i32x iRasterName;
  39.     //Id of the checkbox for RasterDisplay option
  40.     i32x iRasterDisplay;
  41.     //Id of the checkbox for RasterTextDisplay option
  42.     i32x iRasterTextDisplay;
  43.     //Id of the checkbox for RasterProfile option
  44.     i32x iRasterProfile;
  45.     ObjectFunc oFunc;
  46. } sRasterItem;
  47.  
  48. var sRasterItem oRasterItem;
  49.  
  50.  
  51. typedef struct sRasterOption
  52. {
  53.     //Id of the raster list
  54.     i32x iListRaster;
  55.  
  56.     ObjectFunc oFunc;
  57. } sRasterOption;
  58.  
  59. var sRasterOption oRasterOption;
  60.