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

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

サービスはNT限定なので、それ関連のヘッダを一旦外す

File size: 785 bytes
Line 
1' Windows.sbp - declarations file for Windows API.
2
3TypeDef OLECHAR = WCHAR
4TypeDef LPOLESTR = *OLECHAR
5TypeDef LPCOLESTR = *OLECHAR
6
7TypeDef PROPID = DWord
8
9#require <windef.ab>
10#require <api_winerror.sbp>
11#require <api_system.sbp>
12#require <api_gdi.sbp>
13#require <api_window.sbp>
14#require <winnls.ab>
15#require <api_shell.sbp>
16#require <api_msg.sbp>
17#require <api_windowstyles.sbp>
18#require <api_winspool.sbp>
19#require <api_console.sbp>
20#require <winver.ab>
21#require <api_reg.sbp>
22
23#require <api_mmsys.sbp>
24#require <api_commdlg.sbp>
25#require <ole2.ab>
26#require <api_imm.sbp>
27
28#require <api_commctrl.sbp>
29#require <api_winsock2.sbp>
30
31Const GET_X_LPARAM(lp) = ((LOWORD(lp) As Integer) As Long)
32Const GET_Y_LPARAM(lp) = ((HIWORD(lp) As Integer) As Long)
Note: See TracBrowser for help on using the repository browser.