|
Last change
on this file since 503 was 497, checked in by イグトランス (egtra), 18 years ago |
|
インクルードガードとその他不要な前処理定義などの削除
|
|
File size:
967 bytes
|
| Line | |
|---|
| 1 | ' Windows.sbp - declarations file for Windows API.
|
|---|
| 2 |
|
|---|
| 3 | TypeDef OLECHAR = WCHAR
|
|---|
| 4 | TypeDef LPOLESTR = *OLECHAR
|
|---|
| 5 | TypeDef LPCOLESTR = *OLECHAR
|
|---|
| 6 |
|
|---|
| 7 | TypeDef LANGID = Word
|
|---|
| 8 | TypeDef LCID = DWord
|
|---|
| 9 | TypeDef LCTYPE = DWord
|
|---|
| 10 | TypeDef LGRPID = DWord
|
|---|
| 11 |
|
|---|
| 12 | TypeDef 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 |
|
|---|
| 44 | Const GET_X_LPARAM(lp) = ((LOWORD(lp) As Integer) As Long)
|
|---|
| 45 | Const GET_Y_LPARAM(lp) = ((HIWORD(lp) As Integer) As Long)
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.