Ignore:
Timestamp:
Feb 11, 2007, 11:53:12 PM (17 years ago)
Author:
イグトランス (egtra)
Message:

型関連の修正 by konisi

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Include/basic/prompt.sbp

    r34 r89  
    519519    'Circle (x, y), radius [, color] [, start] [, end] [, aspect] [, f] [, color2]
    520520
    521     Dim hDC As Long
    522     Dim hPen As Long, hOldPen As Long
    523     Dim hBrush As Long, hOldBrush As Long
     521    Dim hDC As HDC
     522    Dim hPen As HPEN, hOldPen As VoidPtr
     523    Dim hBrush As HBRUSH, hOldBrush As VoidPtr
    524524    Dim radi2 As Long
    525525    Dim sw As Long
     
    540540
    541541    If Aspect<1 Then
    542         radi2=CDbl(radius)*Aspect
     542        radi2=(CDbl(radius)*Aspect) As Long
    543543    Else
    544544        radi2=radius
    545         radius=CDbl(radius)/Aspect
     545        radius=(CDbl(radius)/Aspect) As Long
    546546    End If
    547547
     
    649649    End If
    650650
    651     Dim hDC As Long
    652     Dim hPen As Long, hOldPen As Long
    653     Dim hBrush As Long, hOldBrush As Long
     651    Dim hDC As HDC
     652    Dim hPen As HPEN, hOldPen As VoidPtr
     653    Dim hBrush As HBRUSH, hOldBrush As VoidPtr
    654654
    655655    hDC=GetDC(_PromptSys_hWnd)
     
    695695    'PSet (x,y),ColorCode
    696696
    697     Dim hDC As Long
     697    Dim hDC As HDC
    698698
    699699    hDC=GetDC(_PromptSys_hWnd)
     
    710710    'Paint (x,y),BrushColor,LineColor
    711711
    712     Dim hDC As Long
    713     Dim hBrush As Long, hOldBrush As Long
    714 
     712    Dim hDC As HDC
     713    Dim hBrush As HBRUSH, hOldBrush As VoidPtr
     714   
    715715    hBrush=CreateSolidBrush(GetBasicColor(BrushColor))
    716716
Note: See TracChangeset for help on using the changeset viewer.