~ubuntu-branches/ubuntu/lucid/dvd95/lucid

« back to all changes in this revision

Viewing changes to src/systools.h

  • Committer: Bazaar Package Importer
  • Author(s): Alessio Treglia
  • Date: 2010-02-14 20:45:14 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20100214204514-k1l8jra595vc57xd
Tags: 1.6p0-0ubuntu1
* New upstream release.
* Switch to debhelper 7.
* Use quilt as patch system:
  - Drop dpatch support.
  - Convert all patches to quilt format.
  - Update debian/README.source.
* Refresh patches.
* Drop 04_dvdinfo.c.patch, applied by upstream.
* Update debian/copyright.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
 
15
15
#ifndef __SYSTOOLS_H__
16
16
#define __SYSTOOLS_H__
17
 
/*@$#[systools.c] global proto. AutoProtoSigV1.1. date: 2009/07/07 22:23:06 */
 
17
 
 
18
#include <sys/time.h>
 
19
 
 
20
typedef struct {
 
21
        struct timeval StartTime;
 
22
        struct timeval EndTime;
 
23
} Timer_t;
 
24
 
 
25
/*@$#[systools.c] global proto. AutoProtoSigV1.1. date: 2010/02/04 20:55:30 */
18
26
#include "proto.h"
19
27
#ifdef __cplusplus
20
28
extern "C" {
44
52
int CanCreateFile(char *dirName);
45
53
char *GetMkIsoTool(void);
46
54
char *GetEnv(char *evKey, char *defValue);
 
55
Timer_t *StartTimer(void);
 
56
void StopTimer(Timer_t *timer);
 
57
double ElapsedTimer(Timer_t *timer);
 
58
void FreeTimer(Timer_t *timer);
 
59
long long CpuPhysMemSize(void);
47
60
#ifdef __cplusplus
48
61
}
49
62
#endif