Click here to Skip to main content
15,904,153 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Display tooltip for each listbox item on combobox using ctooltipctrl Pin
Victor Nijegorodov21-Nov-18 23:49
Victor Nijegorodov21-Nov-18 23:49 
GeneralRe: Display tooltip for each listbox item on combobox using ctooltipctrl Pin
Member 1031536525-Nov-18 21:37
professionalMember 1031536525-Nov-18 21:37 
GeneralRe: Display tooltip for each listbox item on combobox using ctooltipctrl Pin
Victor Nijegorodov25-Nov-18 22:36
Victor Nijegorodov25-Nov-18 22:36 
GeneralRe: Display tooltip for each listbox item on combobox using ctooltipctrl Pin
Member 1031536526-Nov-18 2:03
professionalMember 1031536526-Nov-18 2:03 
AnswerRe: Display tooltip for each listbox item on combobox using ctooltipctrl Pin
_Flaviu23-Nov-18 2:53
_Flaviu23-Nov-18 2:53 
GeneralRe: Display tooltip for each listbox item on combobox using ctooltipctrl Pin
Member 1031536525-Nov-18 21:32
professionalMember 1031536525-Nov-18 21:32 
GeneralRe: Display tooltip for each listbox item on combobox using ctooltipctrl Pin
_Flaviu25-Nov-18 23:04
_Flaviu25-Nov-18 23:04 
Questiongcc configure for hardware Pin
Vaclav_20-Nov-18 6:50
Vaclav_20-Nov-18 6:50 
AnswerRe: gcc configure for hardware Pin
leon de boer20-Nov-18 18:17
leon de boer20-Nov-18 18:17 
GeneralRe: gcc configure for hardware Pin
Vaclav_21-Nov-18 4:44
Vaclav_21-Nov-18 4:44 
GeneralRe: gcc configure for hardware Pin
leon de boer21-Nov-18 5:26
leon de boer21-Nov-18 5:26 
GeneralRe: gcc configure for hardware Pin
Vaclav_21-Nov-18 7:12
Vaclav_21-Nov-18 7:12 
GeneralRe: gcc configure for hardware Pin
leon de boer21-Nov-18 12:11
leon de boer21-Nov-18 12:11 
GeneralRe: gcc configure for hardware Pin
Vaclav_21-Nov-18 15:01
Vaclav_21-Nov-18 15:01 
GeneralRe: gcc configure for hardware Pin
Vaclav_21-Nov-18 15:13
Vaclav_21-Nov-18 15:13 
GeneralRe: gcc configure for hardware Pin
leon de boer22-Nov-18 5:10
leon de boer22-Nov-18 5:10 
GeneralRe: gcc configure for hardware Pin
Vaclav_22-Nov-18 6:26
Vaclav_22-Nov-18 6:26 
GeneralRe: gcc configure for hardware Pin
Richard Andrew x6422-Nov-18 10:08
professionalRichard Andrew x6422-Nov-18 10:08 
GeneralRe: gcc configure for hardware Pin
Vaclav_22-Nov-18 17:28
Vaclav_22-Nov-18 17:28 
GeneralRe: gcc configure for hardware Pin
leon de boer22-Nov-18 21:48
leon de boer22-Nov-18 21:48 
GeneralRe: gcc configure for hardware Pin
Vaclav_26-Nov-18 4:09
Vaclav_26-Nov-18 4:09 
GeneralRe: gcc configure for hardware Pin
Vaclav_26-Nov-18 6:54
Vaclav_26-Nov-18 6:54 
GeneralRe: gcc configure for hardware Pin
Vaclav_29-Nov-18 17:11
Vaclav_29-Nov-18 17:11 
GeneralRe: gcc configure for hardware Pin
Vaclav_30-Nov-18 4:44
Vaclav_30-Nov-18 4:44 
Questionproblems with pointer to struct Pin
Mohammad Ali Bahar18-Nov-18 23:15
Mohammad Ali Bahar18-Nov-18 23:15 
Hi every one. I have typical structure (ECU_t) which has members that considered to be pointer to struct.
i make my question in comments. please help me. by the way i have used freescale code warrior as compiler.
typedef enum
{
	NORMAL,
	WARNING,
}WATER_TEMP;

typedef struct
{
	WATER_TEMP water_temp;
	uint16_t speed;
	// ... other members
}Engine_t;

typedef struct
{
	Engine_t* engine;
	ABS_t*  abs;
	// ... other members
}ECU_t;

void ECU_DoTask(ECU_t* output)
{
	output->engine->water_temp = NORMAL; 
	
}

void main ()
{
	ECU_t ecu;
	ECU_DoTask(&ecu);
	// i want to access to water_temp. how can i do it?
	// for example: ecu.engine->water_temp ????
	while(1);
}

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.