win32-api 1.4.2-x86-mswin32-60 → 1.4.3-x86-mswin32-60

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/CHANGES CHANGED
@@ -1,3 +1,7 @@
1
+ = 1.4.3 - 23-Jun-2009
2
+ * Bug fix for mingw.
3
+ * License now set to Artistic 2.0.
4
+
1
5
  = 1.4.2 - 31-May-2009
2
6
  * Updated the internal StringError() function to better handle the possibility
3
7
  of the English .mui file not being found. Thanks go to Michel Demazure for
data/ext/win32/api.c CHANGED
@@ -17,7 +17,7 @@
17
17
  #endif
18
18
 
19
19
  #define MAX_BUF 1024
20
- #define WINDOWS_API_VERSION "1.4.2"
20
+ #define WINDOWS_API_VERSION "1.4.3"
21
21
 
22
22
  #define _T_VOID 0
23
23
  #define _T_LONG 1
@@ -148,7 +148,6 @@ char* StringError(DWORD dwError){
148
148
  */
149
149
  static VALUE callback_init(int argc, VALUE* argv, VALUE self)
150
150
  {
151
- extern void *CallbackTable[];
152
151
  void *find_callback(VALUE,int);
153
152
  VALUE v_proto, v_return, v_proc;
154
153
  int i;
@@ -944,6 +943,6 @@ void Init_api(){
944
943
 
945
944
  /* Constants */
946
945
 
947
- /* 1.4.2: The version of this library, returned as a String */
946
+ /* 1.4.3: The version of this library, returned as a String */
948
947
  rb_define_const(cAPI, "VERSION", rb_str_new2(WINDOWS_API_VERSION));
949
948
  }
data/lib/win32/api.so CHANGED
Binary file
@@ -20,7 +20,7 @@ class TC_Win32_API < Test::Unit::TestCase
20
20
  end
21
21
 
22
22
  def test_version
23
- assert_equal('1.4.2', API::VERSION)
23
+ assert_equal('1.4.3', API::VERSION)
24
24
  end
25
25
 
26
26
  def test_constructor_basic
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: win32-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.2
4
+ version: 1.4.3
5
5
  platform: x86-mswin32-60
6
6
  authors:
7
7
  - Daniel J. Berger
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2009-05-31 00:00:00 -06:00
13
+ date: 2009-06-23 00:00:00 -06:00
14
14
  default_executable:
15
15
  dependencies: []
16
16
 
@@ -36,8 +36,8 @@ files:
36
36
  - ext/win32/api.c
37
37
  has_rdoc: true
38
38
  homepage: http://www.rubyforge.org/projects/win32utils
39
- licenses: []
40
-
39
+ licenses:
40
+ - Artistic 2.0
41
41
  post_install_message:
42
42
  rdoc_options: []
43
43
 
@@ -58,7 +58,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
58
58
  requirements: []
59
59
 
60
60
  rubyforge_project: win32utils
61
- rubygems_version: 1.3.3
61
+ rubygems_version: 1.3.4
62
62
  signing_key:
63
63
  specification_version: 3
64
64
  summary: A superior replacement for Win32API