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

#include "resource.h"

typedef struct Options_tag {
	int dummy;
} Options;

extern Options options;

int OptInit(WPARAM wParam, LPARAM lParam);

void LoadOptions();
void SaveOptions();

#endif