test1.h
来自「用c语言实现了图像二维快速傅里叶变换」· C头文件 代码 · 共 80 行
H
80 行
/*
* MATLAB Compiler: 4.3 (R14SP3)
* Date: Sun Feb 24 09:26:24 2008
* Arguments: "-B" "macro_default" "-W" "lib:test1" "-T" "link:lib" "test1.m"
*/
#ifndef __test1_h
#define __test1_h 1
#if defined(__cplusplus) && !defined(mclmcr_h) && defined(__linux__)
# pragma implementation "mclmcr.h"
#endif
#include "mclmcr.h"
#ifdef __cplusplus
extern "C" {
#endif
#if defined(__SUNPRO_CC)
/* Solaris shared libraries use __global, rather than mapfiles
* to define the API exported from a shared library. __global is
* only necessary when building the library -- files including
* this header file to use the library do not need the __global
* declaration; hence the EXPORTING_<library> logic.
*/
#ifdef EXPORTING_test1
#define PUBLIC_test1_C_API __global
#else
#define PUBLIC_test1_C_API /* No import statement needed. */
#endif
#define LIB_test1_C_API PUBLIC_test1_C_API
#elif defined(_HPUX_SOURCE)
#ifdef EXPORTING_test1
#define PUBLIC_test1_C_API __declspec(dllexport)
#else
#define PUBLIC_test1_C_API __declspec(dllimport)
#endif
#define LIB_test1_C_API PUBLIC_test1_C_API
#else
#define LIB_test1_C_API
#endif
/* This symbol is defined in shared libraries. Define it here
* (to nothing) in case this isn't a shared library.
*/
#ifndef LIB_test1_C_API
#define LIB_test1_C_API /* No special import/export declaration */
#endif
extern LIB_test1_C_API
bool test1InitializeWithHandlers(mclOutputHandlerFcn error_handler,
mclOutputHandlerFcn print_handler);
extern LIB_test1_C_API
bool test1Initialize(void);
extern LIB_test1_C_API
void test1Terminate(void);
extern LIB_test1_C_API
void mlxTest1(int nlhs, mxArray *plhs[], int nrhs, mxArray *prhs[]);
extern LIB_test1_C_API void mlfTest1(int nargout, mxArray** y, mxArray* n);
#ifdef __cplusplus
}
#endif
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?