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
|
#ifndef _M_VERSIONINFO_UTILS_H
#define _M_VERSIONINFO_UTILS_H
#include "common.h"
//utils.cpp
void MB(char*);
void Log(char*);
TCHAR *StrTrim(TCHAR *, const TCHAR *);
//logging functions
//utils.cpp
void LogToFileInit();
void LogToFile(char *format, ...);
//utils.cpp
TCHAR *RelativePathToAbsolute(TCHAR *szRelative, TCHAR *szAbsolute, size_t size);
TCHAR *AbsolutePathToRelative(TCHAR *szAbsolute, TCHAR *szRelative, size_t size);
//returns a string from the database and uses MirandaFree to deallocate the string, leaving only the local copy
//utils.cpp
int GetStringFromDatabase(char *szSettingName, TCHAR *szError, TCHAR *szResult, size_t size);
//a string of the form %s(start) | %s(end) is split into the two strings (start and end)
//utils.cpp
int SplitStringInfo(const TCHAR *szWholeText, TCHAR *szStartText, TCHAR *szEndText);
//utils.cpp
bool DoesDllExist(char *dllName);
//utils.cpp
void GetModuleTimeStamp(TCHAR*, TCHAR*);
void NotifyError(DWORD, char*, int);
//utils.cpp
PLUGININFOEX *GetPluginInfo(const char *,HINSTANCE *);
PLUGININFOEX *CopyPluginInfo(PLUGININFOEX *);
void FreePluginInfo(PLUGININFOEX *);
//utils.cpp
BOOL IsCurrentUserLocalAdministrator();
TCHAR *GetLanguageName(LANGID language);
TCHAR *GetLanguageName(LCID locale);
BOOL GetWindowsShell(TCHAR *shellPath, size_t shSize);
BOOL GetInternetExplorerVersion(TCHAR *ieVersion, size_t ieSize);
BOOL UUIDToString(MUUID uuid, TCHAR *str, size_t len);
BOOL IsUUIDNull(MUUID uuid);
#endif
|