diff options
author | DJ Delorie <dj@redhat.com> | 2000-08-21 17:47:52 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2000-08-21 17:47:52 +0000 |
commit | 20ffb3ee16e16ed35c817de423e6cc80cb346d35 (patch) | |
tree | cee6db5ebd932ab43d12ddb80653d35e4703a740 | |
parent | 43a5b89bdde71257f8b584c94cc04400cabd554a (diff) | |
download | cygnal-20ffb3ee16e16ed35c817de423e6cc80cb346d35.tar.gz cygnal-20ffb3ee16e16ed35c817de423e6cc80cb346d35.tar.bz2 cygnal-20ffb3ee16e16ed35c817de423e6cc80cb346d35.zip |
* include/cygwin/cygwin_dll.h (DECLARE_CYGWIN_DLL): handle,
not hinstance.
-rw-r--r-- | winsup/cygwin/ChangeLog | 5 | ||||
-rw-r--r-- | winsup/cygwin/include/cygwin/cygwin_dll.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 51d9bc5df..9257ac3c9 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,8 @@ +2000-08-21 DJ Delorie <dj@redhat.com> + + * include/cygwin/cygwin_dll.h (DECLARE_CYGWIN_DLL): handle, + not hinstance. + Fri Aug 18 11:11:00 2000 Corinna Vinschen <corinna@vinschen.de> * dtable.cc (dtable::dup2): Extend fdtab if newfd is out of current diff --git a/winsup/cygwin/include/cygwin/cygwin_dll.h b/winsup/cygwin/include/cygwin/cygwin_dll.h index 05e4f3aaf..18378da5e 100644 --- a/winsup/cygwin/include/cygwin/cygwin_dll.h +++ b/winsup/cygwin/include/cygwin/cygwin_dll.h @@ -41,7 +41,7 @@ static int __dllMain (int a, char **b, char **c) \ \ static DWORD dll_index; \ \ -int WINAPI _cygwin_dll_entry (HINSTANCE h, DWORD reason, void *ptr) \ +int WINAPI _cygwin_dll_entry (HANDLE h, DWORD reason, void *ptr) \ { \ int ret; \ ret = 1; \ |