win32.h
author tron
Fri, 03 Mar 2006 19:42:09 +0000
changeset 3132 4ecd7f40fc76
parent 2436 7d5df545bd5d
child 5168 e206899169c4
permissions -rw-r--r--
(svn r3747) Change HASBIT() to return 0/1 instead of 0/value of tested bit, because the name suggests it does the former and current behavior broke in some places in very subtle ways (for example HASBIT(x, 0) != HASBIT(y, 1) doesn't work, returning a bool after HASBIT(x, 9) neither)
/* $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 */