annotate src/win32/stdafx.h @ 9740:2bb5e2cd64bd
[gaim-migrate @ 10605]
" A few days back, someone on #gaim was wondering how to
block IM's from IRC, which isn't supported by gaim, as
this isn't supported at a protocol level. I decided to
implement gaim's privacy options (permit lists, deny
lists, block all users, and permit people on buddy
list) at a local level for IRC and
Zephyr. Jabber, SILC, and Trepia don't seem to support
deny or permit lists in Gaim, but I don't use the
latter two protocols and wasn't sure about how to
implemnt in in Jabber.
When implementing it, I noticed that changes in privacy
settings didn't automatically cause blist.xml to get
scheduled
for writing (even on exit). To fix this, I needed to
make schedule_blist_save in blist.c non-static and call
it from serv_set_permit_deny() in server.c, and
gaim_privacy_{permit,deny}_{add,remove} in privacy.c ." --Arun A Tharuvai
committer: Tailor Script <tailor@pidgin.im>
| author |
Luke Schierer <lschiere@pidgin.im> |
| date |
Wed, 11 Aug 2004 23:52:48 +0000 |
| parents |
94e4cf59bacb |
| children |
f588ced280bf |
| rev |
line source |
|
6096
|
1 // stdafx.h : include file for standard system include files,
|
|
|
2 // or project specific include files that are used frequently, but
|
|
|
3 // are changed infrequently
|
|
|
4 //
|
|
|
5
|
|
|
6 #if !defined(AFX_STDAFX_H__A9DB83DB_A9FD_11D0_BFD1_444553540000__INCLUDED_)
|
|
|
7 #define AFX_STDAFX_H__A9DB83DB_A9FD_11D0_BFD1_444553540000__INCLUDED_
|
|
|
8
|
|
|
9 #if _MSC_VER > 1000
|
|
|
10 #pragma once
|
|
|
11 #endif // _MSC_VER > 1000
|
|
|
12
|
|
|
13 #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
|
|
|
14
|
|
|
15 #include <windows.h>
|
|
|
16 #include <shellapi.h>
|
|
|
17
|
|
|
18
|
|
|
19 // TODO: reference additional headers your program requires here
|
|
|
20
|
|
|
21 //{{AFX_INSERT_LOCATION}}
|
|
|
22 // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
|
|
|
23
|
|
|
24 #endif // !defined(AFX_STDAFX_H__A9DB83DB_A9FD_11D0_BFD1_444553540000__INCLUDED_)
|