Changeset 193
- Timestamp:
- Mar 28, 2007, 10:55:14 AM (18 years ago)
- Location:
- Include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
Include/Classes/System/String.ab
r192 r193 21 21 22 22 Sub String() 23 Chars = 0 23 Chars = _System_malloc(SizeOf (StrChar)) '0 24 Chars[0] = 0 24 25 m_Length = 0 25 26 End Sub … … 304 305 End Function 305 306 Private 306 Static ConstFunction ConcatStrChar(text1 As *StrChar, text1Length As Long, text2 As *StrChar, text2Length As Long) As String307 Static Function ConcatStrChar(text1 As *StrChar, text1Length As Long, text2 As *StrChar, text2Length As Long) As String 307 308 With ConcatStrChar 308 309 .AllocStringBuffer(text1Length + text2Length) -
Include/api_imm.sbp
r192 r193 275 275 #endif 'NOGDI 276 276 #endif '_INC_GDI 277 #endif278 277 279 278 Declare Function ImmConfigureIMEA Lib "imm32" (hkl As HKL, hwnd As HWND, dwMode As DWord, lpData As VoidPtr) As BOOL … … 707 706 708 707 #endif '_IMM_ 709
Note:
See TracChangeset
for help on using the changeset viewer.