Accessing Mixed-Language, External Variables in FORTRANLast reviewed: July 17, 1995Article ID: Q60076 |
The information in this article applies to:
SUMMARYThe following is a sample C and FORTRAN mixed-language program demonstrating how to access external variables from within Microsoft FORTRAN.
FORTRAN Code
SUBROUTINE ASSIGN INTEGER*2 X [EXTERN, ALIAS:'_extrn'] X = 2 END C Code
#include <stdio.h>extern void fortran assign(void); int extrn;main() { extrn = 5; printf("Before call to FORTRAN: %d\n",extrn); assign(); printf(" After call to FORTRAN: %d\n",extrn);}
MORE INFORMATIONTo use global variables exported from another language in FORTRAN, the EXTERN attribute must be used. EXTERN tells the FORTRAN compiler that the variable is not local to the FORTRAN subroutine or function. Variables declared EXTERN will instead be resolved by the linker. You can use the ALIAS attribute to assign a different name to the imported variable; in this example, it is required because the underscore prepended by the C compiler is invalid in the FORTRAN naming convention. No modifications should be necessary for the exporting module to allow FORTRAN to import the global variable(s).
|
Additional reference words: kbinf 4.10 5.00 5.10
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |