Re: Symbol Scope documentation



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
.