1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-03-24 13:43:31 +01:00

commented out some declared but never defined functions and global vars

This commit is contained in:
dan
2002-03-24 21:57:21 +00:00
parent 92fb96eb69
commit f9acc9313e
3 changed files with 11 additions and 10 deletions

View File

@@ -205,9 +205,9 @@ typedef void WMNotificationObserverAction(void *observerData,
/*......................................................................*/
typedef void (waborthandler)(int);
typedef void waborthandler(int);
waborthandler* wsetabort(waborthandler*);
waborthandler* wsetabort(waborthandler* handler);
/* don't free the returned string */
@@ -680,7 +680,7 @@ void WMSortTree(WMTreeNode *aNode, WMCompareDataProc *comparer);
WMTreeNode* WMFindInTree(WMTreeNode *aTree, WMMatchDataProc *match, void *cdata);
/* Returns first tree node that has data == cdata */
#define WMGetFirstInTree(aTree, cdata) WMFindInTree(atree, NULL, cdata)
#define WMGetFirstInTree(aTree, cdata) WMFindInTree(aTree, NULL, cdata)
/*--------------------------------------------------------------------------*/