Changeset 192 for Include/basic
- Timestamp:
- Mar 28, 2007, 10:29:58 AM (18 years ago)
- Location:
- Include/basic
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
Include/basic/function.sbp
r175 r192 555 555 '値が0の場合 556 556 If value = 0 Then 557 _System_FillChar(_System_ecvt_buffer, count , &H30)557 _System_FillChar(_System_ecvt_buffer, count As SIZE_T, &H30 As StrChar) 558 558 _System_ecvt_buffer[count] = 0 559 559 dec = 0 -
Include/basic/prompt.sbp
r151 r192 494 494 495 495 'Create Prompt Window 496 _PromptSys_hWnd = CreateWindowEx(WS_EX_CLIENTEDGE, atom As ULONG_PTR As PCTSTR, "BASIC PROMPT",497 WS_OVERLAPPEDWINDOW, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, 496 _PromptSys_hWnd = CreateWindowEx(WS_EX_CLIENTEDGE, atom As ULONG_PTR As LPCTSTR, "BASIC PROMPT", _ 497 WS_OVERLAPPEDWINDOW, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, _ 498 498 0, 0, wcl.hInstance, 0) 499 499 ShowWindow(_PromptSys_hWnd, SW_SHOW) … … 540 540 For i = 0 To 100 541 541 With _PromptSys_TextLine[i] 542 .Text[0] = 0 '_System_FillChar(_PromptSys_TextLine[i].Text, -1 As Char, 0)542 .Text[0] = 0 '_System_FillChar(_PromptSys_TextLine[i].Text, -1 As StrChar, 0) 543 543 .Length = 0 544 544 End With … … 646 646 Dim i = _PromptSys_TextLine[y].Length 647 647 If i < x Then 648 _System_FillChar(VarPtr(_PromptSys_TextLine[y].Text[i]), x - i, &h20 ) 'Asc(" ")648 _System_FillChar(VarPtr(_PromptSys_TextLine[y].Text[i]), x - i, &h20 As StrChar) 'Asc(" ") 649 649 Dim i2 As Long 650 650 For i2 = i To ELM(x)
Note:
See TracChangeset
for help on using the changeset viewer.