PDA

View Full Version : What language?


malikah
July 15th, 2008, 15:49
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
July 15th, 2008, 16:28
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
July 16th, 2008, 08:04
Also, that's stl for c++. Those are basic members of std::string.

Polaris
July 16th, 2008, 12:40
Also, if you're using IDA, you can get automatic demangling of vc names

Silver
July 17th, 2008, 11:13
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...