hedgewars/hwLibrary.pas
author sheepluva
Wed, 07 Apr 2010 16:03:21 +0000
changeset 3322 80afcb97eb46
parent 3245 252be02536ab
child 3464 cdb0ddeb38ba
permissions -rw-r--r--
* INSTALL file: setting FreePascal to >= 2.2.0 * engine: some more value caching
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2698
90585aba87ad objc/pascal finally working
koda
parents:
diff changeset
     1
//  fptest
90585aba87ad objc/pascal finally working
koda
parents:
diff changeset
     2
//
90585aba87ad objc/pascal finally working
koda
parents:
diff changeset
     3
//  Created by Vittorio on 08/01/10.
90585aba87ad objc/pascal finally working
koda
parents:
diff changeset
     4
//  Copyright __MyCompanyName__ 2010. All rights reserved.
90585aba87ad objc/pascal finally working
koda
parents:
diff changeset
     5
90585aba87ad objc/pascal finally working
koda
parents:
diff changeset
     6
Library hwLibrary;
90585aba87ad objc/pascal finally working
koda
parents:
diff changeset
     7
90585aba87ad objc/pascal finally working
koda
parents:
diff changeset
     8
// Add all your Pascal units to the "uses" clause below to add them to the program.
90585aba87ad objc/pascal finally working
koda
parents:
diff changeset
     9
90585aba87ad objc/pascal finally working
koda
parents:
diff changeset
    10
// Mark all Pascal procedures/functions that you wish to call from C/C++/Objective-C code using
90585aba87ad objc/pascal finally working
koda
parents:
diff changeset
    11
// "cdecl; export;" (see the fpclogo.pas unit for an example), and then add C-declarations for
90585aba87ad objc/pascal finally working
koda
parents:
diff changeset
    12
// these procedures/functions to the PascalImports.h file (also in the "Pascal Sources" group)
90585aba87ad objc/pascal finally working
koda
parents:
diff changeset
    13
// to make these functions available in the C/C++/Objective-C source files
90585aba87ad objc/pascal finally working
koda
parents:
diff changeset
    14
// (add "#include PascalImports.h" near the top of these files if it's not there yet)
3245
252be02536ab fix an error in passing strings between ObjC and Pascal
koda
parents: 2698
diff changeset
    15
uses cmem, hwengine;
2698
90585aba87ad objc/pascal finally working
koda
parents:
diff changeset
    16
90585aba87ad objc/pascal finally working
koda
parents:
diff changeset
    17
end.
90585aba87ad objc/pascal finally working
koda
parents:
diff changeset
    18