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