irssi/src/core/network-proxy-simple.h
Bob Mottram 4a8a6cfcbf Change coding style
Based on original patch by hawken93 <hawken@thehawken.org> 3 Oct 2014
2016-04-14 14:06:54 +01:00

14 lines
261 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 {
char *string_after;
char *string;
char *password;
};
struct network_proxy *network_proxy_simple_create(void);
#endif