Click here to Skip to main content
15,893,814 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: 890901 - getting the currently active child frame Pin
ilostmyid222-Nov-10 3:30
professionalilostmyid222-Nov-10 3:30 
QuestionError "Windows has triggered a breakpoint in test.exe" Pin
Le@rner21-Nov-10 23:49
Le@rner21-Nov-10 23:49 
AnswerRe: Error "Windows has triggered a breakpoint in test.exe" Pin
Emilio Garavaglia22-Nov-10 3:01
Emilio Garavaglia22-Nov-10 3:01 
GeneralRe: Error "Windows has triggered a breakpoint in test.exe" Pin
Le@rner23-Nov-10 17:57
Le@rner23-Nov-10 17:57 
GeneralRe: Error "Windows has triggered a breakpoint in test.exe" Pin
Emilio Garavaglia24-Nov-10 1:37
Emilio Garavaglia24-Nov-10 1:37 
QuestionHow to Get Function argument names in vc++ map file? Pin
mathivanaan21-Nov-10 22:45
mathivanaan21-Nov-10 22:45 
AnswerRe: How to Get Function argument names in vc++ map file? Pin
Emilio Garavaglia21-Nov-10 23:35
Emilio Garavaglia21-Nov-10 23:35 
AnswerRe: How to Get Function argument names in vc++ map file? Pin
Aescleal21-Nov-10 23:45
Aescleal21-Nov-10 23:45 
Have you looked in a .map file to see what it contains? If you had you'd have found the following things:

- They're simple text files
- They contain the addresses of things assigned by the linker and (usually) the size of those things
- They don't contain (unless I completely missed it a couple of weeks ago when I last had to look in one) names of function parameters.

Information about parameter names is not generally available to the linker as the compiler sorts out the mapping of argument names to position on the stack/register assignment, the linker doesn't have to know it.

I've no idea what you need this information for but remember C++ is a compiled language that, unlike Java, doesn't support any sort of type reflection or introspection. If you want to find out names of parameters your best bet is to look in something that's generated for a debugger - e.g. a .pdb file under VC++ and use something like the Debug Information Access API (which I've only glanced at, it might be rubbish, I can't comment).

Cheers,

Ash
GeneralRe: How to Get Function argument names in vc++ map file? Pin
mathivanaan22-Nov-10 17:25
mathivanaan22-Nov-10 17:25 
QuestionHow can I use wxWidgets to develop a lib which could be used in MFC? Pin
Tcpip200521-Nov-10 22:19
Tcpip200521-Nov-10 22:19 
AnswerRe: How can I use wxWidgets to develop a lib which could be used in MFC? Pin
Tcpip200521-Nov-10 22:31
Tcpip200521-Nov-10 22:31 
QuestionIKnownFolder Pin
Krauze21-Nov-10 21:19
Krauze21-Nov-10 21:19 
AnswerRe: IKnownFolder Pin
Cool_Dev21-Nov-10 21:48
Cool_Dev21-Nov-10 21:48 
QuestionHow to Get Function argument names in mangle data? Pin
mathivanaan21-Nov-10 21:09
mathivanaan21-Nov-10 21:09 
AnswerRe: How to Get Function argument names in mangle data? Pin
CPallini21-Nov-10 22:01
mveCPallini21-Nov-10 22:01 
GeneralRe: How to Get Function argument names in mangle data? Pin
mathivanaan21-Nov-10 22:50
mathivanaan21-Nov-10 22:50 
AnswerRe: How to Get Function argument names in mangle data? Pin
Sauro Viti22-Nov-10 1:05
professionalSauro Viti22-Nov-10 1:05 
QuestionOs Install Pin
MsmVc21-Nov-10 17:28
MsmVc21-Nov-10 17:28 
AnswerRe: Os Install Pin
KingsGambit21-Nov-10 17:33
KingsGambit21-Nov-10 17:33 
AnswerRe: Os Install Pin
Nuri Ismail21-Nov-10 22:43
Nuri Ismail21-Nov-10 22:43 
Questionwhich protocols are important of the network protocol.? Pin
yu-jian21-Nov-10 6:07
yu-jian21-Nov-10 6:07 
AnswerRe: which protocols are important of the network protocol.? Pin
CPallini21-Nov-10 6:26
mveCPallini21-Nov-10 6:26 
GeneralRe: which protocols are important of the network protocol.? Pin
yu-jian21-Nov-10 6:29
yu-jian21-Nov-10 6:29 
GeneralRe: which protocols are important of the network protocol.? Pin
CPallini21-Nov-10 7:19
mveCPallini21-Nov-10 7:19 
AnswerRe: which protocols are important of the network protocol.? Pin
Moak21-Nov-10 8:43
Moak21-Nov-10 8:43 

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.