author | koda |
Wed, 01 Dec 2010 00:58:03 +0100 | |
changeset 4437 | 05192cdbce9b |
parent 4187 | adb144a907aa |
child 4438 | 39ab70b37e01 |
permissions | -rw-r--r-- |
2698 | 1 |
// fptest |
2 |
// |
|
3 |
// Created by Vittorio on 08/01/10. |
|
4 |
// Copyright __MyCompanyName__ 2010. All rights reserved. |
|
5 |
||
6 |
Library hwLibrary; |
|
7 |
||
8 |
// Add all your Pascal units to the "uses" clause below to add them to the program. |
|
9 |
||
10 |
// Mark all Pascal procedures/functions that you wish to call from C/C++/Objective-C code using |
|
11 |
// "cdecl; export;" (see the fpclogo.pas unit for an example), and then add C-declarations for |
|
12 |
// these procedures/functions to the PascalImports.h file (also in the "Pascal Sources" group) |
|
13 |
// to make these functions available in the C/C++/Objective-C source files |
|
14 |
// (add "#include PascalImports.h" near the top of these files if it's not there yet) |
|
4437
05192cdbce9b
un-break build (wrong merge in uConsole) and update project file with the new sources
koda
parents:
4187
diff
changeset
|
15 |
uses cmem, uVariables, PascalExports; |
4187 | 16 |
begin |
17 |
// avoid compiler warnings about units not being used |
|
18 |
isTerminated:= isTerminated; |
|
19 |
dummy:= dummy; |
|
2698 | 20 |
end. |
21 |