2010-11-06 23:04:47 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// LameXP - Audio Encoder Front-End
|
2013-02-08 23:50:51 +01:00
|
|
|
// Copyright (C) 2004-2013 LoRd_MuldeR <MuldeR2@GMX.de>
|
2010-11-06 23:04:47 +01:00
|
|
|
//
|
|
|
|
// 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
|
2013-10-23 20:56:57 +02:00
|
|
|
// (at your option) any later version, but always including the *additional*
|
|
|
|
// restrictions defined in the "License.txt" file.
|
2010-11-06 23:04:47 +01:00
|
|
|
//
|
|
|
|
// 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.,
|
|
|
|
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
//
|
|
|
|
// http://www.gnu.org/licenses/gpl-2.0.txt
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2011-04-11 21:55:34 +02:00
|
|
|
//Target version
|
2010-11-06 23:04:47 +01:00
|
|
|
#include "Targetver.h"
|
|
|
|
|
2011-04-11 21:55:34 +02:00
|
|
|
//inlcude C standard library
|
2012-10-13 12:36:41 +02:00
|
|
|
#define _CRT_RAND_S
|
2010-11-06 23:04:47 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <tchar.h>
|
|
|
|
|
2012-04-06 22:24:05 +02:00
|
|
|
//Visual Leaks Detector
|
|
|
|
#include <vld.h>
|
|
|
|
|
2010-11-19 13:31:45 +01:00
|
|
|
//Declarations
|
2010-11-06 23:04:47 +01:00
|
|
|
class QString;
|
2010-12-28 21:26:16 +01:00
|
|
|
class QStringList;
|
2010-11-06 23:04:47 +01:00
|
|
|
class QDate;
|
2011-12-26 21:02:55 +01:00
|
|
|
class QTime;
|
|
|
|
class QIcon;
|
2011-05-03 20:17:33 +02:00
|
|
|
class QWidget;
|
2013-10-07 00:01:15 +02:00
|
|
|
class QProcess;
|
2010-12-28 21:26:16 +01:00
|
|
|
class LockedFile;
|
2010-11-19 13:31:45 +01:00
|
|
|
enum QtMsgType;
|
2010-11-06 23:04:47 +01:00
|
|
|
|
2010-11-15 04:42:06 +01:00
|
|
|
//Types definitions
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
int family;
|
|
|
|
int model;
|
|
|
|
int stepping;
|
2010-11-15 14:02:58 +01:00
|
|
|
int count;
|
|
|
|
bool x64;
|
2010-11-15 04:42:06 +01:00
|
|
|
bool mmx;
|
|
|
|
bool sse;
|
|
|
|
bool sse2;
|
|
|
|
bool sse3;
|
|
|
|
bool ssse3;
|
2010-11-26 00:29:53 +01:00
|
|
|
char vendor[0x40];
|
2010-11-15 04:42:06 +01:00
|
|
|
char brand[0x40];
|
2010-11-26 00:29:53 +01:00
|
|
|
bool intel;
|
|
|
|
}
|
|
|
|
lamexp_cpu_t;
|
2010-11-15 04:42:06 +01:00
|
|
|
|
2010-12-15 18:43:21 +01:00
|
|
|
//Known folders
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
lamexp_folder_localappdata = 0,
|
2010-12-19 21:23:43 +01:00
|
|
|
lamexp_folder_programfiles = 2,
|
|
|
|
lamexp_folder_systemfolder = 3
|
2010-12-15 18:43:21 +01:00
|
|
|
}
|
|
|
|
lamexp_known_folder_t;
|
|
|
|
|
2011-12-29 14:42:20 +01:00
|
|
|
//LameXP user-defined events
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
lamexp_event = 1000, /*QEvent::User*/
|
|
|
|
lamexp_event_queryendsession = lamexp_event + 666,
|
|
|
|
lamexp_event_endsession = lamexp_event + 667
|
|
|
|
}
|
|
|
|
lamexp_event_t;
|
|
|
|
|
2012-09-09 23:05:00 +02:00
|
|
|
//OS version number
|
2013-10-20 19:12:00 +02:00
|
|
|
typedef struct _lamexp_os_version_t
|
2012-09-09 23:05:00 +02:00
|
|
|
{
|
|
|
|
unsigned int versionMajor;
|
|
|
|
unsigned int versionMinor;
|
2013-10-20 23:34:04 +02:00
|
|
|
bool overrideFlag;
|
2013-10-20 19:12:00 +02:00
|
|
|
|
|
|
|
//comparision operators
|
|
|
|
inline bool operator== (const _lamexp_os_version_t &rhs) const { return (versionMajor == rhs.versionMajor) && (versionMinor == rhs.versionMinor); }
|
|
|
|
inline bool operator!= (const _lamexp_os_version_t &rhs) const { return (versionMajor != rhs.versionMajor) || (versionMinor != rhs.versionMinor); }
|
|
|
|
inline bool operator> (const _lamexp_os_version_t &rhs) const { return (versionMajor > rhs.versionMajor) || ((versionMajor == rhs.versionMajor) && (versionMinor > rhs.versionMinor)); }
|
|
|
|
inline bool operator>= (const _lamexp_os_version_t &rhs) const { return (versionMajor > rhs.versionMajor) || ((versionMajor == rhs.versionMajor) && (versionMinor >= rhs.versionMinor)); }
|
|
|
|
inline bool operator< (const _lamexp_os_version_t &rhs) const { return (versionMajor < rhs.versionMajor) || ((versionMajor == rhs.versionMajor) && (versionMinor < rhs.versionMinor)); }
|
|
|
|
inline bool operator<= (const _lamexp_os_version_t &rhs) const { return (versionMajor < rhs.versionMajor) || ((versionMajor == rhs.versionMajor) && (versionMinor <= rhs.versionMinor)); }
|
2012-09-09 23:05:00 +02:00
|
|
|
}
|
|
|
|
lamexp_os_version_t;
|
|
|
|
|
2013-10-20 19:12:00 +02:00
|
|
|
//Known Windows versions
|
|
|
|
extern const lamexp_os_version_t lamexp_winver_win2k;
|
|
|
|
extern const lamexp_os_version_t lamexp_winver_winxp;
|
|
|
|
extern const lamexp_os_version_t lamexp_winver_xpx64;
|
|
|
|
extern const lamexp_os_version_t lamexp_winver_vista;
|
|
|
|
extern const lamexp_os_version_t lamexp_winver_win70;
|
|
|
|
extern const lamexp_os_version_t lamexp_winver_win80;
|
|
|
|
extern const lamexp_os_version_t lamexp_winver_win81;
|
|
|
|
|
2013-10-07 00:01:15 +02:00
|
|
|
//Beep types
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
lamexp_beep_info = 0,
|
|
|
|
lamexp_beep_warning = 1,
|
|
|
|
lamexp_beep_error = 2
|
|
|
|
}
|
|
|
|
lamexp_beep_t;
|
|
|
|
|
2013-10-19 16:02:22 +02:00
|
|
|
//Network connection types
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
lamexp_network_err = 0, /*unknown*/
|
|
|
|
lamexp_network_non = 1, /*not connected*/
|
|
|
|
lamexp_network_yes = 2 /*connected*/
|
|
|
|
}
|
|
|
|
lamexp_network_t;
|
|
|
|
|
2010-11-06 23:04:47 +01:00
|
|
|
//LameXP version info
|
|
|
|
unsigned int lamexp_version_major(void);
|
|
|
|
unsigned int lamexp_version_minor(void);
|
|
|
|
unsigned int lamexp_version_build(void);
|
2013-05-02 23:00:26 +02:00
|
|
|
unsigned int lamexp_version_confg(void);
|
2010-11-06 23:04:47 +01:00
|
|
|
const QDate &lamexp_version_date(void);
|
2011-07-26 22:17:14 +02:00
|
|
|
const char *lamexp_version_time(void);
|
2010-11-06 23:04:47 +01:00
|
|
|
const char *lamexp_version_release(void);
|
|
|
|
bool lamexp_version_demo(void);
|
2010-11-20 22:14:29 +01:00
|
|
|
const char *lamexp_version_compiler(void);
|
2011-07-26 22:17:14 +02:00
|
|
|
const char *lamexp_version_arch(void);
|
2011-01-20 22:06:59 +01:00
|
|
|
QDate lamexp_version_expires(void);
|
2010-11-12 15:58:53 +01:00
|
|
|
unsigned int lamexp_toolver_neroaac(void);
|
2011-08-21 14:43:18 +02:00
|
|
|
unsigned int lamexp_toolver_fhgaacenc(void);
|
2011-11-21 01:22:41 +01:00
|
|
|
unsigned int lamexp_toolver_qaacenc(void);
|
2011-11-21 14:40:32 +01:00
|
|
|
unsigned int lamexp_toolver_coreaudio(void);
|
2011-02-28 01:28:27 +01:00
|
|
|
const char *lamexp_website_url(void);
|
2013-03-17 21:50:29 +01:00
|
|
|
const char *lamexp_mulders_url(void);
|
2011-03-20 14:28:27 +01:00
|
|
|
const char *lamexp_support_url(void);
|
2013-10-20 19:12:00 +02:00
|
|
|
const lamexp_os_version_t &lamexp_get_os_version(void);
|
2012-04-05 13:40:52 +02:00
|
|
|
bool lamexp_detect_wine(void);
|
2010-11-06 23:04:47 +01:00
|
|
|
|
|
|
|
//Public functions
|
2012-06-22 15:49:56 +02:00
|
|
|
void lamexp_init_console(const QStringList &argv);
|
2010-11-06 23:04:47 +01:00
|
|
|
bool lamexp_init_qt(int argc, char* argv[]);
|
2010-11-08 21:47:35 +01:00
|
|
|
int lamexp_init_ipc(void);
|
2011-07-26 22:17:14 +02:00
|
|
|
void lamexp_invalid_param_handler(const wchar_t*, const wchar_t*, const wchar_t*, unsigned int, uintptr_t);
|
2010-11-19 13:31:45 +01:00
|
|
|
void lamexp_message_handler(QtMsgType type, const char *msg);
|
2013-02-12 00:08:21 +01:00
|
|
|
void lamexp_register_tool(const QString &toolName, LockedFile *file, unsigned int version = 0, const QString *tag = NULL);
|
2010-11-11 22:58:02 +01:00
|
|
|
bool lamexp_check_tool(const QString &toolName);
|
2010-11-06 23:04:47 +01:00
|
|
|
const QString lamexp_lookup_tool(const QString &toolName);
|
2013-02-12 00:08:21 +01:00
|
|
|
unsigned int lamexp_tool_version(const QString &toolName, QString *tag = NULL);
|
2010-11-06 23:04:47 +01:00
|
|
|
void lamexp_finalization(void);
|
2013-10-09 16:09:20 +02:00
|
|
|
QString lamexp_rand_str(const bool bLong = false);
|
2011-02-25 22:03:39 +01:00
|
|
|
const QString &lamexp_temp_folder2(void);
|
2010-11-08 19:29:36 +01:00
|
|
|
void lamexp_ipc_read(unsigned int *command, char* message, size_t buffSize);
|
|
|
|
void lamexp_ipc_send(unsigned int command, const char* message);
|
2012-06-23 18:18:57 +02:00
|
|
|
lamexp_cpu_t lamexp_detect_cpu_features(const QStringList &argv);
|
2011-01-24 00:04:07 +01:00
|
|
|
bool lamexp_portable_mode(void);
|
2011-10-22 01:13:28 +02:00
|
|
|
bool lamexp_shutdown_computer(const QString &message, const unsigned long timeout = 30, const bool forceShutdown = true, const bool hibernate = false);
|
2011-10-22 01:34:24 +02:00
|
|
|
bool lamexp_is_hibernation_supported(void);
|
2011-12-26 21:02:55 +01:00
|
|
|
QIcon lamexp_app_icon(const QDate *date = NULL, const QTime *time = NULL);
|
2012-06-22 15:49:56 +02:00
|
|
|
const QStringList &lamexp_arguments(void);
|
2010-12-30 16:12:21 +01:00
|
|
|
|
|
|
|
//Translation support
|
2010-12-28 21:26:16 +01:00
|
|
|
QStringList lamexp_query_translations(void);
|
2011-12-19 17:26:20 +01:00
|
|
|
bool lamexp_translation_register(const QString &langId, const QString &qmFile, const QString &langName, unsigned int &systemId, unsigned int &country);
|
2010-12-30 16:12:21 +01:00
|
|
|
QString lamexp_translation_name(const QString &language);
|
2011-01-04 19:58:18 +01:00
|
|
|
unsigned int lamexp_translation_sysid(const QString &langId);
|
2011-12-19 17:26:20 +01:00
|
|
|
unsigned int lamexp_translation_country(const QString &langId);
|
2011-01-06 00:53:52 +01:00
|
|
|
bool lamexp_install_translator_from_file(const QString &qmFile);
|
2010-12-28 21:26:16 +01:00
|
|
|
bool lamexp_install_translator(const QString &language);
|
2011-12-10 23:12:47 +01:00
|
|
|
QStringList lamexp_available_codepages(bool noAliases = true);
|
2013-01-23 23:25:31 +01:00
|
|
|
extern const char* LAMEXP_DEFAULT_LANGID;
|
|
|
|
extern const char* LAMEXP_DEFAULT_TRANSLATION;
|
2010-11-06 23:04:47 +01:00
|
|
|
|
|
|
|
//Auxiliary functions
|
2011-03-21 17:36:43 +01:00
|
|
|
bool lamexp_clean_folder(const QString &folderPath);
|
2013-02-12 00:08:21 +01:00
|
|
|
const QString lamexp_version2string(const QString &pattern, unsigned int version, const QString &defaultText, const QString *tag = NULL);
|
2012-08-18 22:37:10 +02:00
|
|
|
const QString &lamexp_known_folder(lamexp_known_folder_t folder_id);
|
2011-10-29 16:26:09 +02:00
|
|
|
unsigned __int64 lamexp_free_diskspace(const QString &path, bool *ok = NULL);
|
2010-12-21 01:09:25 +01:00
|
|
|
bool lamexp_remove_file(const QString &filename);
|
2011-01-02 20:47:26 +01:00
|
|
|
bool lamexp_themes_enabled(void);
|
2011-05-03 20:17:33 +02:00
|
|
|
void lamexp_blink_window(QWidget *poWindow, unsigned int count = 10, unsigned int delay = 150);
|
2011-08-04 20:35:40 +02:00
|
|
|
const QString lamexp_clean_filename(const QString &str);
|
|
|
|
const QString lamexp_clean_filepath(const QString &str);
|
2012-10-13 12:36:41 +02:00
|
|
|
void lamexp_seed_rand(void);
|
|
|
|
unsigned int lamexp_rand(void);
|
2013-01-12 01:53:43 +01:00
|
|
|
QDate lamexp_current_date_safe(void);
|
2013-10-07 00:01:15 +02:00
|
|
|
void lamexp_sleep(const unsigned int delay);
|
|
|
|
bool lamexp_beep(int beepType);
|
|
|
|
bool lamexp_play_sound(const unsigned short uiSoundIdx, const bool bAsync, const wchar_t *alias = NULL);
|
|
|
|
bool lamexp_play_sound_file(const QString &library, const unsigned short uiSoundIdx, const bool bAsync);
|
|
|
|
bool lamexp_exec_shell(const QWidget *win, const QString &url, const bool explore = false);
|
|
|
|
bool lamexp_exec_shell(const QWidget *win, const QString &url, const QString ¶meters, const QString &directory, const bool explore = false);
|
|
|
|
__int64 lamexp_perfcounter_frequ(void);
|
|
|
|
__int64 lamexp_perfcounter_value(void);
|
|
|
|
bool lamexp_append_sysmenu(const QWidget *win, const unsigned int identifier, const QString &text);
|
|
|
|
bool lamexp_update_sysmenu(const QWidget *win, const unsigned int identifier, const QString &text);
|
|
|
|
bool lamexp_check_sysmenu_msg(void *message, const unsigned int identifier);
|
|
|
|
bool lamexp_enable_close_button(const QWidget *win, const bool bEnable = true);
|
|
|
|
bool lamexp_check_escape_state(void);
|
|
|
|
bool lamexp_change_process_priority(const int priority);
|
|
|
|
bool lamexp_change_process_priority(const QProcess *proc, const int priority);
|
|
|
|
bool lamexp_change_process_priority(void *hProcess, const int priority);
|
|
|
|
bool lamexp_bring_to_front(const QWidget *win);
|
|
|
|
bool lamexp_bring_process_to_front(const unsigned long pid);
|
2013-10-19 16:02:22 +02:00
|
|
|
int lamexp_network_status(void);
|
2013-10-07 00:01:15 +02:00
|
|
|
unsigned long lamexp_process_id(const QProcess *proc);
|
|
|
|
unsigned __int64 lamexp_current_file_time(void);
|
2013-08-23 19:16:40 +02:00
|
|
|
void lamexp_natural_string_sort(QStringList &list, const bool bIgnoreCase);
|
2013-10-07 00:01:15 +02:00
|
|
|
bool lamexp_open_media_file(const QString &mediaFilePath);
|
|
|
|
QString lamexp_path_to_short(const QString &longPath);
|
2012-12-11 22:54:00 +01:00
|
|
|
void lamexp_fatal_exit(const wchar_t* exitMessage, const wchar_t* errorBoxMessage = NULL);
|
2010-11-06 23:04:47 +01:00
|
|
|
|
2010-11-07 16:32:54 +01:00
|
|
|
//Debug-only functions
|
2013-10-06 19:28:12 +02:00
|
|
|
unsigned long lamexp_dbg_private_bytes(void);
|
2010-11-07 16:32:54 +01:00
|
|
|
|
2010-11-06 23:04:47 +01:00
|
|
|
//Helper macros
|
2012-07-29 19:09:15 +02:00
|
|
|
#define LAMEXP_DELETE(PTR) do { if(PTR) { delete PTR; PTR = NULL; } } while(0)
|
|
|
|
#define LAMEXP_DELETE_ARRAY(PTR) do { if(PTR) { delete [] PTR; PTR = NULL; } } while(0)
|
|
|
|
#define LAMEXP_SAFE_FREE(PTR) do { if(PTR) { free((void*) PTR); PTR = NULL; } } while(0)
|
|
|
|
#define LAMEXP_CLOSE(HANDLE) do { if(HANDLE != NULL && HANDLE != INVALID_HANDLE_VALUE) { CloseHandle(HANDLE); HANDLE = NULL; } } while(0)
|
2013-10-21 15:00:55 +02:00
|
|
|
#define QWCHAR(STR) (reinterpret_cast<const wchar_t*>((STR).utf16()))
|
|
|
|
#define WCHAR2QSTR(STR) (QString::fromUtf16(reinterpret_cast<const unsigned short*>((STR))))
|
|
|
|
#define QUTF8(STR) ((STR).toUtf8().constData())
|
|
|
|
#define LAMEXP_BOOL2STR(X) ((X) ? "1" : "0")
|
2011-03-25 16:17:19 +01:00
|
|
|
#define LAMEXP_MAKE_STRING_EX(X) #X
|
|
|
|
#define LAMEXP_MAKE_STRING(X) LAMEXP_MAKE_STRING_EX(X)
|
|
|
|
#define LAMEXP_COMPILER_WARNING(TXT) __pragma(message(__FILE__ "(" LAMEXP_MAKE_STRING(__LINE__) ") : warning: " TXT))
|
2012-04-18 22:53:07 +02:00
|
|
|
#define NOBR(STR) (QString("<nobr>%1</nobr>").arg((STR)).replace("-", "−"))
|
2010-11-06 23:04:47 +01:00
|
|
|
|
|
|
|
//Check for debug build
|
2011-04-14 01:40:11 +02:00
|
|
|
#if defined(_DEBUG) && defined(QT_DEBUG) && !defined(NDEBUG) && !defined(QT_NO_DEBUG)
|
|
|
|
#define LAMEXP_DEBUG (1)
|
|
|
|
#elif defined(NDEBUG) && defined(QT_NO_DEBUG) && !defined(_DEBUG) && !defined(QT_DEBUG)
|
|
|
|
#define LAMEXP_DEBUG (0)
|
2010-11-06 23:04:47 +01:00
|
|
|
#else
|
2011-04-14 01:40:11 +02:00
|
|
|
#error Inconsistent debug defines detected!
|
2010-11-06 23:04:47 +01:00
|
|
|
#endif
|
2010-11-07 16:32:54 +01:00
|
|
|
|
|
|
|
//Memory check
|
2012-04-10 01:25:34 +02:00
|
|
|
#if LAMEXP_DEBUG
|
2013-10-21 15:00:55 +02:00
|
|
|
#define LAMEXP_MEMORY_CHECK(FUNC, RETV, ...) do \
|
|
|
|
{ \
|
|
|
|
SIZE_T _privateBytesBefore = lamexp_dbg_private_bytes(); \
|
|
|
|
RETV = FUNC(__VA_ARGS__); \
|
|
|
|
SIZE_T _privateBytesLeak = (lamexp_dbg_private_bytes() - _privateBytesBefore) / 1024; \
|
|
|
|
if(_privateBytesLeak > 0) { \
|
|
|
|
char _buffer[128]; \
|
|
|
|
_snprintf_s(_buffer, 128, _TRUNCATE, "Memory leak: Lost %u KiloBytes of PrivateUsage memory.\n", _privateBytesLeak); \
|
|
|
|
OutputDebugStringA("----------\n"); \
|
|
|
|
OutputDebugStringA(_buffer); \
|
|
|
|
OutputDebugStringA("----------\n"); \
|
|
|
|
} \
|
2010-11-07 16:32:54 +01:00
|
|
|
} \
|
2013-10-21 15:00:55 +02:00
|
|
|
while(0)
|
2010-11-07 16:32:54 +01:00
|
|
|
#else
|
2013-10-21 15:00:55 +02:00
|
|
|
#define LAMEXP_MEMORY_CHECK(FUNC, RETV, ...) do \
|
|
|
|
{ \
|
|
|
|
RETV = __noop(__VA_ARGS__); \
|
|
|
|
} \
|
|
|
|
while(0)
|
2010-11-07 16:32:54 +01:00
|
|
|
#endif
|
2010-11-13 02:11:15 +01:00
|
|
|
|
|
|
|
//Check for CPU-compatibility options
|
2012-11-12 22:47:13 +01:00
|
|
|
#if !defined(_M_X64) && defined(_MSC_VER) && defined(_M_IX86_FP)
|
2012-11-28 01:16:37 +01:00
|
|
|
#if (_M_IX86_FP != 0)
|
2011-04-07 22:40:47 +02:00
|
|
|
#error We should not enabled SSE or SSE2 in release builds!
|
|
|
|
#endif
|
2010-11-13 02:11:15 +01:00
|
|
|
#endif
|
2013-10-18 20:49:22 +02:00
|
|
|
|
|
|
|
//Helper macro for throwing exceptions
|
2013-10-18 21:37:40 +02:00
|
|
|
#define THROW(MESSAGE) do \
|
|
|
|
{ \
|
|
|
|
throw std::runtime_error((MESSAGE)); \
|
|
|
|
} \
|
|
|
|
while(0)
|
2013-10-18 20:49:22 +02:00
|
|
|
#define THROW_FMT(FORMAT, ...) do \
|
|
|
|
{ \
|
2013-10-18 21:37:40 +02:00
|
|
|
char _error_msg[512]; \
|
|
|
|
_snprintf_s(_error_msg, 512, _TRUNCATE, (FORMAT), __VA_ARGS__); \
|
|
|
|
throw std::runtime_error(_error_msg); \
|
2013-10-18 20:49:22 +02:00
|
|
|
} \
|
|
|
|
while(0)
|