comparison YLCStuff.h @ 0:d9aae7d7f2c6

Import
author Daniele Nicolodi <daniele.nicolodi@obspm.fr>
date Tue, 03 Jul 2012 10:38:59 +0200
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:d9aae7d7f2c6
1 //==============================================================================
2 //
3 // Title: YLCStuff.h
4 // Purpose: A short description of the interface.
5 //
6 // Created on: 19/08/2008 at 10:06:43 by pascal blonde.
7 // Copyright: syrte. All Rights Reserved.
8 //
9 //==============================================================================
10
11 #ifndef __YLCStuff_H__
12 #define __YLCStuff_H__
13
14 #ifdef __cplusplus
15 extern "C" {
16 #endif
17
18 //==============================================================================
19 // Include files
20
21 #include "cvidef.h"
22
23 //==============================================================================
24 // Constants
25
26 //==============================================================================
27 // Types
28
29 typedef int bool;
30
31 #define FALSE 0
32 #define TRUE 1
33
34 typedef int PanelHandle ;
35
36
37 //==============================================================================
38 // External variables
39
40 //==============================================================================
41 // Global functions
42
43 double Peta (double x);
44 double Tera (double x);
45 double Giga (double x);
46 double Mega (double x);
47 double kilo (double x);
48 double milli(double x);
49 double micro(double x);
50 double nano (double x);
51 double pico (double x);
52 double femto(double x);
53 double atto (double x);
54
55 #ifdef __cplusplus
56 }
57 #endif
58
59 #endif /* ndef __YLCStuff_H__ */