Re: Symbol Scope documentation
- From: "¬a\\/b" <al@xxx>
- Date: Mon, 29 Aug 2005 14:15:44 GMT
On 28 Aug 2005 21:39:02 -0700, "Guga" <mauroteste@xxxxxxxxxxx> wrote:
>Hi Guys
>
>How (or where) i can find info about the symbols scoping of certain
>function or data without having to use dbghelp ?
>I mean, i know, for example that when i have this on a lable for an
>external function:
>
>?Int64x32Div32@@YG_J_JJJJ@Z
>
>The C description is :
>__int64 __stdcall Int64x32Div32(__int64,long,long,long)
>
>
>But what tokens/chars gives me such info ?
write in file "name.cpp"
__int64 __stdcall Int64x32Div32(__int64 a,long b,long c,long d){}
then
shell> bcc32 -S name.cpp
where bcc32 is the C++ compiler and -S is for assembly-file output,
and search in the assembly file the name of translation of that
function
.
- Follow-Ups:
- Re: Symbol Scope documentation
- From: Guga
- Re: Symbol Scope documentation
- References:
- Symbol Scope documentation
- From: Guga
- Symbol Scope documentation
- Prev by Date: Re: Hutch, give it up.
- Next by Date: Re: US Military Dead during Iraq War
- Previous by thread: Re: Symbol Scope documentation
- Next by thread: Re: Symbol Scope documentation
- Index(es):