source: trunk/Include/windows.sbp@ 497

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

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

File size: 967 bytes
RevLine 
[1]1' Windows.sbp - declarations file for Windows API.
2
3TypeDef OLECHAR = WCHAR
4TypeDef LPOLESTR = *OLECHAR
[285]5TypeDef LPCOLESTR = *OLECHAR
[1]6
7TypeDef LANGID = Word
8TypeDef LCID = DWord
9TypeDef LCTYPE = DWord
10TypeDef LGRPID = DWord
11
12TypeDef PROPID = DWord
13
[170]14#require <windef.ab>
[160]15#require <api_winerror.sbp>
16#require <api_system.sbp>
[323]17#require <api_gdi.sbp>
[160]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>
[293]23#require <api_console.sbp>
[160]24#require <winver.ab>
[303]25#require <api_reg.sbp>
[1]26
[303]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
[360]41#require <api_commctrl.sbp>
42#require <api_winsock2.sbp>
43
[473]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.