diff options
author | NIIBE Yutaka <[email protected]> | 2024-06-06 07:30:26 +0000 |
---|---|---|
committer | NIIBE Yutaka <[email protected]> | 2024-06-06 07:30:26 +0000 |
commit | e644311383350ce704611cce69f322a7d9dd548e (patch) | |
tree | d3d2fdd51380b3ba5acf518ce57032b3cbe6c4fa /src/visibility.c | |
parent | spawn: Add new GPGRT_PROCESS_NO_CONSOLE for Windows. (diff) | |
download | libgpg-error-e644311383350ce704611cce69f322a7d9dd548e.tar.gz libgpg-error-e644311383350ce704611cce69f322a7d9dd548e.zip |
spawn: Expose gpgrt_spawn_actions functions.
* src/gpg-error.def.in: Update.
* src/gpg-error.h.in: Add declarations.
* src/gpg-error.vers: Update.
* src/visibility.c: Update.
* src/visibility.h: Update.
--
Signed-off-by: NIIBE Yutaka <[email protected]>
Diffstat (limited to 'src/visibility.c')
-rw-r--r-- | src/visibility.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/visibility.c b/src/visibility.c index da12a09..0e8121e 100644 --- a/src/visibility.c +++ b/src/visibility.c @@ -1133,6 +1133,18 @@ gpgrt_close_all_fds (int from, int *keep_fds) } #endif /*0*/ +gpg_err_code_t +gpgrt_spawn_actions_new (gpgrt_spawn_actions_t *r_act) +{ + return _gpgrt_spawn_actions_new (r_act); +} + +void +gpgrt_spawn_actions_release (gpgrt_spawn_actions_t act) +{ + _gpgrt_spawn_actions_release (act); +} + #ifdef HAVE_W32_SYSTEM void gpgrt_spawn_actions_set_envvars (gpgrt_spawn_actions_t act, |