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