irssi/src/core/network-proxy-simple.h

16 lines
311 B
C
Raw Normal View History

#ifndef H_IRSSI_SRC_CORE_PROXY_SIMPLE_H
#define H_IRSSI_SRC_CORE_PROXY_SIMPLE_H
#include "network-proxy.h"
struct _network_proxy_simple {
2014-10-03 23:30:37 +02:00
struct network_proxy proxy;
2014-10-03 23:30:37 +02:00
const char *string_after;
const char *string;
const char *password;
};
2014-10-03 23:30:37 +02:00
struct network_proxy *_network_proxy_simple_create(void);
2014-10-03 23:30:37 +02:00
#endif