home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Revista CD Expert 51
/
PCGamer51_17Demos.iso
/
games
/
CM
/
CyclingManagerDemoCangas.exe
/
CyclingManagerDemo
/
scripts
/
common
/
barre_outils
/
barre_outils.cnh
< prev
Wrap
Text File
|
2001-06-07
|
3KB
|
102 lines
// func void ToolBar_create()
typedef func void TYPE_ToolBar_create();
var TYPE_ToolBar_create ToolBar_create;
// func i32x ToolBar_event(i32x _iComponentID, i32x _iEvent)
typedef func i32x TYPE_ToolBar_event(i32x _iComponentID, i32x _iEvent);
var TYPE_ToolBar_event ToolBar_event;
// func void ToolBar_init_members()
typedef func void TYPE_ToolBar_init_members();
var TYPE_ToolBar_init_members ToolBar_init_members;
// func void Set_Tool_Bar_Text(szx text)
typedef func void TYPE_Set_Tool_Bar_Text(szx text);
var TYPE_Set_Tool_Bar_Text Set_Tool_Bar_Text;
// func void Set_Tool_Bar_TextID(i32x textID)
typedef func void TYPE_Set_Tool_Bar_TextID(i32x textID);
var TYPE_Set_Tool_Bar_TextID Set_Tool_Bar_TextID;
// func void TitleBar_create()
typedef func void TYPE_TitleBar_create();
var TYPE_TitleBar_create TitleBar_create;
// func i32x TitleBar_event(i32x _iComponentID, i32x _iEvent)
typedef func i32x TYPE_TitleBar_event(i32x _iComponentID, i32x _iEvent);
var TYPE_TitleBar_event TitleBar_event;
// func void TitleBar_init_members()
typedef func void TYPE_TitleBar_init_members();
var TYPE_TitleBar_init_members TitleBar_init_members;
// func void Set_Title_Bar_Text(szx text)
typedef func void TYPE_Set_Title_Bar_Text(szx text);
var TYPE_Set_Title_Bar_Text Set_Title_Bar_Text;
//func void Set_Config_Button_VisibleStatus(i32x _status)
typedef func void TYPE_Set_Config_Button_VisibleStatus(i32x _status);
var TYPE_Set_Config_Button_VisibleStatus Set_Config_Button_VisibleStatus;
// func void Reset_Tool_Bar_Text()
typedef func void TYPE_Reset_Tool_Bar_Text();
var TYPE_Reset_Tool_Bar_Text Reset_Tool_Bar_Text;
// func i32x ToolBar_GetHelpStringID()
typedef func i32x TYPE_ToolBar_GetHelpStringID();
var TYPE_ToolBar_GetHelpStringID ToolBar_GetHelpStringID;
//func void Set_Tool_Bar_String(szx _szText)
typedef func void TYPE_Set_Tool_Bar_String(szx _szText);
var TYPE_Set_Tool_Bar_String Set_Tool_Bar_String;
//func szx Get_Tool_Bar_String()
typedef func szx TYPE_Get_Tool_Bar_String();
var TYPE_Get_Tool_Bar_String Get_Tool_Bar_String;
// func void Update_Title_Bar_Text()
typedef func void TYPE_Update_Title_Bar_Text();
var TYPE_Update_Title_Bar_Text Update_Title_Bar_Text;
// -------------------------------------------------------------------------
typedef struct stToolBar
{
component m_pthis;
// Component index
i32x m_cVideoCfg;
i32x m_cCredit;
i32x m_cTextArea;
i32x m_cText;
i32x m_cQuit;
i32x m_cHourArea;
i32x m_cHour;
i32x m_cPlay;
i32x m_cNext;
i32x m_cStop;
i32x m_iCounter;
i32x m_iStringID;
szx m_szString;
ObjectFunc ofunc;
} stToolBar;
var stToolBar oToolBar;
typedef struct stTitleBar
{
component m_pthis;
// Component index
i32x m_cBackground;
i32x m_cText;
szx m_szText;
ObjectFunc ofunc;
} stTitleBar;
var stTitleBar oTitleBar;