diff options
author | tron <tron@openttd.org> | 2005-07-23 15:16:57 +0000 |
---|---|---|
committer | tron <tron@openttd.org> | 2005-07-23 15:16:57 +0000 |
commit | 07a6e612ec560945c55798b67bbb56a00f1cb06b (patch) | |
tree | 1e83d1a7e27b80f46817858872b1f46a903f1d1b /video/win32.h | |
parent | af1d71985678a907dcb2c76e4873ec317cefecfc (diff) | |
download | openttd-07a6e612ec560945c55798b67bbb56a00f1cb06b.tar.xz |
(svn r2685) -Codechange: Split the music/sound/video drivers into separate files and move them into subfolders.
This results in shorter and hopefully easier to maintain files.
Note: I had to change paths in #include statements of some unrelated files, because I added the ottd base directory to the include path (-I.)
Diffstat (limited to 'video/win32.h')
-rw-r--r-- | video/win32.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/video/win32.h b/video/win32.h new file mode 100644 index 000000000..235040c44 --- /dev/null +++ b/video/win32.h @@ -0,0 +1,10 @@ +#ifndef VIDEO_WIN32_H +#define VIDEO_WIN32_H + +#include "hal.h" + +bool MyShowCursor(bool show); + +extern const HalVideoDriver _win32_video_driver; + +#endif |