summaryrefslogtreecommitdiff
path: root/shhhonidle/options.h
blob: 5bbd4aafc92bab449a8387116f34a92ec1a9eb87 (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 "common.h"

typedef struct Options_tag {
	BYTE dummy;
} Options;

extern Options options;

int OptInit(WPARAM wParam, LPARAM lParam);

void LoadOptions();
void SaveOptions();

#endif