win32.h
author Darkvater
Sat, 22 Apr 2006 13:56:16 +0000
changeset 3630 0f7828d892ae
parent 2436 177cb6a8339f
child 5168 10a8dc9788d7
permissions -rw-r--r--
(svn r4529) - Codechange: Use proper naming for hex numbers in debug prints eg. 0xF3A6. Use fixed lengths where applicable (newgrf). Unfortunately '%#X' is unusable since it gives 0XFF3 and '%#x' gives 0xff3 while we want 0xFF3 :P
/* $Id$ */

#ifndef WIN32_H
#define WIN32_H

bool MyShowCursor(bool show);

typedef void (*Function)(int);
bool LoadLibraryList(Function proc[], const char* dll);

#endif /* WIN32_H */