home *** CD-ROM | disk | FTP | other *** search
- ___________________________
- Notepad2 Source Code 1.0.12
-
- This package contains the full source code of Notepad2 1.0.12
- for Windows 9x/Me/NT/2k/XP. Project files for VC++ .NET 7.0
- are included. I think it should be possible to build Notepad2
- with other development tools.
-
- The source code of the Scintilla source code editing component
- can be downloaded from http://www.scintilla.org and must be
- unzipped to the Scintilla subdirectory. The following changes
- are necessary:
-
- Scintilla/include/scintilla.h:
-
- bool Scintilla_RegisterClasses(void *hInstance);
- bool Scintilla_ReleaseResources();
-
- must be modified to
-
- extern "C" bool Scintilla_RegisterClasses(void *hInstance);
- extern "C" bool Scintilla_ReleaseResources();
-
- Scintilla/src/KeyWords.cxx:
-
- #define LINK_LEXER(lexer) extern LexerModule lexer; ...
-
- must be replaced with
-
- #define LINK_LEXER(lexer) void(0)
-
- _________
- Copyright
-
- Distributed under the terms of the GNU General Public License,
- see License.txt for details.
-
- If you have any comments or questions, please drop me a note:
- textview@bluewin.ch
-
- (c) Florian Balmer 2004
- http://www.flos-freeware.ch
-
- ###
-