4c039060 |
1 | /************************************************************************** |
2 | * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * |
3 | * * |
4 | * Author: The ALICE Off-line Project. * |
5 | * Contributors are mentioned in the code where appropriate. * |
6 | * * |
7 | * Permission to use, copy, modify and distribute this software and its * |
8 | * documentation strictly for non-commercial purposes is hereby granted * |
9 | * without fee, provided that the above copyright notice appears in all * |
10 | * copies and that both the copyright notice and this permission notice * |
11 | * appear in the supporting documentation. The authors make no claims * |
12 | * about the suitability of this software for any purpose. It is * |
13 | * provided "as is" without express or implied warranty. * |
14 | **************************************************************************/ |
15 | |
16 | /* |
17 | $Log$ |
18 | */ |
19 | |
fe4da5cc |
20 | #include <stdio.h> |
21 | /* |
22 | |
23 | dummy entry points for phos |
24 | |
25 | */ |
26 | |
27 | #ifdef WIN32 |
28 | #define shlist SHLIST |
29 | #define shinit SHINIT |
30 | #define shevnt SHEVNT |
31 | #define reconsfirst RECONSFIRST |
32 | #define type_of_call _stdcall |
33 | #else |
34 | #define shlist shlist_ |
35 | #define shinit shinit_ |
36 | #define shevnt shevnt_ |
37 | #define reconsfirst reconsfirst_ |
38 | #define type_of_call |
39 | #endif |
40 | |
41 | #define DUMMY(name) \ |
42 | extern "C" type_of_call void name() {\ |
43 | printf("Dummy version of \"" #name "\" reached \n"); \ |
44 | } |
45 | |
46 | DUMMY(shlist) |
47 | DUMMY(shinit) |
48 | DUMMY(shevnt) |
49 | DUMMY(reconsfirst) |
50 | |
51 | |