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 >
Wrap
Text File
|
2001-01-22
|
2KB
|
60 lines
// func i32x Raster_List_Event (i32x _iComponentID,i32x _iEvent)
typedef func i32x TYPE_Raster_List_Event (i32x _iComponentID,i32x _iEvent);
var TYPE_Raster_List_Event Raster_List_Event;
// func void RasterItem_UpdateDisplay (i32x _iItem)
typedef func void TYPE_RasterItem_UpdateDisplay (i32x _iItem);
var TYPE_RasterItem_UpdateDisplay RasterItem_UpdateDisplay;
// func void RasterItem_Create ()
typedef func void TYPE_RasterItem_Create ();
var TYPE_RasterItem_Create RasterItem_Create;
// func i32x RasterItem (i32x _iComponentID,i32x _iEvent)
typedef func i32x TYPE_RasterItem (i32x _iComponentID,i32x _iEvent);
var TYPE_RasterItem RasterItem;
// func void InitRasterItem()
typedef func void TYPE_InitRasterItem();
var TYPE_InitRasterItem InitRasterItem;
// func void RasterOption_Create ()
typedef func void TYPE_RasterOption_Create ();
var TYPE_RasterOption_Create RasterOption_Create;
// func i32x RasterOption_Event (i32x _iComponentID,i32x _iEvent)
typedef func i32x TYPE_RasterOption_Event (i32x _iComponentID,i32x _iEvent);
var TYPE_RasterOption_Event RasterOption_Event;
// func void InitRasterOption()
typedef func void TYPE_InitRasterOption();
var TYPE_InitRasterOption InitRasterOption;
// ---------------------------------------------------------------------------
typedef struct sRasterItem
{
//Id of the name
i32x iRasterName;
//Id of the checkbox for RasterDisplay option
i32x iRasterDisplay;
//Id of the checkbox for RasterTextDisplay option
i32x iRasterTextDisplay;
//Id of the checkbox for RasterProfile option
i32x iRasterProfile;
ObjectFunc oFunc;
} sRasterItem;
var sRasterItem oRasterItem;
typedef struct sRasterOption
{
//Id of the raster list
i32x iListRaster;
ObjectFunc oFunc;
} sRasterOption;
var sRasterOption oRasterOption;