diff options
author | Julian Andres Klode <julian.klode@canonical.com> | 2019-08-13 19:15:19 +0200 |
---|---|---|
committer | Julian Andres Klode <julian.klode@canonical.com> | 2020-02-26 20:34:54 +0100 |
commit | db678df196ccd8f9f6fb336706cf5701d1e53aa6 (patch) | |
tree | a7937ab9aba3556760f0040727066a84a41f0006 /apt-pkg/contrib/gpgv.h | |
parent | c38e0047d95305e5984e822f670055cde6aa5f6a (diff) |
apt-pkg: default visibility to hidden
Diffstat (limited to 'apt-pkg/contrib/gpgv.h')
-rw-r--r-- | apt-pkg/contrib/gpgv.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apt-pkg/contrib/gpgv.h b/apt-pkg/contrib/gpgv.h index 4d48e2914..1cabed4e6 100644 --- a/apt-pkg/contrib/gpgv.h +++ b/apt-pkg/contrib/gpgv.h @@ -39,7 +39,7 @@ class FileFd; * @param fd is used as a pipe for the standard output of gpgv * @param key is the specific one to be used instead of using all */ -void ExecGPGV(std::string const &File, std::string const &FileSig, +APT_PUBLIC void ExecGPGV(std::string const &File, std::string const &FileSig, int const &statusfd, int fd[2], std::string const &Key = "") APT_NORETURN; inline APT_NORETURN void ExecGPGV(std::string const &File, std::string const &FileSig, int const &statusfd = -1) { @@ -70,7 +70,7 @@ inline APT_NORETURN void ExecGPGV(std::string const &File, std::string const &Fi * @param SignatureFile is the FileFd all signatures will be written to * @return true if the splitting was successful, false otherwise */ -bool SplitClearSignedFile(std::string const &InFile, FileFd * const ContentFile, +APT_PUBLIC bool SplitClearSignedFile(std::string const &InFile, FileFd * const ContentFile, std::vector<std::string> * const ContentHeader, FileFd * const SignatureFile); /** \brief open a file which might be clear-signed @@ -84,6 +84,6 @@ bool SplitClearSignedFile(std::string const &InFile, FileFd * const ContentFile, * @param[out] MessageFile is the FileFd in which the file will be opened * @return true if opening was successful, otherwise false */ -bool OpenMaybeClearSignedFile(std::string const &ClearSignedFileName, FileFd &MessageFile); +APT_PUBLIC bool OpenMaybeClearSignedFile(std::string const &ClearSignedFileName, FileFd &MessageFile); #endif |