Added network configuration to wxWidgets GUI.

This commit is contained in:
SarahW 2017-08-06 12:39:53 +01:00
commit 03749ab0fb
12 changed files with 1635 additions and 547 deletions

View file

@ -154,3 +154,6 @@ extern void (*wx_idle_func)(void* window, void* event);
#define IMAGE_TIFF "tiff"
extern int has_been_inited;
#define ID_IS(s) wParam == wx_xrcid(s)
#define ID_RANGE(a, b) wParam >= wx_xrcid(a) && wParam <= wx_xrcid(b)