mirror of https://github.com/ecmwf/eccodes.git
Fortran: grib_sections_copy
This commit is contained in:
parent
b08ee05f37
commit
fd0f41ef64
|
@ -25,6 +25,7 @@ if( HAVE_BUILD_TOOLS )
|
|||
codes_scan_file
|
||||
codes_load_file
|
||||
grib_copy_message
|
||||
grib_sections_copy
|
||||
bufr_copy_message
|
||||
grib_get_keys
|
||||
grib_get_data
|
||||
|
|
|
@ -21,7 +21,6 @@ integer, external :: grib_f_keys_iterator_get_name, &
|
|||
grib_f_keys_iterator_rewind
|
||||
integer, external :: grib_f_new_from_message, &
|
||||
grib_f_new_from_message_int, &
|
||||
grib_f_new_from_message_copy, &
|
||||
grib_f_new_from_samples, &
|
||||
codes_bufr_f_new_from_samples, &
|
||||
grib_f_read_any_from_file, &
|
||||
|
|
|
@ -1366,6 +1366,7 @@ int grib_f_new_from_message_int_(int* gid, int* buffer , size_t* bufsize)
|
|||
return grib_f_new_from_message_(gid, (void*)buffer, bufsize);
|
||||
}
|
||||
/*****************************************************************************/
|
||||
#if 0
|
||||
int grib_f_new_from_message_copy_(int* gid, void* buffer, size_t* bufsize)
|
||||
{
|
||||
grib_handle *h = NULL;
|
||||
|
@ -1377,7 +1378,7 @@ int grib_f_new_from_message_copy_(int* gid, void* buffer, size_t* bufsize)
|
|||
*gid = -1;
|
||||
return GRIB_INTERNAL_ERROR;
|
||||
}
|
||||
|
||||
#endif
|
||||
/*****************************************************************************/
|
||||
int grib_f_new_from_samples_(int* gid, char* name, int lname)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue