source: trunk/ab5.0/ablib/src/windows.sbp@ 506

Last change on this file since 506 was 497, checked in by イグトランス (egtra), 16 years ago

インクルードガードとその他不要な前処理定義などの削除

File size: 967 bytes
Line 
1' Windows.sbp - declarations file for Windows API.
2
3TypeDef OLECHAR = WCHAR
4TypeDef LPOLESTR = *OLECHAR
5TypeDef LPCOLESTR = *OLECHAR
6
7TypeDef LANGID = Word
8TypeDef LCID = DWord
9TypeDef LCTYPE = DWord
10TypeDef LGRPID = DWord
11
12TypeDef PROPID = DWord
13
14#require <windef.ab>
15#require <api_winerror.sbp>
16#require <api_system.sbp>
17#require <api_gdi.sbp>
18#require <api_window.sbp>
19#require <api_shell.sbp>
20#require <api_msg.sbp>
21#require <api_windowstyles.sbp>
22#require <api_winspool.sbp>
23#require <api_console.sbp>
24#require <winver.ab>
25#require <api_reg.sbp>
26
27#ifndef WIN32_LEAN_AND_MEAN
28#require <api_mmsys.sbp>
29#require <ole2.ab>
30#require <api_commdlg.sbp>
31#endif
32
33#ifdef INC_OLE2
34#require <ole2.ab>
35#endif
36
37#ifndef NOIME
38#require <api_imm.sbp>
39#endif
40
41#require <api_commctrl.sbp>
42#require <api_winsock2.sbp>
43
44Const GET_X_LPARAM(lp) = ((LOWORD(lp) As Integer) As Long)
45Const GET_Y_LPARAM(lp) = ((HIWORD(lp) As Integer) As Long)
Note: See TracBrowser for help on using the repository browser.