diff options
author | cornet | 2009-04-22 05:54:43 +0000 |
---|---|---|
committer | cornet | 2009-04-22 05:54:43 +0000 |
commit | 879e2ac0a540fa1b199e20d47830aa5eea484a4c (patch) | |
tree | 69ef4242aa8ce27332dec2a27f4e7f10a6f9e8fb /src/matrixOperations/includes/matrixInversion.h | |
parent | 1811fe5588d0cfbb788ab8f477800af3f45dd710 (diff) | |
download | scilab2c-879e2ac0a540fa1b199e20d47830aa5eea484a4c.tar.gz scilab2c-879e2ac0a540fa1b199e20d47830aa5eea484a4c.tar.bz2 scilab2c-879e2ac0a540fa1b199e20d47830aa5eea484a4c.zip |
build with visual studio (dynamic libraries)
Diffstat (limited to 'src/matrixOperations/includes/matrixInversion.h')
-rw-r--r-- | src/matrixOperations/includes/matrixInversion.h | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/src/matrixOperations/includes/matrixInversion.h b/src/matrixOperations/includes/matrixInversion.h index b1de5392..90312459 100644 --- a/src/matrixOperations/includes/matrixInversion.h +++ b/src/matrixOperations/includes/matrixInversion.h @@ -15,7 +15,11 @@ #define __MATRIXINVERSION_H__ #include "abs.h" +#include "dynlib_matrixoperations.h" +#ifdef __cplusplus +extern "C" { +#endif /* ** \brief Compute the matrix inverse for floats. ** \param in : input matrix. @@ -23,7 +27,7 @@ ** \param out : the matrix inverse of the input . */ -void sinverma ( float* in, float* out, int leadDimIn ); +EXTERN_MATOPS void sinverma ( float* in, float* out, int leadDimIn ); /* ** \brief Compute the matrix inverse for doubles. @@ -33,7 +37,7 @@ void sinverma ( float* in, float* out, int leadDimIn ); */ -void dinverma ( double* in, double* out, int leadDimIn ); +EXTERN_MATOPS void dinverma ( double* in, double* out, int leadDimIn ); /* ** \brief Compute the matrix inverse for complex floats . @@ -43,7 +47,7 @@ void dinverma ( double* in, double* out, int leadDimIn ); */ -void cinverma ( floatComplex* in, floatComplex* out, int leadDimIn ); +EXTERN_MATOPS void cinverma ( floatComplex* in, floatComplex* out, int leadDimIn ); /* ** \brief Compute the matrix inverse for complex doubles. @@ -53,7 +57,10 @@ void cinverma ( floatComplex* in, floatComplex* out, int leadDimIn ); */ -void zinverma ( doubleComplex* in, doubleComplex* out, int leadDimIn ); +EXTERN_MATOPS void zinverma ( doubleComplex* in, doubleComplex* out, int leadDimIn ); +#ifdef __cplusplus +} /* extern "C" */ +#endif #endif /* !__MATRIXINVERSION_H__ */ |