Click here to Skip to main content
15,912,400 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Which IDE you use for development on Linux platforms? Pin
Nemanja Trifunovic7-Jan-12 12:55
Nemanja Trifunovic7-Jan-12 12:55 
GeneralRe: Which IDE you use for development on Linux platforms? Pin
richard_k9-Jan-12 7:50
richard_k9-Jan-12 7:50 
AnswerRe: Which IDE you use for development on Linux platforms? Pin
richard_k9-Jan-12 7:55
richard_k9-Jan-12 7:55 
If you are coming from windows, be aware that the mechanisms on Linux regarding shared libraries are very different than Windows. By default globals in a DLL's namespace are not resolved to the same instance as they are in the caller's program for Windows.. On Linux if you have a global called 'g_xxx' in both your main program and your shared object (.so), they will be resolved to ONE instance of the variable that is global across your main program and your .so. That can come as quite a shock if you aren't expecting it.

If you are following proper O-O techniques, this will most likely not be an issue.. but if you are dealing with real-world code written by folks who aren't so disciplined, this may be an issue for you.

There are many small 'gotchas' between Windows and Linux, but this one IMO is the big one.
JokeRe: Which IDE you use for development on Linux platforms? Pin
Wes Aday10-Jan-12 11:40
professionalWes Aday10-Jan-12 11:40 
GeneralRe: Which IDE you use for development on Linux platforms? Pin
Eytukan11-Jan-12 0:40
Eytukan11-Jan-12 0:40 
Questionhow to use excel automation to join multiple excel file in a single excel file? Pin
Le@rner5-Jan-12 23:49
Le@rner5-Jan-12 23:49 
AnswerRe: how to use excel automation to join multiple excel file in a single excel file? Pin
enhzflep7-Jan-12 15:58
enhzflep7-Jan-12 15:58 
AnswerRe: how to use excel automation to join multiple excel file in a single excel file? Pin
Orjan Westin8-Jan-12 23:32
professionalOrjan Westin8-Jan-12 23:32 
QuestionRe: how to use excel automation to join multiple excel file in a single excel file? Pin
David Crow9-Jan-12 4:28
David Crow9-Jan-12 4:28 
QuestionHow to clear registry using API. (VC6.0 MFC) SOLVED Pin
Vaclav_5-Jan-12 8:43
Vaclav_5-Jan-12 8:43 
QuestionRe: How to clear registry using API. (VC6.0 MFC) Pin
David Crow5-Jan-12 8:48
David Crow5-Jan-12 8:48 
AnswerRe: How to clear registry using API. (VC6.0 MFC) Pin
Chuck O'Toole5-Jan-12 11:10
Chuck O'Toole5-Jan-12 11:10 
GeneralRe: How to clear registry using API. (VC6.0 MFC) SOLVED Pin
Vaclav_5-Jan-12 11:43
Vaclav_5-Jan-12 11:43 
QuestionTransparent bitmap on owner-draw button with win32 API Pin
Lianqing5-Jan-12 6:02
Lianqing5-Jan-12 6:02 
QuestionRe: Transparent bitmap on owner-draw button with win32 API Pin
Code-o-mat5-Jan-12 8:02
Code-o-mat5-Jan-12 8:02 
AnswerRe: Transparent bitmap on owner-draw button with win32 API Pin
Lianqing6-Jan-12 6:03
Lianqing6-Jan-12 6:03 
GeneralRe: Transparent bitmap on owner-draw button with win32 API Pin
Randor 6-Jan-12 7:48
professional Randor 6-Jan-12 7:48 
GeneralRe: Transparent bitmap on owner-draw button with win32 API Pin
Lianqing6-Jan-12 13:28
Lianqing6-Jan-12 13:28 
GeneralRe: Transparent bitmap on owner-draw button with win32 API Pin
Lianqing7-Jan-12 6:43
Lianqing7-Jan-12 6:43 
AnswerRe: Transparent bitmap on owner-draw button with win32 API Pin
JackDingler6-Jan-12 5:54
JackDingler6-Jan-12 5:54 
QuestionHow to get driver icon Pin
yu-jian5-Jan-12 4:32
yu-jian5-Jan-12 4:32 
AnswerRe: How to get driver icon Pin
Luc Pattyn5-Jan-12 8:40
sitebuilderLuc Pattyn5-Jan-12 8:40 
QuestionYou can use deleaker Pin
Mast Avalons4-Jan-12 7:34
Mast Avalons4-Jan-12 7:34 
AnswerRe: You can use deleaker Pin
Richard MacCutchan4-Jan-12 7:41
mveRichard MacCutchan4-Jan-12 7:41 
GeneralRe: You can use deleaker Pin
Vaclav_4-Jan-12 8:23
Vaclav_4-Jan-12 8:23 

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.