Moved declaration of EXPORT and CALL inside the include guards. I accidentally placed it outside in revision 336.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@402 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Maarten ter Huurne 2008-08-31 12:22:03 +00:00
parent 2f0eb72ba1
commit 5c6dfa3bbe
1 changed files with 3 additions and 3 deletions

View File

@ -2,6 +2,9 @@
// Common plugin spec, version #1.0 maintained by F|RES
//
#ifndef _PLUGINS_H_INCLUDED__
#define _PLUGINS_H_INCLUDED__
#ifdef _WIN32
#define EXPORT __declspec(dllexport)
#define CALL __cdecl
@ -10,9 +13,6 @@
#define CALL
#endif
#ifndef _PLUGINS_H_INCLUDED__
#define _PLUGINS_H_INCLUDED__
#ifdef _WIN32
#include <windows.h>