~ubuntu-branches/ubuntu/feisty/fpc/feisty

« back to all changes in this revision

Viewing changes to packages/extra/ptc/c_api/timerd.inc

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2007-01-27 20:08:50 UTC
  • mfrom: (1.2.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20070127200850-9mrptaqqjsx9nwa7
Tags: 2.0.4-5
* Fixed Build-Depends.
* Add myself to Uploaders in debian/control.
* Make sure that the sources are really patched before building them.
* Build unit 'libc' on powerpc too.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{ setup }
 
2
Function ptc_timer_create : TPTC_TIMER;
 
3
Procedure ptc_timer_destroy(obj : TPTC_TIMER);
 
4
 
 
5
{ set time }
 
6
Procedure ptc_timer_set(obj : TPTC_TIMER; time : Double);
 
7
 
 
8
{ control }
 
9
Procedure ptc_timer_start(obj : TPTC_TIMER);
 
10
Procedure ptc_timer_stop(obj : TPTC_TIMER);
 
11
 
 
12
{ time data }
 
13
Function ptc_timer_time(obj : TPTC_TIMER) : Double;
 
14
Function ptc_timer_delta(obj : TPTC_TIMER) : Double;
 
15
Function ptc_timer_resolution(obj : TPTC_TIMER) : Double;
 
16
 
 
17
{ operators }
 
18
Procedure ptc_timer_assign(obj, timer : TPTC_TIMER);
 
19
Function ptc_timer_equals(obj, timer : TPTC_TIMER) : Boolean;