annotate src/win_gaim.c @ 7988:d9e831876c28

[gaim-migrate @ 8665] Here's my best attempt to rip WYSIWYG editing out of gaim, kicking and screaming all the way. We'll be releasing 0.75 in the very near future, once the translators are alerted, and any bugs from this dissection show themselves. committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Sun, 04 Jan 2004 06:59:09 +0000
parents f1d2907db5be
children fa6395637e2c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4490
70b892694e0b [gaim-migrate @ 4765]
Rob Flynn <gaim@robflynn.com>
parents:
diff changeset
1 /*
7350
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
2 * win_gaim.c
4490
70b892694e0b [gaim-migrate @ 4765]
Rob Flynn <gaim@robflynn.com>
parents:
diff changeset
3 *
70b892694e0b [gaim-migrate @ 4765]
Rob Flynn <gaim@robflynn.com>
parents:
diff changeset
4 * Date: June, 2002
70b892694e0b [gaim-migrate @ 4765]
Rob Flynn <gaim@robflynn.com>
parents:
diff changeset
5 * Description: Entry point for win32 gaim, and various win32 dependant
70b892694e0b [gaim-migrate @ 4765]
Rob Flynn <gaim@robflynn.com>
parents:
diff changeset
6 * routines.
7350
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
7 *
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
8 * Copyright (C) 2002-2003, Herman Bloggs <hermanator12002@yahoo.com>
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
9 *
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
10 * This program is free software; you can redistribute it and/or modify
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
11 * it under the terms of the GNU General Public License as published by
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
12 * the Free Software Foundation; either version 2 of the License, or
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
13 * (at your option) any later version.
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
14 *
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
15 * This program is distributed in the hope that it will be useful,
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
18 * GNU General Public License for more details.
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
19 *
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
20 * You should have received a copy of the GNU General Public License
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
21 * along with this program; if not, write to the Free Software
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
23 *
4490
70b892694e0b [gaim-migrate @ 4765]
Rob Flynn <gaim@robflynn.com>
parents:
diff changeset
24 */
70b892694e0b [gaim-migrate @ 4765]
Rob Flynn <gaim@robflynn.com>
parents:
diff changeset
25 #include <windows.h>
7477
29d69daa1ede [gaim-migrate @ 8090]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7363
diff changeset
26 #include <fcntl.h>
4490
70b892694e0b [gaim-migrate @ 4765]
Rob Flynn <gaim@robflynn.com>
parents:
diff changeset
27 #include <stdlib.h>
6890
4eee806af511 [gaim-migrate @ 7436]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6816
diff changeset
28 #include <string.h>
4eee806af511 [gaim-migrate @ 7436]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6816
diff changeset
29 #include <stdio.h>
4490
70b892694e0b [gaim-migrate @ 4765]
Rob Flynn <gaim@robflynn.com>
parents:
diff changeset
30
7522
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
31 typedef int (CALLBACK* LPFNGAIMMAIN)(HINSTANCE, int, char**);
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
32 typedef void (CALLBACK* LPFNSETDLLDIRECTORY)(LPCTSTR);
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
33
4490
70b892694e0b [gaim-migrate @ 4765]
Rob Flynn <gaim@robflynn.com>
parents:
diff changeset
34 /*
70b892694e0b [gaim-migrate @ 4765]
Rob Flynn <gaim@robflynn.com>
parents:
diff changeset
35 * PROTOTYPES
70b892694e0b [gaim-migrate @ 4765]
Rob Flynn <gaim@robflynn.com>
parents:
diff changeset
36 */
7522
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
37 static LPFNGAIMMAIN gaim_main = NULL;
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
38 static LPFNSETDLLDIRECTORY MySetDllDirectory = NULL;
6890
4eee806af511 [gaim-migrate @ 7436]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6816
diff changeset
39
4eee806af511 [gaim-migrate @ 7436]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6816
diff changeset
40
7350
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
41 static BOOL read_reg_string(HKEY key, char* sub_key, char* val_name, LPBYTE data, LPDWORD data_len) {
6890
4eee806af511 [gaim-migrate @ 7436]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6816
diff changeset
42 HKEY hkey;
4eee806af511 [gaim-migrate @ 7436]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6816
diff changeset
43 BOOL ret = FALSE;
4eee806af511 [gaim-migrate @ 7436]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6816
diff changeset
44 int retv;
4eee806af511 [gaim-migrate @ 7436]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6816
diff changeset
45
4eee806af511 [gaim-migrate @ 7436]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6816
diff changeset
46 if(ERROR_SUCCESS == RegOpenKeyEx(key,
4eee806af511 [gaim-migrate @ 7436]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6816
diff changeset
47 sub_key,
4eee806af511 [gaim-migrate @ 7436]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6816
diff changeset
48 0, KEY_QUERY_VALUE, &hkey)) {
4eee806af511 [gaim-migrate @ 7436]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6816
diff changeset
49 if(ERROR_SUCCESS == (retv=RegQueryValueEx(hkey, val_name, 0, NULL, data, data_len)))
4eee806af511 [gaim-migrate @ 7436]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6816
diff changeset
50 ret = TRUE;
7350
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
51 else
7522
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
52 printf("Could not read reg key '%s' subkey '%s' value: '%s'\nError: %u\n",
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
53 ((key == HKEY_LOCAL_MACHINE) ? "HKLM" : (key == HKEY_CURRENT_USER) ? "HKCU" : "???"),
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
54 sub_key, val_name, (UINT)GetLastError());
6890
4eee806af511 [gaim-migrate @ 7436]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6816
diff changeset
55 RegCloseKey(key);
4eee806af511 [gaim-migrate @ 7436]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6816
diff changeset
56 }
7522
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
57 else
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
58 printf("Could not open reg subkey: %s\nError: %u\n", sub_key, (UINT)GetLastError());
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
59
6890
4eee806af511 [gaim-migrate @ 7436]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6816
diff changeset
60 return ret;
4eee806af511 [gaim-migrate @ 7436]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6816
diff changeset
61 }
4eee806af511 [gaim-migrate @ 7436]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6816
diff changeset
62
7522
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
63 static void dll_prep() {
7350
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
64 char gtkpath[MAX_PATH];
6890
4eee806af511 [gaim-migrate @ 7436]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6816
diff changeset
65 char path[MAX_PATH];
4eee806af511 [gaim-migrate @ 7436]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6816
diff changeset
66 DWORD plen = MAX_PATH;
4eee806af511 [gaim-migrate @ 7436]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6816
diff changeset
67 int gotreg=FALSE;
7350
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
68 HKEY hkey;
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
69 HMODULE hmod;
6890
4eee806af511 [gaim-migrate @ 7436]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6816
diff changeset
70
7350
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
71 if(!(gotreg = read_reg_string((hkey=HKEY_LOCAL_MACHINE), "SOFTWARE\\GTK\\2.0", "Path", (LPBYTE)&gtkpath, &plen)))
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
72 gotreg = read_reg_string((hkey=HKEY_CURRENT_USER), "SOFTWARE\\GTK\\2.0", "Path", (LPBYTE)&gtkpath, &plen);
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
73
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
74 if(!gotreg)
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
75 return;
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
76
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
77 /* Determine GTK+ dll path .. */
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
78 if(!read_reg_string(hkey, "SOFTWARE\\GTK\\2.0", "DllPath", (LPBYTE)&path, &plen)) {
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
79 char version[10];
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
80 char inst[10];
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
81 DWORD len = 10;
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
82
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
83 strcpy(path, gtkpath);
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
84 if(read_reg_string(hkey, "SOFTWARE\\GTK\\2.0", "Version", (LPBYTE)&version, &len) &&
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
85 read_reg_string(hkey, "SOFTWARE\\GTK\\2.0", "Installer", (LPBYTE)&inst, &len)) {
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
86 if(strcmp(version, "2.2.2") >= 0 &&
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
87 strcmp(inst, "NSIS") == 0) {
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
88 strcat(path, "\\bin");
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
89 }
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
90 else
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
91 strcat(path, "\\lib");
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
92 }
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
93 else
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
94 strcat(path, "\\lib");
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
95 }
6890
4eee806af511 [gaim-migrate @ 7436]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6816
diff changeset
96
7522
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
97 printf("GTK+ path found: %s\n", path);
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
98
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
99 if((hmod=GetModuleHandle("kernel32.dll"))) {
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
100 MySetDllDirectory = (LPFNSETDLLDIRECTORY)GetProcAddress(hmod, "SetDllDirectory");
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
101 if(!MySetDllDirectory)
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
102 printf("SetDllDirectory not supported\n");
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
103 }
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
104 else
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
105 printf("Error getting kernel32.dll module handle\n");
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
106
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
107 /* For Windows XP SP1+ / Server 2003 we use SetDllDirectory to avoid dll hell */
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
108 if(MySetDllDirectory) {
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
109 printf("Using SetDllDirectory\n");
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
110 MySetDllDirectory(path);
7350
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
111 }
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
112
7522
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
113 /* For the rest, we set the current directory and make sure SafeDllSearch is set
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
114 to 0 where needed. */
7350
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
115 else {
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
116 OSVERSIONINFO osinfo;
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
117
7522
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
118 printf("Setting current directory to GTK+ dll directory\n");
7350
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
119 SetCurrentDirectory(path);
7522
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
120 /* For Windows 2000 (SP3+) / WinXP (No SP):
7350
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
121 * If SafeDllSearchMode is set to 1, Windows system directories are
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
122 * searched for dlls before the current directory. Therefore we set it
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
123 * to 0.
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
124 */
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
125 osinfo.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
126 GetVersionEx(&osinfo);
7522
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
127 if((osinfo.dwMajorVersion == 5 &&
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
128 osinfo.dwMinorVersion == 0 &&
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
129 strcmp(osinfo.szCSDVersion, "Service Pack 3") >= 0) ||
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
130 (osinfo.dwMajorVersion == 5 &&
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
131 osinfo.dwMinorVersion == 1 &&
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
132 strcmp(osinfo.szCSDVersion, "") >= 0)
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
133 ) {
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
134 DWORD regval = 1;
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
135 DWORD reglen = sizeof(DWORD);
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
136
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
137 printf("Using Win2k (SP3+) / WinXP (No SP).. Checking SafeDllSearch\n");
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
138 read_reg_string(HKEY_LOCAL_MACHINE,
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
139 "System\\CurrentControlSet\\Control\\Session Manager",
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
140 "SafeDllSearchMode",
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
141 (LPBYTE)&regval,
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
142 &reglen);
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
143
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
144 if(regval != 0) {
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
145 printf("Trying to set SafeDllSearchMode to 0\n");
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
146 regval = 0;
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
147 if(RegOpenKeyEx(HKEY_LOCAL_MACHINE,
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
148 "System\\CurrentControlSet\\Control\\Session Manager",
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
149 0, KEY_SET_VALUE, &hkey) == ERROR_SUCCESS) {
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
150 if(RegSetValueEx(hkey,
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
151 "SafeDllSearchMode",
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
152 0,
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
153 REG_DWORD,
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
154 (LPBYTE) &regval,
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
155 sizeof(DWORD)) != ERROR_SUCCESS)
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
156 printf("Error writing SafeDllSearchMode. Error: %u\n",
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
157 (UINT)GetLastError());
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
158 RegCloseKey(hkey);
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
159 }
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
160 else
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
161 printf("Error opening Session Manager key for writing. Error: %u\n",
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
162 (UINT)GetLastError());
6890
4eee806af511 [gaim-migrate @ 7436]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6816
diff changeset
163 }
7522
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
164 else
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
165 printf("SafeDllSearchMode is set to 0\n");
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
166 }/*end else*/
6890
4eee806af511 [gaim-migrate @ 7436]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6816
diff changeset
167 }
4eee806af511 [gaim-migrate @ 7436]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6816
diff changeset
168 }
4490
70b892694e0b [gaim-migrate @ 4765]
Rob Flynn <gaim@robflynn.com>
parents:
diff changeset
169
7350
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
170 static char* wgaim_lcid_to_posix(LCID lcid) {
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
171 switch(lcid) {
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
172 case 1026: return "bg"; /* bulgarian */
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
173 case 1027: return "ca"; /* catalan */
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
174 case 1050: return "hr"; /* croation */
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
175 case 1029: return "cs"; /* czech */
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
176 case 1030: return "da"; /* danaish */
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
177 case 1043: return "nl"; /* dutch - netherlands */
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
178 case 1033: return "en"; /* english - us */
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
179 case 1035: return "fi"; /* finish */
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
180 case 1036: return "fr"; /* french - france */
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
181 case 1031: return "de"; /* german - germany */
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
182 case 1032: return "el"; /* greek */
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
183 case 1037: return "he"; /* hebrew */
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
184 case 1038: return "hu"; /* hungarian */
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
185 case 1040: return "it"; /* italian - italy */
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
186 case 1041: return "ja"; /* japanese */
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
187 case 1042: return "ko"; /* korean */
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
188 case 1063: return "lt"; /* lithuanian */
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
189 case 1071: return "mk"; /* macedonian */
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
190 case 1045: return "pl"; /* polish */
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
191 case 2070: return "pt"; /* portuguese - portugal */
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
192 case 1046: return "pt_BR"; /* portuguese - brazil */
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
193 case 1048: return "ro"; /* romanian - romania */
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
194 case 1049: return "ru"; /* russian - russia */
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
195 case 2074: return "sr@Latn"; /* serbian - latin */
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
196 case 3098: return "sr"; /* serbian - cyrillic */
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
197 case 2052: return "zh_CN"; /* chinese - china (simple) */
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
198 case 1051: return "sk"; /* slovak */
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
199 case 1060: return "sl"; /* slovenian */
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
200 case 1034: return "es"; /* spanish */
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
201 case 1053: return "sv"; /* swedish */
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
202 case 1054: return "th"; /* thai */
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
203 case 1028: return "zh_TW"; /* chinese - taiwan (traditional) */
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
204 case 1055: return "tr"; /* turkish */
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
205 case 1058: return "uk"; /* ukrainian */
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
206 default:
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
207 return NULL;
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
208 }
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
209 }
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
210
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
211 /* Determine and set Gaim locale as follows (in order of priority):
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
212 - Check LANG env var
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
213 - Check NSIS Installer Language reg value
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
214 - Use default user locale
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
215 */
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
216 static void wgaim_set_locale() {
7522
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
217 char data[10];
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
218 DWORD datalen = 10;
7350
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
219 char* locale=NULL;
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
220 char envstr[25];
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
221 LCID lcid;
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
222
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
223 /* Check if user set LANG env var */
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
224 if((locale = (char*)getenv("LANG"))) {
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
225 goto finish;
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
226 }
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
227
7522
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
228 if(read_reg_string(HKEY_CURRENT_USER, "SOFTWARE\\gaim", "Installer Language", (LPBYTE)&data, &datalen)) {
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
229 if((locale = wgaim_lcid_to_posix(atoi(data))))
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
230 goto finish;
7350
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
231 }
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
232
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
233 lcid = GetUserDefaultLCID();
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
234 if((locale = wgaim_lcid_to_posix(lcid)))
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
235 goto finish;
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
236
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
237 finish:
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
238 if(!locale)
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
239 locale = "en";
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
240
7522
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
241 snprintf(envstr, 25, "LANG=%s", locale);
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
242 printf("Setting locale: %s\n", envstr);
7350
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
243 putenv(envstr);
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
244 }
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
245
e28728795a45 [gaim-migrate @ 7941]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6890
diff changeset
246
4490
70b892694e0b [gaim-migrate @ 4765]
Rob Flynn <gaim@robflynn.com>
parents:
diff changeset
247 #ifdef __GNUC__
70b892694e0b [gaim-migrate @ 4765]
Rob Flynn <gaim@robflynn.com>
parents:
diff changeset
248 # ifndef _stdcall
70b892694e0b [gaim-migrate @ 4765]
Rob Flynn <gaim@robflynn.com>
parents:
diff changeset
249 # define _stdcall __attribute__((stdcall))
70b892694e0b [gaim-migrate @ 4765]
Rob Flynn <gaim@robflynn.com>
parents:
diff changeset
250 # endif
70b892694e0b [gaim-migrate @ 4765]
Rob Flynn <gaim@robflynn.com>
parents:
diff changeset
251 #endif
70b892694e0b [gaim-migrate @ 4765]
Rob Flynn <gaim@robflynn.com>
parents:
diff changeset
252
70b892694e0b [gaim-migrate @ 4765]
Rob Flynn <gaim@robflynn.com>
parents:
diff changeset
253 int _stdcall
70b892694e0b [gaim-migrate @ 4765]
Rob Flynn <gaim@robflynn.com>
parents:
diff changeset
254 WinMain (struct HINSTANCE__ *hInstance,
70b892694e0b [gaim-migrate @ 4765]
Rob Flynn <gaim@robflynn.com>
parents:
diff changeset
255 struct HINSTANCE__ *hPrevInstance,
70b892694e0b [gaim-migrate @ 4765]
Rob Flynn <gaim@robflynn.com>
parents:
diff changeset
256 char *lpszCmdLine,
70b892694e0b [gaim-migrate @ 4765]
Rob Flynn <gaim@robflynn.com>
parents:
diff changeset
257 int nCmdShow)
70b892694e0b [gaim-migrate @ 4765]
Rob Flynn <gaim@robflynn.com>
parents:
diff changeset
258 {
7477
29d69daa1ede [gaim-migrate @ 8090]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7363
diff changeset
259 char errbuf[512];
6890
4eee806af511 [gaim-migrate @ 7436]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6816
diff changeset
260 char gaimdir[MAX_PATH];
4eee806af511 [gaim-migrate @ 7436]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6816
diff changeset
261 HMODULE hmod;
4eee806af511 [gaim-migrate @ 7436]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6816
diff changeset
262
7802
f1d2907db5be [gaim-migrate @ 8448]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7522
diff changeset
263 /* If debug flag used, create console for output */
f1d2907db5be [gaim-migrate @ 8448]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7522
diff changeset
264 if(strstr(lpszCmdLine, "-d")) {
f1d2907db5be [gaim-migrate @ 8448]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7522
diff changeset
265 if(AllocConsole())
f1d2907db5be [gaim-migrate @ 8448]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7522
diff changeset
266 freopen ("CONOUT$", "w", stdout);
f1d2907db5be [gaim-migrate @ 8448]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7522
diff changeset
267 }
f1d2907db5be [gaim-migrate @ 8448]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7522
diff changeset
268
6890
4eee806af511 [gaim-migrate @ 7436]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6816
diff changeset
269 /* Load exception handler if we have it */
7477
29d69daa1ede [gaim-migrate @ 8090]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7363
diff changeset
270 if(GetModuleFileName(NULL, gaimdir, MAX_PATH) != 0) {
29d69daa1ede [gaim-migrate @ 8090]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7363
diff changeset
271 char *tmp = gaimdir;
29d69daa1ede [gaim-migrate @ 8090]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7363
diff changeset
272 char *prev = NULL;
29d69daa1ede [gaim-migrate @ 8090]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7363
diff changeset
273
29d69daa1ede [gaim-migrate @ 8090]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7363
diff changeset
274 while((tmp=strchr(tmp, '\\'))) {
29d69daa1ede [gaim-migrate @ 8090]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7363
diff changeset
275 prev = tmp;
29d69daa1ede [gaim-migrate @ 8090]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7363
diff changeset
276 tmp+=1;
29d69daa1ede [gaim-migrate @ 8090]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7363
diff changeset
277 }
29d69daa1ede [gaim-migrate @ 8090]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7363
diff changeset
278 if(prev) {
29d69daa1ede [gaim-migrate @ 8090]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7363
diff changeset
279 prev[0] = '\0';
29d69daa1ede [gaim-migrate @ 8090]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7363
diff changeset
280 strcat(gaimdir, "\\exchndl.dll");
7522
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
281 if(LoadLibrary(gaimdir))
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
282 printf("Loaded exchndl.dll\n");
7477
29d69daa1ede [gaim-migrate @ 8090]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7363
diff changeset
283 }
6890
4eee806af511 [gaim-migrate @ 7436]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6816
diff changeset
284 }
7477
29d69daa1ede [gaim-migrate @ 8090]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7363
diff changeset
285 else {
29d69daa1ede [gaim-migrate @ 8090]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7363
diff changeset
286 snprintf(errbuf, 512, "Error getting module filename. Error: %u", (UINT)GetLastError());
29d69daa1ede [gaim-migrate @ 8090]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7363
diff changeset
287 MessageBox(NULL, errbuf, NULL, MB_OK | MB_TOPMOST);
29d69daa1ede [gaim-migrate @ 8090]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7363
diff changeset
288 }
29d69daa1ede [gaim-migrate @ 8090]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7363
diff changeset
289
7522
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
290 if(!getenv("GAIM_NO_DLL_CHECK"))
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
291 dll_prep();
6816
5aeba37b303c [gaim-migrate @ 7356]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 4490
diff changeset
292
7522
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
293 wgaim_set_locale();
7477
29d69daa1ede [gaim-migrate @ 8090]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7363
diff changeset
294
6890
4eee806af511 [gaim-migrate @ 7436]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6816
diff changeset
295 /* Now we are ready for Gaim .. */
4eee806af511 [gaim-migrate @ 7436]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6816
diff changeset
296 if((hmod=LoadLibrary("gaim.dll"))) {
7522
07156f873116 [gaim-migrate @ 8135]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7477
diff changeset
297 gaim_main = (LPFNGAIMMAIN)GetProcAddress(hmod, "gaim_main");
6890
4eee806af511 [gaim-migrate @ 7436]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6816
diff changeset
298 }
4eee806af511 [gaim-migrate @ 7436]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6816
diff changeset
299
4eee806af511 [gaim-migrate @ 7436]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6816
diff changeset
300 if(!gaim_main) {
7477
29d69daa1ede [gaim-migrate @ 8090]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7363
diff changeset
301 snprintf(errbuf, 512, "Error loading gaim.dll. Error: %u", (UINT)GetLastError());
7356
be11a6f2fe00 [gaim-migrate @ 7949]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 7350
diff changeset
302 MessageBox(NULL, errbuf, NULL, MB_OK | MB_TOPMOST);
6890
4eee806af511 [gaim-migrate @ 7436]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6816
diff changeset
303 return 0;
4eee806af511 [gaim-migrate @ 7436]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6816
diff changeset
304 }
4eee806af511 [gaim-migrate @ 7436]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6816
diff changeset
305 else
4eee806af511 [gaim-migrate @ 7436]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 6816
diff changeset
306 return gaim_main (hInstance, __argc, __argv);
4490
70b892694e0b [gaim-migrate @ 4765]
Rob Flynn <gaim@robflynn.com>
parents:
diff changeset
307 }
70b892694e0b [gaim-migrate @ 4765]
Rob Flynn <gaim@robflynn.com>
parents:
diff changeset
308