'LUA_DL_DLL' is not yet defined before the inclusion of 'lua.h'

This commit is contained in:
Roberto Ierusalimschy 2011-11-25 10:52:03 -02:00
parent b0cbe77816
commit 5184ff2096
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
/*
** $Id: loadlib.c,v 1.103 2011/11/09 19:11:20 roberto Exp roberto $
** $Id: loadlib.c,v 1.104 2011/11/10 11:42:58 roberto Exp roberto $
** Dynamic library loader for Lua
** See Copyright Notice in lua.h
**
@ -12,7 +12,7 @@
/*
** if needed, includes windows header before everything else
*/
#if defined(LUA_DL_DLL)
#if defined(_WIN32)
#include <windows.h>
#endif