diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-05-15 10:38:20 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-05-15 10:38:20 +0000 |
commit | 48540940b6c28bb4378abfeb500ec45a625b37b6 (patch) | |
tree | 2ef294c0763e802f91d868bdef4229b6868527de /include/m_timezones.h | |
parent | 5c350913f011e119127baeb32a6aedeb4f0d33bc (diff) |
initial commit
git-svn-id: http://svn.miranda-ng.org/main/trunk@2 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include/m_timezones.h')
-rw-r--r-- | include/m_timezones.h | 96 |
1 files changed, 96 insertions, 0 deletions
diff --git a/include/m_timezones.h b/include/m_timezones.h new file mode 100644 index 0000000000..35a5651696 --- /dev/null +++ b/include/m_timezones.h @@ -0,0 +1,96 @@ +/*
+Miranda IM: the free IM client for Microsoft* Windows*
+
+Copyright 2000-2010 Miranda ICQ/IM project,
+all portions of this codebase are copyrighted to the people
+listed in contributors.txt.
+
+This program is free software; you can redistribute it and/or
+modify it under the terms of the GNU General Public License
+as published by the Free Software Foundation; either version 2
+of the License, or (at your option) any later version.
+
+This program 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 General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program; if not, write to the Free Software
+Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+*/
+
+#ifndef __M_TIMEZONES_H
+#define __M_TIMEZONES_H
+
+#define MIM_TZ_NAMELEN 64
+
+#define TZF_PLF_CB 1 // UI element is assumed to be a combo box
+#define TZF_PLF_LB 2 // UI element is assumed to be a list box
+#define TZF_DIFONLY 4
+#define TZF_KNOWNONLY 8
+
+#define LOCAL_TIME_HANDLE NULL
+#define UTC_TIME_HANDLE ((void*)-1)
+
+typedef struct
+{
+ size_t cbSize;
+
+ HANDLE ( *createByName )( LPCTSTR tszName, DWORD dwFlags );
+ HANDLE ( *createByContact )( HANDLE hContact, DWORD dwFlags );
+ void ( *storeByContact )( HANDLE hContact, HANDLE hTZ );
+
+ int ( *printDateTime )( HANDLE hTZ, LPCTSTR szFormat, LPTSTR szDest, int cbDest, DWORD dwFlags );
+ int ( *printTimeStamp )( HANDLE hTZ, time_t ts, LPCTSTR szFormat, LPTSTR szDest, int cbDest, DWORD dwFlags );
+
+ int ( *prepareList )( HANDLE hContact, HWND hWnd, DWORD dwFlags );
+ int ( *selectListItem )( HANDLE hContact, HWND hWnd, DWORD dwFlags );
+ void ( *storeListResults )( HANDLE hContact, HWND hWnd, DWORD dwFlags );
+
+ int ( *getTimeZoneTime )( HANDLE hTZ, SYSTEMTIME *st );
+ time_t ( *timeStampToTimeZoneTimeStamp )( HANDLE hTZ, time_t ts );
+
+ LPTIME_ZONE_INFORMATION ( *getTzi )( HANDLE hTZ );
+ LPCTSTR ( *getTzName )( HANDLE hTZ );
+
+#ifdef __cplusplus
+ int printDateTimeByContact (HANDLE hContact, LPCTSTR szFormat, LPTSTR szDest, int cbDest, DWORD dwFlags)
+ { return printDateTime(createByContact(hContact, dwFlags), szFormat, szDest, cbDest, dwFlags); }
+
+ int printTimeStampByContact(HANDLE hContact, time_t ts, LPCTSTR szFormat, LPTSTR szDest, int cbDest, DWORD dwFlags)
+ { return printTimeStamp(createByContact(hContact, dwFlags), ts, szFormat, szDest, cbDest, dwFlags); }
+
+ LPTIME_ZONE_INFORMATION getTziByContact(HANDLE hContact)
+ { return getTzi(createByContact(hContact, 0)); }
+
+ int getTimeZoneTimeByContact(HANDLE hContact, SYSTEMTIME *st)
+ { return getTimeZoneTime(createByContact(hContact, 0), st); }
+
+ time_t timeStampToTimeZoneTimeStampByContact(HANDLE hContact, time_t ts)
+ { return timeStampToTimeZoneTimeStamp(createByContact(hContact, 0), ts); }
+#endif
+
+} TIME_API;
+
+/* every protocol should declare this variable to use the Time API */
+extern TIME_API tmi;
+
+/*
+a service to obtain the Time API
+
+wParam = 0;
+lParam = (LPARAM)(TIME_API*).
+
+returns TRUE if all is Ok, and FALSE otherwise
+*/
+
+#define MS_SYSTEM_GET_TMI "Miranda/System/GetTimeApi"
+
+__forceinline int mir_getTMI(TIME_API* dest)
+{
+ dest->cbSize = sizeof(*dest);
+ return CallService(MS_SYSTEM_GET_TMI, 0, (LPARAM)dest);
+}
+
+#endif /* __M_TIMEZONES_H */
|