Changeset 110 for Include/basic/prompt.sbp
- Timestamp:
- Feb 18, 2007, 11:19:00 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Include/basic/prompt.sbp
r90 r110 16 16 Dim _PromptSys_hFont As HFONT 17 17 Dim _PromptSys_FontSize As SIZE 18 Dim _PromptSys_InputStr[255] As Byte18 Dim _PromptSys_InputStr[255] As Char 19 19 Dim _PromptSys_InputLen As Long 20 20 Dim _PromptSys_KeyChar As Byte 21 21 Dim _PromptSys_CurPos As POINTAPI 22 Dim _PromptSys_Buffer[100] As BytePtr22 Dim _PromptSys_Buffer[100] As *Char 23 23 Dim _PromptSys_TextColor[100] As DWordPtr 24 24 Dim _PromptSys_BackColor[100] As DWordPtr … … 53 53 Dim hOldFont As HFONT 54 54 Dim sz As SIZE 55 Dim temporary[2] As Byte55 Dim temporary[2] As Char 56 56 57 57 hOldFont=SelectObject(hDC,_PromptSys_hFont) … … 258 258 Else 259 259 _PromptSys_InputStr[_PromptSys_InputLen]=wParam As Byte 260 _PromptSys_InputLen =_PromptSys_InputLen+1260 _PromptSys_InputLen++ 261 261 262 262 temporary[0]=wParam As Byte
Note:
See TracChangeset
for help on using the changeset viewer.