diff options
Diffstat (limited to 'c/data.h')
-rw-r--r-- | c/data.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -6,7 +6,7 @@ #include <libxml/xmlerror.h> #include "util.h" -#include "win.h" +#include "win32.h" struct XmlError : public std::exception { @@ -26,7 +26,8 @@ void FetchData(unsigned char* sig); void FetchScreenwriters(unsigned char* sig); /* Wait for thread. */ -void WaitFor(void (*f)(unsigned char*)); +struct Window; +void WaitFor(Window& window, void (*f)(unsigned char*)); /* The structs ending with A are written as-is to disk. As such, they * should be regarded as immutable. If the format needs to be changed |