Changeset 521
- Timestamp:
- Jun 21, 2008, 8:01:01 AM (16 years ago)
- Location:
- trunk/ab5.0/ablib/src
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/ablib/src/Classes/ActiveBasic/Strings/SPrintF.ab
r468 r521 917 917 918 918 /*! 919 @brief IntegerConvertTraits用。変換関数へのポインタ。 920 @author Egtra 921 @date 2008/06/08 922 */ 923 TypeDef ConvertFunc = *Function(buf As *Char, x As QWord, flags As FormatFlags) As DWord 924 925 /*! 926 @brief IntegerConvertTraits用。接頭辞取得関数へのポインタ。 927 @author Egtra 928 @date 2008/06/08 929 */ 930 TypeDef PrefixFunc = *Function(x As QWord, flags As FormatFlags) As String 931 932 /*! 919 933 @brief FormatIntegerExへ渡す変換特性を表す構造体型。 920 934 @author Egtra … … 926 940 Type IntegerConvertTraits 927 941 '!変換を行う関数へのポインタ。 928 Convert As *Function(buf As *Char, x As QWord, flags As FormatFlags) As DWord942 Convert As ConvertFunc 929 943 '!接頭辞を取得する関数へのポインタ。 930 Prefix As *Function(x As QWord, flags As FormatFlags) As String944 Prefix As PrefixFunc 931 945 End Type 932 946 -
trunk/ab5.0/ablib/src/Classes/System/Text/StringBuilder.ab
r497 r521 362 362 separateBuffer() 363 363 Dim i As Long 364 Dim last = ELM(start + count)364 Dim last = start + count - 1'ELM(start + count) 365 365 For i = start To last 366 366 If chars[i] = oldChar Then -
trunk/ab5.0/ablib/src/api_imm.sbp
r497 r521 358 358 Declare Function ImmGetImeMenuItems Lib "imm32" Alias "ImmGetImeMenuItemsA" (himc As HIMC, dwFlags As DWord, dwType As DWord, ByRef ImeParentMenu As IMEMENUITEMINFOA, lpImeMenu As LPIMEMENUITEMINFOA, dwSoze As DWord) As DWord 359 359 #endif 360 Declare Function ImmDisableTextFrameService Lib "imm32" (idThread As DWord) As BOOL360 Declare Function ImmDisableTextFrameService Lib "imm32" (idThread As DWord) As BOOL 361 361 362 362 ' wParam for WM_IME_CONTROL -
trunk/ab5.0/ablib/src/api_reg.sbp
r497 r521 129 129 Declare Function RegFlushKey Lib "advapi32" (hKey As HKEY) As Long 130 130 '#if _WIN32_WINNT >= &h0310 'AB 131 Declare Function RegGetKeySecurity Lib "advapi32" (hKey As HKEY, SecurityInformation As SECURITY_INFORMATION, pSecurityDescriptor As *SECURITY_DESCRIPTOR, ByRef lpcbSecurityDescriptor As DWord) As Long131 Declare Function RegGetKeySecurity Lib "advapi32" (hKey As HKEY, SecurityInformation As SECURITY_INFORMATION, pSecurityDescriptor As *SECURITY_DESCRIPTOR, ByRef lpcbSecurityDescriptor As DWord) As Long 132 132 '#endif 133 133 Declare Function RegLoadKey Lib "advapi32" Alias _FuncName_RegLoadKey (hKey As HKEY, pSubKey As PCTSTR, pFile As PCTSTR) As Long -
trunk/ab5.0/ablib/src/api_shell.sbp
r497 r521 367 367 368 368 ' ShellApi.h 369 Declare Function SHEmptyRecycleBin Lib "shell32" Alias _FuncName_SHEmptyRecycleBin (hwnd As HWND, pszRootPath As LPCTSTR, dwFlags As DWord) As HRESULT369 Declare Function SHEmptyRecycleBin Lib "shell32" Alias _FuncName_SHEmptyRecycleBin (hwnd As HWND, pszRootPath As LPCTSTR, dwFlags As DWord) As HRESULT 370 370 371 371 ' ShlObj.h -
trunk/ab5.0/ablib/src/api_system.sbp
r497 r521 487 487 Declare Function FindNextFile Lib "kernel32" Alias _FuncName_FindNextFile (hFindFile As HANDLE, ByRef FindFildData As WIN32_FIND_DATA) As BOOL 488 488 Declare Function FlushFileBuffers Lib "kernel32" (hFile As HANDLE) As BOOL 489 Declare Function FlushInstructionCache Lib "kernel32" (hProcess As HANDLE, pBaseAddress As VoidPtr, Size As SIZE_T) As BOOL489 Declare Function FlushInstructionCache Lib "kernel32" (hProcess As HANDLE, pBaseAddress As VoidPtr, Size As SIZE_T) As BOOL 490 490 491 491 Const FORMAT_MESSAGE_ALLOCATE_BUFFER = &H00000100 -
trunk/ab5.0/ablib/src/api_window.sbp
r497 r521 1552 1552 Declare Function SetTimer Lib "user32" (hWnd As HWND, nIDEvent As ULONG_PTR, nElapse As DWord, lpTimerFunc As TIMERPROC) As ULONG_PTR 1553 1553 1554 Declare Function SetWindowContextHelpId Lib "user32" (hwnd As HWND, dwContextHelpId As DWord) As BOOL1554 Declare Function SetWindowContextHelpId Lib "user32" (hwnd As HWND, dwContextHelpId As DWord) As BOOL 1555 1555 #ifdef _WIN64 1556 1556 Declare Function SetWindowLong Lib "user32" Alias _FuncName_SetWindowLongPtr (hWnd As HWND, nIndex As Long, NewLong As LONG_PTR) As LONG_PTR -
trunk/ab5.0/ablib/src/api_winsock2.sbp
r497 r521 119 119 120 120 Type netent 121 FAR *n_name As *Byte122 FAR * FAR *n_aliases As **Byte121 n_name As *Byte 122 n_aliases As **Byte 123 123 n_addrtyp As Integer 124 124 n_net As DWord
Note:
See TracChangeset
for help on using the changeset viewer.