mirror of
https://github.com/netsurf-browser/netsurf
synced 2025-01-11 21:39:56 +03:00
5886e3ed2a
Add RCS ID svn path=/import/netsurf/; revision=169
32 lines
518 B
C
32 lines
518 B
C
/**
|
|
* $Id: options.h,v 1.2 2003/06/06 02:14:28 jmb Exp $
|
|
*/
|
|
|
|
|
|
#ifndef _NETSURF_DESKTOP_OPTIONS_H_
|
|
#define _NETSURF_DESKTOP_OPTIONS_H_
|
|
|
|
struct options;
|
|
|
|
#include "netsurf/riscos/options.h"
|
|
|
|
struct options
|
|
{
|
|
/* global options */
|
|
int http;
|
|
char* http_proxy;
|
|
int http_port;
|
|
|
|
/* platform specific options */
|
|
PLATFORM_OPTIONS
|
|
};
|
|
|
|
extern struct options OPTIONS;
|
|
|
|
void options_init(struct options* opt);
|
|
void options_write(struct options*, char* filename);
|
|
void options_read(struct options*, char* filename);
|
|
|
|
#endif
|
|
|