Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

In what programming language is GoogleTalk application developed?

Does any one know in which programming language were Google Talk application developed. yes am asking about the windows client application. :)

like image 275
coderex Avatar asked Jul 11 '09 17:07

coderex


4 Answers

http://www.google.ro/talk/

  • googletalk.exe -> Compiled with: Microsoft Visual C++ 7.0 [Debug]
  • gtalkwmp1.dll -> Complied with: Microsoft Visual C++ 7.1 DLL

So GTalk is written in C++

You'll find http://www.peid.info/ pretty useful for this kind of stuff.

like image 199
daniels Avatar answered Sep 18 '22 05:09

daniels


According to Steve Yegge, Google is using C++, Java, Python, and JavaScript. So the answer would be C++ :)

like image 45
Aleris Avatar answered Sep 19 '22 05:09

Aleris


Google released an open source library for Google Talk called libjingle, which is written in C++. So logically, the Windows client would probably be C++ too.

like image 38
Pauk Avatar answered Sep 19 '22 05:09

Pauk


Do you mean the client side, or the server side ? The talk protocol is Jingle and libraries are available in C/C++/Java.

Ideally the protocol would be language independent, and consequently both sides (client and server) would not be constrained to a particular language.

like image 39
Brian Agnew Avatar answered Sep 19 '22 05:09

Brian Agnew