diff options
| author | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-02-15 18:50:06 +0000 | 
|---|---|---|
| committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-02-15 18:50:06 +0000 | 
| commit | fc6833b03927029f5db063c27fad626d2e76404c (patch) | |
| tree | cb98bfcc3c5ae0c79614dd029825925b9d171091 | |
| parent | cca6a63c9ffc4ec5d2ebe5e15e75996d15ec5542 (diff) | |
- warning fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@3615 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
| -rw-r--r-- | plugins/ExternalAPI/m_assocmgr.h | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/plugins/ExternalAPI/m_assocmgr.h b/plugins/ExternalAPI/m_assocmgr.h index 7f0430ec6a..62c7f03ffb 100644 --- a/plugins/ExternalAPI/m_assocmgr.h +++ b/plugins/ExternalAPI/m_assocmgr.h @@ -23,6 +23,11 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.  #ifndef M_ASSOCMGR_H__
  #define M_ASSOCMGR_H__
 +#if defined(_MSC_VER)
 +#pragma warning(push)          /* save warning settings */
 +#pragma warning(disable:4201)  /* nonstandard extension used : nameless struct/union */
 +#endif
 +
  /* Add a new file type   v0.1.0.0+
  Add a new file type to be registered with Windows.
  You probably want to call this event when
 | 
