Browse CVS Repository
Contents of /exerb/exerb-win32/win32.rb
Parent Directory
| Revision Log
| Revision Graph
Revision 1.3 -
( show annotations)
( download)
Fri May 30 01:00:52 2003 UTC
(20 years, 10 months ago)
by yuya
Branch: MAIN
CVS Tags: HEAD
Changes since 1.2: +1 -1 lines
FILE REMOVED
* ソースファイルをsrcディレクトリに移動
| 1 |
|
| 2 |
#==============================================================================# |
| 3 |
# $Id: win32.rb,v 1.2 2003/02/07 06:07:32 yuya Exp $ |
| 4 |
#==============================================================================# |
| 5 |
|
| 6 |
module Win32 |
| 7 |
|
| 8 |
GCL_HICON = -14 |
| 9 |
SetClassLongA = Win32API.new('user32', 'SetClassLongA', 'LIL', 'L') |
| 10 |
|
| 11 |
LANG_JAPANESE = 0x11 |
| 12 |
GetUserDefaultLangID = Win32API.new('kernel32', 'GetUserDefaultLangID', '', 'L') |
| 13 |
|
| 14 |
end |
| 15 |
|
| 16 |
#==============================================================================# |
| 17 |
|
| 18 |
module WStyle |
| 19 |
|
| 20 |
SS_ETCHEDHORZ = 16 |
| 21 |
SS_CENTERIMAGE = 512 |
| 22 |
SS_SUNKEN = 4096 |
| 23 |
|
| 24 |
end |
| 25 |
|
| 26 |
#==============================================================================# |
| 27 |
|
| 28 |
module WConst |
| 29 |
|
| 30 |
OFN_OVERWRITEPROMPT = 0x2 |
| 31 |
OFN_HIDEREADONLY = 0x4 |
| 32 |
OFN_PATHMUSTEXIST = 0x800 |
| 33 |
OFN_FILEMUSTEXIST = 0x1000 |
| 34 |
|
| 35 |
end |
| 36 |
|
| 37 |
#==============================================================================# |
| 38 |
#==============================================================================# |
|