irssi/src/core/network-proxy-simple.h
2014-10-03 23:30:37 +02:00

16 lines
311 B
C

#ifndef H_IRSSI_SRC_CORE_PROXY_SIMPLE_H
#define H_IRSSI_SRC_CORE_PROXY_SIMPLE_H
#include "network-proxy.h"
struct _network_proxy_simple {
struct network_proxy proxy;
const char *string_after;
const char *string;
const char *password;
};
struct network_proxy *_network_proxy_simple_create(void);
#endif