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/branches/ruby_1_6@2165 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
fc7cdfdea9
commit
1fa55abe2c
3 changed files with 7 additions and 4 deletions
|
@ -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 03:39:27 2002 Usaku Nakamura <usa@ruby-lang.org>
|
||||
|
||||
* ext/extmk.rb.in (create_makefile): remove unnecessary -L option from
|
||||
|
|
3
dln.c
3
dln.c
|
@ -1236,8 +1236,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;
|
||||
}
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#define RUBY_VERSION "1.6.7"
|
||||
#define RUBY_RELEASE_DATE "2002-03-01"
|
||||
#define RUBY_RELEASE_DATE "2002-03-06"
|
||||
#define RUBY_VERSION_CODE 167
|
||||
#define RUBY_RELEASE_CODE 20020301
|
||||
#define RUBY_RELEASE_CODE 20020306
|
||||
|
|
Loading…
Add table
Reference in a new issue