Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix export symbols #465

Merged
merged 2 commits into from
Jun 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions packages/seacas/libraries/exodus/include/exodusII_cfg.h.in
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# Copyright(C) 1999-2022 National Technology & Engineering Solutions
# of Sandia, LLC (NTESS). Under the terms of Contract DE-NA0003525 with
# NTESS, the U.S. Government retains certain rights in this software.
#
# See packages/seacas/LICENSE for details
/*
* Copyright(C) 1999-2022 National Technology & Engineering Solutions
* of Sandia, LLC (NTESS). Under the terms of Contract DE-NA0003525 with
* NTESS, the U.S. Government retains certain rights in this software.
*
* See packages/seacas/LICENSE for details
*/
#pragma once

#cmakedefine EXODUSII_BUILD_SHARED_LIBS
Expand Down
4 changes: 2 additions & 2 deletions packages/seacas/libraries/exodus/include/exodusII_int.h
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ extern "C" {
/* Utility function to find variable to store entity attribute on */
int exi_get_varid(int exoid, ex_entity_type obj_type, ex_entity_id id);

void exi_reset_error_status(void);
EXODUS_EXPORT void exi_reset_error_status(void);

#if defined(EXODUS_THREADSAFE)
#if !defined(exerrval)
Expand Down Expand Up @@ -796,7 +796,7 @@ extern struct exi_obj_stats *exoII_edm;
extern struct exi_obj_stats *exoII_fam;
extern struct exi_obj_stats *exoII_nm;

struct exi_file_item *exi_find_file_item(int exoid);
EXODUS_EXPORT struct exi_file_item *exi_find_file_item(int exoid);
struct exi_file_item *exi_add_file_item(int exoid);
struct exi_obj_stats *exi_get_stat_ptr(int exoid, struct exi_obj_stats **obj_ptr);

Expand Down
Loading