sync new library interface function across all interfaced derived packages

This commit is contained in:
Axel Kohlmeyer
2025-03-24 04:33:27 -04:00
parent 15cdba0bf0
commit e0322b96ec
6 changed files with 24 additions and 5 deletions

View File

@ -287,10 +287,8 @@ void lammps_decode_image_flags(int64_t image, int *flags);
#if defined(LAMMPS_BIGBIG)
typedef void (*FixExternalFnPtr)(void *, int64_t, int, int64_t *, double **, double **);
#elif defined(LAMMPS_SMALLBIG)
typedef void (*FixExternalFnPtr)(void *, int64_t, int, int *, double **, double **);
#else
typedef void (*FixExternalFnPtr)(void *, int, int, int *, double **, double **);
typedef void (*FixExternalFnPtr)(void *, int64_t, int, int *, double **, double **);
#endif
void lammps_set_fix_external_callback(void *handle, const char *id, FixExternalFnPtr funcptr,