summaryrefslogtreecommitdiff
path: root/exip/options.h
blob: e54d9fa50da5f90e6dc37977873f017f9ad5351f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef _PING_OPTIONS
#define _PING_OPTIONS

#include "common.h"
#include "resource.h"
#include <commctrl.h>

typedef struct {
	int dummy;
} Options;

extern Options options;

int OptInit(WPARAM wParam,LPARAM lParam);

void LoadOptions();
void SaveOptions();

#endif