diff options
| author | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-02-18 08:22:18 +0000 |
|---|---|---|
| committer | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-02-18 08:22:18 +0000 |
| commit | a159c2ddc09d2a403e143f067f228c3a76070b27 (patch) | |
| tree | 7c87a6b30529b634c2975329d2fa595362258d21 | |
| parent | 58a1f28c21634382794b55e2977db5cc9154596c (diff) | |
| download | ruby-a159c2ddc09d2a403e143f067f228c3a76070b27.tar.gz ruby-a159c2ddc09d2a403e143f067f228c3a76070b27.tar.xz ruby-a159c2ddc09d2a403e143f067f228c3a76070b27.zip | |
* ext/win32ole/win32ole.c: need to include <olectl.h> on Cygwin.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5761 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | ext/win32ole/win32ole.c | 1 |
2 files changed, 5 insertions, 0 deletions
@@ -1,3 +1,7 @@ +Wed Feb 18 17:18:01 2004 WATANABE Hirofumi <eban@ruby-lang.org> + + * ext/win32ole/win32ole.c: need to include <olectl.h> on Cygwin. + Wed Feb 18 10:23:34 2004 NAKAMURA Usaku <usa@ruby-lang.org> * sprintf.c (rb_f_sprintf): clean up. diff --git a/ext/win32ole/win32ole.c b/ext/win32ole/win32ole.c index 958d21a09..8869ee031 100644 --- a/ext/win32ole/win32ole.c +++ b/ext/win32ole/win32ole.c @@ -20,6 +20,7 @@ #include "st.h" #include <windows.h> #include <ocidl.h> +#include <olectl.h> #include <ole2.h> #ifdef HAVE_STDARG_PROTOTYPES #include <stdarg.h> |
