Commit 7334bd9e authored by Peter Eastman's avatar Peter Eastman
Browse files

Added some missing Windows EXPORTs

parent 55678aa1
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
#include <stdio.h> #include <stdio.h>
#include "openmm/internal/windowsExport.h"
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {
...@@ -109,6 +109,7 @@ typedef enum fftpack_direction ...@@ -109,6 +109,7 @@ typedef enum fftpack_direction
* \return status - 0 or a standard error message. * \return status - 0 or a standard error message.
*/ */
int int
OPENMM_EXPORT
fftpack_init_1d (fftpack_t * fft, fftpack_init_1d (fftpack_t * fft,
int nx); int nx);
...@@ -124,6 +125,7 @@ fftpack_init_1d (fftpack_t * fft, ...@@ -124,6 +125,7 @@ fftpack_init_1d (fftpack_t * fft,
* *
*/ */
int int
OPENMM_EXPORT
fftpack_init_2d (fftpack_t * fft, fftpack_init_2d (fftpack_t * fft,
int nx, int nx,
int ny); int ny);
...@@ -142,6 +144,7 @@ fftpack_init_2d (fftpack_t * fft, ...@@ -142,6 +144,7 @@ fftpack_init_2d (fftpack_t * fft,
* *
*/ */
int int
OPENMM_EXPORT
fftpack_init_3d (fftpack_t * fft, fftpack_init_3d (fftpack_t * fft,
int nx, int nx,
int ny, int ny,
...@@ -167,6 +170,7 @@ fftpack_init_3d (fftpack_t * fft, ...@@ -167,6 +170,7 @@ fftpack_init_3d (fftpack_t * fft,
* depending on your grid type. * depending on your grid type.
*/ */
int int
OPENMM_EXPORT
fftpack_exec_1d (fftpack_t setup, fftpack_exec_1d (fftpack_t setup,
enum fftpack_direction dir, enum fftpack_direction dir,
t_complex * in_data, t_complex * in_data,
...@@ -189,6 +193,7 @@ fftpack_exec_1d (fftpack_t setup, ...@@ -189,6 +193,7 @@ fftpack_exec_1d (fftpack_t setup,
* depending on your grid type. * depending on your grid type.
*/ */
int int
OPENMM_EXPORT
fftpack_exec_2d (fftpack_t setup, fftpack_exec_2d (fftpack_t setup,
enum fftpack_direction dir, enum fftpack_direction dir,
t_complex * in_data, t_complex * in_data,
...@@ -212,6 +217,7 @@ fftpack_exec_2d (fftpack_t setup, ...@@ -212,6 +217,7 @@ fftpack_exec_2d (fftpack_t setup,
* depending on your grid type. * depending on your grid type.
*/ */
int int
OPENMM_EXPORT
fftpack_exec_3d (fftpack_t setup, fftpack_exec_3d (fftpack_t setup,
enum fftpack_direction dir, enum fftpack_direction dir,
t_complex * in_data, t_complex * in_data,
...@@ -227,6 +233,7 @@ fftpack_exec_3d (fftpack_t setup, ...@@ -227,6 +233,7 @@ fftpack_exec_3d (fftpack_t setup,
* *
*/ */
void void
OPENMM_EXPORT
fftpack_destroy (fftpack_t setup); fftpack_destroy (fftpack_t setup);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment