Ignore:
Timestamp:
Jul 21, 2008, 6:31:41 PM (16 years ago)
Author:
イグトランス (egtra)
Message:

EditBox, TaskMsgの追加。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/ablib/src/api_commctrl.sbp

    r457 r561  
    999999Declare Function _TrackMouseEvent Lib "comctl32" (ByRef EventTrack As TRACKMOUSEEVENT) As BOOL
    10001000
     1001Const TD_WARNING_ICON = MAKEINTRESOURCEW(&hffff /*-1*/)
     1002Const TD_ERROR_ICON = MAKEINTRESOURCEW(&hfffe /*-2*/)
     1003Const TD_INFORMATION_ICON = MAKEINTRESOURCEW(&hfffd /*-3*/)
     1004Const TD_SHIELD_ICON = MAKEINTRESOURCEW(&hfffc /*-4*/)
     1005
     1006Const Enum _TASKDIALOG_COMMON_BUTTON_FLAGS
     1007    TDCBF_OK_BUTTON = &h0001
     1008    TDCBF_YES_BUTTON = &h0002
     1009    TDCBF_NO_BUTTON = &h0004
     1010    TDCBF_CANCEL_BUTTON = &h0008
     1011    TDCBF_RETRY_BUTTON = &h0010
     1012    TDCBF_CLOSE_BUTTON = &h0020
     1013End Enum
     1014
     1015TypeDef TASKDIALOG_COMMON_BUTTON_FLAGS = Long
     1016
    10011017#endif '_INC_COMMCTRL
Note: See TracChangeset for help on using the changeset viewer.