1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* dln.c (dln_load): use LoadLibrary instead of LoadLibraryEx.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2165 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
eban 2002-03-06 09:00:32 +00:00
parent d99f6d7ff6
commit 6dc931e59f
3 changed files with 7 additions and 4 deletions

View file

@ -1,3 +1,7 @@
Wed Mar 6 17:58:08 2002 WATANABE Hirofumi <eban@ruby-lang.org>
* dln.c (dln_load): use LoadLibrary instead of LoadLibraryEx.
Tue Mar 5 05:56:29 2002 Akinori MUSHA <knu@iDaemons.org>
* lib/getopts.rb: Rewrite to fix some bugs and complete features.

3
dln.c
View file

@ -1248,8 +1248,7 @@ dln_load(file)
strcpy(winfile, file);
/* Load file */
if ((handle =
LoadLibraryExA(winfile, NULL, LOAD_WITH_ALTERED_SEARCH_PATH)) == NULL) {
if ((handle = LoadLibrary(winfile)) == NULL) {
goto failed;
}

View file

@ -1,4 +1,4 @@
#define RUBY_VERSION "1.7.2"
#define RUBY_RELEASE_DATE "2002-03-01"
#define RUBY_RELEASE_DATE "2002-03-06"
#define RUBY_VERSION_CODE 172
#define RUBY_RELEASE_CODE 20020301
#define RUBY_RELEASE_CODE 20020306