You can subscribe to this list here.
2003 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
(19) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(3) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(5) |
Dec
|
From: Gilles D. <dg...@us...> - 2004-11-06 02:12:27
|
Update of /cvsroot/okernel/nrtl/jayartl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2282/jayartl Modified Files: jayartl.cpp jayartl.h Log Message: + add dynamic loader features in the basic toolbox Index: jayartl.h =================================================================== RCS file: /cvsroot/okernel/nrtl/jayartl/jayartl.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** jayartl.h 6 Nov 2004 01:38:35 -0000 1.4 --- jayartl.h 6 Nov 2004 02:12:16 -0000 1.5 *************** *** 689,692 **** --- 689,710 ---- // ---------------------------------------------------------------------------- + // getErrorMessage + // + // NB: single-thread + // ---------------------------------------------------------------------------- + + jcstr_ansi JAYARTL_API getErrorMessage(void); + + // ---------------------------------------------------------------------------- + // Dynamic Module management + // + // NB: single-thread + // ---------------------------------------------------------------------------- + + jcstr_ansi JAYARTL_API dynloadOpen(jcstr_ansi aFilename,jpointer* aHandle); + jcstr_ansi JAYARTL_API dynloadClose(jpointer& aHandle); + jcstr_ansi JAYARTL_API dynloadSymbol(jpointer aHandle,jcstr_ansi aSymbol,jpointer* aPointer); + + // ---------------------------------------------------------------------------- // ---------------------------------------------------------------------------- // Be compatible with C++ Index: jayartl.cpp =================================================================== RCS file: /cvsroot/okernel/nrtl/jayartl/jayartl.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** jayartl.cpp 6 Nov 2004 01:38:35 -0000 1.3 --- jayartl.cpp 6 Nov 2004 02:12:16 -0000 1.4 *************** *** 1051,1054 **** --- 1051,1074 ---- // ============================================================================ // ============================================================================ + // Error message + // + // NB: single-thread + // + // History + // 110x04 dgil Wrote it from scratch + // ============================================================================ + // ============================================================================ + + jcstr_ansi JAYARTL_API getErrorMessage(void) + { + static jchar msg[1024]; + + ::FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM, 0, ::GetLastError(), 0, msg, sizeof(msg), 0); + + return msg; + } + + // ============================================================================ + // ============================================================================ // DYNAMIC MODULE BUILT-IN SUPPORT // *************** *** 1058,1062 **** // ============================================================================ ! // ---------------------------------------------------------------------------- // ============================================================================ --- 1078,1123 ---- // ============================================================================ ! jcstr_ansi JAYARTL_API dynloadOpen(jcstr_ansi aFilename,jpointer* aHandle) ! { ! jcstr_ansi rv = NULL; ! ! UINT oldErrorMode = ::SetErrorMode(0); ! ::SetErrorMode(oldErrorMode | SEM_FAILCRITICALERRORS); ! ! *aHandle = ::LoadLibrary(aFilename); ! ::SetErrorMode(oldErrorMode); ! ! if (!*aHandle) rv = getErrorMessage(); ! ! return rv; ! } ! ! jcstr_ansi JAYARTL_API dynloadClose(jpointer& aHandle) ! { ! jcstr_ansi rv = NULL; ! ! UINT oldErrorMode = ::SetErrorMode(0); ! ::SetErrorMode(oldErrorMode | SEM_FAILCRITICALERRORS); ! ! if (::FreeLibrary(static_cast<HMODULE>(aHandle)) == 0) { ! rv = getErrorMessage(); ! } else { ! aHandle = NULL; ! } ! ::SetErrorMode(oldErrorMode); ! ! return rv; ! } ! ! jcstr_ansi JAYARTL_API dynloadSymbol(jpointer aHandle,jcstr_ansi aSymbol,jpointer* aPointer) ! { ! jcstr_ansi rv = NULL; ! ! *aPointer = ::GetProcAddress(static_cast<HMODULE>(aHandle), aSymbol); ! ! if (aPointer==NULL) rv = getErrorMessage(); ! ! return rv; ! } // ============================================================================ |
Update of /cvsroot/okernel/nrtl/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27994/test Modified Files: TestArray.cpp TestArray.h TestDico.cpp TestDico.h TestList.cpp TestList.h TestString.cpp TestString.h main.cpp precomp.h Log Message: + Update plan + Update copyright headers Index: precomp.h =================================================================== RCS file: /cvsroot/okernel/nrtl/test/precomp.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** precomp.h 14 May 2003 20:36:06 -0000 1.2 --- precomp.h 6 Nov 2004 01:38:35 -0000 1.3 *************** *** 22,26 **** The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2003 the Initial Developer. All Rights Reserved. --- 22,26 ---- The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2004 the Initial Developer. All Rights Reserved. Index: main.cpp =================================================================== RCS file: /cvsroot/okernel/nrtl/test/main.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** main.cpp 14 May 2003 20:36:06 -0000 1.3 --- main.cpp 6 Nov 2004 01:38:35 -0000 1.4 *************** *** 22,26 **** The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2003 the Initial Developer. All Rights Reserved. --- 22,26 ---- The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2004 the Initial Developer. All Rights Reserved. Index: TestDico.h =================================================================== RCS file: /cvsroot/okernel/nrtl/test/TestDico.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TestDico.h 14 May 2003 20:36:06 -0000 1.2 --- TestDico.h 6 Nov 2004 01:38:35 -0000 1.3 *************** *** 23,27 **** The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2003 the Initial Developer. All Rights Reserved. --- 23,27 ---- The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2004 the Initial Developer. All Rights Reserved. Index: TestList.h =================================================================== RCS file: /cvsroot/okernel/nrtl/test/TestList.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TestList.h 14 May 2003 20:36:06 -0000 1.2 --- TestList.h 6 Nov 2004 01:38:35 -0000 1.3 *************** *** 23,27 **** The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2003 the Initial Developer. All Rights Reserved. --- 23,27 ---- The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2004 the Initial Developer. All Rights Reserved. Index: TestString.h =================================================================== RCS file: /cvsroot/okernel/nrtl/test/TestString.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TestString.h 14 May 2003 20:36:06 -0000 1.2 --- TestString.h 6 Nov 2004 01:38:35 -0000 1.3 *************** *** 23,27 **** The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2003 the Initial Developer. All Rights Reserved. --- 23,27 ---- The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2004 the Initial Developer. All Rights Reserved. Index: TestArray.h =================================================================== RCS file: /cvsroot/okernel/nrtl/test/TestArray.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TestArray.h 14 May 2003 20:36:06 -0000 1.2 --- TestArray.h 6 Nov 2004 01:38:35 -0000 1.3 *************** *** 23,27 **** The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2003 the Initial Developer. All Rights Reserved. --- 23,27 ---- The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2004 the Initial Developer. All Rights Reserved. Index: TestList.cpp =================================================================== RCS file: /cvsroot/okernel/nrtl/test/TestList.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TestList.cpp 14 May 2003 20:36:06 -0000 1.2 --- TestList.cpp 6 Nov 2004 01:38:35 -0000 1.3 *************** *** 22,26 **** The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2003 the Initial Developer. All Rights Reserved. --- 22,26 ---- The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2004 the Initial Developer. All Rights Reserved. Index: TestArray.cpp =================================================================== RCS file: /cvsroot/okernel/nrtl/test/TestArray.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TestArray.cpp 14 May 2003 20:36:06 -0000 1.2 --- TestArray.cpp 6 Nov 2004 01:38:35 -0000 1.3 *************** *** 22,26 **** The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2003 the Initial Developer. All Rights Reserved. --- 22,26 ---- The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2004 the Initial Developer. All Rights Reserved. Index: TestString.cpp =================================================================== RCS file: /cvsroot/okernel/nrtl/test/TestString.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TestString.cpp 14 May 2003 20:36:06 -0000 1.2 --- TestString.cpp 6 Nov 2004 01:38:35 -0000 1.3 *************** *** 22,26 **** The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2003 the Initial Developer. All Rights Reserved. --- 22,26 ---- The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2004 the Initial Developer. All Rights Reserved. Index: TestDico.cpp =================================================================== RCS file: /cvsroot/okernel/nrtl/test/TestDico.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TestDico.cpp 14 May 2003 20:36:06 -0000 1.2 --- TestDico.cpp 6 Nov 2004 01:38:35 -0000 1.3 *************** *** 22,26 **** The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2003 the Initial Developer. All Rights Reserved. --- 22,26 ---- The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2004 the Initial Developer. All Rights Reserved. |
From: Gilles D. <dg...@us...> - 2004-11-06 01:38:46
|
Update of /cvsroot/okernel/nrtl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27994 Modified Files: changelog.txt copying.txt dllmain.cpp kbitv.cpp kbuffer.cpp kclass.cpp klist.cpp knetobject.cpp ksmall.cpp kstring.cpp ktab.cpp ktree.cpp nrtl.h nrtl.rc nrtl.rcv precomp.h readme.txt todo.txt Log Message: + Update plan + Update copyright headers Index: todo.txt =================================================================== RCS file: /cvsroot/okernel/nrtl/todo.txt,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** todo.txt 14 May 2003 20:37:57 -0000 1.3 --- todo.txt 6 Nov 2004 01:38:34 -0000 1.4 *************** *** 4,24 **** * ! * Roadmap to the 4.0 release (updated 14 may 2003) PRIORITY WHAT ! 1 Socket Object ! 1 Net object support ! 1 Spidermonkey integration ! 1 Expat integration ! 1 Associative Memory 2 Add a Class Object ! 1 Reflexive behaviour (kind of probe) 3 Finish the Tree implementation --- 4,28 ---- * ! * Roadmap to the 5.0 release (updated 6 november 2004) PRIORITY WHAT ! 1 Module Object ! 1 Python integration ! 2 Socket Object ! 2 Net object support ! 2 Expat integration ! ! 2 Associative Memory 2 Add a Class Object ! 2 Reflexive behaviour (kind of probe) ! ! 3 Spidermonkey integration 3 Finish the Tree implementation Index: klist.cpp =================================================================== RCS file: /cvsroot/okernel/nrtl/klist.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** klist.cpp 14 May 2003 20:35:14 -0000 1.2 --- klist.cpp 6 Nov 2004 01:38:34 -0000 1.3 *************** *** 22,26 **** The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2003 the Initial Developer. All Rights Reserved. --- 22,26 ---- The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2004 the Initial Developer. All Rights Reserved. Index: nrtl.rc =================================================================== RCS file: /cvsroot/okernel/nrtl/nrtl.rc,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** nrtl.rc 14 May 2003 20:35:36 -0000 1.2 --- nrtl.rc 6 Nov 2004 01:38:34 -0000 1.3 *************** *** 22,26 **** The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2003 the Initial Developer. All Rights Reserved. --- 22,26 ---- The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2004 the Initial Developer. All Rights Reserved. Index: dllmain.cpp =================================================================== RCS file: /cvsroot/okernel/nrtl/dllmain.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** dllmain.cpp 14 May 2003 20:35:14 -0000 1.2 --- dllmain.cpp 6 Nov 2004 01:38:34 -0000 1.3 *************** *** 22,26 **** The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2003 the Initial Developer. All Rights Reserved. --- 22,26 ---- The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2004 the Initial Developer. All Rights Reserved. Index: kclass.cpp =================================================================== RCS file: /cvsroot/okernel/nrtl/kclass.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** kclass.cpp 14 May 2003 22:46:12 -0000 1.4 --- kclass.cpp 6 Nov 2004 01:38:34 -0000 1.5 *************** *** 22,26 **** The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2003 the Initial Developer. All Rights Reserved. --- 22,26 ---- The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2004 the Initial Developer. All Rights Reserved. Index: ktab.cpp =================================================================== RCS file: /cvsroot/okernel/nrtl/ktab.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ktab.cpp 14 May 2003 20:35:14 -0000 1.2 --- ktab.cpp 6 Nov 2004 01:38:34 -0000 1.3 *************** *** 22,26 **** The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2003 the Initial Developer. All Rights Reserved. --- 22,26 ---- The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2004 the Initial Developer. All Rights Reserved. Index: changelog.txt =================================================================== RCS file: /cvsroot/okernel/nrtl/changelog.txt,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** changelog.txt 14 May 2003 20:35:36 -0000 1.2 --- changelog.txt 6 Nov 2004 01:38:34 -0000 1.3 *************** *** 1,5 **** ============================================================================== * ! * ChangeLog NTRL 2003-->1992 (a ten years project !) * * See copying.txt for more information about license information --- 1,5 ---- ============================================================================== * ! * ChangeLog NTRL 2004 --> 1992 (more than ten years project !) * * See copying.txt for more information about license information *************** *** 7,11 **** ============================================================================== ! 051403 dgil Re-Start the version 4.0 project. high-level goals are: --- 7,28 ---- ============================================================================== ! 110604 dgil Start the version 5.0 project. ! ! high-level goals are: ! - runtime module support ! - python integration ! - Expat integration ! (http://lxr.mozilla.org/seamonkey/source/expat/expat.html) ! - network marshall/unmarshall and object brokering ! - associative memory ! - reflexive behaviour (kind of probe) ! ! Long term mission is to provide backend infrastructure : ! Pegais (http://sourceforge.net/projects/pegais) ! XElements (http://sourceforge.net/projects/xelements) ! ! ============================================================================== ! ! 051403 dgil Re-Start the version 4.0 project. CANCELLED high-level goals are: Index: knetobject.cpp =================================================================== RCS file: /cvsroot/okernel/nrtl/knetobject.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** knetobject.cpp 22 May 2004 13:17:04 -0000 1.3 --- knetobject.cpp 6 Nov 2004 01:38:34 -0000 1.4 *************** *** 22,26 **** The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2003 the Initial Developer. All Rights Reserved. --- 22,26 ---- The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2004 the Initial Developer. All Rights Reserved. Index: copying.txt =================================================================== RCS file: /cvsroot/okernel/nrtl/copying.txt,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** copying.txt 14 May 2003 20:35:36 -0000 1.2 --- copying.txt 6 Nov 2004 01:38:34 -0000 1.3 *************** *** 1,5 **** This is the file "copying.txt". ! This document is Copyright (C) 1993-2003 Gilles Dumortier and may be distributed verbatim, but changing it is not allowed. --- 1,5 ---- This is the file "copying.txt". ! This document is Copyright (C) 1993-2004 Gilles Dumortier and may be distributed verbatim, but changing it is not allowed. *************** *** 20,24 **** The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2003 the Initial Developer. All Rights Reserved. --- 20,24 ---- The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2004 the Initial Developer. All Rights Reserved. Index: kbuffer.cpp =================================================================== RCS file: /cvsroot/okernel/nrtl/kbuffer.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** kbuffer.cpp 14 May 2003 20:35:14 -0000 1.2 --- kbuffer.cpp 6 Nov 2004 01:38:34 -0000 1.3 *************** *** 22,26 **** The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2003 the Initial Developer. All Rights Reserved. --- 22,26 ---- The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2004 the Initial Developer. All Rights Reserved. Index: ktree.cpp =================================================================== RCS file: /cvsroot/okernel/nrtl/ktree.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ktree.cpp 14 May 2003 20:35:14 -0000 1.2 --- ktree.cpp 6 Nov 2004 01:38:34 -0000 1.3 *************** *** 22,26 **** The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2003 the Initial Developer. All Rights Reserved. --- 22,26 ---- The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2004 the Initial Developer. All Rights Reserved. Index: precomp.h =================================================================== RCS file: /cvsroot/okernel/nrtl/precomp.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** precomp.h 14 May 2003 20:35:36 -0000 1.2 --- precomp.h 6 Nov 2004 01:38:34 -0000 1.3 *************** *** 22,26 **** The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2003 the Initial Developer. All Rights Reserved. --- 22,26 ---- The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2004 the Initial Developer. All Rights Reserved. Index: ksmall.cpp =================================================================== RCS file: /cvsroot/okernel/nrtl/ksmall.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ksmall.cpp 14 May 2003 20:35:14 -0000 1.2 --- ksmall.cpp 6 Nov 2004 01:38:34 -0000 1.3 *************** *** 22,26 **** The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2003 the Initial Developer. All Rights Reserved. --- 22,26 ---- The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2004 the Initial Developer. All Rights Reserved. Index: kstring.cpp =================================================================== RCS file: /cvsroot/okernel/nrtl/kstring.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** kstring.cpp 14 May 2003 20:35:14 -0000 1.2 --- kstring.cpp 6 Nov 2004 01:38:34 -0000 1.3 *************** *** 22,26 **** The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2003 the Initial Developer. All Rights Reserved. --- 22,26 ---- The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2004 the Initial Developer. All Rights Reserved. Index: nrtl.rcv =================================================================== RCS file: /cvsroot/okernel/nrtl/nrtl.rcv,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** nrtl.rcv 14 May 2003 20:35:36 -0000 1.3 --- nrtl.rcv 6 Nov 2004 01:38:34 -0000 1.4 *************** *** 22,26 **** The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2003 the Initial Developer. All Rights Reserved. --- 22,26 ---- The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2004 the Initial Developer. All Rights Reserved. *************** *** 51,56 **** #define VER_FILETYPE VFT_DLL #define VER_FILESUBTYPE 0 ! #define VER_FILEVERSION 4,0,0,26 ! #define VER_FILEVERSION_STR "Version 4.0 Build 26" #define VER_FILEDESCRIPTION_STR "Nunki Runtime Library" #define VER_INTERNALNAME_STR "NRTLLIBRARY" --- 51,56 ---- #define VER_FILETYPE VFT_DLL #define VER_FILESUBTYPE 0 ! #define VER_FILEVERSION 5,0,0,27 ! #define VER_FILEVERSION_STR "Version 5.0 Build 27" #define VER_FILEDESCRIPTION_STR "Nunki Runtime Library" #define VER_INTERNALNAME_STR "NRTLLIBRARY" Index: nrtl.h =================================================================== RCS file: /cvsroot/okernel/nrtl/nrtl.h,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** nrtl.h 22 May 2004 13:17:04 -0000 1.8 --- nrtl.h 6 Nov 2004 01:38:34 -0000 1.9 *************** *** 23,27 **** The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2003 the Initial Developer. All Rights Reserved. --- 23,27 ---- The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2004 the Initial Developer. All Rights Reserved. *************** *** 73,80 **** // =========================================================================== ! #define NRTL_HEADER_RELEASE_05222004 ! #define NTRL_MAJOR_VERSION 4 ! #define NTRL_MINOR_VERSION 1 // =========================================================================== --- 73,80 ---- // =========================================================================== ! #define NRTL_HEADER_RELEASE_11062004 ! #define NTRL_MAJOR_VERSION 5 ! #define NTRL_MINOR_VERSION 0 // =========================================================================== Index: readme.txt =================================================================== RCS file: /cvsroot/okernel/nrtl/readme.txt,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** readme.txt 8 Feb 2003 15:43:16 -0000 1.1 --- readme.txt 6 Nov 2004 01:38:34 -0000 1.2 *************** *** 13,16 **** --- 13,19 ---- Context object ; default is undefined. + NRTL_PYTHON_INTEGRATION + if defined, add python integration functionnalities ; default is undefined. + NTRL_NETWORK if defined, add the network marshalling for the objects. This symbol is also Index: kbitv.cpp =================================================================== RCS file: /cvsroot/okernel/nrtl/kbitv.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** kbitv.cpp 14 May 2003 20:35:14 -0000 1.2 --- kbitv.cpp 6 Nov 2004 01:38:34 -0000 1.3 *************** *** 22,26 **** The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2003 the Initial Developer. All Rights Reserved. --- 22,26 ---- The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2004 the Initial Developer. All Rights Reserved. |
From: Gilles D. <dg...@us...> - 2004-11-06 01:38:45
|
Update of /cvsroot/okernel/nrtl/jayartl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27994/jayartl Modified Files: common.ver jayartl.cpp jayartl.h jayartl.rc jayartl.rcv Log Message: + Update plan + Update copyright headers Index: jayartl.h =================================================================== RCS file: /cvsroot/okernel/nrtl/jayartl/jayartl.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** jayartl.h 22 May 2004 13:15:36 -0000 1.3 --- jayartl.h 6 Nov 2004 01:38:35 -0000 1.4 *************** *** 22,26 **** The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1999-2003 the Initial Developer. All Rights Reserved. --- 22,26 ---- The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1999-2004 the Initial Developer. All Rights Reserved. *************** *** 60,63 **** --- 60,65 ---- or JAYARTL_OWNMEMFUNC use jaya memory functions + JAYARTL_DYNMODULE provide dynamic module built-in support + ============================================================================ History Rev Description *************** *** 65,68 **** --- 67,71 ---- 112402 dgil Change license to MPL/GPL/LGPL 052204 pive /RELEASE and /FILEALIGN directives not supported by .NET + 11xx04 dgil Dynamic module built-in support ============================================================================ */ *************** *** 74,80 **** #define __JAYARTL_H ! #define __JAYARTL_MAJOR_VERSION 1 ! #define __JAYARTL_MINOR_VERSION 2 ! #define __JAYARTL_HEADER 11242002 // ---------------------------------------------------------------------------- --- 77,83 ---- #define __JAYARTL_H ! #define __JAYARTL_MAJOR_VERSION 2 ! #define __JAYARTL_MINOR_VERSION 0 ! #define __JAYARTL_HEADER 11062004 // ---------------------------------------------------------------------------- *************** *** 216,220 **** #if _MSC_VER < 1300 ! #pragma comment(linker,"/RELEASE") --- 219,223 ---- #if _MSC_VER < 1300 ! #pragma comment(linker,"/RELEASE") Index: jayartl.rc =================================================================== RCS file: /cvsroot/okernel/nrtl/jayartl/jayartl.rc,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** jayartl.rc 14 May 2003 20:36:06 -0000 1.2 --- jayartl.rc 6 Nov 2004 01:38:35 -0000 1.3 *************** *** 19,23 **** The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1999-2003 the Initial Developer. All Rights Reserved. --- 19,23 ---- The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1999-2004 the Initial Developer. All Rights Reserved. Index: jayartl.cpp =================================================================== RCS file: /cvsroot/okernel/nrtl/jayartl/jayartl.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** jayartl.cpp 14 May 2003 20:36:06 -0000 1.2 --- jayartl.cpp 6 Nov 2004 01:38:35 -0000 1.3 *************** *** 19,23 **** The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1999-2003 the Initial Developer. All Rights Reserved. --- 19,23 ---- The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1999-2004 the Initial Developer. All Rights Reserved. *************** *** 43,46 **** --- 43,47 ---- 031702 dgil strlcat / strlcpy - Secure String Manipulators 112402 dgil Change license to MPL/GPL/LGPL + 11xx04 dgil Dynamic module built-in support ============================================================================ */ *************** *** 1048,1050 **** --- 1049,1064 ---- } + // ============================================================================ + // ============================================================================ + // DYNAMIC MODULE BUILT-IN SUPPORT + // + // History + // 110x04 dgil Wrote it from scratch + // ============================================================================ + // ============================================================================ + // ---------------------------------------------------------------------------- + + // ============================================================================ + // That's all folks ! + // ============================================================================ Index: common.ver =================================================================== RCS file: /cvsroot/okernel/nrtl/jayartl/common.ver,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** common.ver 8 Feb 2003 15:45:20 -0000 1.1 --- common.ver 6 Nov 2004 01:38:35 -0000 1.2 *************** *** 22,26 **** The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1999-2002 the Initial Developer. All Rights Reserved. --- 22,26 ---- The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1999-2004 the Initial Developer. All Rights Reserved. Index: jayartl.rcv =================================================================== RCS file: /cvsroot/okernel/nrtl/jayartl/jayartl.rcv,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** jayartl.rcv 22 May 2004 13:15:36 -0000 1.3 --- jayartl.rcv 6 Nov 2004 01:38:35 -0000 1.4 *************** *** 19,23 **** The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1999-2003 the Initial Developer. All Rights Reserved. --- 19,23 ---- The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1999-2004 the Initial Developer. All Rights Reserved. *************** *** 48,53 **** #define VER_FILETYPE VFT_DLL #define VER_FILESUBTYPE 0 ! #define VER_FILEVERSION 1,2,0,6 ! #define VER_FILEVERSION_STR "Version 1.2 Build 6" #define VER_FILEDESCRIPTION_STR "Jaya RunTime Library" #define VER_INTERNALNAME_STR "jayaRTL" --- 48,53 ---- #define VER_FILETYPE VFT_DLL #define VER_FILESUBTYPE 0 ! #define VER_FILEVERSION 2,0,0,7 ! #define VER_FILEVERSION_STR "Version 2.0 Build 7" #define VER_FILEDESCRIPTION_STR "Jaya RunTime Library" #define VER_INTERNALNAME_STR "jayaRTL" *************** *** 61,65 **** #define VER_COMPANYNAME_STR VER_AUTHOR #define VER_LEGALCOPYRIGHT_STR "Copyright \251 Gilles Dumortier," ! #define VER_LEGALCOPYRIGHT_YEARS "1999-2003" #define VER_COPYRIGHTINFO_STR VER_LEGALCOPYRIGHT_STR VER_LEGALCOPYRIGHT_YEARS #define VER_PRODUCTNAME_STR "\256JayaRTL\0" --- 61,65 ---- #define VER_COMPANYNAME_STR VER_AUTHOR #define VER_LEGALCOPYRIGHT_STR "Copyright \251 Gilles Dumortier," ! #define VER_LEGALCOPYRIGHT_YEARS "1999-2004" #define VER_COPYRIGHTINFO_STR VER_LEGALCOPYRIGHT_STR VER_LEGALCOPYRIGHT_YEARS #define VER_PRODUCTNAME_STR "\256JayaRTL\0" |
From: Gilles D. <dg...@us...> - 2004-11-06 01:38:45
|
Update of /cvsroot/okernel/nrtl/inc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27994/inc Modified Files: version.h Log Message: + Update plan + Update copyright headers Index: version.h =================================================================== RCS file: /cvsroot/okernel/nrtl/inc/version.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** version.h 14 May 2003 20:36:06 -0000 1.2 --- version.h 6 Nov 2004 01:38:34 -0000 1.3 *************** *** 6,10 **** This file is only modified by the official builder. ! Copyright (C) 1999-2003 Gilles Dumortier [dgil] Permission is granted to any individual to use, copy, or redistribute --- 6,10 ---- This file is only modified by the official builder. ! Copyright (C) 1999-2004 Gilles Dumortier [dgil] Permission is granted to any individual to use, copy, or redistribute *************** *** 82,86 **** #define VER_LEGALTRADEMARKS_STR TEXT("\256NRTL property of Gilles Dumortier.\0") #define VER_LEGALCOPYRIGHT_STR TEXT("Copyright \251 Gilles Dumortier,") ! #define VER_LEGALCOPYRIGHT_YEARS TEXT("1992-2003") #define VER_COPYRIGHTINFO_STR VER_LEGALCOPYRIGHT_STR VER_LEGALCOPYRIGHT_YEARS --- 82,86 ---- #define VER_LEGALTRADEMARKS_STR TEXT("\256NRTL property of Gilles Dumortier.\0") #define VER_LEGALCOPYRIGHT_STR TEXT("Copyright \251 Gilles Dumortier,") ! #define VER_LEGALCOPYRIGHT_YEARS TEXT("1992-2004") #define VER_COPYRIGHTINFO_STR VER_LEGALCOPYRIGHT_STR VER_LEGALCOPYRIGHT_YEARS |
From: Pierre V. <pi...@us...> - 2004-05-22 13:17:14
|
Update of /cvsroot/okernel/nrtl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19385 Modified Files: nrtl.h knetobject.cpp Added Files: nrtl.vcproj Log Message: [pive] Visual Studio .NET (VC 7.0) support for jayaRTL and OKernel. --- NEW FILE: nrtl.vcproj --- <?xml version="1.0" encoding="Windows-1252"?> <VisualStudioProject ProjectType="Visual C++" Version="7.10" Name="nrtl" ProjectGUID="{91EA0B2D-D444-4D54-9286-ACEAFA506527}" SccProjectName="" SccLocalPath=""> <Platforms> <Platform Name="Win32"/> </Platforms> <Configurations> <Configuration Name="Release Unicode|Win32" OutputDirectory=".\Obj_Release_Unicode" IntermediateDirectory=".\Obj_Release_Unicode" ConfigurationType="2" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1"> <Tool Name="VCCLCompilerTool" AdditionalOptions="/vmg" Optimization="2" InlineFunctionExpansion="1" AdditionalIncludeDirectories=".,jayartl" PreprocessorDefinitions="NDEBUG;UNICODE;WIN32;_WINDOWS;JAYARTL_INTERNAL;JAYARTL_STANDARDMEM;NTRL_NETWORK" StringPooling="TRUE" RuntimeLibrary="2" EnableFunctionLevelLinking="TRUE" UsePrecompiledHeader="2" PrecompiledHeaderFile=".\Obj_Release_Unicode/nrtl.pch" AssemblerListingLocation=".\Obj_Release_Unicode/" ObjectFile=".\Obj_Release_Unicode/" ProgramDataBaseFileName=".\Obj_Release_Unicode/" WarningLevel="3" SuppressStartupBanner="TRUE" CompileAs="0"/> <Tool Name="VCCustomBuildTool"/> <Tool Name="VCLinkerTool" OutputFile="Obj_Release_Unicode/nrtluni.dll" LinkIncremental="1" SuppressStartupBanner="TRUE" ProgramDatabaseFile=".\Obj_Release_Unicode/nrtluni.pdb" SubSystem="2" ImportLibrary=".\Obj_Release_Unicode/nrtluni.lib" TargetMachine="1"/> <Tool Name="VCMIDLTool" PreprocessorDefinitions="NDEBUG" MkTypLibCompatible="TRUE" SuppressStartupBanner="TRUE" TargetEnvironment="1" TypeLibraryName=".\Obj_Release_Unicode/nrtl.tlb" HeaderFileName=""/> <Tool Name="VCPostBuildEventTool" Description="release unicode" CommandLine="relu.bat"/> <Tool Name="VCPreBuildEventTool"/> <Tool Name="VCPreLinkEventTool"/> <Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="NDEBUG" Culture="1047" AdditionalIncludeDirectories="\nrtl\inc"/> <Tool Name="VCWebServiceProxyGeneratorTool"/> <Tool Name="VCXMLDataGeneratorTool"/> <Tool Name="VCWebDeploymentTool"/> <Tool Name="VCManagedWrapperGeneratorTool"/> <Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/> </Configuration> <Configuration Name="Debug|Win32" OutputDirectory=".\Obj_Debug" IntermediateDirectory=".\Obj_Debug" ConfigurationType="2" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE"> <Tool Name="VCCLCompilerTool" AdditionalOptions="/vmg" Optimization="0" AdditionalIncludeDirectories=".,jayartl" PreprocessorDefinitions="_DEBUG;WIN32;_WINDOWS;JAYARTL_INTERNAL;JAYARTL_STANDARDMEM;NTRL_NETWORK" ExceptionHandling="TRUE" RuntimeLibrary="3" UsePrecompiledHeader="2" PrecompiledHeaderFile=".\Obj_Debug/nrtl.pch" AssemblerListingLocation=".\Obj_Debug/" ObjectFile=".\Obj_Debug/" ProgramDataBaseFileName=".\Obj_Debug/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" CompileAs="0"/> <Tool Name="VCCustomBuildTool"/> <Tool Name="VCLinkerTool" OutputFile=".\Obj_Debug/nrtl.dll" LinkIncremental="1" SuppressStartupBanner="TRUE" GenerateDebugInformation="TRUE" ProgramDatabaseFile=".\Obj_Debug/nrtl.pdb" SubSystem="2" ImportLibrary=".\Obj_Debug/nrtl.lib" TargetMachine="1"/> <Tool Name="VCMIDLTool" PreprocessorDefinitions="_DEBUG" MkTypLibCompatible="TRUE" SuppressStartupBanner="TRUE" TargetEnvironment="1" TypeLibraryName=".\Obj_Debug/nrtl.tlb" HeaderFileName=""/> <Tool Name="VCPostBuildEventTool" Description="debug" CommandLine="deb.bat"/> <Tool Name="VCPreBuildEventTool"/> <Tool Name="VCPreLinkEventTool"/> <Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_DEBUG" Culture="1047" AdditionalIncludeDirectories="\nrtl\inc"/> <Tool Name="VCWebServiceProxyGeneratorTool"/> <Tool Name="VCXMLDataGeneratorTool"/> <Tool Name="VCWebDeploymentTool"/> <Tool Name="VCManagedWrapperGeneratorTool"/> <Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/> </Configuration> <Configuration Name="Debug Unicode|Win32" OutputDirectory=".\Obj_Debug_Unicode" IntermediateDirectory=".\Obj_Debug_Unicode" ConfigurationType="2" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1"> <Tool Name="VCCLCompilerTool" AdditionalOptions="/vmg" Optimization="0" AdditionalIncludeDirectories=".,jayartl" PreprocessorDefinitions="_DEBUG;UNICODE;WIN32;_WINDOWS;JAYARTL_INTERNAL;JAYARTL_STANDARDMEM;NTRL_NETWORK" RuntimeLibrary="3" UsePrecompiledHeader="2" PrecompiledHeaderFile=".\Obj_Debug_Unicode/nrtl.pch" AssemblerListingLocation=".\Obj_Debug_Unicode/" ObjectFile=".\Obj_Debug_Unicode/" ProgramDataBaseFileName=".\Obj_Debug_Unicode/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" CompileAs="0"/> <Tool Name="VCCustomBuildTool"/> <Tool Name="VCLinkerTool" OutputFile="Obj_Debug_Unicode/nrtluni.dll" LinkIncremental="1" SuppressStartupBanner="TRUE" GenerateDebugInformation="TRUE" ProgramDatabaseFile=".\Obj_Debug_Unicode/nrtluni.pdb" SubSystem="2" ImportLibrary=".\Obj_Debug_Unicode/nrtluni.lib" TargetMachine="1"/> <Tool Name="VCMIDLTool" PreprocessorDefinitions="_DEBUG" MkTypLibCompatible="TRUE" SuppressStartupBanner="TRUE" TargetEnvironment="1" TypeLibraryName=".\Obj_Debug_Unicode/nrtl.tlb" HeaderFileName=""/> <Tool Name="VCPostBuildEventTool" Description="debug unicode" CommandLine="debu.bat"/> <Tool Name="VCPreBuildEventTool"/> <Tool Name="VCPreLinkEventTool"/> <Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_DEBUG" Culture="1047" AdditionalIncludeDirectories="\nrtl\inc"/> <Tool Name="VCWebServiceProxyGeneratorTool"/> <Tool Name="VCXMLDataGeneratorTool"/> <Tool Name="VCWebDeploymentTool"/> <Tool Name="VCManagedWrapperGeneratorTool"/> <Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/> </Configuration> <Configuration Name="Release|Win32" OutputDirectory=".\Obj_Release" IntermediateDirectory=".\Obj_Release" ConfigurationType="2" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE"> <Tool Name="VCCLCompilerTool" AdditionalOptions="/vmg" Optimization="2" InlineFunctionExpansion="1" AdditionalIncludeDirectories=".,jayartl" PreprocessorDefinitions="NDEBUG;WIN32;_WINDOWS;JAYARTL_INTERNAL;JAYARTL_STANDARDMEM;NTRL_NETWORK" StringPooling="TRUE" RuntimeLibrary="2" EnableFunctionLevelLinking="TRUE" UsePrecompiledHeader="2" PrecompiledHeaderFile=".\Obj_Release/nrtl.pch" AssemblerListingLocation=".\Obj_Release/" ObjectFile=".\Obj_Release/" ProgramDataBaseFileName=".\Obj_Release/" WarningLevel="3" SuppressStartupBanner="TRUE" CompileAs="0"/> <Tool Name="VCCustomBuildTool"/> <Tool Name="VCLinkerTool" OutputFile=".\Obj_Release/nrtl.dll" LinkIncremental="1" SuppressStartupBanner="TRUE" ProgramDatabaseFile=".\Obj_Release/nrtl.pdb" SubSystem="2" ImportLibrary=".\Obj_Release/nrtl.lib" TargetMachine="1"/> <Tool Name="VCMIDLTool" PreprocessorDefinitions="NDEBUG" MkTypLibCompatible="TRUE" SuppressStartupBanner="TRUE" TargetEnvironment="1" TypeLibraryName=".\Obj_Release/nrtl.tlb" HeaderFileName=""/> <Tool Name="VCPostBuildEventTool" Description="release" CommandLine="rel.bat"/> <Tool Name="VCPreBuildEventTool"/> <Tool Name="VCPreLinkEventTool"/> <Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="NDEBUG" Culture="1047" AdditionalIncludeDirectories="\nrtl\inc"/> <Tool Name="VCWebServiceProxyGeneratorTool"/> <Tool Name="VCXMLDataGeneratorTool"/> <Tool Name="VCWebDeploymentTool"/> <Tool Name="VCManagedWrapperGeneratorTool"/> <Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/> </Configuration> </Configurations> <References> </References> <Files> <Filter Name="Source Files" Filter="*.cpp"> <File RelativePath="dllmain.cpp"> <FileConfiguration Name="Release Unicode|Win32"> <Tool Name="VCCLCompilerTool" Optimization="2" AdditionalIncludeDirectories="" PreprocessorDefinitions="NDEBUG;_UNICODE;UNICODE;WIN32;_WINDOWS;JAYARTL_INTERNAL;JAYARTL_STANDARDMEM;NTRL_NETWORK;$(NoInherit)"/> </FileConfiguration> <FileConfiguration Name="Debug|Win32"> <Tool Name="VCCLCompilerTool" Optimization="0" AdditionalIncludeDirectories="" PreprocessorDefinitions="_DEBUG;WIN32;_WINDOWS;JAYARTL_INTERNAL;JAYARTL_STANDARDMEM;NTRL_NETWORK;$(NoInherit)"/> </FileConfiguration> <FileConfiguration Name="Debug Unicode|Win32"> <Tool Name="VCCLCompilerTool" Optimization="0" AdditionalIncludeDirectories="" PreprocessorDefinitions="_DEBUG;_UNICODE;UNICODE;WIN32;_WINDOWS;JAYARTL_INTERNAL;JAYARTL_STANDARDMEM;NTRL_NETWORK;$(NoInherit)"/> </FileConfiguration> <FileConfiguration Name="Release|Win32"> <Tool Name="VCCLCompilerTool" Optimization="2" AdditionalIncludeDirectories="" PreprocessorDefinitions="NDEBUG;WIN32;_WINDOWS;JAYARTL_INTERNAL;JAYARTL_STANDARDMEM;NTRL_NETWORK;$(NoInherit)"/> </FileConfiguration> </File> <File RelativePath="jayartl\jayartl.cpp"> <FileConfiguration Name="Release Unicode|Win32"> <Tool Name="VCCLCompilerTool" Optimization="2" AdditionalIncludeDirectories="" PreprocessorDefinitions="NDEBUG;_UNICODE;UNICODE;WIN32;_WINDOWS;JAYARTL_INTERNAL;JAYARTL_STANDARDMEM;NTRL_NETWORK;$(NoInherit)"/> </FileConfiguration> <FileConfiguration Name="Debug|Win32"> <Tool Name="VCCLCompilerTool" Optimization="0" AdditionalIncludeDirectories="" PreprocessorDefinitions="_DEBUG;WIN32;_WINDOWS;JAYARTL_INTERNAL;JAYARTL_STANDARDMEM;NTRL_NETWORK;$(NoInherit)"/> </FileConfiguration> <FileConfiguration Name="Debug Unicode|Win32"> <Tool Name="VCCLCompilerTool" Optimization="0" AdditionalIncludeDirectories="" PreprocessorDefinitions="_DEBUG;_UNICODE;UNICODE;WIN32;_WINDOWS;JAYARTL_INTERNAL;JAYARTL_STANDARDMEM;NTRL_NETWORK;$(NoInherit)"/> </FileConfiguration> <FileConfiguration Name="Release|Win32"> <Tool Name="VCCLCompilerTool" Optimization="2" AdditionalIncludeDirectories="" PreprocessorDefinitions="NDEBUG;WIN32;_WINDOWS;JAYARTL_INTERNAL;JAYARTL_STANDARDMEM;NTRL_NETWORK;$(NoInherit)"/> </FileConfiguration> </File> <File RelativePath="kbitv.cpp"> <FileConfiguration Name="Release Unicode|Win32"> <Tool Name="VCCLCompilerTool" Optimization="2" AdditionalIncludeDirectories="" PreprocessorDefinitions="NDEBUG;_UNICODE;UNICODE;WIN32;_WINDOWS;JAYARTL_INTERNAL;JAYARTL_STANDARDMEM;NTRL_NETWORK;$(NoInherit)"/> </FileConfiguration> <FileConfiguration Name="Debug|Win32"> <Tool Name="VCCLCompilerTool" Optimization="0" AdditionalIncludeDirectories="" PreprocessorDefinitions="_DEBUG;WIN32;_WINDOWS;JAYARTL_INTERNAL;JAYARTL_STANDARDMEM;NTRL_NETWORK;$(NoInherit)"/> </FileConfiguration> <FileConfiguration Name="Debug Unicode|Win32"> <Tool Name="VCCLCompilerTool" Optimization="0" AdditionalIncludeDirectories="" PreprocessorDefinitions="_DEBUG;_UNICODE;UNICODE;WIN32;_WINDOWS;JAYARTL_INTERNAL;JAYARTL_STANDARDMEM;NTRL_NETWORK;$(NoInherit)"/> </FileConfiguration> <FileConfiguration Name="Release|Win32"> <Tool Name="VCCLCompilerTool" Optimization="2" AdditionalIncludeDirectories="" PreprocessorDefinitions="NDEBUG;WIN32;_WINDOWS;JAYARTL_INTERNAL;JAYARTL_STANDARDMEM;NTRL_NETWORK;$(NoInherit)"/> </FileConfiguration> </File> <File RelativePath="kbuffer.cpp"> <FileConfiguration Name="Release Unicode|Win32"> <Tool Name="VCCLCompilerTool" Optimization="2" AdditionalIncludeDirectories="" PreprocessorDefinitions="NDEBUG;_UNICODE;UNICODE;WIN32;_WINDOWS;JAYARTL_INTERNAL;JAYARTL_STANDARDMEM;NTRL_NETWORK;$(NoInherit)"/> </FileConfiguration> <FileConfiguration Name="Debug|Win32"> <Tool Name="VCCLCompilerTool" Optimization="0" AdditionalIncludeDirectories="" PreprocessorDefinitions="_DEBUG;WIN32;_WINDOWS;JAYARTL_INTERNAL;JAYARTL_STANDARDMEM;NTRL_NETWORK;$(NoInherit)"/> </FileConfiguration> <FileConfiguration Name="Debug Unicode|Win32"> <Tool Name="VCCLCompilerTool" Optimization="0" AdditionalIncludeDirectories="" PreprocessorDefinitions="_DEBUG;_UNICODE;UNICODE;WIN32;_WINDOWS;JAYARTL_INTERNAL;JAYARTL_STANDARDMEM;NTRL_NETWORK;$(NoInherit)"/> </FileConfiguration> <FileConfiguration Name="Release|Win32"> <Tool Name="VCCLCompilerTool" Optimization="2" AdditionalIncludeDirectories="" PreprocessorDefinitions="NDEBUG;WIN32;_WINDOWS;JAYARTL_INTERNAL;JAYARTL_STANDARDMEM;NTRL_NETWORK;$(NoInherit)"/> </FileConfiguration> </File> <File RelativePath="kclass.cpp"> <FileConfiguration Name="Release Unicode|Win32"> <Tool Name="VCCLCompilerTool" Optimization="2" AdditionalIncludeDirectories="" PreprocessorDefinitions="NDEBUG;_UNICODE;UNICODE;WIN32;_WINDOWS;JAYARTL_INTERNAL;JAYARTL_STANDARDMEM;NTRL_NETWORK;$(NoInherit)"/> </FileConfiguration> <FileConfiguration Name="Debug|Win32"> <Tool Name="VCCLCompilerTool" Optimization="0" AdditionalIncludeDirectories="" PreprocessorDefinitions="_DEBUG;WIN32;_WINDOWS;JAYARTL_INTERNAL;JAYARTL_STANDARDMEM;NTRL_NETWORK;$(NoInherit)"/> </FileConfiguration> <FileConfiguration Name="Debug Unicode|Win32"> <Tool Name="VCCLCompilerTool" Optimization="0" AdditionalIncludeDirectories="" PreprocessorDefinitions="_DEBUG;_UNICODE;UNICODE;WIN32;_WINDOWS;JAYARTL_INTERNAL;JAYARTL_STANDARDMEM;NTRL_NETWORK;$(NoInherit)"/> </FileConfiguration> <FileConfiguration Name="Release|Win32"> <Tool Name="VCCLCompilerTool" Optimization="2" AdditionalIncludeDirectories="" PreprocessorDefinitions="NDEBUG;WIN32;_WINDOWS;JAYARTL_INTERNAL;JAYARTL_STANDARDMEM;NTRL_NETWORK;$(NoInherit)"/> </FileConfiguration> </File> <File RelativePath="klist.cpp"> <FileConfiguration Name="Release Unicode|Win32"> <Tool Name="VCCLCompilerTool" Optimization="2" AdditionalIncludeDirectories="" PreprocessorDefinitions="NDEBUG;_UNICODE;UNICODE;WIN32;_WINDOWS;JAYARTL_INTERNAL;JAYARTL_STANDARDMEM;NTRL_NETWORK;$(NoInherit)"/> </FileConfiguration> <FileConfiguration Name="Debug|Win32"> <Tool Name="VCCLCompilerTool" Optimization="0" AdditionalIncludeDirectories="" PreprocessorDefinitions="_DEBUG;WIN32;_WINDOWS;JAYARTL_INTERNAL;JAYARTL_STANDARDMEM;NTRL_NETWORK;$(NoInherit)"/> </FileConfiguration> <FileConfiguration Name="Debug Unicode|Win32"> <Tool Name="VCCLCompilerTool" Optimization="0" AdditionalIncludeDirectories="" PreprocessorDefinitions="_DEBUG;_UNICODE;UNICODE;WIN32;_WINDOWS;JAYARTL_INTERNAL;JAYARTL_STANDARDMEM;NTRL_NETWORK;$(NoInherit)"/> </FileConfiguration> <FileConfiguration Name="Release|Win32"> <Tool Name="VCCLCompilerTool" Optimization="2" AdditionalIncludeDirectories="" PreprocessorDefinitions="NDEBUG;WIN32;_WINDOWS;JAYARTL_INTERNAL;JAYARTL_STANDARDMEM;NTRL_NETWORK;$(NoInherit)"/> </FileConfiguration> </File> <File RelativePath="knetobject.cpp"> <FileConfiguration Name="Release Unicode|Win32"> <Tool Name="VCCLCompilerTool" Optimization="2" AdditionalIncludeDirectories="" PreprocessorDefinitions="NDEBUG;_UNICODE;UNICODE;WIN32;_WINDOWS;JAYARTL_INTERNAL;JAYARTL_STANDARDMEM;NTRL_NETWORK;$(NoInherit)"/> </FileConfiguration> <FileConfiguration Name="Debug|Win32"> <Tool Name="VCCLCompilerTool" Optimization="0" AdditionalIncludeDirectories="" PreprocessorDefinitions="_DEBUG;WIN32;_WINDOWS;JAYARTL_INTERNAL;JAYARTL_STANDARDMEM;NTRL_NETWORK;$(NoInherit)"/> </FileConfiguration> <FileConfiguration Name="Debug Unicode|Win32"> <Tool Name="VCCLCompilerTool" Optimization="0" AdditionalIncludeDirectories="" PreprocessorDefinitions="_DEBUG;_UNICODE;UNICODE;WIN32;_WINDOWS;JAYARTL_INTERNAL;JAYARTL_STANDARDMEM;NTRL_NETWORK;$(NoInherit)"/> </FileConfiguration> <FileConfiguration Name="Release|Win32"> <Tool Name="VCCLCompilerTool" Optimization="2" AdditionalIncludeDirectories="" PreprocessorDefinitions="NDEBUG;WIN32;_WINDOWS;JAYARTL_INTERNAL;JAYARTL_STANDARDMEM;NTRL_NETWORK;$(NoInherit)"/> </FileConfiguration> </File> <File RelativePath="ksmall.cpp"> <FileConfiguration Name="Release Unicode|Win32"> <Tool Name="VCCLCompilerTool" Optimization="2" AdditionalIncludeDirectories="" PreprocessorDefinitions="NDEBUG;_UNICODE;UNICODE;WIN32;_WINDOWS;JAYARTL_INTERNAL;JAYARTL_STANDARDMEM;NTRL_NETWORK;$(NoInherit)"/> </FileConfiguration> <FileConfiguration Name="Debug|Win32"> <Tool Name="VCCLCompilerTool" Optimization="0" AdditionalIncludeDirectories="" PreprocessorDefinitions="_DEBUG;WIN32;_WINDOWS;JAYARTL_INTERNAL;JAYARTL_STANDARDMEM;NTRL_NETWORK;$(NoInherit)"/> </FileConfiguration> <FileConfiguration Name="Debug Unicode|Win32"> <Tool Name="VCCLCompilerTool" Optimization="0" AdditionalIncludeDirectories="" PreprocessorDefinitions="_DEBUG;_UNICODE;UNICODE;WIN32;_WINDOWS;JAYARTL_INTERNAL;JAYARTL_STANDARDMEM;NTRL_NETWORK;$(NoInherit)"/> </FileConfiguration> <FileConfiguration Name="Release|Win32"> <Tool Name="VCCLCompilerTool" Optimization="2" AdditionalIncludeDirectories="" PreprocessorDefinitions="NDEBUG;WIN32;_WINDOWS;JAYARTL_INTERNAL;JAYARTL_STANDARDMEM;NTRL_NETWORK;$(NoInherit)"/> </FileConfiguration> </File> <File RelativePath="ktab.cpp"> <FileConfiguration Name="Release Unicode|Win32"> <Tool Name="VCCLCompilerTool" Optimization="2" AdditionalIncludeDirectories="" PreprocessorDefinitions="NDEBUG;_UNICODE;UNICODE;WIN32;_WINDOWS;JAYARTL_INTERNAL;JAYARTL_STANDARDMEM;NTRL_NETWORK;$(NoInherit)"/> </FileConfiguration> <FileConfiguration Name="Debug|Win32"> <Tool Name="VCCLCompilerTool" Optimization="0" AdditionalIncludeDirectories="" PreprocessorDefinitions="_DEBUG;WIN32;_WINDOWS;JAYARTL_INTERNAL;JAYARTL_STANDARDMEM;NTRL_NETWORK;$(NoInherit)"/> </FileConfiguration> <FileConfiguration Name="Debug Unicode|Win32"> <Tool Name="VCCLCompilerTool" Optimization="0" AdditionalIncludeDirectories="" PreprocessorDefinitions="_DEBUG;_UNICODE;UNICODE;WIN32;_WINDOWS;JAYARTL_INTERNAL;JAYARTL_STANDARDMEM;NTRL_NETWORK;$(NoInherit)"/> </FileConfiguration> <FileConfiguration Name="Release|Win32"> <Tool Name="VCCLCompilerTool" Optimization="2" AdditionalIncludeDirectories="" PreprocessorDefinitions="NDEBUG;WIN32;_WINDOWS;JAYARTL_INTERNAL;JAYARTL_STANDARDMEM;NTRL_NETWORK;$(NoInherit)"/> </FileConfiguration> </File> <File RelativePath="ktree.cpp"> <FileConfiguration Name="Release Unicode|Win32"> <Tool Name="VCCLCompilerTool" Optimization="2" AdditionalIncludeDirectories="" PreprocessorDefinitions="NDEBUG;_UNICODE;UNICODE;WIN32;_WINDOWS;JAYARTL_INTERNAL;JAYARTL_STANDARDMEM;NTRL_NETWORK;$(NoInherit)"/> </FileConfiguration> <FileConfiguration Name="Debug|Win32"> <Tool Name="VCCLCompilerTool" Optimization="0" AdditionalIncludeDirectories="" PreprocessorDefinitions="_DEBUG;WIN32;_WINDOWS;JAYARTL_INTERNAL;JAYARTL_STANDARDMEM;NTRL_NETWORK;$(NoInherit)"/> </FileConfiguration> <FileConfiguration Name="Debug Unicode|Win32"> <Tool Name="VCCLCompilerTool" Optimization="0" AdditionalIncludeDirectories="" PreprocessorDefinitions="_DEBUG;_UNICODE;UNICODE;WIN32;_WINDOWS;JAYARTL_INTERNAL;JAYARTL_STANDARDMEM;NTRL_NETWORK;$(NoInherit)"/> </FileConfiguration> <FileConfiguration Name="Release|Win32"> <Tool Name="VCCLCompilerTool" Optimization="2" AdditionalIncludeDirectories="" PreprocessorDefinitions="NDEBUG;WIN32;_WINDOWS;JAYARTL_INTERNAL;JAYARTL_STANDARDMEM;NTRL_NETWORK;$(NoInherit)"/> </FileConfiguration> </File> </Filter> <Filter Name="Resource Files" Filter="*.rc"> <File RelativePath="nrtl.rc"> <FileConfiguration Name="Release Unicode|Win32"> <Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="NDEBUG;$(NoInherit)" AdditionalIncludeDirectories=""/> </FileConfiguration> <FileConfiguration Name="Debug|Win32"> <Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="" AdditionalIncludeDirectories=""/> </FileConfiguration> <FileConfiguration Name="Debug Unicode|Win32"> <Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_DEBUG;$(NoInherit)" AdditionalIncludeDirectories=""/> </FileConfiguration> <FileConfiguration Name="Release|Win32"> <Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="" AdditionalIncludeDirectories=""/> </FileConfiguration> </File> </Filter> <File RelativePath="changelog.txt"> </File> <File RelativePath="copying.txt"> </File> <File RelativePath="todo.txt"> </File> </Files> <Globals> </Globals> </VisualStudioProject> Index: knetobject.cpp =================================================================== RCS file: /cvsroot/okernel/nrtl/knetobject.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** knetobject.cpp 14 May 2003 22:46:12 -0000 1.2 --- knetobject.cpp 22 May 2004 13:17:04 -0000 1.3 *************** *** 47,50 **** --- 47,51 ---- History Rev Description 051403 dgil Wrote it from scratch + 052204 pive MSVC7 iostream compatibilty and free/delete warning issue ============================================================================ */ *************** *** 71,74 **** --- 72,84 ---- } + + #if _MSC_VER >= 1300 + void Buffer::operator delete(jpointer p, size_t us) + { + JAYA_ASSERTION(p!=NULL,"p is NULL ?"); + JAYA_FREE(p); + } + #endif /* _MSC_VER */ + // =========================================================================== // Constructors and destructors Index: nrtl.h =================================================================== RCS file: /cvsroot/okernel/nrtl/nrtl.h,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** nrtl.h 14 May 2003 22:46:12 -0000 1.7 --- nrtl.h 22 May 2004 13:17:04 -0000 1.8 *************** *** 63,66 **** --- 63,67 ---- ... 112402 dgil Change license to MPL/GPL/LGPL + 052204 pive MSVC7 iostream compatibilty and free/delete warning issue ============================================================================ */ *************** *** 72,79 **** // =========================================================================== ! #define NRTL_HEADER_RELEASE_05142003 #define NTRL_MAJOR_VERSION 4 ! #define NTRL_MINOR_VERSION 0 // =========================================================================== --- 73,80 ---- // =========================================================================== ! #define NRTL_HEADER_RELEASE_05222004 #define NTRL_MAJOR_VERSION 4 ! #define NTRL_MINOR_VERSION 1 // =========================================================================== *************** *** 111,115 **** --- 112,121 ---- #define SZKEY_OEM TEXT("\\Nunki") + #if _MSC_VER >= 1300 + #include <iostream> + using namespace std; + #else #include <iostream.h> + #endif #if defined(__NRTL_OKERNEL_INTERNAL) *************** *** 233,237 **** jpointer operator new(size_t cs, size_t ss = 0); ! void resize(size_t asize); --- 239,245 ---- jpointer operator new(size_t cs, size_t ss = 0); ! #if _MSC_VER >= 1300 ! void operator delete(jpointer, size_t); ! #endif /* _MSC_VER */ void resize(size_t asize); |
From: Pierre V. <pi...@us...> - 2004-05-22 13:15:45
|
Update of /cvsroot/okernel/nrtl/jayartl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19167 Modified Files: jayartl.rcv jayartl.h Added Files: jayartl.vcproj Log Message: [pive] Visual Studio .NET (VC 7.0) support for jayaRTL and OKernel. Index: jayartl.h =================================================================== RCS file: /cvsroot/okernel/nrtl/jayartl/jayartl.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** jayartl.h 14 May 2003 20:36:06 -0000 1.2 --- jayartl.h 22 May 2004 13:15:36 -0000 1.3 *************** *** 64,67 **** --- 64,68 ---- 122201 dgil Wrote it from scratch 112402 dgil Change license to MPL/GPL/LGPL + 052204 pive /RELEASE and /FILEALIGN directives not supported by .NET ============================================================================ */ *************** *** 214,234 **** #pragma optimize("gsy",on) ! #pragma comment(linker,"/RELEASE") ! // Note that merging the .rdata section will result in LARGER exe's if you using ! // MFC (esp. static link). If this is desirable, define _MERGE_RDATA_ in your project. ! #ifdef _MERGE_RDATA_ ! #pragma comment(linker,"/merge:.rdata=.data") ! #endif // _MERGE_RDATA_ ! #pragma comment(linker,"/merge:.text=.data") ! #pragma comment(linker,"/merge:.reloc=.data") ! #if _MSC_VER >= 1000 ! // Only supported/needed with VC6; VC5 already does 0x200 for release builds. ! // Totally undocumented! And if you set it lower than 512 bytes, the program crashes. ! // Either leave at 0x200 or 0x1000 ! #pragma comment(linker,"/FILEALIGN:0x200") ! #endif // _MSC_VER >= 1000 #endif // NDEBUG --- 215,239 ---- #pragma optimize("gsy",on) ! #if _MSC_VER < 1300 ! ! #pragma comment(linker,"/RELEASE") ! // Note that merging the .rdata section will result in LARGER exe's if you using ! // MFC (esp. static link). If this is desirable, define _MERGE_RDATA_ in your project. ! #ifdef _MERGE_RDATA_ ! #pragma comment(linker,"/merge:.rdata=.data") ! #endif // _MERGE_RDATA_ ! #pragma comment(linker,"/merge:.text=.data") ! #pragma comment(linker,"/merge:.reloc=.data") ! #if _MSC_VER >= 1000 ! // Only supported/needed with VC6; VC5 already does 0x200 for release builds. ! // Totally undocumented! And if you set it lower than 512 bytes, the program crashes. ! // Either leave at 0x200 or 0x1000 ! #pragma comment(linker,"/FILEALIGN:0x200") ! #endif // _MSC_VER >= 1000 ! ! #endif /* _MSC_VER < 1300 */ #endif // NDEBUG --- NEW FILE: jayartl.vcproj --- <?xml version="1.0" encoding="Windows-1252"?> <VisualStudioProject ProjectType="Visual C++" Version="7.10" Name="jayartl" ProjectGUID="{507BAB9B-9E42-43D6-996F-DC29179D248C}" SccProjectName=""$/jayaRTL", BAAAAAAA" SccLocalPath="."> <Platforms> <Platform Name="Win32"/> </Platforms> <Configurations> <Configuration Name="Release|Win32" OutputDirectory=".\Release" IntermediateDirectory=".\Release" ConfigurationType="2" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2"> <Tool Name="VCCLCompilerTool" Optimization="2" InlineFunctionExpansion="1" AdditionalIncludeDirectories="..\inc" PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;JAYARTL_EXPORTS" StringPooling="TRUE" RuntimeLibrary="0" EnableFunctionLevelLinking="TRUE" UsePrecompiledHeader="2" PrecompiledHeaderFile=".\Release/jayartl.pch" AssemblerListingLocation=".\Release/" ObjectFile=".\Release/" ProgramDataBaseFileName=".\Release/" WarningLevel="3" SuppressStartupBanner="TRUE"/> <Tool Name="VCCustomBuildTool"/> <Tool Name="VCLinkerTool" OutputFile=".\Release/jayartl.dll" LinkIncremental="1" SuppressStartupBanner="TRUE" ProgramDatabaseFile=".\Release/jayartl.pdb" ImportLibrary=".\Release/jayartl.lib" TargetMachine="1"/> <Tool Name="VCMIDLTool" PreprocessorDefinitions="NDEBUG" MkTypLibCompatible="TRUE" SuppressStartupBanner="TRUE" TargetEnvironment="1" TypeLibraryName=".\Release/jayartl.tlb" HeaderFileName=""/> <Tool Name="VCPostBuildEventTool"/> <Tool Name="VCPreBuildEventTool"/> <Tool Name="VCPreLinkEventTool"/> <Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="NDEBUG" Culture="1036"/> <Tool Name="VCWebServiceProxyGeneratorTool"/> <Tool Name="VCXMLDataGeneratorTool"/> <Tool Name="VCWebDeploymentTool"/> <Tool Name="VCManagedWrapperGeneratorTool"/> <Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/> </Configuration> <Configuration Name="Debug|Win32" OutputDirectory=".\Debug" IntermediateDirectory=".\Debug" ConfigurationType="2" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2"> <Tool Name="VCCLCompilerTool" Optimization="0" AdditionalIncludeDirectories="..\inc" PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;JAYARTL_EXPORTS" BasicRuntimeChecks="3" RuntimeLibrary="1" UsePrecompiledHeader="2" PrecompiledHeaderFile=".\Debug/jayartl.pch" AssemblerListingLocation=".\Debug/" ObjectFile=".\Debug/" ProgramDataBaseFileName=".\Debug/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3"/> <Tool Name="VCCustomBuildTool"/> <Tool Name="VCLinkerTool" OutputFile=".\Debug/jayartl.dll" LinkIncremental="1" SuppressStartupBanner="TRUE" GenerateDebugInformation="TRUE" ProgramDatabaseFile=".\Debug/jayartl.pdb" ImportLibrary=".\Debug/jayartl.lib" TargetMachine="1"/> <Tool Name="VCMIDLTool" PreprocessorDefinitions="_DEBUG" MkTypLibCompatible="TRUE" SuppressStartupBanner="TRUE" TargetEnvironment="1" TypeLibraryName=".\Debug/jayartl.tlb" HeaderFileName=""/> <Tool Name="VCPostBuildEventTool"/> <Tool Name="VCPreBuildEventTool"/> <Tool Name="VCPreLinkEventTool"/> <Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_DEBUG" Culture="1036"/> <Tool Name="VCWebServiceProxyGeneratorTool"/> <Tool Name="VCXMLDataGeneratorTool"/> <Tool Name="VCWebDeploymentTool"/> <Tool Name="VCManagedWrapperGeneratorTool"/> <Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/> </Configuration> </Configurations> <References> </References> <Files> <Filter Name="Source Files" Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"> <File RelativePath="jayartl.cpp"> <FileConfiguration Name="Release|Win32"> <Tool Name="VCCLCompilerTool" Optimization="2" PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;JAYARTL_EXPORTS;$(NoInherit)"/> </FileConfiguration> <FileConfiguration Name="Debug|Win32"> <Tool Name="VCCLCompilerTool" Optimization="0" PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;JAYARTL_EXPORTS;$(NoInherit)" BasicRuntimeChecks="3"/> </FileConfiguration> </File> </Filter> <Filter Name="Header Files" Filter="h;hpp;hxx;hm;inl"> <File RelativePath="jayartl.h"> </File> </Filter> <Filter Name="Resource Files" Filter="ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"> <File RelativePath="jayartl.rc"> </File> </Filter> </Files> <Globals> </Globals> </VisualStudioProject> Index: jayartl.rcv =================================================================== RCS file: /cvsroot/okernel/nrtl/jayartl/jayartl.rcv,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** jayartl.rcv 14 May 2003 20:36:06 -0000 1.2 --- jayartl.rcv 22 May 2004 13:15:36 -0000 1.3 *************** *** 44,48 **** */ ! #include "version.h" #define VER_FILETYPE VFT_DLL --- 44,48 ---- */ ! #include "..\inc\version.h" #define VER_FILETYPE VFT_DLL |
From: <ben...@id...> - 2004-05-22 13:06:48
|
Dear Open Source developer I am doing a research project on "Fun and Software Development" in which I kindly invite you to participate. You will find the online survey under http://fasd.ethz.ch/qsf/. The questionnaire consists of 53 questions and you will need about 15 minutes to complete it. With the FASD project (Fun and Software Development) we want to define the motivational significance of fun when software developers decide to engage in Open Source projects. What is special about our research project is that a similar survey is planned with software developers in commercial firms. This procedure allows the immediate comparison between the involved individuals and the conditions of production of these two development models. Thus we hope to obtain substantial new insights to the phenomenon of Open Source Development. With many thanks for your participation, Benno Luthiger PS: The results of the survey will be published under http://www.isu.unizh.ch/fuehrung/blprojects/FASD/. We have set up the mailing list fa...@we... for this study. Please see http://fasd.ethz.ch/qsf/mailinglist_en.html for registration to this mailing list. _______________________________________________________________________ Benno Luthiger Swiss Federal Institute of Technology Zurich 8092 Zurich Mail: benno.luthiger(at)id.ethz.ch _______________________________________________________________________ |
From: <dg...@us...> - 2003-05-14 22:46:15
|
Update of /cvsroot/okernel/nrtl In directory sc8-pr-cvs1:/tmp/cvs-serv26819 Modified Files: kclass.cpp knetobject.cpp nrtl.h Log Message: More on NetObject ... Index: kclass.cpp =================================================================== RCS file: /cvsroot/okernel/nrtl/kclass.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** kclass.cpp 14 May 2003 20:35:14 -0000 1.3 --- kclass.cpp 14 May 2003 22:46:12 -0000 1.4 *************** *** 110,113 **** --- 110,143 ---- } + #if defined(NTRL_NETWORK) + + void Object::clone(const Object& obj) + { + NetBuffer n(obj.toBuffer()); + netRead(n); + } + + void Object::clear() + { + NetBuffer n; + netRead(n); // read will fill with 0 because NetBuffer is empty + } + + Buffer& Object::toBuffer() const + { + NetBuffer n (netSize()); // allocate space + netWrite(n); + return n.buffer(); + } + + size_t Object::netSize() const + { + NetBuffer n; + netWrite(n); // attempt to write on an empty NetBuffer + return n.bytesWritten(); + } + + #endif + // =========================================================================== // _Error Class Index: knetobject.cpp =================================================================== RCS file: /cvsroot/okernel/nrtl/knetobject.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** knetobject.cpp 14 May 2003 21:20:41 -0000 1.1 --- knetobject.cpp 14 May 2003 22:46:12 -0000 1.2 *************** *** 56,63 **** // =========================================================================== ! // InternalBuffer Class // =========================================================================== ! InternalBuffer::InternalBuffer(int n, const jbyte* s) { refs = 0; --- 56,63 ---- // =========================================================================== ! // Buffer Class // =========================================================================== ! Buffer::Buffer(size_t n, const jbyte* s) { refs = 0; *************** *** 66,70 **** } ! jpointer InternalBuffer::operator new(size_t cs, size_t us) { return new jbyte[cs+us]; --- 66,70 ---- } ! jpointer Buffer::operator new(size_t cs, size_t us) { return new jbyte[cs+us]; *************** *** 83,88 **** NetBuffer::NetBuffer(size_t asize) { ! buf = new(asize) InternalBuffer(asize,NULL); reset(); } --- 83,150 ---- NetBuffer::NetBuffer(size_t asize) { ! buf = new(asize) Buffer(asize,NULL); ! if (!buf) errno = ENOMEM; reset(); + } + + NetBuffer::NetBuffer(const Buffer &abuf) + { + buf = new(abuf.len) Buffer(abuf.len,abuf.body); + if (!buf) errno = ENOMEM; + reset(); + } + + NetBuffer::NetBuffer(const jbyte* abuf,size_t asize) + { + buf = new(asize) Buffer(asize,abuf); + if (!buf) errno = ENOMEM; + reset(); + } + + // =========================================================================== + // put() + // =========================================================================== + + void NetBuffer::put(const jbyte* abuf,size_t asize) + { + if ( (writeCounter + asize) <= size() ) { + memcpy(&buf->body[writeCounter],abuf,asize); + } + writeCounter += asize; + } + + // =========================================================================== + // get() + // =========================================================================== + + jbool NetBuffer::get(jbyte* abuf,size_t asize) + { + jbool bRet = jtrue; + + if ( (readCounter + asize) <= size() ) { + memcpy(abuf,&buf->body[readCounter],asize); + } else { + bRet = jfalse; + } + readCounter += asize; + + return bRet; + } + + // =========================================================================== + // resize() + // =========================================================================== + + void NetBuffer::resize(size_t asize) + { + Buffer* nbuf = new(asize) Buffer(asize,NULL); + + if (nbuf) { + memcpy(nbuf->body,buf->body,min(buf->len,nbuf->len)); + delete buf; + buf = nbuf; + } else { + errno = ENOMEM; + } } Index: nrtl.h =================================================================== RCS file: /cvsroot/okernel/nrtl/nrtl.h,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** nrtl.h 14 May 2003 21:35:39 -0000 1.6 --- nrtl.h 14 May 2003 22:46:12 -0000 1.7 *************** *** 222,235 **** // =========================================================================== ! // Internal Buffer class // =========================================================================== #if defined(NTRL_NETWORK) ! class InternalBuffer { private: ! InternalBuffer(int,const jbyte* s); ! jpointer operator new(size_t cs, size_t ss = 0); int refs; // number of references --- 222,238 ---- // =========================================================================== ! // Buffer class // =========================================================================== #if defined(NTRL_NETWORK) ! class Buffer { private: ! Buffer(size_t,const jbyte* s); ! ! jpointer operator new(size_t cs, size_t ss = 0); ! ! void resize(size_t asize); int refs; // number of references *************** *** 239,243 **** friend class NetBuffer; ! }; // InternalBuffer Class #endif --- 242,246 ---- friend class NetBuffer; ! }; // Buffer Class #endif *************** *** 257,272 **** NetBuffer(size_t asize = 0); ! size_t size() const { return buf?buf->len:0; } ! size_t bytesRead() const { return readCounter; } ! size_t bytesWritten() const { return writeCounter; } private: ! InternalBuffer *buf; ! size_t readCounter; ! size_t writeCounter; }; // NetBuffer Class #endif --- 260,363 ---- NetBuffer(size_t asize = 0); + NetBuffer(const Buffer &abuf); + NetBuffer(const jbyte* abuf,size_t asize); ! size_t size() const { return buf?buf->len:0; } ! void resize(size_t asize); ! size_t bytesRead() const { return readCounter; } ! size_t bytesWritten() const { return writeCounter; } ! ! jbool get(jbyte* abuf,size_t asize); ! void put(const jbyte* abuf,size_t asize); ! ! const Buffer& buffer() const { return *buf; } ! Buffer& buffer() { return *buf; } ! ! jbyte& operator[](int i) const { return *(buf->body+i); } private: ! Buffer *buf; ! size_t readCounter; ! size_t writeCounter; }; // NetBuffer Class + inline int operator == (const NetBuffer& n1, const NetBuffer& n2) + { + return ( (n1.size()==n2.size()) && (memcmp(&n1[0],&n2[0],n1.size())==0) ); + } + + inline NetBuffer& operator<< (NetBuffer &n, jchar a) + { + n.put(reinterpret_cast<jbyte*>(&a),sizeof(jchar)); + return n; + } + + inline NetBuffer& operator>> (NetBuffer &n, jchar& a) + { + if (!n.get(reinterpret_cast<jbyte*>(&a),sizeof(jchar))) a = 0; + return n; + } + + inline NetBuffer& operator<< (NetBuffer &n, jbyte a) + { + n.put(reinterpret_cast<jbyte*>(&a),sizeof(jbyte)); + return n; + } + + inline NetBuffer& operator>> (NetBuffer &n, jbyte& a) + { + if (!n.get(reinterpret_cast<jbyte*>(&a),sizeof(jbyte))) a = 0; + return n; + } + + inline NetBuffer& operator<< (NetBuffer &n, jint16 a) + { + n.put(reinterpret_cast<jbyte*>(&a),sizeof(jint16)); + return n; + } + + inline NetBuffer& operator>> (NetBuffer &n, jint16& a) + { + if (!n.get(reinterpret_cast<jbyte*>(&a),sizeof(jint16))) a = 0; + return n; + } + + inline NetBuffer& operator<< (NetBuffer &n, jint32 a) + { + n.put(reinterpret_cast<jbyte*>(&a),sizeof(jint32)); + return n; + } + + inline NetBuffer& operator>> (NetBuffer &n, jint32& a) + { + if (!n.get(reinterpret_cast<jbyte*>(&a),sizeof(jint32))) a = 0; + return n; + } + + inline NetBuffer& operator<< (NetBuffer &n, jint8 a) + { + n.put(reinterpret_cast<jbyte*>(&a),sizeof(jint8)); + return n; + } + + inline NetBuffer& operator>> (NetBuffer &n, jint8& a) + { + if (!n.get(reinterpret_cast<jbyte*>(&a),sizeof(jint8))) a = 0; + return n; + } + + inline NetBuffer& operator<< (NetBuffer &n, const NetBuffer& a) + { + n.put(&a[0],a.size()); + return n; + } + + inline NetBuffer& operator>> (NetBuffer &n, NetBuffer& a) + { + n.get (&a[0],a.size()); + return n; + } + #endif *************** *** 311,316 **** --- 402,414 ---- #if defined(NTRL_NETWORK) protected: + virtual void netWrite(NetBuffer& b) const {} /* = 0; */ + virtual void netRead(NetBuffer& b) {} /* = 0; */ + void clone(const Object& obj); + void clear(); public: + + Buffer& toBuffer() const; + size_t netSize() const; #endif |
From: <dg...@us...> - 2003-05-14 21:35:43
|
Update of /cvsroot/okernel/nrtl In directory sc8-pr-cvs1:/tmp/cvs-serv17588 Modified Files: nrtl.h Log Message: Just for pive to look at :-) Index: nrtl.h =================================================================== RCS file: /cvsroot/okernel/nrtl/nrtl.h,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** nrtl.h 14 May 2003 21:20:59 -0000 1.5 --- nrtl.h 14 May 2003 21:35:39 -0000 1.6 *************** *** 258,261 **** --- 258,265 ---- NetBuffer(size_t asize = 0); + size_t size() const { return buf?buf->len:0; } + size_t bytesRead() const { return readCounter; } + size_t bytesWritten() const { return writeCounter; } + private: InternalBuffer *buf; |
From: <dg...@us...> - 2003-05-14 21:21:03
|
Update of /cvsroot/okernel/nrtl In directory sc8-pr-cvs1:/tmp/cvs-serv31694 Modified Files: nrtl.h Log Message: First step on the NeObject ... Index: nrtl.h =================================================================== RCS file: /cvsroot/okernel/nrtl/nrtl.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** nrtl.h 14 May 2003 20:35:36 -0000 1.4 --- nrtl.h 14 May 2003 21:20:59 -0000 1.5 *************** *** 88,92 **** // ---- we depend heavely on this ! // ! // __x rearch, please ! // =========================================================================== --- 88,92 ---- // ---- we depend heavely on this ! // ! // __x re-arch, please ! // =========================================================================== *************** *** 177,181 **** // Proc types // =========================================================================== ! // If you don't need a class, don't use it and its FuncType class Object; --- 177,181 ---- // Proc types // =========================================================================== ! // If you don't need a class, don't use it nor its FuncType class Object; *************** *** 222,225 **** --- 222,271 ---- // =========================================================================== + // Internal Buffer class + // =========================================================================== + + #if defined(NTRL_NETWORK) + + class InternalBuffer { + + private: + InternalBuffer(int,const jbyte* s); + jpointer operator new(size_t cs, size_t ss = 0); + + int refs; // number of references + int len ; // buffer length + jbyte body[1]; // the buffer + + friend class NetBuffer; + + }; // InternalBuffer Class + + #endif + + // =========================================================================== + // NetBuffer + // =========================================================================== + + #if defined(NTRL_NETWORK) + + class OCLASSSPEC NetBuffer { + + protected: + void reset(); + + public: + + NetBuffer(size_t asize = 0); + + private: + InternalBuffer *buf; + size_t readCounter; + size_t writeCounter; + + }; // NetBuffer Class + + #endif + + // =========================================================================== // Object Class // =========================================================================== *************** *** 257,260 **** --- 303,313 ---- jpointer _jsobject() { return jsobject; } void _jsobject(jpointer pv) { jsobject = pv; } + #endif + + #if defined(NTRL_NETWORK) + protected: + + public: + #endif |
From: <dg...@us...> - 2003-05-14 21:20:44
|
Update of /cvsroot/okernel/nrtl In directory sc8-pr-cvs1:/tmp/cvs-serv31319 Added Files: knetobject.cpp Log Message: Initial release at sourceforge dot net. --- NEW FILE: knetobject.cpp --- /* ===========================Module=Header==================================== Project Name : NRTL Module Name : ./knetobject.cpp Created : 05/14/03 - 23:05 Author : Gilles Dumortier [dg...@ie...] ***** BEGIN LICENSE BLOCK ***** Version: MPL 1.1/GPL 2.0/LGPL 2.1 The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.mozilla.org/MPL/ Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. The Original Code is Nunki Runtime Library (NTRL) code. The Initial Developer of the Original Code is Gilles DUMORTIER Portions created by the Initial Developer are Copyright (C) 1992-2003 the Initial Developer. All Rights Reserved. Contributor(s): Alternatively, the contents of this file may be used under the terms of either the GNU General Public License Version 2 or later (the "GPL"), or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), in which case the provisions of the GPL or the LGPL are applicable instead of those above. If you wish to allow use of your version of this file only under the terms of either the GPL or the LGPL, and not to allow others to use your version of this file under the terms of the NPL, indicate your decision by deleting the provisions above and replace them with the notice and other provisions required by the GPL or the LGPL. If you do not delete the provisions above, a recipient may use your version of this file under the terms of any one of the NPL, the GPL or the LGPL. ***** END LICENSE BLOCK ***** General Description : NetBuffer History Rev Description 051403 dgil Wrote it from scratch ============================================================================ */ #include "precomp.h" #include <errno.h> #if defined(NTRL_NETWORK) // =========================================================================== // InternalBuffer Class // =========================================================================== InternalBuffer::InternalBuffer(int n, const jbyte* s) { refs = 0; len = n; if (s) memcpy(body,s,n); } jpointer InternalBuffer::operator new(size_t cs, size_t us) { return new jbyte[cs+us]; } // =========================================================================== // Constructors and destructors // =========================================================================== void NetBuffer::reset() { readCounter = 0; writeCounter = 0; } NetBuffer::NetBuffer(size_t asize) { buf = new(asize) InternalBuffer(asize,NULL); reset(); } // =========================================================================== #endif |
From: <dg...@us...> - 2003-05-14 21:20:19
|
Update of /cvsroot/okernel/nrtl In directory sc8-pr-cvs1:/tmp/cvs-serv30657 Modified Files: nrtl.dsp Log Message: Add knetobject.cpp Index: nrtl.dsp =================================================================== RCS file: /cvsroot/okernel/nrtl/nrtl.dsp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** nrtl.dsp 14 May 2003 20:44:30 -0000 1.2 --- nrtl.dsp 14 May 2003 21:20:13 -0000 1.3 *************** *** 46,50 **** # PROP Target_Dir "" # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c ! # ADD CPP /nologo /MD /W3 /vmg /O2 /I "." /I "jayartl" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "JAYARTL_INTERNAL" /D "JAYARTL_STANDARDMEM" /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 --- 46,50 ---- # PROP Target_Dir "" # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c ! # ADD CPP /nologo /MD /W3 /vmg /O2 /I "." /I "jayartl" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "JAYARTL_INTERNAL" /D "JAYARTL_STANDARDMEM" /D "NTRL_NETWORK" /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 *************** *** 77,81 **** # PROP Target_Dir "" # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c ! # ADD CPP /nologo /MDd /W3 /Gm /vmg /ZI /Od /I "." /I "jayartl" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "JAYARTL_INTERNAL" /D "JAYARTL_STANDARDMEM" /YX /FD /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 --- 77,81 ---- # PROP Target_Dir "" # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c ! # ADD CPP /nologo /MDd /W3 /Gm /vmg /ZI /Od /I "." /I "jayartl" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "JAYARTL_INTERNAL" /D "JAYARTL_STANDARDMEM" /D "NTRL_NETWORK" /YX /FD /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 *************** *** 109,113 **** # PROP Target_Dir "" # ADD BASE CPP /nologo /MDd /W3 /Gm /vmg /ZI /Od /I "\nrtl\inc" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c ! # ADD CPP /nologo /MDd /W3 /Gm /vmg /ZI /Od /I "." /I "jayartl" /D "_DEBUG" /D "_UNICODE" /D "UNICODE" /D "WIN32" /D "_WINDOWS" /D "JAYARTL_INTERNAL" /D "JAYARTL_STANDARDMEM" /YX /FD /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 --- 109,113 ---- # PROP Target_Dir "" # ADD BASE CPP /nologo /MDd /W3 /Gm /vmg /ZI /Od /I "\nrtl\inc" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c ! # ADD CPP /nologo /MDd /W3 /Gm /vmg /ZI /Od /I "." /I "jayartl" /D "_DEBUG" /D "_UNICODE" /D "UNICODE" /D "WIN32" /D "_WINDOWS" /D "JAYARTL_INTERNAL" /D "JAYARTL_STANDARDMEM" /D "NTRL_NETWORK" /YX /FD /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 *************** *** 141,145 **** # PROP Target_Dir "" # ADD BASE CPP /nologo /MD /W3 /vmg /O2 /I "\nrtl\inc" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_UNICODE" /D "UNICODE" /YX /FD /c ! # ADD CPP /nologo /MD /W3 /vmg /O2 /I "." /I "jayartl" /D "NDEBUG" /D "_UNICODE" /D "UNICODE" /D "WIN32" /D "_WINDOWS" /D "JAYARTL_INTERNAL" /D "JAYARTL_STANDARDMEM" /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 --- 141,145 ---- # PROP Target_Dir "" # ADD BASE CPP /nologo /MD /W3 /vmg /O2 /I "\nrtl\inc" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_UNICODE" /D "UNICODE" /YX /FD /c ! # ADD CPP /nologo /MD /W3 /vmg /O2 /I "." /I "jayartl" /D "NDEBUG" /D "_UNICODE" /D "UNICODE" /D "WIN32" /D "_WINDOWS" /D "JAYARTL_INTERNAL" /D "JAYARTL_STANDARDMEM" /D "NTRL_NETWORK" /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 *************** *** 192,195 **** --- 192,199 ---- SOURCE=.\klist.cpp + # End Source File + # Begin Source File + + SOURCE=.\knetobject.cpp # End Source File # Begin Source File |
From: <dg...@us...> - 2003-05-14 20:46:17
|
Update of /cvsroot/okernel/nrtl/inc In directory sc8-pr-cvs1:/tmp/cvs-serv19445/inc Removed Files: nrtl.h Log Message: Massive update with new MASTER PLAN. See changelog.txt and todo.txt. --- nrtl.h DELETED --- |
From: <dg...@us...> - 2003-05-14 20:44:49
|
Update of /cvsroot/okernel/nrtl/test In directory sc8-pr-cvs1:/tmp/cvs-serv17437/test Modified Files: nrtl test.dsp Log Message: Update the project. Index: nrtl test.dsp =================================================================== RCS file: /cvsroot/okernel/nrtl/test/nrtl test.dsp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** nrtl test.dsp 8 Feb 2003 15:44:16 -0000 1.1 --- nrtl test.dsp 14 May 2003 20:44:46 -0000 1.2 *************** *** 43,47 **** # PROP Target_Dir "" # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c ! # ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "." /I "../dist" /I ".." /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_AFXDLL" /YX /FD /c # ADD BASE RSC /l 0x40c /d "NDEBUG" # ADD RSC /l 0x40c /d "NDEBUG" /d "_AFXDLL" --- 43,47 ---- # PROP Target_Dir "" # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c ! # ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "." /I "../jayartl" /I ".." /I "../dist" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_AFXDLL" /YX /FD /c # ADD BASE RSC /l 0x40c /d "NDEBUG" # ADD RSC /l 0x40c /d "NDEBUG" /d "_AFXDLL" *************** *** 67,71 **** # PROP Target_Dir "" # ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c ! # ADD CPP /nologo /MDd /W3 /Gm /GR /GX /ZI /Od /I "." /I "../dist" /I ".." /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c # ADD BASE RSC /l 0x40c /d "_DEBUG" # ADD RSC /l 0x40c /d "_DEBUG" --- 67,71 ---- # PROP Target_Dir "" # ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c ! # ADD CPP /nologo /MDd /W3 /Gm /GR /GX /ZI /Od /I "." /I "../jayartl" /I ".." /I "../dist" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c # ADD BASE RSC /l 0x40c /d "_DEBUG" # ADD RSC /l 0x40c /d "_DEBUG" |
From: <dg...@us...> - 2003-05-14 20:44:33
|
Update of /cvsroot/okernel/nrtl In directory sc8-pr-cvs1:/tmp/cvs-serv17124 Modified Files: .cvsignore nrtl.dsp Log Message: Update the project. Index: .cvsignore =================================================================== RCS file: /cvsroot/okernel/nrtl/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** .cvsignore 14 May 2003 20:39:33 -0000 1.2 --- .cvsignore 14 May 2003 20:44:30 -0000 1.3 *************** *** 1,3 **** nrtl.opt nrtl.ncb ! Obj_Release_Unicode \ No newline at end of file --- 1,6 ---- nrtl.opt nrtl.ncb ! Obj_Release_Unicode ! Obj_Debug ! Obj_Debug_Unicode ! Obj_Release \ No newline at end of file Index: nrtl.dsp =================================================================== RCS file: /cvsroot/okernel/nrtl/nrtl.dsp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** nrtl.dsp 8 Feb 2003 15:43:16 -0000 1.1 --- nrtl.dsp 14 May 2003 20:44:30 -0000 1.2 *************** *** 26,31 **** # Begin Project # PROP AllowPerConfigDependencies 0 ! # PROP Scc_ProjName ""$/nrtl", TAAAAAAA" ! # PROP Scc_LocalPath "." CPP=cl.exe MTL=midl.exe --- 26,31 ---- # Begin Project # PROP AllowPerConfigDependencies 0 ! # PROP Scc_ProjName "" ! # PROP Scc_LocalPath "" CPP=cl.exe MTL=midl.exe *************** *** 46,50 **** # PROP Target_Dir "" # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c ! # ADD CPP /nologo /MD /W3 /vmg /O2 /I "." /I "dist" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "JAYARTL_INTERNAL" /D "JAYARTL_STANDARDMEM" /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 --- 46,50 ---- # PROP Target_Dir "" # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c ! # ADD CPP /nologo /MD /W3 /vmg /O2 /I "." /I "jayartl" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "JAYARTL_INTERNAL" /D "JAYARTL_STANDARDMEM" /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 *************** *** 77,81 **** # PROP Target_Dir "" # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c ! # ADD CPP /nologo /MDd /W3 /Gm /vmg /ZI /Od /I "." /I "dist" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "JAYARTL_INTERNAL" /D "JAYARTL_STANDARDMEM" /YX /FD /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 --- 77,81 ---- # PROP Target_Dir "" # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c ! # ADD CPP /nologo /MDd /W3 /Gm /vmg /ZI /Od /I "." /I "jayartl" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "JAYARTL_INTERNAL" /D "JAYARTL_STANDARDMEM" /YX /FD /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 *************** *** 109,113 **** # PROP Target_Dir "" # ADD BASE CPP /nologo /MDd /W3 /Gm /vmg /ZI /Od /I "\nrtl\inc" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c ! # ADD CPP /nologo /MDd /W3 /Gm /vmg /ZI /Od /I "." /I "dist" /D "_DEBUG" /D "_UNICODE" /D "UNICODE" /D "WIN32" /D "_WINDOWS" /D "JAYARTL_INTERNAL" /D "JAYARTL_STANDARDMEM" /YX /FD /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 --- 109,113 ---- # PROP Target_Dir "" # ADD BASE CPP /nologo /MDd /W3 /Gm /vmg /ZI /Od /I "\nrtl\inc" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c ! # ADD CPP /nologo /MDd /W3 /Gm /vmg /ZI /Od /I "." /I "jayartl" /D "_DEBUG" /D "_UNICODE" /D "UNICODE" /D "WIN32" /D "_WINDOWS" /D "JAYARTL_INTERNAL" /D "JAYARTL_STANDARDMEM" /YX /FD /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 *************** *** 141,145 **** # PROP Target_Dir "" # ADD BASE CPP /nologo /MD /W3 /vmg /O2 /I "\nrtl\inc" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_UNICODE" /D "UNICODE" /YX /FD /c ! # ADD CPP /nologo /MD /W3 /vmg /O2 /I "." /I "dist" /D "NDEBUG" /D "_UNICODE" /D "UNICODE" /D "WIN32" /D "_WINDOWS" /D "JAYARTL_INTERNAL" /D "JAYARTL_STANDARDMEM" /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 --- 141,145 ---- # PROP Target_Dir "" # ADD BASE CPP /nologo /MD /W3 /vmg /O2 /I "\nrtl\inc" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_UNICODE" /D "UNICODE" /YX /FD /c ! # ADD CPP /nologo /MD /W3 /vmg /O2 /I "." /I "jayartl" /D "NDEBUG" /D "_UNICODE" /D "UNICODE" /D "WIN32" /D "_WINDOWS" /D "JAYARTL_INTERNAL" /D "JAYARTL_STANDARDMEM" /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 *************** *** 175,179 **** # Begin Source File ! SOURCE=.\dist\jayartl.cpp # End Source File # Begin Source File --- 175,179 ---- # Begin Source File ! SOURCE=.\jayartl\jayartl.cpp # End Source File # Begin Source File |
From: <dg...@us...> - 2003-05-14 20:41:09
|
Update of /cvsroot/okernel/nrtl/test In directory sc8-pr-cvs1:/tmp/cvs-serv13035/test Added Files: .cvsignore Log Message: Initial release at sourceforge dot net. --- NEW FILE: .cvsignore --- Debug Release |
From: <dg...@us...> - 2003-05-14 20:39:37
|
Update of /cvsroot/okernel/nrtl In directory sc8-pr-cvs1:/tmp/cvs-serv11044 Modified Files: .cvsignore Log Message: More to ignore. Index: .cvsignore =================================================================== RCS file: /cvsroot/okernel/nrtl/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** .cvsignore 14 May 2003 20:39:06 -0000 1.1 --- .cvsignore 14 May 2003 20:39:33 -0000 1.2 *************** *** 1,2 **** nrtl.opt ! nrtl.ncb \ No newline at end of file --- 1,3 ---- nrtl.opt ! nrtl.ncb ! Obj_Release_Unicode \ No newline at end of file |
From: <dg...@us...> - 2003-05-14 20:39:09
|
Update of /cvsroot/okernel/nrtl In directory sc8-pr-cvs1:/tmp/cvs-serv10446 Added Files: .cvsignore Log Message: Initial release at sourceforge dot net. --- NEW FILE: .cvsignore --- nrtl.opt nrtl.ncb |
From: <dg...@us...> - 2003-05-14 20:38:00
|
Update of /cvsroot/okernel/nrtl In directory sc8-pr-cvs1:/tmp/cvs-serv9101 Modified Files: todo.txt Log Message: Massive update with new MASTER PLAN. See changelog.txt and todo.txt. Index: todo.txt =================================================================== RCS file: /cvsroot/okernel/nrtl/todo.txt,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** todo.txt 9 Feb 2003 18:05:55 -0000 1.2 --- todo.txt 14 May 2003 20:37:57 -0000 1.3 *************** *** 4,30 **** * ! * Roadmap to the 4.0 release (updated 24 november 2002) PRIORITY WHAT ! 1 DONE cppunit integration ! ! 1 Integrate NSPR library to support sync object 1 Net object support ! 1 Rewrite JS integration built-in (first implementation was ! developped by (c) ERIS Automation) ! 1 Add a Class Object ! 2 Finish the Tree implementation ! 2 Add an Object for environment variable management ! 2 ! 3 ! 3 --- 4,27 ---- * ! * Roadmap to the 4.0 release (updated 14 may 2003) PRIORITY WHAT ! 1 Socket Object 1 Net object support ! 1 Spidermonkey integration ! 1 Expat integration ! 1 Associative Memory ! 2 Add a Class Object ! 1 Reflexive behaviour (kind of probe) ! 3 Finish the Tree implementation ! 3 Add an Object to manage environment variables |
From: <dg...@us...> - 2003-05-14 20:36:57
|
Update of /cvsroot/okernel/nrtl/dist In directory sc8-pr-cvs1:/tmp/cvs-serv8002/dist Removed Files: jayartl.cpp jayartl.h Log Message: Massive update with new MASTER PLAN. See changelog.txt and todo.txt. --- jayartl.cpp DELETED --- --- jayartl.h DELETED --- |
Update of /cvsroot/okernel/nrtl/test In directory sc8-pr-cvs1:/tmp/cvs-serv7044/test Modified Files: TestArray.cpp TestArray.h TestDico.cpp TestDico.h TestList.cpp TestList.h TestString.cpp TestString.h main.cpp precomp.h Log Message: Massive update with new MASTER PLAN. See changelog.txt and todo.txt. Index: TestArray.cpp =================================================================== RCS file: /cvsroot/okernel/nrtl/test/TestArray.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TestArray.cpp 8 Feb 2003 15:44:16 -0000 1.1 --- TestArray.cpp 14 May 2003 20:36:06 -0000 1.2 *************** *** 22,26 **** The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2002 the Initial Developer. All Rights Reserved. --- 22,26 ---- The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2003 the Initial Developer. All Rights Reserved. Index: TestArray.h =================================================================== RCS file: /cvsroot/okernel/nrtl/test/TestArray.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TestArray.h 8 Feb 2003 15:44:16 -0000 1.1 --- TestArray.h 14 May 2003 20:36:06 -0000 1.2 *************** *** 23,27 **** The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2002 the Initial Developer. All Rights Reserved. --- 23,27 ---- The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2003 the Initial Developer. All Rights Reserved. Index: TestDico.cpp =================================================================== RCS file: /cvsroot/okernel/nrtl/test/TestDico.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TestDico.cpp 8 Feb 2003 15:44:16 -0000 1.1 --- TestDico.cpp 14 May 2003 20:36:06 -0000 1.2 *************** *** 22,26 **** The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2002 the Initial Developer. All Rights Reserved. --- 22,26 ---- The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2003 the Initial Developer. All Rights Reserved. Index: TestDico.h =================================================================== RCS file: /cvsroot/okernel/nrtl/test/TestDico.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TestDico.h 8 Feb 2003 15:44:16 -0000 1.1 --- TestDico.h 14 May 2003 20:36:06 -0000 1.2 *************** *** 23,27 **** The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2002 the Initial Developer. All Rights Reserved. --- 23,27 ---- The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2003 the Initial Developer. All Rights Reserved. Index: TestList.cpp =================================================================== RCS file: /cvsroot/okernel/nrtl/test/TestList.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TestList.cpp 8 Feb 2003 15:44:16 -0000 1.1 --- TestList.cpp 14 May 2003 20:36:06 -0000 1.2 *************** *** 22,26 **** The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2002 the Initial Developer. All Rights Reserved. --- 22,26 ---- The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2003 the Initial Developer. All Rights Reserved. Index: TestList.h =================================================================== RCS file: /cvsroot/okernel/nrtl/test/TestList.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TestList.h 8 Feb 2003 15:44:16 -0000 1.1 --- TestList.h 14 May 2003 20:36:06 -0000 1.2 *************** *** 23,27 **** The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2002 the Initial Developer. All Rights Reserved. --- 23,27 ---- The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2003 the Initial Developer. All Rights Reserved. Index: TestString.cpp =================================================================== RCS file: /cvsroot/okernel/nrtl/test/TestString.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TestString.cpp 8 Feb 2003 15:44:16 -0000 1.1 --- TestString.cpp 14 May 2003 20:36:06 -0000 1.2 *************** *** 22,26 **** The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2002 the Initial Developer. All Rights Reserved. --- 22,26 ---- The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2003 the Initial Developer. All Rights Reserved. Index: TestString.h =================================================================== RCS file: /cvsroot/okernel/nrtl/test/TestString.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TestString.h 8 Feb 2003 15:44:16 -0000 1.1 --- TestString.h 14 May 2003 20:36:06 -0000 1.2 *************** *** 23,27 **** The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2002 the Initial Developer. All Rights Reserved. --- 23,27 ---- The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2003 the Initial Developer. All Rights Reserved. Index: main.cpp =================================================================== RCS file: /cvsroot/okernel/nrtl/test/main.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** main.cpp 9 Feb 2003 12:03:09 -0000 1.2 --- main.cpp 14 May 2003 20:36:06 -0000 1.3 *************** *** 22,26 **** The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2002 the Initial Developer. All Rights Reserved. --- 22,26 ---- The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2003 the Initial Developer. All Rights Reserved. Index: precomp.h =================================================================== RCS file: /cvsroot/okernel/nrtl/test/precomp.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** precomp.h 8 Feb 2003 15:44:16 -0000 1.1 --- precomp.h 14 May 2003 20:36:06 -0000 1.2 *************** *** 22,26 **** The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2002 the Initial Developer. All Rights Reserved. --- 22,26 ---- The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2003 the Initial Developer. All Rights Reserved. |
From: <dg...@us...> - 2003-05-14 20:36:09
|
Update of /cvsroot/okernel/nrtl/jayartl In directory sc8-pr-cvs1:/tmp/cvs-serv7044/jayartl Modified Files: jayartl.cpp jayartl.h jayartl.rc jayartl.rcv Log Message: Massive update with new MASTER PLAN. See changelog.txt and todo.txt. Index: jayartl.cpp =================================================================== RCS file: /cvsroot/okernel/nrtl/jayartl/jayartl.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** jayartl.cpp 8 Feb 2003 15:45:20 -0000 1.1 --- jayartl.cpp 14 May 2003 20:36:06 -0000 1.2 *************** *** 19,23 **** The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1999-2002 the Initial Developer. All Rights Reserved. --- 19,23 ---- The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1999-2003 the Initial Developer. All Rights Reserved. Index: jayartl.h =================================================================== RCS file: /cvsroot/okernel/nrtl/jayartl/jayartl.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** jayartl.h 8 Feb 2003 15:45:20 -0000 1.1 --- jayartl.h 14 May 2003 20:36:06 -0000 1.2 *************** *** 22,26 **** The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1999-2002 the Initial Developer. All Rights Reserved. --- 22,26 ---- The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1999-2003 the Initial Developer. All Rights Reserved. Index: jayartl.rc =================================================================== RCS file: /cvsroot/okernel/nrtl/jayartl/jayartl.rc,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** jayartl.rc 8 Feb 2003 15:45:20 -0000 1.1 --- jayartl.rc 14 May 2003 20:36:06 -0000 1.2 *************** *** 19,23 **** The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1999-2002 the Initial Developer. All Rights Reserved. --- 19,23 ---- The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1999-2003 the Initial Developer. All Rights Reserved. Index: jayartl.rcv =================================================================== RCS file: /cvsroot/okernel/nrtl/jayartl/jayartl.rcv,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** jayartl.rcv 8 Feb 2003 15:45:20 -0000 1.1 --- jayartl.rcv 14 May 2003 20:36:06 -0000 1.2 *************** *** 19,23 **** The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1999-2002 the Initial Developer. All Rights Reserved. --- 19,23 ---- The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1999-2003 the Initial Developer. All Rights Reserved. *************** *** 61,65 **** #define VER_COMPANYNAME_STR VER_AUTHOR #define VER_LEGALCOPYRIGHT_STR "Copyright \251 Gilles Dumortier," ! #define VER_LEGALCOPYRIGHT_YEARS "1999-2002" #define VER_COPYRIGHTINFO_STR VER_LEGALCOPYRIGHT_STR VER_LEGALCOPYRIGHT_YEARS #define VER_PRODUCTNAME_STR "\256JayaRTL\0" --- 61,65 ---- #define VER_COMPANYNAME_STR VER_AUTHOR #define VER_LEGALCOPYRIGHT_STR "Copyright \251 Gilles Dumortier," ! #define VER_LEGALCOPYRIGHT_YEARS "1999-2003" #define VER_COPYRIGHTINFO_STR VER_LEGALCOPYRIGHT_STR VER_LEGALCOPYRIGHT_YEARS #define VER_PRODUCTNAME_STR "\256JayaRTL\0" |
From: <dg...@us...> - 2003-05-14 20:36:09
|
Update of /cvsroot/okernel/nrtl/inc In directory sc8-pr-cvs1:/tmp/cvs-serv7044/inc Modified Files: nrtl.h version.h Log Message: Massive update with new MASTER PLAN. See changelog.txt and todo.txt. Index: nrtl.h =================================================================== RCS file: /cvsroot/okernel/nrtl/inc/nrtl.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** nrtl.h 9 Feb 2003 12:05:50 -0000 1.2 --- nrtl.h 14 May 2003 20:36:06 -0000 1.3 *************** *** 23,27 **** The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2002 the Initial Developer. All Rights Reserved. --- 23,27 ---- The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1992-2003 the Initial Developer. All Rights Reserved. *************** *** 72,76 **** // =========================================================================== ! #define NRTL_HEADER_RELEASE_11242002 #define NTRL_MAJOR_VERSION 4 --- 72,76 ---- // =========================================================================== ! #define NRTL_HEADER_RELEASE_05142003 #define NTRL_MAJOR_VERSION 4 Index: version.h =================================================================== RCS file: /cvsroot/okernel/nrtl/inc/version.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** version.h 8 Feb 2003 15:44:47 -0000 1.1 --- version.h 14 May 2003 20:36:06 -0000 1.2 *************** *** 6,10 **** This file is only modified by the official builder. ! Copyright (C) 1999-2002 Gilles Dumortier [dgil] Permission is granted to any individual to use, copy, or redistribute --- 6,10 ---- This file is only modified by the official builder. ! Copyright (C) 1999-2003 Gilles Dumortier [dgil] Permission is granted to any individual to use, copy, or redistribute *************** *** 41,45 **** /* the following values should be modified by the official */ /* builder for each general build */ ! /* ERIS Automation PROCESS : */ /* INCREMENT BUILD NUMBER FOR EACH GLOBAL CHANGE IN THIS FILE */ /* VERSION = "VERSION.RELEASE.BUILD" */ --- 41,45 ---- /* the following values should be modified by the official */ /* builder for each general build */ ! /* PROCESS : */ /* INCREMENT BUILD NUMBER FOR EACH GLOBAL CHANGE IN THIS FILE */ /* VERSION = "VERSION.RELEASE.BUILD" */ *************** *** 47,53 **** /*--------------------------------------------------------------*/ ! #define VERSION TEXT("3.0.24") ! #define VER_PRODUCTVERSION_STR TEXT("3.0.24\0") ! #define VER_PRODUCTVERSION 3,0,0,24 /*--------------------------------------------------------------*/ --- 47,53 ---- /*--------------------------------------------------------------*/ ! #define VERSION TEXT("4.0.26") ! #define VER_PRODUCTVERSION_STR TEXT("4.0.26\0") ! #define VER_PRODUCTVERSION 4,0,0,26 /*--------------------------------------------------------------*/ *************** *** 82,86 **** #define VER_LEGALTRADEMARKS_STR TEXT("\256NRTL property of Gilles Dumortier.\0") #define VER_LEGALCOPYRIGHT_STR TEXT("Copyright \251 Gilles Dumortier,") ! #define VER_LEGALCOPYRIGHT_YEARS TEXT("1992-2002") #define VER_COPYRIGHTINFO_STR VER_LEGALCOPYRIGHT_STR VER_LEGALCOPYRIGHT_YEARS --- 82,86 ---- #define VER_LEGALTRADEMARKS_STR TEXT("\256NRTL property of Gilles Dumortier.\0") #define VER_LEGALCOPYRIGHT_STR TEXT("Copyright \251 Gilles Dumortier,") ! #define VER_LEGALCOPYRIGHT_YEARS TEXT("1992-2003") #define VER_COPYRIGHTINFO_STR VER_LEGALCOPYRIGHT_STR VER_LEGALCOPYRIGHT_YEARS |
From: <dg...@us...> - 2003-05-14 20:36:09
|
Update of /cvsroot/okernel/nrtl/dist In directory sc8-pr-cvs1:/tmp/cvs-serv7044/dist Modified Files: jayartl.cpp jayartl.h Log Message: Massive update with new MASTER PLAN. See changelog.txt and todo.txt. Index: jayartl.cpp =================================================================== RCS file: /cvsroot/okernel/nrtl/dist/jayartl.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** jayartl.cpp 8 Feb 2003 15:46:15 -0000 1.1 --- jayartl.cpp 14 May 2003 20:36:05 -0000 1.2 *************** *** 19,23 **** The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1999-2002 the Initial Developer. All Rights Reserved. --- 19,23 ---- The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1999-2003 the Initial Developer. All Rights Reserved. Index: jayartl.h =================================================================== RCS file: /cvsroot/okernel/nrtl/dist/jayartl.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** jayartl.h 8 Feb 2003 15:46:15 -0000 1.1 --- jayartl.h 14 May 2003 20:36:05 -0000 1.2 *************** *** 22,26 **** The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1999-2002 the Initial Developer. All Rights Reserved. --- 22,26 ---- The Initial Developer of the Original Code is Gilles DUMORTIER ! Portions created by the Initial Developer are Copyright (C) 1999-2003 the Initial Developer. All Rights Reserved. |