00001
00002
00003
00004
00006
00008
00009
00010
00012
00013
00014
00015 #ifndef SRM_CREATESTANDARDSRF_H_INCLUDED
00016 #define SRM_CREATESTANDARDSRF_H_INCLUDED
00017
00018 #if !defined(_WIN32)
00019 #define EXPORT_DLL
00020 #elif !defined(EXPORT_DLL)
00021 #if defined(_LIB)
00022 #define EXPORT_DLL
00023 #elif defined(_USRDLL)
00024 #define EXPORT_DLL __declspec(dllexport)
00025 #else
00026 #define EXPORT_DLL __declspec(dllimport)
00027 #endif
00028 #endif
00029
00030 #include "srm.h"
00031
00032 #ifdef __cplusplus
00033 extern "C" {
00034 #endif
00035
00044 EXPORT_DLL extern SRM_Status_Code
00045 SRM_CreateStandardSRF
00046 (
00047 SRM_SRF_Code srf_code,
00048 SRM_RT_Code rt_code,
00049 SRM_Object_Reference *new_srf
00050 );
00051
00052
00053 #ifdef __cplusplus
00054 }
00055 #endif
00056 #endif
00057
00058
00059