comparison template/dw.c @ 1769:d81bebc5c8cc

Mark and I decided to change dw_box_remove*() to dw_box_unpack*() for consistency. This commit should change all exports and references appropriately.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Fri, 06 Jul 2012 10:51:28 +0000
parents ff9a51706715
children 2b30ff777eee
comparison
equal deleted inserted replaced
1768:227e13044ce3 1769:d81bebc5c8cc
600 * Parameters: 600 * Parameters:
601 * handle: Window handle of the packed item to be removed. 601 * handle: Window handle of the packed item to be removed.
602 * Returns: 602 * Returns:
603 * DW_ERROR_NONE on success and DW_ERROR_GENERAL on failure. 603 * DW_ERROR_NONE on success and DW_ERROR_GENERAL on failure.
604 */ 604 */
605 int API dw_box_remove(HWND handle) 605 int API dw_box_unpack(HWND handle)
606 { 606 {
607 return DW_ERROR_GENERAL; 607 return DW_ERROR_GENERAL;
608 } 608 }
609 609
610 /* 610 /*
613 * box: Window handle of the box to be removed from. 613 * box: Window handle of the box to be removed from.
614 * index: 0 based index of packed items. 614 * index: 0 based index of packed items.
615 * Returns: 615 * Returns:
616 * Handle to the removed item on success, 0 on failure or padding. 616 * Handle to the removed item on success, 0 on failure or padding.
617 */ 617 */
618 HWND API dw_box_remove_at_index(HWND box, int index) 618 HWND API dw_box_unpack_at_index(HWND box, int index)
619 { 619 {
620 return 0; 620 return 0;
621 } 621 }
622 622
623 /* 623 /*