Changeset 42
- Timestamp:
- 02/11/06 21:40:51 (3 years ago)
- Location:
- trunk/orca
- Files:
-
- 23 modified
-
array.c (modified) (1 diff)
-
bytecode.c (modified) (1 diff)
-
console.c (modified) (1 diff)
-
context.c (modified) (1 diff)
-
error.c (modified) (1 diff)
-
files.c (modified) (1 diff)
-
gc.c (modified) (1 diff)
-
gl/gx.c (modified) (1 diff)
-
gl/gx.h (modified) (1 diff)
-
math.c (modified) (1 diff)
-
math3d.c (modified) (1 diff)
-
math3d.h (modified) (1 diff)
-
op.c (modified) (1 diff)
-
ovalue.c (modified) (1 diff)
-
ovalue.h (modified) (1 diff)
-
parse.c (modified) (1 diff)
-
print.c (modified) (1 diff)
-
qt/qorca.cpp (modified) (1 diff)
-
qt/qorca.h (modified) (1 diff)
-
series.c (modified) (1 diff)
-
stdio.c (modified) (1 diff)
-
unix/os.c (modified) (1 diff)
-
win32/os.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/orca/array.c
r1 r42 1 1 /*============================================================================ 2 ORCA - A REBOLInterpreter3 Copyright (C) 2005 Karl Robillard2 ORCA Interpreter 3 Copyright (C) 2005-2006 Karl Robillard 4 4 5 5 This library is free software; you can redistribute it and/or -
trunk/orca/bytecode.c
r26 r42 1 1 /*============================================================================ 2 ORCA - A REBOLInterpreter3 Copyright (C) 2005 Karl Robillard2 ORCA Interpreter 3 Copyright (C) 2005-2006 Karl Robillard 4 4 5 5 This library is free software; you can redistribute it and/or -
trunk/orca/console.c
r31 r42 1 1 /*============================================================================ 2 ORCA - A REBOLInterpreter3 Copyright (C) 2005 Karl Robillard2 ORCA Interpreter 3 Copyright (C) 2005-2006 Karl Robillard 4 4 5 5 This library is free software; you can redistribute it and/or -
trunk/orca/context.c
r31 r42 1 1 /*============================================================================ 2 ORCA - A REBOLInterpreter3 Copyright (C) 2005 Karl Robillard2 ORCA Interpreter 3 Copyright (C) 2005-2006 Karl Robillard 4 4 5 5 This library is free software; you can redistribute it and/or -
trunk/orca/error.c
r1 r42 1 1 /*============================================================================ 2 ORCA - A REBOLInterpreter3 Copyright (C) 2005 Karl Robillard2 ORCA Interpreter 3 Copyright (C) 2005-2006 Karl Robillard 4 4 5 5 This library is free software; you can redistribute it and/or -
trunk/orca/files.c
r37 r42 1 1 /*============================================================================ 2 ORCA - A REBOLInterpreter3 Copyright (C) 2005 Karl Robillard2 ORCA Interpreter 3 Copyright (C) 2005-2006 Karl Robillard 4 4 5 5 This library is free software; you can redistribute it and/or -
trunk/orca/gc.c
r31 r42 1 1 /*============================================================================ 2 ORCA - A REBOLInterpreter3 Copyright (C) 2005 Karl Robillard2 ORCA Interpreter 3 Copyright (C) 2005-2006 Karl Robillard 4 4 5 5 This library is free software; you can redistribute it and/or -
trunk/orca/gl/gx.c
r37 r42 1 /*============================================================================ 2 ORCA OpenGL Module 3 Copyright (C) 2005-2006 Karl Robillard 4 5 This library is free software; you can redistribute it and/or 6 modify it under the terms of the GNU Lesser General Public 7 License as published by the Free Software Foundation; either 8 version 2.1 of the License, or (at your option) any later version. 9 10 This library is distributed in the hope that it will be useful, 11 but WITHOUT ANY WARRANTY; without even the implied warranty of 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 13 Lesser General Public License for more details. 14 15 You should have received a copy of the GNU Lesser General Public 16 License along with this library; if not, write to the Free Software 17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 ===========================================================================*/ 1 19 2 20 -
trunk/orca/gl/gx.h
r33 r42 1 1 #ifndef GX_H 2 2 #define GX_H 3 /*============================================================================ 4 ORCA OpenGL Module 5 Copyright (C) 2005-2006 Karl Robillard 6 7 This library is free software; you can redistribute it and/or 8 modify it under the terms of the GNU Lesser General Public 9 License as published by the Free Software Foundation; either 10 version 2.1 of the License, or (at your option) any later version. 11 12 This library is distributed in the hope that it will be useful, 13 but WITHOUT ANY WARRANTY; without even the implied warranty of 14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 15 Lesser General Public License for more details. 16 17 You should have received a copy of the GNU Lesser General Public 18 License along with this library; if not, write to the Free Software 19 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 20 ===========================================================================*/ 3 21 4 22 -
trunk/orca/math.c
r25 r42 1 1 /*============================================================================ 2 ORCA - A REBOLInterpreter3 Copyright (C) 2005 Karl Robillard2 ORCA Interpreter 3 Copyright (C) 2005-2006 Karl Robillard 4 4 5 5 This library is free software; you can redistribute it and/or -
trunk/orca/math3d.c
r25 r42 1 1 /*============================================================================ 2 2 ORCA Interpreter 3 Copyright (C) 2005 Karl Robillard3 Copyright (C) 2005-2006 Karl Robillard 4 4 5 5 This library is free software; you can redistribute it and/or -
trunk/orca/math3d.h
r1 r42 3 3 /*============================================================================ 4 4 ORCA Interpreter 5 Copyright (C) 2005 Karl Robillard5 Copyright (C) 2005-2006 Karl Robillard 6 6 7 7 This library is free software; you can redistribute it and/or -
trunk/orca/op.c
r39 r42 1 1 /*============================================================================ 2 ORCA - A REBOLInterpreter3 Copyright (C) 2005 Karl Robillard2 ORCA Interpreter 3 Copyright (C) 2005-2006 Karl Robillard 4 4 5 5 This library is free software; you can redistribute it and/or -
trunk/orca/ovalue.c
r37 r42 1 1 /*============================================================================ 2 ORCA - A REBOLInterpreter3 Copyright (C) 2005 Karl Robillard2 ORCA Interpreter 3 Copyright (C) 2005-2006 Karl Robillard 4 4 5 5 This library is free software; you can redistribute it and/or -
trunk/orca/ovalue.h
r39 r42 2 2 #define OVALUE_H 3 3 /*============================================================================ 4 ORCA - A REBOLInterpreter5 Copyright (C) 2005 Karl Robillard4 ORCA Interpreter 5 Copyright (C) 2005-2006 Karl Robillard 6 6 7 7 This library is free software; you can redistribute it and/or -
trunk/orca/parse.c
r25 r42 1 1 /*============================================================================ 2 ORCA - A REBOLInterpreter3 Copyright (C) 2005 Karl Robillard2 ORCA Interpreter 3 Copyright (C) 2005-2006 Karl Robillard 4 4 5 5 This library is free software; you can redistribute it and/or -
trunk/orca/print.c
r37 r42 1 1 /*============================================================================ 2 ORCA - A REBOLInterpreter3 Copyright (C) 2005 Karl Robillard2 ORCA Interpreter 3 Copyright (C) 2005-2006 Karl Robillard 4 4 5 5 This library is free software; you can redistribute it and/or -
trunk/orca/qt/qorca.cpp
r37 r42 1 /*============================================================================ 2 ORCA Qt Module 3 Copyright (C) 2005-2006 Karl Robillard 4 5 This program is free software; you can redistribute it and/or 6 modify it under the terms of the GNU General Public License 7 as published by the Free Software Foundation; either version 2 8 of the License, or (at your option) any later version. 9 10 This program is distributed in the hope that it will be useful, 11 but WITHOUT ANY WARRANTY; without even the implied warranty of 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 GNU General Public License for more details. 14 15 You should have received a copy of the GNU General Public License 16 along with this program; if not, write to the Free Software 17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 18 02110-1301, USA. 19 ============================================================================*/ 1 20 2 21 -
trunk/orca/qt/qorca.h
r37 r42 1 1 #ifndef QORCA_H 2 2 #define QORCA_H 3 /*============================================================================ 4 ORCA Qt Module 5 Copyright (C) 2005-2006 Karl Robillard 6 7 This program is free software; you can redistribute it and/or 8 modify it under the terms of the GNU General Public License 9 as published by the Free Software Foundation; either version 2 10 of the License, or (at your option) any later version. 11 12 This program is distributed in the hope that it will be useful, 13 but WITHOUT ANY WARRANTY; without even the implied warranty of 14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 GNU General Public License for more details. 16 17 You should have received a copy of the GNU General Public License 18 along with this program; if not, write to the Free Software 19 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 20 02110-1301, USA. 21 ============================================================================*/ 3 22 4 23 -
trunk/orca/series.c
r37 r42 1 1 /*============================================================================ 2 ORCA - A REBOLInterpreter3 Copyright (C) 2005 Karl Robillard2 ORCA Interpreter 3 Copyright (C) 2005-2006 Karl Robillard 4 4 5 5 This library is free software; you can redistribute it and/or -
trunk/orca/stdio.c
r37 r42 1 1 /*============================================================================ 2 ORCA - A REBOLInterpreter3 Copyright (C) 2005 Karl Robillard2 ORCA Interpreter 3 Copyright (C) 2005-2006 Karl Robillard 4 4 5 5 This library is free software; you can redistribute it and/or -
trunk/orca/unix/os.c
r37 r42 1 1 /*============================================================================ 2 ORCA - A REBOLInterpreter3 Copyright (C) 2005 Karl Robillard2 ORCA Interpreter 3 Copyright (C) 2005-2006 Karl Robillard 4 4 5 5 This library is free software; you can redistribute it and/or -
trunk/orca/win32/os.c
r37 r42 1 1 /*============================================================================ 2 ORCA - A REBOLInterpreter3 Copyright (C) 2005 Karl Robillard2 ORCA Interpreter 3 Copyright (C) 2005-2006 Karl Robillard 4 4 5 5 This library is free software; you can redistribute it and/or
