Merge pull request #4266 from akohlmey/geturl-command
New geturl command to download files for LAMMPS inputs on demand
This commit is contained in:
@ -150,6 +150,7 @@ liblammpsplugin_t *liblammpsplugin_load(const char *lib)
|
||||
ADDSYM(config_has_png_support);
|
||||
ADDSYM(config_has_jpeg_support);
|
||||
ADDSYM(config_has_ffmpeg_support);
|
||||
ADDSYM(config_has_curl_support);
|
||||
ADDSYM(config_has_exceptions);
|
||||
|
||||
ADDSYM(config_has_package);
|
||||
|
||||
@ -203,6 +203,7 @@ struct _liblammpsplugin {
|
||||
int (*config_has_png_support)();
|
||||
int (*config_has_jpeg_support)();
|
||||
int (*config_has_ffmpeg_support)();
|
||||
int (*config_has_curl_support)();
|
||||
int (*config_has_exceptions)();
|
||||
|
||||
int (*config_has_package)(const char *);
|
||||
|
||||
Reference in New Issue
Block a user