diff options
author | Fredrik Salomonsson <plattfot@gmail.com> | 2020-05-08 23:20:16 -0700 |
---|---|---|
committer | Fredrik Salomonsson <plattfot@gmail.com> | 2020-05-08 23:20:16 -0700 |
commit | e105fee42bd5541cfa5dff5993282a6cc730b29d (patch) | |
tree | dd5e5add1daf691941e8f729a552e1a0be6970cc | |
parent | 1ac9b54758f0c27be274b26303dd09f9f6f42f78 (diff) | |
download | pinentry-rofi-e105fee42bd5541cfa5dff5993282a6cc730b29d.tar.gz |
export the public functions
-rwxr-xr-x | pinentry-rofi.scm | 43 |
1 files changed, 42 insertions, 1 deletions
diff --git a/pinentry-rofi.scm b/pinentry-rofi.scm index f326f57..69d6eb2 100755 --- a/pinentry-rofi.scm +++ b/pinentry-rofi.scm @@ -30,7 +30,48 @@ #:use-module (ice-9 format) #:use-module (ice-9 regex) #:use-module (ice-9 getopt-long) - #:export (main)) + #:export (main + pinentry-rofi-guile-version + make-pinentry + pinentry? + pinentry-ok set-pinentry-ok! + pinentry-prompt set-pinentry-prompt! + pinentry-desc set-pinentry-desc! + pinentry-visibility set-pinentry-visibility! + pinentry-display set-pinentry-display! + pinentry-error set-pinentry-error! + pinentry-logfile set-pinentry-logfile! + pinentry-ok-button set-pinentry-ok-button! + pinentry-notok-button set-pinentry-notok-button! + pinentry-cancel-button set-pinentry-cancel-button! + + remove-underline + escape-underscore + + html-newline + html-underline + html-< + + hex->char + input-string + pango-markup + + pinentry-set + + pinentry-option + pinentry-getinfo + pinentry-setkeyinfo + pinentry-setok + pinentry-setcancel + pinentry-setnotok + pinentry-setdesc + pinentry-seterror + pinentry-setprompt + pinentry-getpin + pinentry-confirm + pinentry-bye + pinentry-loop)) + (define pinentry-rofi-guile-version "0.5.0") |