Changeset 137 for Include/basic/prompt.sbp
- Timestamp:
- Mar 7, 2007, 5:36:31 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Include/basic/prompt.sbp
r132 r137 26 26 End Type 27 27 28 Dim _PromptSys_LogFont As LOGFONT A 'LOGFONT28 Dim _PromptSys_LogFont As LOGFONT 29 29 Dim _PromptSys_hFont As HFONT 30 30 Dim _PromptSys_FontSize As SIZE … … 257 257 End With 258 258 ImmSetCompositionWindow(himc, CompForm) 259 ImmSetCompositionFont A(himc, _PromptSys_LogFont)259 ImmSetCompositionFont(himc, _PromptSys_LogFont) 260 260 End If 261 261 ImmReleaseContext(hwnd, himc) … … 407 407 .lfQuality = DEFAULT_QUALITY 408 408 .lfPitchAndFamily = FIXED_PITCH 409 #ifdef UNICODE410 WideCharToMultiByte(CP_ACP, 0, "MS 明朝", 5, .lfFaceName, LF_FACESIZE, 0, 0)411 #else412 409 lstrcpy(.lfFaceName, "MS 明朝") 413 #endif 414 End With 415 416 _PromptSys_hFont = CreateFontIndirectA(_PromptSys_LogFont) 410 End With 411 412 _PromptSys_hFont = CreateFontIndirect(_PromptSys_LogFont) 417 413 418 414 'Critical Section … … 436 432 437 433 'Create Prompt Window 438 _PromptSys_hWnd = CreateWindowEx(WS_EX_CLIENTEDGE, atom As ULONG_PTR As PC STR, "BASIC PROMPT",434 _PromptSys_hWnd = CreateWindowEx(WS_EX_CLIENTEDGE, atom As ULONG_PTR As PCTSTR, "BASIC PROMPT", 439 435 WS_OVERLAPPEDWINDOW, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, 440 436 0, 0, wcl.hInstance, 0)
Note:
See TracChangeset
for help on using the changeset viewer.