winstore_.c 546 B

12345678910111213141516171819202122
  1. #include "puttyexp.h"
  2. #pragma option push -w-dup
  3. #define RegOpenKey reg_open_winscp_key
  4. #define RegCreateKey reg_create_winscp_key
  5. #define RegCreateKey reg_create_winscp_key
  6. #define RegQueryValueEx reg_query_winscp_value_ex
  7. #define RegSetValueEx reg_set_winscp_value_ex
  8. #define RegCloseKey reg_close_winscp_key
  9. #pragma option pop
  10. #include "winstore.c"
  11. void putty_mungestr(const char *in, char *out)
  12. {
  13. mungestr(in, out);
  14. }
  15. void putty_unmungestr(const char *in, char *out, int outlen)
  16. {
  17. unmungestr(in, out, outlen);
  18. }