1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
#if !defined(WHATS_NG_UTILS_H)
#define WHATS_NG_UTILS_H
#include "WhatsAPI++/IMutex.h"
template<typename T>
void CreateProtoService(const char *module,const char *service,
int (__cdecl T::*serviceProc)(WPARAM,LPARAM),T *self)
{
char temp[MAX_PATH*2];
mir_snprintf(temp,sizeof(temp),"%s%s",module,service);
CreateServiceFunctionObj(temp,( MIRANDASERVICEOBJ )*(void**)&serviceProc, self );
}
template<typename T>
void HookProtoEvent(const char* evt, int (__cdecl T::*eventProc)(WPARAM,LPARAM), T *self)
{
::HookEventObj(evt,(MIRANDAHOOKOBJ)*(void**)&eventProc,self);
}
template<typename T>
HANDLE ForkThreadEx(void (__cdecl T::*thread)(void*),T *self,void *data = 0)
{
return reinterpret_cast<HANDLE>( mir_forkthreadowner(
(pThreadFuncOwner)*(void**)&thread,self,data,0));
}
template<typename T>
void ForkThread(void (__cdecl T::*thread)(void*),T *self,void *data = 0)
{
CloseHandle(ForkThreadEx(thread,self,data));
}
class ScopedLock
{
public:
ScopedLock(HANDLE h, int t = INFINITE) : handle_(h), timeout_(t)
{
WaitForSingleObject(handle_,timeout_);
}
~ScopedLock()
{
if(handle_)
ReleaseMutex(handle_);
}
void Unlock()
{
ReleaseMutex(handle_);
handle_ = 0;
}
private:
HANDLE handle_;
int timeout_;
};
class Mutex : public IMutex
{
private:
HANDLE handle;
public:
Mutex() : handle(NULL) {}
virtual ~Mutex()
{
if (this->handle != NULL)
{
ReleaseMutex(this->handle);
}
}
virtual void lock()
{
if (this->handle == NULL)
{
this->handle = CreateMutex(NULL, FALSE, NULL);
}
}
virtual void unlock()
{
ReleaseMutex(this->handle);
this->handle = NULL;
}
};
std::string getLastErrorMsg();
void UnixTimeToFileTime(time_t t, LPFILETIME pft);
namespace utils
{
namespace debug
{
int log(std::string file_name, std::string text);
};
namespace conversion
{
DWORD to_timestamp( std::string data );
};
namespace text
{
std::string source_get_value(std::string* data, unsigned int argument_count, ...);
};
BYTE* md5string(const BYTE*, int, BYTE* digest);
__forceinline BYTE* md5string(const std::string& str, BYTE* digest) {
return md5string((BYTE*)str.data(), (int)str.length(), digest);
}
};
#endif
|