From ab2438d317799cc265c6f392f877947c61ecd585 Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Mon, 4 Jun 2012 12:56:59 +0000 Subject: typo fix git-svn-id: http://svn.miranda-ng.org/main/trunk@297 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/NewsAggregator/Src/Common.h | 162 ++++++++++++++++++++++++++++++++++++ 1 file changed, 162 insertions(+) create mode 100644 plugins/NewsAggregator/Src/Common.h (limited to 'plugins/NewsAggregator/Src/Common.h') diff --git a/plugins/NewsAggregator/Src/Common.h b/plugins/NewsAggregator/Src/Common.h new file mode 100644 index 0000000000..fedb81250c --- /dev/null +++ b/plugins/NewsAggregator/Src/Common.h @@ -0,0 +1,162 @@ +/* +Copyright (C) 2012 Mataes + +This is free software; you can redistribute it and/or +modify it under the terms of the GNU Library General Public +License as published by the Free Software Foundation; either +version 2 of the License, or (at your option) any later version. + +This is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Library General Public License for more details. + +You should have received a copy of the GNU Library General Public +License along with this file; see the file license.txt. If +not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, +Boston, MA 02111-1307, USA. +*/ + +#define MIRANDA_VER 0x0A00 + +// Windows Header Files: +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include + +// Miranda header files +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include + +#include "..\version.h" +#include "..\resource.h" + +#define MODULE "NewsAggr" +#define TAGSHELP "## - The title of the item.\r\n#<description># - The item synopsis.\r\n#<link># - The URL of the item.\r\n#<author># - Email address of the author of the item.\r\n#<comments># - URL of a page for comments relating to the item.\r\n#<guid># - A string that uniquely identifies the item.\r\n#<category># - Specify one or more categories that the item belongs to." +#define TAGSDEFAULT "#<title>#\r\n#<link>#\r\n#<description>#" +#define DEFAULT_AVATARS_FOLDER "NewsAggregator" +extern HINSTANCE hInst; +extern HWND hAddFeedDlg; +extern HANDLE hChangeFeedDlgList; +extern UINT_PTR timerId; +// check if Feeds is currently updating +extern BOOL ThreadRunning; +extern BOOL UpdateListFlag; +extern TCHAR tszRoot[MAX_PATH]; +struct ItemInfo +{ + HWND hwndList; + HANDLE hContact; + int SelNumber; + TCHAR nick[MAX_PATH]; + TCHAR url[MAX_PATH]; +}; + +//============ STRUCT USED TO MAKE AN UPDATE LIST ============ + +struct NEWSCONTACTLIST { + HANDLE hContact; + struct NEWSCONTACTLIST *next; +}; + +typedef struct NEWSCONTACTLIST UPDATELIST; + +extern UPDATELIST *UpdateListHead; +extern UPDATELIST *UpdateListTail; + +void UpdateListAdd(HANDLE hContact); +void UpdateThreadProc(LPVOID hWnd); +void DestroyUpdateList(void); + +extern HANDLE hUpdateMutex; + +int NewsAggrInit(WPARAM wParam,LPARAM lParam); +INT OptInit(WPARAM wParam, LPARAM lParam); +int NewsAggrPreShutdown(WPARAM wParam,LPARAM lParam); +VOID NetlibInit(); +VOID NetlibUnInit(); +VOID InitMenu(); +VOID InitIcons(); +HICON LoadIconEx(const char* name, BOOL big); +HANDLE GetIconHandle(const char* name); +INT_PTR NewsAggrGetName(WPARAM wParam, LPARAM lParam); +INT_PTR NewsAggrGetCaps(WPARAM wp,LPARAM lp); +INT_PTR NewsAggrSetStatus(WPARAM wp,LPARAM /*lp*/); +INT_PTR NewsAggrGetStatus(WPARAM/* wp*/,LPARAM/* lp*/); +INT_PTR NewsAggrLoadIcon(WPARAM wParam,LPARAM lParam); +INT_PTR NewsAggrGetInfo(WPARAM wParam,LPARAM lParam); +INT_PTR NewsAggrGetAvatarInfo(WPARAM wParam,LPARAM lParam); + +INT_PTR CheckAllFeeds(WPARAM wParam,LPARAM lParam); +INT_PTR AddFeed(WPARAM wParam,LPARAM lParam); +INT_PTR ChangeFeed(WPARAM wParam,LPARAM lParam); +INT_PTR ImportFeeds(WPARAM wParam,LPARAM lParam); +INT_PTR ExportFeeds(WPARAM wParam,LPARAM lParam); +INT_PTR CheckFeed(WPARAM wParam,LPARAM lParam); +INT_PTR CALLBACK DlgProcAddFeedOpts(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam); +INT_PTR CALLBACK DlgProcChangeFeedOpts(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam); +INT_PTR CALLBACK DlgProcChangeFeedMenu(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam); +VOID CALLBACK timerProc(HWND hwnd, UINT uMsg, UINT_PTR idEvent, DWORD dwTime); +VOID CALLBACK timerProc2(HWND hwnd, UINT uMsg, UINT_PTR idEvent, DWORD dwTime); + +BOOL IsMyContact(HANDLE hContact); +VOID GetNewsData(TCHAR *szUrl, char** szData, HANDLE hContact, HWND hwndDlg); +VOID CreateList (HWND hwndList); +VOID UpdateList (HWND hwndList); +VOID DeleteAllItems(HWND hwndList); +time_t __stdcall DateToUnixTime(TCHAR *stamp, BOOL FeedType); +VOID CheckCurrentFeed (HANDLE hContact); +TCHAR* CheckFeed(TCHAR* tszURL, HWND hwndDlg); +size_t decode_html_entities_utf8(char *dest, const char *src); + +// =============== NewsAggr SERVICES ================ +// Check all Feeds info +// WPARAM = LPARAM = NULL +#define MS_NEWSAGGR_CHECKALLFEEDS "NEWSAGGR/CheckAllFeeds" + +// Add new Feed channel +// WPARAM = LPARAM = NULL +#define MS_NEWSAGGR_ADDFEED "NEWSAGGR/AddNewsFeed" + +// Add new Feed channel +// WPARAM = LPARAM = NULL +#define MS_NEWSAGGR_CHANGEFEED "NEWSAGGR/ChangeNewsFeed" + +// Import Feed chanels from file +// WPARAM = LPARAM = NULL +#define MS_NEWSAGGR_IMPORTFEEDS "NEWSAGGR/ImportFeeds" + +// Export Feed chanels to file +// WPARAM = LPARAM = NULL +#define MS_NEWSAGGR_EXPORTFEEDS "NEWSAGGR/ExportFeeds" + +// Check Feed info +// WPARAM = LPARAM = NULL +#define MS_NEWSAGGR_CHECKFEED "NEWSAGGR/CheckFeed" \ No newline at end of file -- cgit v1.2.3