| 12345678910111213141516171819202122 |
- #include "puttyexp.h"
- #pragma option push -w-dup
- #define RegOpenKey reg_open_winscp_key
- #define RegCreateKey reg_create_winscp_key
- #define RegCreateKey reg_create_winscp_key
- #define RegQueryValueEx reg_query_winscp_value_ex
- #define RegSetValueEx reg_set_winscp_value_ex
- #define RegCloseKey reg_close_winscp_key
- #pragma option pop
- #include "winstore.c"
- void putty_mungestr(const char *in, char *out)
- {
- mungestr(in, out);
- }
- void putty_unmungestr(const char *in, char *out, int outlen)
- {
- unmungestr(in, out, outlen);
- }
|