The current distribution of 1.67 Scite fails to build in VC6 due to the changes added to support 64-bits.
If you add the following to Platform.h: #ifdef _MSC_VER #if _MSC_VER < 1300 #define SetWindowLongPtr SetWindowLong #define GetWindowLongPtr GetWindowLong #define GWLP_USERDATA GWL_USERDATA #define DWLP_USER DWL_USER #define GWLP_WNDPROC GWL_WNDPROC #endif #endif and then #include "Platform.h" in SingleThreadExtension.cxx, Scite will build. Scintilla builds in VC6 without any change. Greg Smith _______________________________________________ Scintilla-interest mailing list [email protected] http://mailman.lyra.org/mailman/listinfo/scintilla-interest
