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