home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2006 April / DPPRO0406DVD.ISO / Essentials / Programming / Notepad2 / Source / NP2SRC.ZIP / Readme.txt < prev    next >
Encoding:
Text File  |  2004-06-25  |  1.2 KB  |  45 lines

  1. ___________________________
  2. Notepad2 Source Code 1.0.12
  3.  
  4.   This package contains the full source code of Notepad2 1.0.12
  5.   for Windows 9x/Me/NT/2k/XP. Project files for VC++ .NET 7.0
  6.   are included. I think it should be possible to build Notepad2
  7.   with other development tools.
  8.  
  9.   The source code of the Scintilla source code editing component
  10.   can be downloaded from http://www.scintilla.org and must be
  11.   unzipped to the Scintilla subdirectory. The following changes
  12.   are necessary:
  13.  
  14.   Scintilla/include/scintilla.h:
  15.  
  16.     bool Scintilla_RegisterClasses(void *hInstance);
  17.     bool Scintilla_ReleaseResources();
  18.  
  19.   must be modified to
  20.  
  21.     extern "C" bool Scintilla_RegisterClasses(void *hInstance);
  22.     extern "C" bool Scintilla_ReleaseResources();
  23.  
  24.   Scintilla/src/KeyWords.cxx:
  25.  
  26.     #define LINK_LEXER(lexer) extern LexerModule lexer; ...
  27.  
  28.   must be replaced with
  29.  
  30.     #define LINK_LEXER(lexer) void(0)
  31.  
  32. _________
  33. Copyright
  34.  
  35.   Distributed under the terms of the GNU General Public License,
  36.   see License.txt for details.
  37.  
  38.   If you have any comments or questions, please drop me a note:
  39.   textview@bluewin.ch
  40.  
  41.   (c) Florian Balmer 2004
  42.   http://www.flos-freeware.ch
  43.  
  44. ###
  45.