Revision: | 140 |
Committed: | Fri Oct 22 20:22:48 2004 UTC (20 years, 6 months ago) by gezelter |
Content type: | text/plain |
File size: | 489 byte(s) |
Log Message: | Added un-busticated fortran files and c/Fortran interfaces |
# | Content |
---|---|
1 | /* |
2 | * charge_interface.h |
3 | * oopse |
4 | * |
5 | * Created by Charles Vardeman II on 10/21/04. |
6 | * Copyright 2004 University of Notre Dame. All rights reserved. |
7 | * |
8 | */ |
9 | |
10 | |
11 | |
12 | |
13 | #ifndef USETHEFORCE_DARKSIDE_CHARGE_INTERFACE_H |
14 | #define USETHEFORCE_DARKSIDE_CHARGE_INTERFACE_H |
15 | |
16 | #define __C |
17 | |
18 | #include "config.h" |
19 | |
20 | #define newChargeType F90_FUNC(newchargetype, NEWCHARGETYPE) |
21 | |
22 | extern "C"{ |
23 | void newChargeType( int* ident, |
24 | double* charge, |
25 | int* status); |
26 | } |
27 | #endif |
28 |