Hello, Win32 API(JRuby) World!

Posted on 1月 9th, 2013 by cx20

Win32 API(JRuby)

Win32 API は、Windows の機能にアクセスする為の API(Application Programming Interface)である。
以下は JRuby にて SWT の非公開 API を使用した Win32 API 呼出しの例となっている。

ソースコード

require 'java'
require 'org.eclipse.swt.win32.win32.x86_3.6.1.v3655c.jar'
 
import 'org.eclipse.swt.internal.win32.OS'
import 'org.eclipse.swt.internal.win32.TCHAR'
 
@lpText = TCHAR.new(0, "Hello, Win32 API World!", true)
@lpCaption = TCHAR.new(0, "Hello, World", true)
OS::MessageBox(0, @lpText, @lpCaption, OS::MB_OK )

実行方法

C:¥> jruby Hello.rb

実行結果

---------------------------
Hello, World!
---------------------------
Hello, Win32 API World!
---------------------------
OK   
---------------------------

Tags:

Categories: JRuby, SWT, Win32 API

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です

WP-SpamFree by Pole Position Marketing