comparison libgaim/protocols/qq/crypt.c @ 14554:516ef76d6430

[gaim-migrate @ 17277] Patch from Joymarquis to make qq compile on win32. committer: Tailor Script <tailor@pidgin.im>
author Daniel Atallah <daniel.atallah@gmail.com>
date Thu, 14 Sep 2006 19:26:04 +0000
parents b7f17fdded6f
children ca943d7fb274
comparison
equal deleted inserted replaced
14553:8ec842950d92 14554:516ef76d6430
36 the golden ratio: Sqrt(5/4) - 1/2 ~ 0.618034 multiplied by 2^32. 36 the golden ratio: Sqrt(5/4) - 1/2 ~ 0.618034 multiplied by 2^32.
37 37
38 0x61C88647 is what we can track on the ASM codes.!! 38 0x61C88647 is what we can track on the ASM codes.!!
39 */ 39 */
40 40
41 #ifdef _WIN32
42 #include "win32dep.h"
43 #else
41 #include <arpa/inet.h> 44 #include <arpa/inet.h>
45 #endif
42 46
43 #include <string.h> 47 #include <string.h>
44 48
45 #include "crypt.h" 49 #include "crypt.h"
46 #include "debug.h" 50 #include "debug.h"