On 7/12/07, Neil Hodgson <[EMAIL PROTECTED]> wrote:
     The code move from Scintilla to SciTE has now been committed and
is available from CVS and from
http://scintilla.sourceforge.net/scite.zip Source
http://scintilla.sourceforge.net/wscite.zip Windows executable

Thanks, Neil.

I see we have exported Lua symbols for the GTK version, but not yet
for the Windows version. The easiest patch I've found involves
luaconf.h:  (in scite\lua\include)

replace line 166 (which is just #define LUA_API extern)
with:
#if defined(_WIN32)
#define LUA_API __declspec(dllexport)
#else
#define LUA_API         extern
#endif

Both mingw and MSVC C++ 6 (yes, I still use it!) are happy with this.

steve d.
_______________________________________________
Scite-interest mailing list
[email protected]
http://mailman.lyra.org/mailman/listinfo/scite-interest

Reply via email to