Changeset 192 for Include/basic


Ignore:
Timestamp:
Mar 28, 2007, 10:29:58 AM (17 years ago)
Author:
イグトランス (egtra)
Message:

Currencyを追加、その他修正

Location:
Include/basic
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • Include/basic/function.sbp

    r175 r192  
    555555    '値が0の場合
    556556    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)
    558558        _System_ecvt_buffer[count] = 0
    559559        dec = 0
  • Include/basic/prompt.sbp

    r151 r192  
    494494
    495495    '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, _
    498498        0, 0, wcl.hInstance, 0)
    499499    ShowWindow(_PromptSys_hWnd, SW_SHOW)
     
    540540        For i = 0 To 100
    541541            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)
    543543                .Length = 0
    544544            End With
     
    646646    Dim i = _PromptSys_TextLine[y].Length
    647647    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(" ")
    649649        Dim i2 As Long
    650650        For i2 = i To ELM(x)
Note: See TracChangeset for help on using the changeset viewer.