PDA

View Full Version : What language?


malikah
07-15-2008, 04:49 PM
Just wondering what language this is and where I can get more info on it:

MSVCP80.??$?M_WU?$char_traits@_W@std@@V?$allocator @_W@1@@std@@YA_NABV?$basic_string@_WU?$char_traits @_W@std@@V?$allocator@_W@2@@0@0@Z

OHPen
07-15-2008, 05:28 PM
Hey,

this is not a language. It is just the name mangling for functions, in this case for a function of msvc 8. nothing more. iirc there is a document out which shows how the mangled names is build ( for ms compiler ). you have to search for it if you need it.

Camus SoNiCo
07-16-2008, 09:04 AM
Also, that's stl for c++. Those are basic members of std::string.

Polaris
07-16-2008, 01:40 PM
Also, if you're using IDA, you can get automatic demangling of vc names

Silver
07-17-2008, 12:13 PM
Quote:
[Originally Posted by Camus SoNiCo;75900]Also, that's stl for c++. Those are basic members of std::string.


MFC has the same, and I think WTL may do too...