diff options
author | Robert Pösel <robyer@seznam.cz> | 2013-05-15 15:54:01 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2013-05-15 15:54:01 +0000 |
commit | a24c54b1c68eac0bc187a60192b6691912b34472 (patch) | |
tree | 66bbedb41c694ba95aa15dc5a677705a73a987be /protocols/FacebookRM/src/utils.h | |
parent | 83a3c975e9cdf5895cb45c3f91c12986b5cdb539 (diff) |
Facebook: Show info in statusbar when user read your message.
git-svn-id: http://svn.miranda-ng.org/main/trunk@4662 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/FacebookRM/src/utils.h')
-rw-r--r-- | protocols/FacebookRM/src/utils.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/protocols/FacebookRM/src/utils.h b/protocols/FacebookRM/src/utils.h index 9918eb917f..f0b3b68d96 100644 --- a/protocols/FacebookRM/src/utils.h +++ b/protocols/FacebookRM/src/utils.h @@ -99,8 +99,9 @@ namespace utils namespace conversion
{
DWORD to_timestamp(std::string data);
- std::string to_string(void*, WORD type);
-
+ struct tm *fbtime_to_timeinfo(double timestamp);
+ std::string to_string(void*, WORD type);
+
template <class T>
bool from_string(T& t, const std::string& s, std::ios_base& (*f)(std::ios_base&)) {
std::istringstream iss(s);
|