win32-api 1.5.3-universal-mingw32 → 1.6.0-universal-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (358) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGES +174 -169
  3. data/Gemfile +4 -0
  4. data/Gemfile.lock +24 -0
  5. data/README +129 -131
  6. data/Rakefile +185 -182
  7. data/appveyor.yml +42 -0
  8. data/ext/win32/api.c +1092 -1092
  9. data/lib/win32/api.rb +14 -8
  10. data/lib/win32/ruby21_32/win32/api.so +0 -0
  11. data/lib/win32/ruby21_64/win32/api.so +0 -0
  12. data/lib/win32/ruby22_32/win32/api.so +0 -0
  13. data/lib/win32/ruby22_64/win32/api.so +0 -0
  14. data/lib/win32/ruby23_32/win32/api.so +0 -0
  15. data/lib/win32/ruby23_64/win32/api.so +0 -0
  16. data/lib/win32/ruby2_32/win32/api.so +0 -0
  17. data/lib/win32/ruby2_64/win32/api.so +0 -0
  18. data/test/test_win32_api.rb +145 -145
  19. data/vendor/bundle/ruby/2.2.0/bin/devkit +23 -0
  20. data/vendor/bundle/ruby/2.2.0/bin/devkit.bat +6 -0
  21. data/vendor/bundle/ruby/2.2.0/bin/rake +23 -0
  22. data/vendor/bundle/ruby/2.2.0/bin/rake.bat +6 -0
  23. data/vendor/bundle/ruby/2.2.0/gems/colorize-0.7.7/CHANGELOG +55 -0
  24. data/vendor/bundle/ruby/2.2.0/gems/colorize-0.7.7/LICENSE +339 -0
  25. data/vendor/bundle/ruby/2.2.0/gems/colorize-0.7.7/README.md +73 -0
  26. data/vendor/bundle/ruby/2.2.0/gems/colorize-0.7.7/Rakefile +8 -0
  27. data/vendor/bundle/ruby/2.2.0/gems/colorize-0.7.7/colorize.gemspec +35 -0
  28. data/vendor/bundle/ruby/2.2.0/gems/colorize-0.7.7/lib/colorize.rb +12 -0
  29. data/vendor/bundle/ruby/2.2.0/gems/colorize-0.7.7/lib/colorize/class_methods.rb +116 -0
  30. data/vendor/bundle/ruby/2.2.0/gems/colorize-0.7.7/lib/colorize/instance_methods.rb +135 -0
  31. data/vendor/bundle/ruby/2.2.0/gems/colorize-0.7.7/test/test_colorize.rb +161 -0
  32. data/vendor/bundle/ruby/2.2.0/gems/devkit-0.1.0/Gemfile +4 -0
  33. data/vendor/bundle/ruby/2.2.0/gems/devkit-0.1.0/LICENSE.txt +22 -0
  34. data/vendor/bundle/ruby/2.2.0/gems/devkit-0.1.0/README.md +34 -0
  35. data/vendor/bundle/ruby/2.2.0/gems/devkit-0.1.0/Rakefile +1 -0
  36. data/vendor/bundle/ruby/2.2.0/gems/devkit-0.1.0/Rspec-example-matchers.txt +184 -0
  37. data/vendor/bundle/ruby/2.2.0/gems/devkit-0.1.0/bin/devkit +87 -0
  38. data/vendor/bundle/ruby/2.2.0/gems/devkit-0.1.0/devkit.gemspec +27 -0
  39. data/vendor/bundle/ruby/2.2.0/gems/devkit-0.1.0/lib/devkit.rb +18 -0
  40. data/vendor/bundle/ruby/2.2.0/gems/devkit-0.1.0/lib/devkit/core.rb +53 -0
  41. data/vendor/bundle/ruby/2.2.0/gems/devkit-0.1.0/lib/devkit/identity.rb +78 -0
  42. data/vendor/bundle/ruby/2.2.0/gems/devkit-0.1.0/lib/devkit/ssh_identity.rb +53 -0
  43. data/vendor/bundle/ruby/2.2.0/gems/devkit-0.1.0/lib/devkit/version.rb +3 -0
  44. data/vendor/bundle/ruby/2.2.0/gems/devkit-0.1.0/spec/devkit/core_spec.rb +46 -0
  45. data/vendor/bundle/ruby/2.2.0/gems/devkit-0.1.0/spec/devkit/identity_spec.rb +1 -0
  46. data/vendor/bundle/ruby/2.2.0/gems/devkit-0.1.0/spec/devkit/ssh_identity_spec.rb +1 -0
  47. data/vendor/bundle/ruby/2.2.0/gems/devkit-0.1.0/spec/devkit_spec.rb +5 -0
  48. data/vendor/bundle/ruby/2.2.0/gems/devkit-0.1.0/spec/spec_helper.rb +8 -0
  49. data/vendor/bundle/ruby/2.2.0/gems/highline-1.7.8/AUTHORS +3 -0
  50. data/vendor/bundle/ruby/2.2.0/gems/highline-1.7.8/COPYING +339 -0
  51. data/vendor/bundle/ruby/2.2.0/gems/highline-1.7.8/Changelog.md +415 -0
  52. data/vendor/bundle/ruby/2.2.0/gems/highline-1.7.8/Gemfile +9 -0
  53. data/vendor/bundle/ruby/2.2.0/gems/highline-1.7.8/INSTALL +59 -0
  54. data/vendor/bundle/ruby/2.2.0/gems/highline-1.7.8/LICENSE +7 -0
  55. data/vendor/bundle/ruby/2.2.0/gems/highline-1.7.8/README.rdoc +74 -0
  56. data/vendor/bundle/ruby/2.2.0/gems/highline-1.7.8/Rakefile +30 -0
  57. data/vendor/bundle/ruby/2.2.0/gems/highline-1.7.8/TODO +6 -0
  58. data/vendor/bundle/ruby/2.2.0/gems/highline-1.7.8/examples/ansi_colors.rb +38 -0
  59. data/vendor/bundle/ruby/2.2.0/gems/highline-1.7.8/examples/asking_for_arrays.rb +18 -0
  60. data/vendor/bundle/ruby/2.2.0/gems/highline-1.7.8/examples/basic_usage.rb +75 -0
  61. data/vendor/bundle/ruby/2.2.0/gems/highline-1.7.8/examples/color_scheme.rb +32 -0
  62. data/vendor/bundle/ruby/2.2.0/gems/highline-1.7.8/examples/get_character.rb +12 -0
  63. data/vendor/bundle/ruby/2.2.0/gems/highline-1.7.8/examples/limit.rb +12 -0
  64. data/vendor/bundle/ruby/2.2.0/gems/highline-1.7.8/examples/menus.rb +65 -0
  65. data/vendor/bundle/ruby/2.2.0/gems/highline-1.7.8/examples/overwrite.rb +19 -0
  66. data/vendor/bundle/ruby/2.2.0/gems/highline-1.7.8/examples/page_and_wrap.rb +322 -0
  67. data/vendor/bundle/ruby/2.2.0/gems/highline-1.7.8/examples/password.rb +7 -0
  68. data/vendor/bundle/ruby/2.2.0/gems/highline-1.7.8/examples/repeat_entry.rb +21 -0
  69. data/vendor/bundle/ruby/2.2.0/gems/highline-1.7.8/examples/trapping_eof.rb +22 -0
  70. data/vendor/bundle/ruby/2.2.0/gems/highline-1.7.8/examples/using_readline.rb +17 -0
  71. data/vendor/bundle/ruby/2.2.0/gems/highline-1.7.8/highline.gemspec +37 -0
  72. data/vendor/bundle/ruby/2.2.0/gems/highline-1.7.8/lib/highline.rb +1048 -0
  73. data/vendor/bundle/ruby/2.2.0/gems/highline-1.7.8/lib/highline/color_scheme.rb +134 -0
  74. data/vendor/bundle/ruby/2.2.0/gems/highline-1.7.8/lib/highline/compatibility.rb +16 -0
  75. data/vendor/bundle/ruby/2.2.0/gems/highline-1.7.8/lib/highline/import.rb +41 -0
  76. data/vendor/bundle/ruby/2.2.0/gems/highline-1.7.8/lib/highline/menu.rb +381 -0
  77. data/vendor/bundle/ruby/2.2.0/gems/highline-1.7.8/lib/highline/question.rb +480 -0
  78. data/vendor/bundle/ruby/2.2.0/gems/highline-1.7.8/lib/highline/simulate.rb +48 -0
  79. data/vendor/bundle/ruby/2.2.0/gems/highline-1.7.8/lib/highline/style.rb +192 -0
  80. data/vendor/bundle/ruby/2.2.0/gems/highline-1.7.8/lib/highline/version.rb +4 -0
  81. data/vendor/bundle/ruby/2.2.0/gems/highline-1.7.8/setup.rb +1360 -0
  82. data/vendor/bundle/ruby/2.2.0/gems/highline-1.7.8/site/highline.css +65 -0
  83. data/vendor/bundle/ruby/2.2.0/gems/highline-1.7.8/site/images/logo.png +0 -0
  84. data/vendor/bundle/ruby/2.2.0/gems/highline-1.7.8/site/index.html +58 -0
  85. data/vendor/bundle/ruby/2.2.0/gems/highline-1.7.8/test/string_methods.rb +32 -0
  86. data/vendor/bundle/ruby/2.2.0/gems/highline-1.7.8/test/tc_color_scheme.rb +96 -0
  87. data/vendor/bundle/ruby/2.2.0/gems/highline-1.7.8/test/tc_highline.rb +1402 -0
  88. data/vendor/bundle/ruby/2.2.0/gems/highline-1.7.8/test/tc_import.rb +52 -0
  89. data/vendor/bundle/ruby/2.2.0/gems/highline-1.7.8/test/tc_menu.rb +439 -0
  90. data/vendor/bundle/ruby/2.2.0/gems/highline-1.7.8/test/tc_simulator.rb +23 -0
  91. data/vendor/bundle/ruby/2.2.0/gems/highline-1.7.8/test/tc_string_highline.rb +38 -0
  92. data/vendor/bundle/ruby/2.2.0/gems/highline-1.7.8/test/tc_style.rb +578 -0
  93. data/vendor/bundle/ruby/2.2.0/gems/power_assert-0.3.0/BSDL +22 -0
  94. data/vendor/bundle/ruby/2.2.0/gems/power_assert-0.3.0/COPYING +57 -0
  95. data/vendor/bundle/ruby/2.2.0/gems/power_assert-0.3.0/Gemfile +9 -0
  96. data/vendor/bundle/ruby/2.2.0/gems/power_assert-0.3.0/LEGAL +4 -0
  97. data/vendor/bundle/ruby/2.2.0/gems/power_assert-0.3.0/README.rdoc +19 -0
  98. data/vendor/bundle/ruby/2.2.0/gems/power_assert-0.3.0/Rakefile +16 -0
  99. data/vendor/bundle/ruby/2.2.0/gems/power_assert-0.3.0/benchmarks/bm_yhpg.rb +59 -0
  100. data/vendor/bundle/ruby/2.2.0/gems/power_assert-0.3.0/benchmarks/helper.rb +8 -0
  101. data/vendor/bundle/ruby/2.2.0/gems/power_assert-0.3.0/lib/power_assert.rb +338 -0
  102. data/vendor/bundle/ruby/2.2.0/gems/power_assert-0.3.0/lib/power_assert/enable_tracepoint_events.rb +82 -0
  103. data/vendor/bundle/ruby/2.2.0/gems/power_assert-0.3.0/lib/power_assert/version.rb +3 -0
  104. data/vendor/bundle/ruby/2.2.0/gems/power_assert-0.3.0/power_assert.gemspec +23 -0
  105. data/vendor/bundle/ruby/2.2.0/gems/power_assert-0.3.0/test/helper.rb +10 -0
  106. data/vendor/bundle/ruby/2.2.0/gems/power_assert-0.3.0/test/test_power_assert.rb +512 -0
  107. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/CONTRIBUTING.rdoc +38 -0
  108. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/History.rdoc +719 -0
  109. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/MIT-LICENSE +21 -0
  110. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/Manifest.txt +154 -0
  111. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/README.rdoc +157 -0
  112. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/Rakefile +82 -0
  113. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/bin/rake +33 -0
  114. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/doc/command_line_usage.rdoc +158 -0
  115. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/doc/example/Rakefile1 +38 -0
  116. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/doc/example/Rakefile2 +35 -0
  117. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/doc/example/a.c +6 -0
  118. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/doc/example/b.c +6 -0
  119. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/doc/example/main.c +11 -0
  120. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/doc/glossary.rdoc +42 -0
  121. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/doc/jamis.rb +591 -0
  122. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/doc/proto_rake.rdoc +127 -0
  123. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/doc/rake.1 +141 -0
  124. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/doc/rakefile.rdoc +624 -0
  125. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/doc/rational.rdoc +151 -0
  126. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/doc/release_notes/rake-0.4.14.rdoc +23 -0
  127. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/doc/release_notes/rake-0.4.15.rdoc +35 -0
  128. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/doc/release_notes/rake-0.5.0.rdoc +53 -0
  129. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/doc/release_notes/rake-0.5.3.rdoc +78 -0
  130. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/doc/release_notes/rake-0.5.4.rdoc +46 -0
  131. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/doc/release_notes/rake-0.6.0.rdoc +141 -0
  132. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/doc/release_notes/rake-0.7.0.rdoc +119 -0
  133. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/doc/release_notes/rake-0.7.1.rdoc +59 -0
  134. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/doc/release_notes/rake-0.7.2.rdoc +121 -0
  135. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/doc/release_notes/rake-0.7.3.rdoc +47 -0
  136. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/doc/release_notes/rake-0.8.0.rdoc +114 -0
  137. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/doc/release_notes/rake-0.8.2.rdoc +165 -0
  138. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/doc/release_notes/rake-0.8.3.rdoc +112 -0
  139. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/doc/release_notes/rake-0.8.4.rdoc +147 -0
  140. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/doc/release_notes/rake-0.8.5.rdoc +53 -0
  141. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/doc/release_notes/rake-0.8.6.rdoc +37 -0
  142. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/doc/release_notes/rake-0.8.7.rdoc +55 -0
  143. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/doc/release_notes/rake-0.9.0.rdoc +112 -0
  144. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/doc/release_notes/rake-0.9.1.rdoc +52 -0
  145. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/doc/release_notes/rake-0.9.2.2.rdoc +55 -0
  146. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/doc/release_notes/rake-0.9.2.rdoc +49 -0
  147. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/doc/release_notes/rake-0.9.3.rdoc +102 -0
  148. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/doc/release_notes/rake-0.9.4.rdoc +60 -0
  149. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/doc/release_notes/rake-0.9.5.rdoc +55 -0
  150. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/doc/release_notes/rake-0.9.6.rdoc +64 -0
  151. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/doc/release_notes/rake-10.0.0.rdoc +178 -0
  152. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/doc/release_notes/rake-10.0.1.rdoc +58 -0
  153. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/doc/release_notes/rake-10.0.2.rdoc +53 -0
  154. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/doc/release_notes/rake-10.0.3.rdoc +191 -0
  155. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/doc/release_notes/rake-10.1.0.rdoc +61 -0
  156. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/lib/rake.rb +73 -0
  157. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/lib/rake/application.rb +787 -0
  158. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/lib/rake/backtrace.rb +23 -0
  159. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/lib/rake/clean.rb +76 -0
  160. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/lib/rake/cloneable.rb +16 -0
  161. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/lib/rake/contrib/compositepublisher.rb +21 -0
  162. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/lib/rake/contrib/ftptools.rb +137 -0
  163. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/lib/rake/contrib/sshpublisher.rb +60 -0
  164. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/lib/rake/cpu_counter.rb +120 -0
  165. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/lib/rake/default_loader.rb +14 -0
  166. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/lib/rake/dsl_definition.rb +194 -0
  167. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/lib/rake/early_time.rb +21 -0
  168. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/lib/rake/file_creation_task.rb +24 -0
  169. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/lib/rake/file_list.rb +436 -0
  170. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/lib/rake/file_task.rb +46 -0
  171. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/lib/rake/file_utils.rb +123 -0
  172. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/lib/rake/invocation_chain.rb +56 -0
  173. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/lib/rake/invocation_exception_mixin.rb +16 -0
  174. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/lib/rake/late_time.rb +17 -0
  175. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/lib/rake/linked_list.rb +111 -0
  176. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/lib/rake/loaders/makefile.rb +53 -0
  177. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/lib/rake/multi_task.rb +13 -0
  178. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/lib/rake/name_space.rb +38 -0
  179. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/lib/rake/packagetask.rb +199 -0
  180. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/lib/rake/phony.rb +15 -0
  181. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/lib/rake/private_reader.rb +20 -0
  182. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/lib/rake/promise.rb +99 -0
  183. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/lib/rake/pseudo_status.rb +29 -0
  184. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/lib/rake/rake_module.rb +38 -0
  185. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/lib/rake/rake_test_loader.rb +22 -0
  186. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/lib/rake/rule_recursion_overflow_error.rb +20 -0
  187. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/lib/rake/scope.rb +42 -0
  188. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/lib/rake/task.rb +391 -0
  189. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/lib/rake/task_argument_error.rb +7 -0
  190. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/lib/rake/task_arguments.rb +102 -0
  191. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/lib/rake/task_manager.rb +316 -0
  192. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/lib/rake/tasklib.rb +11 -0
  193. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/lib/rake/testtask.rb +204 -0
  194. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/lib/rake/thread_history_display.rb +48 -0
  195. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/lib/rake/thread_pool.rb +163 -0
  196. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/lib/rake/trace_output.rb +22 -0
  197. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/lib/rake/version.rb +7 -0
  198. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/lib/rake/win32.rb +50 -0
  199. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/rakelib/test_times.rake +25 -0
  200. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/test/file_creation.rb +34 -0
  201. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/test/helper.rb +134 -0
  202. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/test/support/rakefile_definitions.rb +476 -0
  203. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/test/support/ruby_runner.rb +34 -0
  204. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/test/test_private_reader.rb +42 -0
  205. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/test/test_rake.rb +40 -0
  206. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/test/test_rake_application.rb +659 -0
  207. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/test/test_rake_application_options.rb +468 -0
  208. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/test/test_rake_backtrace.rb +119 -0
  209. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/test/test_rake_clean.rb +61 -0
  210. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/test/test_rake_cpu_counter.rb +68 -0
  211. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/test/test_rake_definitions.rb +84 -0
  212. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/test/test_rake_directory_task.rb +76 -0
  213. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/test/test_rake_dsl.rb +40 -0
  214. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/test/test_rake_early_time.rb +31 -0
  215. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/test/test_rake_file_creation_task.rb +56 -0
  216. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/test/test_rake_file_list.rb +687 -0
  217. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/test/test_rake_file_list_path_map.rb +15 -0
  218. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/test/test_rake_file_task.rb +197 -0
  219. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/test/test_rake_file_utils.rb +318 -0
  220. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/test/test_rake_ftp_file.rb +74 -0
  221. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/test/test_rake_functional.rb +484 -0
  222. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/test/test_rake_invocation_chain.rb +64 -0
  223. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/test/test_rake_late_time.rb +18 -0
  224. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/test/test_rake_linked_list.rb +84 -0
  225. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/test/test_rake_makefile_loader.rb +46 -0
  226. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/test/test_rake_multi_task.rb +64 -0
  227. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/test/test_rake_name_space.rb +57 -0
  228. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/test/test_rake_package_task.rb +79 -0
  229. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/test/test_rake_path_map.rb +168 -0
  230. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/test/test_rake_path_map_explode.rb +34 -0
  231. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/test/test_rake_path_map_partial.rb +18 -0
  232. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/test/test_rake_pseudo_status.rb +21 -0
  233. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/test/test_rake_rake_test_loader.rb +20 -0
  234. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/test/test_rake_reduce_compat.rb +26 -0
  235. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/test/test_rake_require.rb +40 -0
  236. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/test/test_rake_rules.rb +388 -0
  237. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/test/test_rake_scope.rb +44 -0
  238. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/test/test_rake_task.rb +430 -0
  239. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/test/test_rake_task_argument_parsing.rb +119 -0
  240. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/test/test_rake_task_arguments.rb +134 -0
  241. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/test/test_rake_task_manager.rb +178 -0
  242. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/test/test_rake_task_manager_argument_resolution.rb +19 -0
  243. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/test/test_rake_task_with_arguments.rb +172 -0
  244. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/test/test_rake_test_task.rb +130 -0
  245. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/test/test_rake_thread_pool.rb +145 -0
  246. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/test/test_rake_top_level_functions.rb +71 -0
  247. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/test/test_rake_win32.rb +72 -0
  248. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/test/test_thread_history_display.rb +101 -0
  249. data/vendor/bundle/ruby/2.2.0/gems/rake-11.1.2/test/test_trace_output.rb +52 -0
  250. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/COPYING +64 -0
  251. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/GPL +339 -0
  252. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/LGPL +502 -0
  253. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/PSFL +271 -0
  254. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/README.md +101 -0
  255. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/Rakefile +71 -0
  256. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/lib/test-unit.rb +34 -0
  257. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/lib/test/unit.rb +505 -0
  258. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/lib/test/unit/assertion-failed-error.rb +25 -0
  259. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/lib/test/unit/assertions.rb +2218 -0
  260. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/lib/test/unit/attribute-matcher.rb +26 -0
  261. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/lib/test/unit/attribute.rb +158 -0
  262. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/lib/test/unit/auto-runner-loader.rb +17 -0
  263. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/lib/test/unit/autorunner.rb +536 -0
  264. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/lib/test/unit/code-snippet-fetcher.rb +58 -0
  265. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/lib/test/unit/collector.rb +73 -0
  266. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/lib/test/unit/collector/descendant.rb +19 -0
  267. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/lib/test/unit/collector/dir.rb +108 -0
  268. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/lib/test/unit/collector/load.rb +202 -0
  269. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/lib/test/unit/collector/objectspace.rb +34 -0
  270. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/lib/test/unit/collector/xml.rb +249 -0
  271. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/lib/test/unit/color-scheme.rb +198 -0
  272. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/lib/test/unit/color.rb +134 -0
  273. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/lib/test/unit/data.rb +262 -0
  274. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/lib/test/unit/diff.rb +746 -0
  275. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/lib/test/unit/error.rb +158 -0
  276. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/lib/test/unit/exception-handler.rb +82 -0
  277. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/lib/test/unit/failure.rb +169 -0
  278. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/lib/test/unit/fault-location-detector.rb +100 -0
  279. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/lib/test/unit/fixture.rb +295 -0
  280. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/lib/test/unit/notification.rb +136 -0
  281. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/lib/test/unit/omission.rb +195 -0
  282. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/lib/test/unit/pending.rb +154 -0
  283. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/lib/test/unit/priority.rb +192 -0
  284. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/lib/test/unit/runner/console.rb +59 -0
  285. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/lib/test/unit/runner/emacs.rb +8 -0
  286. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/lib/test/unit/runner/xml.rb +15 -0
  287. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/lib/test/unit/test-suite-creator.rb +89 -0
  288. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/lib/test/unit/testcase.rb +811 -0
  289. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/lib/test/unit/testresult.rb +132 -0
  290. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/lib/test/unit/testsuite.rb +175 -0
  291. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/lib/test/unit/ui/console/outputlevel.rb +15 -0
  292. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/lib/test/unit/ui/console/testrunner.rb +693 -0
  293. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/lib/test/unit/ui/emacs/testrunner.rb +49 -0
  294. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/lib/test/unit/ui/testrunner.rb +53 -0
  295. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/lib/test/unit/ui/testrunnermediator.rb +114 -0
  296. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/lib/test/unit/ui/testrunnerutilities.rb +41 -0
  297. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/lib/test/unit/ui/xml/testrunner.rb +224 -0
  298. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/lib/test/unit/util/backtracefilter.rb +59 -0
  299. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/lib/test/unit/util/method-owner-finder.rb +28 -0
  300. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/lib/test/unit/util/observable.rb +90 -0
  301. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/lib/test/unit/util/output.rb +31 -0
  302. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/lib/test/unit/util/procwrapper.rb +48 -0
  303. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/lib/test/unit/version.rb +5 -0
  304. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/sample/adder.rb +13 -0
  305. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/sample/subtracter.rb +12 -0
  306. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/sample/test_adder.rb +20 -0
  307. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/sample/test_subtracter.rb +20 -0
  308. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/sample/test_user.rb +23 -0
  309. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/test/collector/test-descendant.rb +178 -0
  310. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/test/collector/test-load.rb +442 -0
  311. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/test/collector/test_dir.rb +406 -0
  312. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/test/collector/test_objectspace.rb +100 -0
  313. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/test/fixtures/header-label.csv +3 -0
  314. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/test/fixtures/header-label.tsv +3 -0
  315. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/test/fixtures/header.csv +3 -0
  316. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/test/fixtures/header.tsv +3 -0
  317. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/test/fixtures/no-header.csv +2 -0
  318. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/test/fixtures/no-header.tsv +2 -0
  319. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/test/fixtures/plus.csv +3 -0
  320. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/test/run-test.rb +22 -0
  321. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/test/test-assertions.rb +2160 -0
  322. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/test/test-attribute-matcher.rb +38 -0
  323. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/test/test-attribute.rb +123 -0
  324. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/test/test-code-snippet.rb +37 -0
  325. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/test/test-color-scheme.rb +82 -0
  326. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/test/test-color.rb +47 -0
  327. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/test/test-data.rb +303 -0
  328. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/test/test-diff.rb +518 -0
  329. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/test/test-emacs-runner.rb +60 -0
  330. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/test/test-error.rb +26 -0
  331. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/test/test-failure.rb +33 -0
  332. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/test/test-fault-location-detector.rb +163 -0
  333. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/test/test-fixture.rb +713 -0
  334. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/test/test-notification.rb +33 -0
  335. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/test/test-omission.rb +81 -0
  336. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/test/test-pending.rb +70 -0
  337. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/test/test-priority.rb +173 -0
  338. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/test/test-test-case.rb +1171 -0
  339. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/test/test-test-result.rb +113 -0
  340. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/test/test-test-suite-creator.rb +97 -0
  341. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/test/test-test-suite.rb +150 -0
  342. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/test/testunit-test-util.rb +31 -0
  343. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/test/ui/test_testrunmediator.rb +20 -0
  344. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/test/util/test-method-owner-finder.rb +38 -0
  345. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/test/util/test-output.rb +11 -0
  346. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/test/util/test_backtracefilter.rb +52 -0
  347. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/test/util/test_observable.rb +102 -0
  348. data/vendor/bundle/ruby/2.2.0/gems/test-unit-3.1.9/test/util/test_procwrapper.rb +36 -0
  349. data/vendor/bundle/ruby/2.2.0/specifications/colorize-0.7.7.gemspec +38 -0
  350. data/vendor/bundle/ruby/2.2.0/specifications/devkit-0.1.0.gemspec +46 -0
  351. data/vendor/bundle/ruby/2.2.0/specifications/highline-1.7.8.gemspec +37 -0
  352. data/vendor/bundle/ruby/2.2.0/specifications/power_assert-0.3.0.gemspec +41 -0
  353. data/vendor/bundle/ruby/2.2.0/specifications/rake-11.1.2.gemspec +43 -0
  354. data/vendor/bundle/ruby/2.2.0/specifications/test-unit-3.1.9.gemspec +47 -0
  355. data/win32-api.gemspec +27 -27
  356. metadata +345 -5
  357. data/lib/win32/ruby18/win32/api.so +0 -0
  358. data/lib/win32/ruby19/win32/api.so +0 -0
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7e89ec0088d309d7ed30ab87ad2d0b657315af69
4
- data.tar.gz: 9ac07477f90e4933338077c3e2fd63fff00d81a1
3
+ metadata.gz: 5dddc8231e05536fb92c98ec84398fc5f75e5ac1
4
+ data.tar.gz: b433d4cea0f55587dd0fe890d9ee0af1dc9b55b3
5
5
  SHA512:
6
- metadata.gz: 9429c396c7ea80685f43117988e8d81a33b0f0559213ff8c014d96739da7fcdb7f42aa1977923020af3a06154d9c4aac82fb41128db66794656462209bc9dc94
7
- data.tar.gz: b2330025011dbb3963e43529da40dcea113adab9f2839a10f5ff1ea53fd7d448faf8ebf7a16538a64a38c05cf71290dad5083c0d4eec4e04eee2a66cad6bbc0a
6
+ metadata.gz: 0c3b236d42c72c3eedbbed169bdcf0125d555bd4cfb6a7d61d66d3160b4f72164c8a9fdac3598527f55ddc8ed89c1fe4b4d57e3646ba0c66b7e9eb77300efd92
7
+ data.tar.gz: 7e85813a20a4c64b609d67571b098d50a7bd6802e7ce2e0bff68bad0019699a3e788bc4ebf8d97ac2bce96e40c7c3d503e19d93309164bf2697bde2ee0cbb5de
data/CHANGES CHANGED
@@ -1,169 +1,174 @@
1
- == 1.5.3 - 18-Mar-2015
2
- * Now includes binaries for Ruby 2.2 for both 32 and 64 bit versions.
3
- * Fixed potential stack corruption caused by callbacks. Thanks go to
4
- rickerliang for the spot and patch.
5
- * Some minor updates and additions to the Rakefile.
6
-
7
- == 1.5.2 - 11-Oct-2014
8
- * Now includes binaries for Ruby 2.1 for both 32 and 64 bit versions.
9
- * Some refactoring of the gem:binary task, mostly for me.
10
-
11
- == 1.5.1 - 14-Feb-2014
12
- * Fixed a potential zero-initialization issue. Thanks go to Peter Huene
13
- for the spot and the patch.
14
- * Added rake as a development dependency.
15
-
16
- == 1.5.0 - 22-Aug-2013
17
- * Fixes for Ruby x64.
18
- * There are now separate 32 and 64 bit binaries packaged for Ruby 2.x.
19
- * Updates to the Rakefile for the gem:binary task.
20
- * Some README updates, including Future Plans.
21
-
22
- == 1.4.9 - 14-Jul-2013
23
- * Added a binary for Ruby 2.0.
24
- * Add devkit to Rakefile for the gem:binary task.
25
-
26
- == 1.4.8 - 16-Jan-2011
27
- * A binary for both 1.8.x and 1.9.x is now shipped as part of the binary
28
- build. A stub file is used to dynamically require the correct binary based
29
- on your current version of Ruby.
30
- * Some updates to the Rakefile to help build multiple binaries.
31
-
32
- == 1.4.7 - 4-Dec-2010
33
- * An internal error formatting function now resorts to the default
34
- LANGID on error 1815 (ERROR_RESOURCE_LANG_NOT_FOUND). Thanks go to
35
- Little Snake for the spot.
36
- * Added a default Rake task and refactored the clean task.
37
-
38
- == 1.4.6 - 9-Feb-2010
39
- * Fixed a warning that showed up with MinGW/gcc caused by an unnecessary
40
- pointer dereference.
41
- * Some updates to the Rakefile and gemspec. Gem building is now handled via
42
- Rake tasks.
43
- * Minor updates to the test suite.
44
-
45
- == 1.4.5 - 24-Aug-2009
46
- * Reverted the change in 1.4.4. We need unsigned longs in a few cases.
47
- Consequently, you should upgrade windows-pr to 1.0.8 or later because
48
- some return values were set to -1 instead of 0xFFFFFFFF as they are now.
49
- * Updated one test to validate return value from failed function.
50
-
51
- == 1.4.4 - 18-Aug-2009
52
- * Fixed a bug where functions that returned a long return type were unsigned
53
- instead of signed.
54
- * The Rakefile has been refactored somewhat, including the removal of FFI
55
- related tasks. Those are now in a separate branch in the repository.
56
- * The test-unit library is now a development dependency instead of a runtime
57
- dependency.
58
-
59
- == 1.4.3 - 23-Jun-2009
60
- * Bug fix for mingw.
61
- * License now set to Artistic 2.0.
62
-
63
- == 1.4.2 - 31-May-2009
64
- * Updated the internal StringError() function to better handle the possibility
65
- of the English .mui file not being found. Thanks go to Michel Demazure for
66
- the spot.
67
-
68
- == 1.4.1 - 29-May-2009
69
- * Callback handling improvements.
70
- * Updated the gemspec description.
71
-
72
- == 1.4.0 - 19-Feb-2009
73
- * Now compatible with Ruby 1.9.x.
74
- * In what will go down as, "It seemed like a good idea at the time", I have
75
- removed the feature where W (wide) character functions were used first if
76
- your $KCODE environment variable was set to "UTF8". It caused too many
77
- headaches in practice, especially amongst Rails users. You must now always
78
- explicitly specify 'W' in the constructor if that's what you want.
79
- * Fixed RF bug #23944 - bad error message for MSVCRT functions that failed
80
- to load properly.
81
-
82
- == 1.3.0 - 1-Jan-2009
83
- * Fixed RubyForge bug #23395, which was caused by inadvertently modifying
84
- a variable within a loop. This caused callbacks to fail in certain
85
- situations.
86
- * Added the Win32::API::LoadLibraryError and Win32::API::PrototypeError classes
87
- to provide more fine grained handling of possible error conditions in the
88
- constructor. These are both subclasses of Win32::API::Error.
89
- * Removed the Win32::API::CallbackError class.
90
- * Changed the upper limit on prototypes from 16 to 20. It turns out that
91
- there are actually Windows functions with more than 16 prototypes.
92
- * Refactored a high iteration test so that it counts as only one test
93
- instead of 1000.
94
-
95
- == 1.2.2 - 27-Nov-2008
96
- * Fixed bug in the error message for illegal prototypes and illegal return
97
- types where the character in question would come out as empty or garbage.
98
- * Passing a bad return type to Win32::API::Callback now raises an error.
99
- * Updated the error message for illegal return types to say, "Illegal return
100
- type" instead of "Illegal prototype" as it did previously.
101
- * The error message for a bad function name passed to Win32::API.new now
102
- matches JRuby's FFI error message.
103
- * Improved the handling of msvcrt functions with regards to skipping 'A'
104
- and 'W' checks. Previously it was checking against the literal string
105
- 'msvcrt'. Now it checks against any string that starts with 'msvcr'.
106
- * Added test-unit 2.x as a prerequisite.
107
- * Added tests for the Win32::API::Callback#address method.
108
- * Added tests to all Win32::API classes that explicitly check error messages.
109
-
110
- == 1.2.1 - 14-Nov-2008
111
- * Fixed and updated callback handling.
112
- * Fixed wide string return handling for pointers and strings.
113
- * Added the Win32::API::Callback#address instance method.
114
- * All errors are now in English instead of your native language, because
115
- that's what Ruby itself does.
116
-
117
- == 1.2.0 - 22-Jul-2008
118
- * Added support for the 'S' (string) prototype and return type. It can be
119
- used instead of 'P' (pointer) for const char*.
120
- * Some internal refactoring. The attempts to load ANSI and/or Wide character
121
- versions of functions are skipped for MSVCRT functions, since they do not
122
- exist. This eliminates some unnecessary LoadLibrary() calls.
123
- * Added a couple of gem building Rake tasks.
124
- * Added a few more tests.
125
-
126
- == 1.1.0 - 12-Jun-2008
127
- * Added the Windows::API::Function class. This is a subclass of Win32::API
128
- meant only for use with raw function pointers.
129
- * Some documentation updates in the source and README files.
130
-
131
- == 1.0.6 - 18-Apr-2008
132
- * Added the effective_function_name method. This allows you to see what the
133
- actual function name is that was defined, e.g. GetUserNameA vs GetUserNameW.
134
- * Replaced an instance of _tcscmp with strcmp. The case in question was always
135
- going to be ASCII.
136
- * Cleaned up some -W3 warnings.
137
- * Added the build_manifest task to the Rakefile, which is automatically run if
138
- you're using a version of Ruby built with VC++ 8 or later. This builds a
139
- ruby.exe.manifest file (if it doesn't already exist).
140
-
141
- == 1.0.5 - 20-Nov-2007
142
- * The API.new method now defaults to "W" (wide character functions) before "A"
143
- (ANSI functions) if the $KCODE global variable is set to 'u' (UTF8).
144
- * Minor improvements to the Rakefile.
145
-
146
- == 1.0.4 - 26-Oct-2007
147
- * Fixed a bug where methods that returned pointers ('P') could choke if the
148
- resulting pointer was 0 or NULL. In this case, nil is now returned instead.
149
- * Tweak to the extconf.rb file that helps the gem build it from source
150
- properly.
151
-
152
- == 1.0.3 - 28-Sep-2007
153
- * Fixed a subtle but dangerous copy-on-write bug in the API#call method.
154
-
155
- == 1.0.2 - 28-Sep-2007
156
- * Fixed a bug in an internal struct member that was causing segfaults. Thanks
157
- go to Lars Olsson for the spot.
158
- * Fixed the 'install' task in the Rakefile. This only affected native builds,
159
- not the prebuilt binary.
160
- * Added a few more tests.
161
-
162
- == 1.0.1 - 27-Sep-2007
163
- * Functions declared with a void prototype no longer require an explicit nil
164
- argument to fulfill the arity requirement. You can still call them with an
165
- explicit nil if you wish, however.
166
- * Fixed the gemspec for the native build.
167
-
168
- == 1.0.0 - 14-Sep-2007
169
- * Initial release
1
+ == 1.6.0 - 09-Jun-2016
2
+ * Now includes binaries for Ruby 2.3 for both 32 and 64 bit versions.
3
+ * Now drop support Ruby 1.9 or earlier.
4
+ * Some README and gemspec updates, including new maintainer information.
5
+
6
+ == 1.5.3 - 18-Mar-2015
7
+ * Now includes binaries for Ruby 2.2 for both 32 and 64 bit versions.
8
+ * Fixed potential stack corruption caused by callbacks. Thanks go to
9
+ rickerliang for the spot and patch.
10
+ * Some minor updates and additions to the Rakefile.
11
+
12
+ == 1.5.2 - 11-Oct-2014
13
+ * Now includes binaries for Ruby 2.1 for both 32 and 64 bit versions.
14
+ * Some refactoring of the gem:binary task, mostly for me.
15
+
16
+ == 1.5.1 - 14-Feb-2014
17
+ * Fixed a potential zero-initialization issue. Thanks go to Peter Huene
18
+ for the spot and the patch.
19
+ * Added rake as a development dependency.
20
+
21
+ == 1.5.0 - 22-Aug-2013
22
+ * Fixes for Ruby x64.
23
+ * There are now separate 32 and 64 bit binaries packaged for Ruby 2.x.
24
+ * Updates to the Rakefile for the gem:binary task.
25
+ * Some README updates, including Future Plans.
26
+
27
+ == 1.4.9 - 14-Jul-2013
28
+ * Added a binary for Ruby 2.0.
29
+ * Add devkit to Rakefile for the gem:binary task.
30
+
31
+ == 1.4.8 - 16-Jan-2011
32
+ * A binary for both 1.8.x and 1.9.x is now shipped as part of the binary
33
+ build. A stub file is used to dynamically require the correct binary based
34
+ on your current version of Ruby.
35
+ * Some updates to the Rakefile to help build multiple binaries.
36
+
37
+ == 1.4.7 - 4-Dec-2010
38
+ * An internal error formatting function now resorts to the default
39
+ LANGID on error 1815 (ERROR_RESOURCE_LANG_NOT_FOUND). Thanks go to
40
+ Little Snake for the spot.
41
+ * Added a default Rake task and refactored the clean task.
42
+
43
+ == 1.4.6 - 9-Feb-2010
44
+ * Fixed a warning that showed up with MinGW/gcc caused by an unnecessary
45
+ pointer dereference.
46
+ * Some updates to the Rakefile and gemspec. Gem building is now handled via
47
+ Rake tasks.
48
+ * Minor updates to the test suite.
49
+
50
+ == 1.4.5 - 24-Aug-2009
51
+ * Reverted the change in 1.4.4. We need unsigned longs in a few cases.
52
+ Consequently, you should upgrade windows-pr to 1.0.8 or later because
53
+ some return values were set to -1 instead of 0xFFFFFFFF as they are now.
54
+ * Updated one test to validate return value from failed function.
55
+
56
+ == 1.4.4 - 18-Aug-2009
57
+ * Fixed a bug where functions that returned a long return type were unsigned
58
+ instead of signed.
59
+ * The Rakefile has been refactored somewhat, including the removal of FFI
60
+ related tasks. Those are now in a separate branch in the repository.
61
+ * The test-unit library is now a development dependency instead of a runtime
62
+ dependency.
63
+
64
+ == 1.4.3 - 23-Jun-2009
65
+ * Bug fix for mingw.
66
+ * License now set to Artistic 2.0.
67
+
68
+ == 1.4.2 - 31-May-2009
69
+ * Updated the internal StringError() function to better handle the possibility
70
+ of the English .mui file not being found. Thanks go to Michel Demazure for
71
+ the spot.
72
+
73
+ == 1.4.1 - 29-May-2009
74
+ * Callback handling improvements.
75
+ * Updated the gemspec description.
76
+
77
+ == 1.4.0 - 19-Feb-2009
78
+ * Now compatible with Ruby 1.9.x.
79
+ * In what will go down as, "It seemed like a good idea at the time", I have
80
+ removed the feature where W (wide) character functions were used first if
81
+ your $KCODE environment variable was set to "UTF8". It caused too many
82
+ headaches in practice, especially amongst Rails users. You must now always
83
+ explicitly specify 'W' in the constructor if that's what you want.
84
+ * Fixed RF bug #23944 - bad error message for MSVCRT functions that failed
85
+ to load properly.
86
+
87
+ == 1.3.0 - 1-Jan-2009
88
+ * Fixed RubyForge bug #23395, which was caused by inadvertently modifying
89
+ a variable within a loop. This caused callbacks to fail in certain
90
+ situations.
91
+ * Added the Win32::API::LoadLibraryError and Win32::API::PrototypeError classes
92
+ to provide more fine grained handling of possible error conditions in the
93
+ constructor. These are both subclasses of Win32::API::Error.
94
+ * Removed the Win32::API::CallbackError class.
95
+ * Changed the upper limit on prototypes from 16 to 20. It turns out that
96
+ there are actually Windows functions with more than 16 prototypes.
97
+ * Refactored a high iteration test so that it counts as only one test
98
+ instead of 1000.
99
+
100
+ == 1.2.2 - 27-Nov-2008
101
+ * Fixed bug in the error message for illegal prototypes and illegal return
102
+ types where the character in question would come out as empty or garbage.
103
+ * Passing a bad return type to Win32::API::Callback now raises an error.
104
+ * Updated the error message for illegal return types to say, "Illegal return
105
+ type" instead of "Illegal prototype" as it did previously.
106
+ * The error message for a bad function name passed to Win32::API.new now
107
+ matches JRuby's FFI error message.
108
+ * Improved the handling of msvcrt functions with regards to skipping 'A'
109
+ and 'W' checks. Previously it was checking against the literal string
110
+ 'msvcrt'. Now it checks against any string that starts with 'msvcr'.
111
+ * Added test-unit 2.x as a prerequisite.
112
+ * Added tests for the Win32::API::Callback#address method.
113
+ * Added tests to all Win32::API classes that explicitly check error messages.
114
+
115
+ == 1.2.1 - 14-Nov-2008
116
+ * Fixed and updated callback handling.
117
+ * Fixed wide string return handling for pointers and strings.
118
+ * Added the Win32::API::Callback#address instance method.
119
+ * All errors are now in English instead of your native language, because
120
+ that's what Ruby itself does.
121
+
122
+ == 1.2.0 - 22-Jul-2008
123
+ * Added support for the 'S' (string) prototype and return type. It can be
124
+ used instead of 'P' (pointer) for const char*.
125
+ * Some internal refactoring. The attempts to load ANSI and/or Wide character
126
+ versions of functions are skipped for MSVCRT functions, since they do not
127
+ exist. This eliminates some unnecessary LoadLibrary() calls.
128
+ * Added a couple of gem building Rake tasks.
129
+ * Added a few more tests.
130
+
131
+ == 1.1.0 - 12-Jun-2008
132
+ * Added the Windows::API::Function class. This is a subclass of Win32::API
133
+ meant only for use with raw function pointers.
134
+ * Some documentation updates in the source and README files.
135
+
136
+ == 1.0.6 - 18-Apr-2008
137
+ * Added the effective_function_name method. This allows you to see what the
138
+ actual function name is that was defined, e.g. GetUserNameA vs GetUserNameW.
139
+ * Replaced an instance of _tcscmp with strcmp. The case in question was always
140
+ going to be ASCII.
141
+ * Cleaned up some -W3 warnings.
142
+ * Added the build_manifest task to the Rakefile, which is automatically run if
143
+ you're using a version of Ruby built with VC++ 8 or later. This builds a
144
+ ruby.exe.manifest file (if it doesn't already exist).
145
+
146
+ == 1.0.5 - 20-Nov-2007
147
+ * The API.new method now defaults to "W" (wide character functions) before "A"
148
+ (ANSI functions) if the $KCODE global variable is set to 'u' (UTF8).
149
+ * Minor improvements to the Rakefile.
150
+
151
+ == 1.0.4 - 26-Oct-2007
152
+ * Fixed a bug where methods that returned pointers ('P') could choke if the
153
+ resulting pointer was 0 or NULL. In this case, nil is now returned instead.
154
+ * Tweak to the extconf.rb file that helps the gem build it from source
155
+ properly.
156
+
157
+ == 1.0.3 - 28-Sep-2007
158
+ * Fixed a subtle but dangerous copy-on-write bug in the API#call method.
159
+
160
+ == 1.0.2 - 28-Sep-2007
161
+ * Fixed a bug in an internal struct member that was causing segfaults. Thanks
162
+ go to Lars Olsson for the spot.
163
+ * Fixed the 'install' task in the Rakefile. This only affected native builds,
164
+ not the prebuilt binary.
165
+ * Added a few more tests.
166
+
167
+ == 1.0.1 - 27-Sep-2007
168
+ * Functions declared with a void prototype no longer require an explicit nil
169
+ argument to fulfill the arity requirement. You can still call them with an
170
+ explicit nil if you wish, however.
171
+ * Fixed the gemspec for the native build.
172
+
173
+ == 1.0.0 - 14-Sep-2007
174
+ * Initial release
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ # A sample Gemfile
2
+ source "https://rubygems.org"
3
+
4
+ gemspec
@@ -0,0 +1,24 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ win32-api (1.6.0)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ power_assert (0.3.0)
10
+ rake (11.1.2)
11
+ test-unit (3.1.9)
12
+ power_assert
13
+
14
+ PLATFORMS
15
+ x64-mingw32
16
+ x86-mingw32
17
+
18
+ DEPENDENCIES
19
+ rake
20
+ test-unit (>= 2.5.0)
21
+ win32-api!
22
+
23
+ BUNDLED WITH
24
+ 1.10.5
data/README CHANGED
@@ -1,131 +1,129 @@
1
- = Description
2
- This is a drop-in replacement for the Win32API library currently part of
3
- Ruby's standard library.
4
-
5
- = Synopsis
6
- require 'win32/api'
7
- include Win32
8
-
9
- # Typical example - Get user name
10
- buf = 0.chr * 260
11
- len = [buf.length].pack('L')
12
-
13
- GetUserName = API.new('GetUserName', 'PP', 'I', 'advapi32')
14
- GetUserName.call(buf, len)
15
-
16
- puts buf.strip
17
-
18
- # Callback example - Enumerate windows
19
- EnumWindows = API.new('EnumWindows', 'KP', 'L', 'user32')
20
- GetWindowText = API.new('GetWindowText', 'LPI', 'I', 'user32')
21
- EnumWindowsProc = API::Callback.new('LP', 'I'){ |handle, param|
22
- buf = "\0" * 200
23
- GetWindowText.call(handle, buf, 200);
24
- puts buf.strip unless buf.strip.empty?
25
- buf.index(param).nil? ? true : false
26
- }
27
-
28
- EnumWindows.call(EnumWindowsProc, 'UEDIT32')
29
-
30
- # Raw function pointer example - System beep
31
- LoadLibrary = API.new('LoadLibrary', 'P', 'L')
32
- GetProcAddress = API.new('GetProcAddress', 'LP', 'L')
33
-
34
- hlib = LoadLibrary.call('user32')
35
- addr = GetProcAddress.call(hlib, 'MessageBeep')
36
- func = Win32::API::Function.new(addr, 'L', 'L')
37
- func.call(0)
38
-
39
- = Differences between win32-api and Win32API
40
- * This library has callback support
41
- * This library supports raw function pointers.
42
- * This library supports a separate string type for const char* (S).
43
- * Argument order change. The DLL name is now last, not first.
44
- * Removed the 'N' and 'n' prototypes. Always use 'L' for longs now.
45
- * Sensible default arguments for the prototype, return type and DLL name.
46
- * Reader methods for the function name, effective function name, prototype,
47
- return type and DLL.
48
- * Removed the support for lower case prototype and return types. Always
49
- use capital letters.
50
-
51
- = Developer's Notes
52
- [NOTE: Some of the information below is now out of date, but explains my
53
- motivation at the time the project was originally created.]
54
-
55
- The current Win32API library that ships with the standard library has been
56
- slated for removal from Ruby 2.0 and it will not receive any updates in the
57
- Ruby 1.8.x branch. I have far too many libraries invested in it to let it
58
- die at this point.
59
-
60
- In addition, the current Win32API library was written in the bad old Ruby
61
- 1.6.x days, which means it doesn't use the newer allocation framework.
62
- There were several other refactorings that I felt it needed to more closely
63
- match how it was actually being used in practice.
64
-
65
- The first order of business was changing the order of the arguments. By
66
- moving the DLL name from first to last, I was able to provide reasonable
67
- default arguments for the prototype, return type and the DLL. Only the
68
- function name is required now.
69
-
70
- There was a laundry list of other refactorings that were needed: sensical
71
- instance variable names with proper accessors, removing support for lower
72
- case prototype and return value characters that no one used in practice,
73
- better naming conventions, the addition of RDoc ready comments and,
74
- especially, callback and raw function pointer support.
75
-
76
- Most importantly, we can now add, modify and fix any features that we feel
77
- best benefit our end users.
78
-
79
- = Multiple Binaries
80
- As of win32-api 1.4.8 a binary gem is shipped that contains binaries for
81
- both Ruby 1.8, Ruby 1.9, and 2.x. For Ruby 2.x, both 32 and 64 bit binaries
82
- are included as of release 1.5.0.
83
-
84
- The file under lib/win32 dynamically requires the correct binary based on
85
- your version of Ruby.
86
-
87
- = Documentation
88
- The source file contains inline RDoc documentation. If you installed
89
- this file as a gem, then you have the docs. Run "gem server" and point
90
- your browser at http://localhost:8808 to see them.
91
-
92
- = Warranty
93
- This package is provided "as is" and without any express or
94
- implied warranties, including, without limitation, the implied
95
- warranties of merchantability and fitness for a particular purpose.
96
-
97
- = Known Issues
98
- Possible callback issues when dealing with multi-threaded applications.
99
-
100
- Please submit any bug reports to the project page at
101
- https://github.com/djberg96/win32-api
102
-
103
- == Contributions
104
- Although this library is free, please consider having your company
105
- setup a gittip if used by your company professionally.
106
-
107
- http://www.gittip.com/djberg96/
108
-
109
- = Future Plans
110
- I really don't have future plans for this library since you should use FFI
111
- as your preferred C interface going forward. All of my own projects have
112
- since been converted to either use FFI or an analogous OLE interface.
113
-
114
- I will continue to maintain this library as long as there are folks out
115
- there who are still using it, but I strongly encourage you to convert
116
- your projects to FFI when possible.
117
-
118
- = Maintainer Wanted!
119
- Since I no longer use this project, I would like to turn it over to
120
- someone who has the skill, time and desire to keep it going.
121
-
122
- = Copyright
123
- (C) 2003-2015 Daniel J. Berger
124
- All Rights Reserved
125
-
126
- = License
127
- Artistic 2.0
128
-
129
- = Authors
130
- Daniel J. Berger
131
- Park Heesob
1
+ = Description
2
+ This is a drop-in replacement for the Win32API library currently part of
3
+ Ruby's standard library.
4
+
5
+ = Synopsis
6
+ require 'win32/api'
7
+ include Win32
8
+
9
+ # Typical example - Get user name
10
+ buf = 0.chr * 260
11
+ len = [buf.length].pack('L')
12
+
13
+ GetUserName = API.new('GetUserName', 'PP', 'I', 'advapi32')
14
+ GetUserName.call(buf, len)
15
+
16
+ puts buf.strip
17
+
18
+ # Callback example - Enumerate windows
19
+ EnumWindows = API.new('EnumWindows', 'KP', 'L', 'user32')
20
+ GetWindowText = API.new('GetWindowText', 'LPI', 'I', 'user32')
21
+ EnumWindowsProc = API::Callback.new('LP', 'I'){ |handle, param|
22
+ buf = "\0" * 200
23
+ GetWindowText.call(handle, buf, 200);
24
+ puts buf.strip unless buf.strip.empty?
25
+ buf.index(param).nil? ? true : false
26
+ }
27
+
28
+ EnumWindows.call(EnumWindowsProc, 'UEDIT32')
29
+
30
+ # Raw function pointer example - System beep
31
+ LoadLibrary = API.new('LoadLibrary', 'P', 'L')
32
+ GetProcAddress = API.new('GetProcAddress', 'LP', 'L')
33
+
34
+ hlib = LoadLibrary.call('user32')
35
+ addr = GetProcAddress.call(hlib, 'MessageBeep')
36
+ func = Win32::API::Function.new(addr, 'L', 'L')
37
+ func.call(0)
38
+
39
+ = Differences between win32-api and Win32API
40
+ * This library has callback support
41
+ * This library supports raw function pointers.
42
+ * This library supports a separate string type for const char* (S).
43
+ * Argument order change. The DLL name is now last, not first.
44
+ * Removed the 'N' and 'n' prototypes. Always use 'L' for longs now.
45
+ * Sensible default arguments for the prototype, return type and DLL name.
46
+ * Reader methods for the function name, effective function name, prototype,
47
+ return type and DLL.
48
+ * Removed the support for lower case prototype and return types. Always
49
+ use capital letters.
50
+
51
+ = Developer's Notes
52
+ [NOTE: Some of the information below is now out of date, but explains my
53
+ motivation at the time the project was originally created.]
54
+
55
+ The current Win32API library that ships with the standard library has been
56
+ slated for removal from Ruby 2.0 and it will not receive any updates in the
57
+ Ruby 1.8.x branch. I have far too many libraries invested in it to let it
58
+ die at this point.
59
+
60
+ In addition, the current Win32API library was written in the bad old Ruby
61
+ 1.6.x days, which means it doesn't use the newer allocation framework.
62
+ There were several other refactorings that I felt it needed to more closely
63
+ match how it was actually being used in practice.
64
+
65
+ The first order of business was changing the order of the arguments. By
66
+ moving the DLL name from first to last, I was able to provide reasonable
67
+ default arguments for the prototype, return type and the DLL. Only the
68
+ function name is required now.
69
+
70
+ There was a laundry list of other refactorings that were needed: sensical
71
+ instance variable names with proper accessors, removing support for lower
72
+ case prototype and return value characters that no one used in practice,
73
+ better naming conventions, the addition of RDoc ready comments and,
74
+ especially, callback and raw function pointer support.
75
+
76
+ Most importantly, we can now add, modify and fix any features that we feel
77
+ best benefit our end users.
78
+
79
+ = Multiple Binaries
80
+ As of win32-api 1.4.8 a binary gem is shipped that contains binaries for
81
+ both Ruby 1.8, Ruby 1.9, and 2.x. For Ruby 2.x, both 32 and 64 bit binaries
82
+ are included as of release 1.5.0.
83
+
84
+ The file under lib/win32 dynamically requires the correct binary based on
85
+ your version of Ruby.
86
+
87
+ = Documentation
88
+ The source file contains inline RDoc documentation. If you installed
89
+ this file as a gem, then you have the docs. Run "gem server" and point
90
+ your browser at http://localhost:8808 to see them.
91
+
92
+ = Warranty
93
+ This package is provided "as is" and without any express or
94
+ implied warranties, including, without limitation, the implied
95
+ warranties of merchantability and fitness for a particular purpose.
96
+
97
+ = Known Issues
98
+ Possible callback issues when dealing with multi-threaded applications.
99
+
100
+ Please submit any bug reports to the project page at
101
+ https://github.com/djberg96/win32-api
102
+
103
+ == Contributions
104
+ Although this library is free, please consider having your company
105
+ setup a gittip if used by your company professionally.
106
+
107
+ http://www.gittip.com/djberg96/
108
+
109
+ = Future Plans
110
+ I really don't have future plans for this library since you should use FFI
111
+ as your preferred C interface going forward. All of my own projects have
112
+ since been converted to either use FFI or an analogous OLE interface.
113
+
114
+ I will continue to maintain this library as long as there are folks out
115
+ there who are still using it, but I strongly encourage you to convert
116
+ your projects to FFI when possible.
117
+
118
+ = Copyright
119
+ (C) 2003-2015 Daniel J. Berger
120
+ (C) 2016 Hiroshi Hatake
121
+ All Rights Reserved
122
+
123
+ = License
124
+ Artistic 2.0
125
+
126
+ = Authors
127
+ Daniel J. Berger
128
+ Park Heesob
129
+ Hiroshi Hatake