diff pidgin/win32/IdleTracker/idletrack.c @ 15515:75ffc646647f

Win32 de-gaimification of pidgin
author Daniel Atallah <daniel.atallah@gmail.com>
date Sat, 03 Feb 2007 18:46:49 +0000
parents 5fe8042783c1
children 026f9c6cc942
line wrap: on
line diff
--- a/pidgin/win32/IdleTracker/idletrack.c	Sat Feb 03 09:24:33 2007 +0000
+++ b/pidgin/win32/IdleTracker/idletrack.c	Sat Feb 03 18:46:49 2007 +0000
@@ -99,7 +99,7 @@
 }
 
 
-EXPORT DWORD wgaim_get_lastactive() {
+EXPORT DWORD winpidgin_get_lastactive() {
 	DWORD result = 0;
 
 	/* If we have GetLastInputInfo then use it, otherwise use the hooks*/
@@ -122,7 +122,7 @@
 }
 
 
-EXPORT BOOL wgaim_set_idlehooks() {
+EXPORT BOOL winpidgin_set_idlehooks() {
 	/* Is GetLastInputInfo available?*/
 	g_user32 = LoadLibrary("user32.dll");
 	if(g_user32) {
@@ -159,7 +159,7 @@
 }
 
 
-EXPORT void wgaim_remove_idlehooks() {
+EXPORT void winpidgin_remove_idlehooks() {
 	if(g_user32 != NULL)
 		FreeLibrary(g_user32);
 	if(keyHook)