From 30aa26c864fa09b974e3c223ccf907421ebc0759 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Tue, 10 Apr 2018 13:11:16 +0300 Subject: obsolete compatibility code removed from AVS --- plugins/ExternalAPI/m_notify.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/ExternalAPI') diff --git a/plugins/ExternalAPI/m_notify.h b/plugins/ExternalAPI/m_notify.h index e286cd4c13..fe15599a96 100644 --- a/plugins/ExternalAPI/m_notify.h +++ b/plugins/ExternalAPI/m_notify.h @@ -111,14 +111,14 @@ typedef struct tagMNNOTIFYLINK if (dbv.type != DBVT_DWORD) return defValue; return dbv.dVal; } - static __inline const char *MNotifyGetString(HANDLE notifyORtype, const char *name, const char *defValue) + static __inline const char* MNotifyGetString(HANDLE notifyORtype, const char *name, const char *defValue) { DBVARIANT dbv; MNotifyGet(notifyORtype, name, &dbv); if (dbv.type != DBVT_ASCIIZ) return defValue; return dbv.pszVal; } - static __inline const WCHAR *MNotifyGetWString(HANDLE notifyORtype, const char *name, const WCHAR *defValue) + static __inline const WCHAR* MNotifyGetWString(HANDLE notifyORtype, const char *name, const WCHAR *defValue) { DBVARIANT dbv; MNotifyGet(notifyORtype, name, &dbv); -- cgit v1.2.3