Changeset 604


Ignore:
Timestamp:
Aug 21, 2008, 1:09:41 PM (16 years ago)
Author:
OverTaker
Message:

Controlがコンパイルできなくなっていたエラーを修整。
ついでにsockaddr_in6,in6_addrの宣言追加。

Location:
trunk/ab5.0/ablib/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/ablib/src/Classes/ActiveBasic/Windows/UI/Control.ab

    r599 r604  
    123123                .x, .y, .cx, .cy, .hwndParent, .hMenu, .hInstance, .lpCreateParams)
    124124            If hwnd = 0 Then
    125                 ActiveBasic.Windows.ThrowWithLastError(GetLastError())
     125                ActiveBasic.Windows.ThrowWithLastError()
    126126            End If
    127127           
  • trunk/ab5.0/ablib/src/api_winsock2.sbp

    r521 r604  
    271271End Type 'Class
    272272
     273Type in6_addr
     274    s6_addr[ELM(16)] As Byte
     275End Type
     276
    273277Const IN_CLASSA(i) = (((i) As DWord And &h80000000) = 0)
    274278Const IN_CLASSA_NET = &hff000000
     
    307311    sin_addr As in_addr
    308312    sin_zero[ELM(8)] As Byte
     313End Type
     314
     315Type sockaddr_in6
     316    sin6_family As Word
     317    sin6_port As Word
     318    sin6_flowinfo As DWord
     319    sin6_addr As in6_addr
     320    sin6_scope_id As DWord
    309321End Type
    310322
Note: See TracChangeset for help on using the changeset viewer.