aboutsummaryrefslogtreecommitdiff
path: root/graphics/EZWGL
diff options
context:
space:
mode:
authorJohn Marino <marino@FreeBSD.org>2014-09-10 12:06:58 +0000
committerJohn Marino <marino@FreeBSD.org>2014-09-10 12:06:58 +0000
commit66c1ce29b5e20874250cd7eed9fb84e7f7142d04 (patch)
tree82be5777fe614ad689a6c57ccaf684bfb3888806 /graphics/EZWGL
parentcef41ba4be8d79914395ea4601b1dfffc5e1dd6e (diff)
downloadports-66c1ce29b5e20874250cd7eed9fb84e7f7142d04.tar.gz
ports-66c1ce29b5e20874250cd7eed9fb84e7f7142d04.zip
Notes
Diffstat (limited to 'graphics/EZWGL')
-rw-r--r--graphics/EZWGL/Makefile58
-rw-r--r--graphics/EZWGL/Makefile.manlinks302
-rw-r--r--graphics/EZWGL/files/manpages706
-rw-r--r--graphics/EZWGL/files/patch-Make.common.in (renamed from graphics/EZWGL/files/patch-ah)4
-rw-r--r--graphics/EZWGL/files/patch-Makefile.in (renamed from graphics/EZWGL/files/patch-ai)4
-rw-r--r--graphics/EZWGL/files/patch-configure (renamed from graphics/EZWGL/files/patch-aj)4
-rw-r--r--graphics/EZWGL/files/patch-include__Makefile.in (renamed from graphics/EZWGL/files/patch-ak)4
-rw-r--r--graphics/EZWGL/files/patch-lib__EZ_Png.c (renamed from graphics/EZWGL/files/patch-EZ_Png.c)4
-rw-r--r--graphics/EZWGL/files/patch-lib__Makefile.in (renamed from graphics/EZWGL/files/patch-al)4
-rw-r--r--graphics/EZWGL/pkg-plist1649
10 files changed, 1047 insertions, 1692 deletions
diff --git a/graphics/EZWGL/Makefile b/graphics/EZWGL/Makefile
index cf44f7a957be..2a2c72303822 100644
--- a/graphics/EZWGL/Makefile
+++ b/graphics/EZWGL/Makefile
@@ -3,13 +3,13 @@
PORTNAME= EZWGL
PORTVERSION= 1.50
-PORTREVISION= 7
+PORTREVISION= 8
CATEGORIES= graphics devel
MASTER_SITES= ftp://ftp.ma.utexas.edu/pub/mzou/
DISTFILES= ${DISTNAME}-demo.tgz ${DISTNAME}-doc.tgz ${DISTNAME}-src.tgz
MAINTAINER= ports@FreeBSD.org
-COMMENT= The EZ Widget and Graphics Library
+COMMENT= EZ Widget and Graphics Library
LIB_DEPENDS= libtiff.so:${PORTSDIR}/graphics/tiff \
libpng15.so:${PORTSDIR}/graphics/png
@@ -19,37 +19,35 @@ USE_LDCONFIG= yes
GNU_CONFIGURE= yes
CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/libpng15
LIBS+= -L${LOCALBASE}/lib
+PORTDOCS= *
+PORTEXAMPLES= *
+
NOPRECIOUSMAKEVARS= yes # Otherwise 'make readmes' is broken
-NO_STAGE= yes
-.include <bsd.port.pre.mk>
+BROKEN_sparc64= Does not compile on sparc64
-.include "${FILESDIR}/manpages"
+OPTIONS_DEFINE= DOCS EXAMPLES
-.if ${ARCH} == "sparc64"
-BROKEN= Does not compile on sparc64
-.endif
+.include ".${CURDIR}/Makefile.manlinks"
+.include <bsd.port.options.mk>
post-extract:
- ${FIND} ${WRKSRC} -name CVS | ${XARGS} ${RM} -rf
-
-post-install:
-.for file in ${MAN3}
- ${INSTALL_MAN} ${WRKSRC}/doc/man3/${file} ${PREFIX}/man/man3
-.endfor
- @${MKDIR} ${PREFIX}/share/examples/EZ
- ${TAR} -C ${WRKSRC}/examples --exclude 'Makefile.in' -cf - . | \
- ${TAR} -C ${PREFIX}/share/examples/EZ --unlink -xf -
- ${TAR} -C ${WRKSRC} --exclude 'Makefile.in' -cf - demos | \
- ${TAR} -C ${PREFIX}/share/examples/EZ --unlink -xf -
- ${FIND} ${PREFIX}/share/examples/EZ | ${XARGS} ${CHOWN} ${SHAREOWN}:${SHAREGRP}
- ${FIND} ${PREFIX}/share/examples/EZ -type f | ${XARGS} ${CHMOD} ${SHAREMODE}
-.if !defined(NOPORTDOCS)
- @${MKDIR} ${PREFIX}/share/doc/EZ
- ${TAR} -C ${WRKSRC}/doc --exclude 'misc' -cf - html ps | \
- ${TAR} -C ${PREFIX}/share/doc/EZ --unlink -xf -
- ${FIND} ${PREFIX}/share/doc/EZ | ${XARGS} ${CHOWN} ${SHAREOWN}:${SHAREGRP}
- ${FIND} ${PREFIX}/share/doc/EZ -type f | ${XARGS} ${CHMOD} ${SHAREMODE}
-.endif
-
-.include <bsd.port.post.mk>
+ @${FIND} ${WRKSRC} -name CVS -type d | ${XARGS} ${RM} -r
+
+do-install:
+ @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${STAGEDIR}${DOCSDIR}/ps
+ ${INSTALL_DATA} ${WRKSRC}/include/EZ.h ${STAGEDIR}${PREFIX}/include
+ ${INSTALL_DATA} ${WRKSRC}/lib/libEZ.a ${STAGEDIR}${PREFIX}/lib
+ ${INSTALL_LIB} ${WRKSRC}/lib/libEZ.so.1 ${STAGEDIR}${PREFIX}/lib
+ (cd ${STAGEDIR}${PREFIX}/lib && ${LN} -s libEZ.so.1 libEZ.so)
+ ${INSTALL_MAN} ${WRKSRC}/doc/man3/*.3 ${STAGEDIR}${MANPREFIX}/man/man3
+ (cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . \
+ ${STAGEDIR}${EXAMPLESDIR} "! -name Makefile.in")
+ (cd ${WRKSRC} && ${COPYTREE_SHARE} demos \
+ ${STAGEDIR}${EXAMPLESDIR} "! -name Makefile.in")
+ (cd ${WRKSRC}/doc && ${COPYTREE_SHARE} html ${STAGEDIR}${DOCSDIR})
+ ${INSTALL_DATA} ${WRKSRC}/doc/ps/*.ps ${STAGEDIR}${DOCSDIR}/ps
+
+post-install: install-manlinks
+
+.include <bsd.port.mk>
diff --git a/graphics/EZWGL/Makefile.manlinks b/graphics/EZWGL/Makefile.manlinks
new file mode 100644
index 000000000000..e0a7bb738aa0
--- /dev/null
+++ b/graphics/EZWGL/Makefile.manlinks
@@ -0,0 +1,302 @@
+install-manlinks:
+ (cd ${STAGEDIR}${MANPREFIX}/man/man3 && \
+ ${LN} -s EZ_ActivateWidget.3 EZ_ActivateChildren.3 && \
+ ${LN} -s EZ_ActivateWidget.3 EZ_ActivateSibling.3 && \
+ ${LN} -s EZ_AllocateColorFromName.3 EZ_AllocateColorFromRGB.3 && \
+ ${LN} -s EZ_ClearListBox.3 EZ_AppendListBoxItem.3 && \
+ ${LN} -s EZ_DefineLightSrc.3 EZ_BindLightSrc.3 && \
+ ${LN} -s EZ_DefineMaterial.3 EZ_BindMaterial.3 && \
+ ${LN} -s EZ_SendMessage.3 EZ_BroadcastMessage.3 && \
+ ${LN} -s EZ_WaitCursor.3 EZ_BusyCursor.3 && \
+ ${LN} -s EZ_CMove3f.3 EZ_CMove3fv.3 && \
+ ${LN} -s EZ_CMove3f.3 EZ_CMoveScreen2f.3 && \
+ ${LN} -s EZ_CMove3f.3 EZ_CMoveScreen3f.3 && \
+ ${LN} -s EZ_CMove3f.3 EZ_CMoveScreen3fv.3 && \
+ ${LN} -s EZ_CallList.3 EZ_CallLists.3 && \
+ ${LN} -s EZ_CallWidgetCallbacks.3 EZ_CallWidgetMotionCallbacks.3 && \
+ ${LN} -s EZ_CreateTimer.3 EZ_CancelTimer.3 && \
+ ${LN} -s EZ_ClearColorf.3 EZ_ClearIndex.3 && \
+ ${LN} -s EZ_Color3f.3 EZ_Color3fv.3 && \
+ ${LN} -s EZ_Color3f.3 EZ_Color4f.3 && \
+ ${LN} -s EZ_Color3f.3 EZ_Color4fv.3 && \
+ ${LN} -s EZ_CreateCursorFromBitmapFile.3 EZ_CreateCursorFromBitmapData.3 && \
+ ${LN} -s EZ_CreateLabelPixmapFromImageFile.3 EZ_CreateLabelPixmapFromXBitmapData.3 && \
+ ${LN} -s EZ_CreateLabelPixmapFromImageFile.3 EZ_CreateLabelPixmapFromXBitmapFile.3 && \
+ ${LN} -s EZ_CreateLabelPixmapFromImageFile.3 EZ_CreateLabelPixmapFromXPixmap.3 && \
+ ${LN} -s EZ_CreateLabelPixmapFromImageFile.3 EZ_CreateLabelPixmapFromXpmData.3 && \
+ ${LN} -s EZ_CreateLabelPixmapFromImageFile.3 EZ_CreateLabelPixmapFromXpmFile.3 && \
+ ${LN} -s EZ_CreateWidget.3 EZ_CreateWidgetXrm.3 && \
+ ${LN} -s EZ_CreateXPixmapFromImageFile.3 EZ_CreateXPixmapFromBitmapFile.3 && \
+ ${LN} -s EZ_CreateXPixmapFromImageFile.3 EZ_CreateXPixmapFromXpmData.3 && \
+ ${LN} -s EZ_CreateXPixmapFromImageFile.3 EZ_CreateXPixmapFromXpmFile.3 && \
+ ${LN} -s EZ_ActivateWidget.3 EZ_DeActivateChildren.3 && \
+ ${LN} -s EZ_ActivateWidget.3 EZ_DeActivateSibling.3 && \
+ ${LN} -s EZ_ActivateWidget.3 EZ_DeActivateWidget.3 && \
+ ${LN} -s EZ_ClearListBox.3 EZ_DeleteListBoxItem.3 && \
+ ${LN} -s EZ_DeleteList.3 EZ_DeleteLists.3 && \
+ ${LN} -s EZ_RegisterMessageHandler.3 EZ_DeleteMessageHandler.3 && \
+ ${LN} -s EZ_Enable.3 EZ_Disable.3 && \
+ ${LN} -s EZ_DisplayWidget.3 EZ_DisplayWidgetUnderPointer.3 && \
+ ${LN} -s EZ_DoPopup.3 EZ_DoPopupAt.3 && \
+ ${LN} -s EZ_DetachFrame.3 EZ_DockFrame.3 && \
+ ${LN} -s EZ_Cube.3 EZ_Dodecahedron.3 && \
+ ${LN} -s EZ_DisableBubbleHelp.3 EZ_EnableBubbleHelp.3 && \
+ ${LN} -s EZ_DisableHighlight.3 EZ_EnableHighlight.3 && \
+ ${LN} -s EZ_DisableImageDithering.3 EZ_EnableImageDithering.3 && \
+ ${LN} -s EZ_DisableLabelOffset.3 EZ_EnableLableOffset.3 && \
+ ${LN} -s EZ_DisableSliderDepression.3 EZ_EnableSliderDepression.3 && \
+ ${LN} -s EZ_DisableWidget.3 EZ_EnableWidget.3 && \
+ ${LN} -s EZ_DisableWidgetTree.3 EZ_EnableWidgetTree.3 && \
+ ${LN} -s EZ_Begin.3 EZ_End.3 && \
+ ${LN} -s EZ_NewList.3 EZ_EndList.3 && \
+ ${LN} -s EZ_EntryEditBackward.3 EZ_EntryEditBackwardWord.3 && \
+ ${LN} -s EZ_EntryEditBackward.3 EZ_EntryEditBeginOfInput.3 && \
+ ${LN} -s EZ_EntryEditBackward.3 EZ_EntryEditDeleteChar.3 && \
+ ${LN} -s EZ_EntryEditBackward.3 EZ_EntryEditEndOfInput.3 && \
+ ${LN} -s EZ_EntryEditBackward.3 EZ_EntryEditForeward.3 && \
+ ${LN} -s EZ_EntryEditBackward.3 EZ_EntryEditForwardWord.3 && \
+ ${LN} -s EZ_EntryEditBackward.3 EZ_EntryEditInsertString.3 && \
+ ${LN} -s EZ_EntryEditBackward.3 EZ_EntryEditKillEndOfLine.3 && \
+ ${LN} -s EZ_EntryEditBackward.3 EZ_EntryEditKillRegion.3 && \
+ ${LN} -s EZ_EntryEditBackward.3 EZ_EntryEditSetMarker.3 && \
+ ${LN} -s EZ_EntryEditBackward.3 EZ_EntryPasteSelection.3 && \
+ ${LN} -s EZ_FancyListBoxClear.3 EZ_FancyListBoxDeleteRow.3 && \
+ ${LN} -s EZ_FancyListBoxGetHighlightedRows.3 EZ_FancyListBoxGetHighlightedItems.3 && \
+ ${LN} -s EZ_FancyListBoxClear.3 EZ_FancyListBoxInsertRow.3 && \
+ ${LN} -s EZ_FancyListBoxClear.3 EZ_FancyListBoxReplaceItem.3 && \
+ ${LN} -s EZ_FancyListBoxClear.3 EZ_FancyListBoxReplaceItemUsingIdx.3 && \
+ ${LN} -s EZ_FancyListBoxClear.3 EZ_FancyListBoxSelectItem.3 && \
+ ${LN} -s EZ_FancyListBoxClear.3 EZ_FancyListBoxSelectItemUsingIdx.3 && \
+ ${LN} -s EZ_FigItemAddString.3 EZ_FigItemAddArc.3 && \
+ ${LN} -s EZ_FigItemAddString.3 EZ_FigItemAddArcs.3 && \
+ ${LN} -s EZ_FigItemAddString.3 EZ_FigItemAddFilledArc.3 && \
+ ${LN} -s EZ_FigItemAddString.3 EZ_FigItemAddFilledArcs.3 && \
+ ${LN} -s EZ_FigItemAddString.3 EZ_FigItemAddFilledRectangle.3 && \
+ ${LN} -s EZ_FigItemAddString.3 EZ_FigItemAddFilledRectangles.3 && \
+ ${LN} -s EZ_FigItemAddString.3 EZ_FigItemAddLines.3 && \
+ ${LN} -s EZ_FigItemAddString.3 EZ_FigItemAddPixmap.3 && \
+ ${LN} -s EZ_FigItemAddString.3 EZ_FigItemAddPoints.3 && \
+ ${LN} -s EZ_FigItemAddString.3 EZ_FigItemAddPolygon.3 && \
+ ${LN} -s EZ_FigItemAddString.3 EZ_FigItemAddRectangle.3 && \
+ ${LN} -s EZ_FigItemAddString.3 EZ_FigItemAddRectangles.3 && \
+ ${LN} -s EZ_FigItemAddString.3 EZ_FigItemAddSegments.3 && \
+ ${LN} -s EZ_DetachFrame.3 EZ_FrameIsDetached.3 && \
+ ${LN} -s EZ_Malloc.3 EZ_Free.3 && \
+ ${LN} -s EZ_GetGC.3 EZ_FreeGC.3 && \
+ ${LN} -s EZ_CreateGLImage.3 EZ_FreeGLImage.3 && \
+ ${LN} -s EZ_CreateLabelPixmapFromImageFile.3 EZ_FreeLabelPixmap.3 && \
+ ${LN} -s EZ_CreateXPixmapFromImageFile.3 EZ_FreeXPixmap.3 && \
+ ${LN} -s EZ_Configure3DCanvas.3 EZ_GLConfig.3 && \
+ ${LN} -s EZ_EnterEvent.3 EZ_GLEnterEvent.3 && \
+ ${LN} -s EZ_SetApplicationName.3 EZ_GetApplicationName.3 && \
+ ${LN} -s EZ_GetBackgroundGC.3 EZ_GetBackgroundTileGC.3 && \
+ ${LN} -s EZ_GetParentWidget.3 EZ_GetChildrenWidget.3 && \
+ ${LN} -s EZ_GetInstanceName.3 EZ_GetClassName.3 && \
+ ${LN} -s EZ_GetDisplay.3 EZ_GetColormap.3 && \
+ ${LN} -s EZ_GetCursor.3 EZ_GetCursorByName.3 && \
+ ${LN} -s EZ_GetCursor.3 EZ_GetCursorName.3 && \
+ ${LN} -s EZ_GetDisplay.3 EZ_GetDepth.3 && \
+ ${LN} -s EZ_GetDisplay.3 EZ_GetDisplayInfo.3 && \
+ ${LN} -s EZ_SetEntryString.3 EZ_GetEntryString.3 && \
+ ${LN} -s EZ_GetFancyListBoxNumberofRows.3 EZ_GetFancyListBoxNumberOfColumns.3 && \
+ ${LN} -s EZ_GetWidgetFont.3 EZ_GetFontFromId.3 && \
+ ${LN} -s EZ_GetWidgetFont.3 EZ_GetFontFromName.3 && \
+ ${LN} -s EZ_GetWidgetFont.3 EZ_GetFontFromXFontId.3 && \
+ ${LN} -s EZ_GetGLImageWindow.3 EZ_GetGLImageXWindow.3 && \
+ ${LN} -s EZ_SetIconPath.3 EZ_GetIconPath.3 && \
+ ${LN} -s EZ_GetItemWidth.3 EZ_GetItemDimension.3 && \
+ ${LN} -s EZ_GetItemWidth.3 EZ_GetItemHeight.3 && \
+ ${LN} -s EZ_GetItemClientData.3 EZ_GetItemIntData.3 && \
+ ${LN} -s EZ_GetItemWidth.3 EZ_GetItemPosition.3 && \
+ ${LN} -s EZ_GetItemClientData.3 EZ_GetItemPtrData.3 && \
+ ${LN} -s EZ_GetItemUnknownData.3 EZ_GetItemUnknownDataPtr.3 && \
+ ${LN} -s EZ_GetListBoxSelection.3 EZ_GetListBoxSelectedItem.3 && \
+ ${LN} -s EZ_GetListBoxSelection.3 EZ_GetListBoxSelectionLineNumber.3 && \
+ ${LN} -s EZ_SetMenuButtonMenu.3 EZ_GetMenuButtonMenu.3 && \
+ ${LN} -s EZ_GetNumberOfAllocatedColors.3 EZ_GetNumberOfReservedColorsForGL.3 && \
+ ${LN} -s EZ_SetOptionalEntryString.3 EZ_GetOptionalEntryString.3 && \
+ ${LN} -s EZ_GetParentBgGC.3 EZ_GetParentBgTileGC.3 && \
+ ${LN} -s EZ_GetDisplay.3 EZ_GetScreen.3 && \
+ ${LN} -s EZ_GetWidgetReturnData.3 EZ_GetSelectedMenuItem.3 && \
+ ${LN} -s EZ_GetParentWidget.3 EZ_GetSiblingWidget.3 && \
+ ${LN} -s EZ_SetStatusMeterValue.3 EZ_GetStatusMeterValue.3 && \
+ ${LN} -s EZ_SetStatusMeterValue.3 EZ_GetStatusMeterValueN.3 && \
+ ${LN} -s EZ_GetTimerClientData.3 EZ_GetTimerIntData.3 && \
+ ${LN} -s EZ_GetTimerClientData.3 EZ_GetTimerPtrData.3 && \
+ ${LN} -s EZ_GetDisplay.3 EZ_GetVisual.3 && \
+ ${LN} -s EZ_GetWidgetGeometry.3 EZ_GetWidgetBorderWidth.3 && \
+ ${LN} -s EZ_SetWidgetCINames.3 EZ_GetWidgetCINames.3 && \
+ ${LN} -s EZ_GetWidgetIntData.3 EZ_GetWidgetClientData.3 && \
+ ${LN} -s EZ_GetWidgetGeometry.3 EZ_GetWidgetDimension.3 && \
+ ${LN} -s EZ_GetWidgetGeometry.3 EZ_GetWidgetHeight.3 && \
+ ${LN} -s EZ_SetWidgetLabelString.3 EZ_GetWidgetLabelPosition.3 && \
+ ${LN} -s EZ_SetWidgetLabelString.3 EZ_GetWidgetLabelString.3 && \
+ ${LN} -s EZ_GetWidgetGeometry.3 EZ_GetWidgetMinDimention.3 && \
+ ${LN} -s EZ_GetWidgetGeometry.3 EZ_GetWidgetMinHeight.3 && \
+ ${LN} -s EZ_GetWidgetGeometry.3 EZ_GetWidgetMinWidth.3 && \
+ ${LN} -s EZ_GetWidgetGeometry.3 EZ_GetWidgetPosition.3 && \
+ ${LN} -s EZ_GetWidgetIntData.3 EZ_GetWidgetPtrData.3 && \
+ ${LN} -s EZ_GetWidgetUnknownData.3 EZ_GetWidgetUnknownDataPtr.3 && \
+ ${LN} -s EZ_GetWidgetGeometry.3 EZ_GetWidgetWidth.3 && \
+ ${LN} -s EZ_OnFrameDragHandle.3 EZ_HighlightFrameDragHandle.3 && \
+ ${LN} -s EZ_Cube.3 EZ_Icosahedron.3 && \
+ ${LN} -s EZ_Index.3 EZ_Indexf.3 && \
+ ${LN} -s EZ_Initialize.3 EZ_InitializeXrm.3 && \
+ ${LN} -s EZ_ClearListBox.3 EZ_InsertListBoxItem.3 && \
+ ${LN} -s EZ_InsertWidgetAfter.3 EZ_InsertWidgetBefore.3 && \
+ ${LN} -s EZ_ItemAddDnDDataDecoder.3 EZ_ItemAddDnDDataEncoder.3 && \
+ ${LN} -s EZ_ItemAddDnDDataDecoder.3 EZ_ItemDeleteAllDnDDataDecoders.3 && \
+ ${LN} -s EZ_ItemAddDnDDataDecoder.3 EZ_ItemDeleteAllDnDDataEncoders.3 && \
+ ${LN} -s EZ_ItemAddDnDDataDecoder.3 EZ_ItemDeleteDnDDataDecoder.3 && \
+ ${LN} -s EZ_ItemAddDnDDataDecoder.3 EZ_ItemDeleteDnDDataEncoder.3 && \
+ ${LN} -s EZ_LightModelf.3 EZ_LightModelfv.3 && \
+ ${LN} -s EZ_Lightf.3 EZ_Lightfv.3 && \
+ ${LN} -s EZ_ClearListBox.3 EZ_ListBoxSelectItem.3 && \
+ ${LN} -s EZ_ClearListBox.3 EZ_ListBoxSelectItemUsingIdx.3 && \
+ ${LN} -s EZ_ListTreeGetHighlightedNodes.3 EZ_ListTreeGetHighlightedItems.3 && \
+ ${LN} -s EZ_Materialf.3 EZ_Materialfv.3 && \
+ ${LN} -s EZ_ClearListBox.3 EZ_ModifyListBoxItem.3 && \
+ ${LN} -s EZ_Normal3f.3 EZ_Normal3fv.3 && \
+ ${LN} -s EZ_WaitCursor.3 EZ_NormalCursor.3 && \
+ ${LN} -s EZ_Cube.3 EZ_Octahedron.3 && \
+ ${LN} -s EZ_OptionEntryClearOptions.3 EZ_OptionEntryAppendOption.3 && \
+ ${LN} -s EZ_OptionEntryClearOptions.3 EZ_OptionEntryDeleteOption.3 && \
+ ${LN} -s EZ_OptionEntryClearOptions.3 EZ_OptionalEntryAppendOption.3 && \
+ ${LN} -s EZ_OptionEntryClearOptions.3 EZ_OptionalEntryDeleteOption.3 && \
+ ${LN} -s EZ_OptionEntryClearOptions.3 EZ_OptionalEntryInsertOption.3 && \
+ ${LN} -s EZ_AllocateColorFromName.3 EZ_PixelValue2RGB.3 && \
+ ${LN} -s EZ_PutGLImage.3 EZ_PutGLImageScreen.3 && \
+ ${LN} -s EZ_PutGLImage.3 EZ_PutGLImageWindow.3 && \
+ ${LN} -s EZ_PutGLImage.3 EZ_PutGLImageXWindow.3 && \
+ ${LN} -s EZ_ColorMapMode.3 EZ_RGBMode.3 && \
+ ${LN} -s EZ_SetGrab.3 EZ_ReleaseGrab.3 && \
+ ${LN} -s EZ_AddEventHandler.3 EZ_RemoveAllEventHandlers.3 && \
+ ${LN} -s EZ_AddIdleCallBack.3 EZ_RemoveAllIdleCallBacks.3 && \
+ ${LN} -s EZ_AddItemCallBack.3 EZ_RemoveAllItemCallBacks.3 && \
+ ${LN} -s EZ_AddWidgetCallBack.3 EZ_RemoveAllWidgetCallBacks.3 && \
+ ${LN} -s EZ_WidgetDispatchEvent.3 EZ_RemoveEvent.3 && \
+ ${LN} -s EZ_AddEventHandler.3 EZ_RemoveEventHandler.3 && \
+ ${LN} -s EZ_AddIdleCallBack.3 EZ_RemoveIdleCallBack.3 && \
+ ${LN} -s EZ_AddInput.3 EZ_RemoveInput.3 && \
+ ${LN} -s EZ_AddItemCallBack.3 EZ_RemoveItemCallBack.3 && \
+ ${LN} -s EZ_QueueLedAction.3 EZ_RemoveLedAction.3 && \
+ ${LN} -s EZ_AddWidgetCallBack.3 EZ_RemoveWidgetCallBack.3 && \
+ ${LN} -s EZ_SendMessage.3 EZ_ReplyMessage.3 && \
+ ${LN} -s EZ_SendMessage.3 EZ_ReplyMessageR.3 && \
+ ${LN} -s EZ_CreateTimer.3 EZ_ResetTimer.3 && \
+ ${LN} -s EZ_CreateTimer.3 EZ_RestartTimer.3 && \
+ ${LN} -s EZ_InstallSymbol.3 EZ_RetrieveSymbol.3 && \
+ ${LN} -s EZ_InstallSymbolicFloat.3 EZ_RetrieveSymbolicFloat.3 && \
+ ${LN} -s EZ_InstallSymbolicInt.3 EZ_RetrieveSymbolicInt.3 && \
+ ${LN} -s EZ_InstallSymbolicPointer.3 EZ_RetrieveSymbolicPointer.3 && \
+ ${LN} -s EZ_InstallSymbolicULong.3 EZ_RetrieveSymbolicULong.3 && \
+ ${LN} -s EZ_Save3DCanvas2PS.3 EZ_Save3DCanvas2PSA.3 && \
+ ${LN} -s EZ_SaveWidget2Postscript.3 EZ_SaveWidget2PPM.3 && \
+ ${LN} -s EZ_EventMainLoop.3 EZ_ServiceEvents.3 && \
+ ${LN} -s EZ_GetCheckButtonState.3 EZ_SetCheckButtonState.3 && \
+ ${LN} -s EZ_SetDefaultEntryTextFont.3 EZ_SetDefaultLabelFont.3 && \
+ ${LN} -s EZ_SetDefaultEntryTextFont.3 EZ_SetDefaultMenuTitleFont.3 && \
+ ${LN} -s EZ_SetDirTreeDefaultPixmaps.3 EZ_SetDirTreeDefaultPixmapsFromXpmFiles.3 && \
+ ${LN} -s EZ_SetDirTreeDirectoryNodeCreator.3 EZ_SetDirTreeFileNodeCreator.3 && \
+ ${LN} -s EZ_SetDragIcon.3 EZ_SetDragCursor.3 && \
+ ${LN} -s EZ_GetFancyListBoxXYOffset.3 EZ_SetFancyListBoxXYOffset.3 && \
+ ${LN} -s EZ_SetLedBackground.3 EZ_SetForeground.3 && \
+ ${LN} -s EZ_GetItemClientData.3 EZ_SetItemClientData.3 && \
+ ${LN} -s EZ_GetItemWidth.3 EZ_SetItemDimension.3 && \
+ ${LN} -s EZ_GetItemWidth.3 EZ_SetItemHeight.3 && \
+ ${LN} -s EZ_GetItemClientData.3 EZ_SetItemIntData.3 && \
+ ${LN} -s EZ_GetItemWidth.3 EZ_SetItemPosition.3 && \
+ ${LN} -s EZ_GetItemClientData.3 EZ_SetItemPtrData.3 && \
+ ${LN} -s EZ_GetItemUnknownData.3 EZ_SetItemUnknownData.3 && \
+ ${LN} -s EZ_GetItemWidth.3 EZ_SetItemWidth.3 && \
+ ${LN} -s EZ_SetKbdHighlightColor.3 EZ_SetKbdHighlightColorRGB.3 && \
+ ${LN} -s EZ_SetLcdInteger.3 EZ_SetLcdFloat.3 && \
+ ${LN} -s EZ_SetLcdBackground.3 EZ_SetLcdForeground.3 && \
+ ${LN} -s EZ_SetLedBackground.3 EZ_SetLedForeground.3 && \
+ ${LN} -s EZ_SetLedSize.3 EZ_SetLedHeight.3 && \
+ ${LN} -s EZ_SetLedSize.3 EZ_SetLedWidth.3 && \
+ ${LN} -s EZ_GetListTreeWidgetXYOffset.3 EZ_SetListTreeWidgetXYOffset.3 && \
+ ${LN} -s EZ_SetLedBackground.3 EZ_SetOffPixelColor.3 && \
+ ${LN} -s EZ_GetRadioButtonGroupVariableValue.3 EZ_SetRadioButtonGroupVariableValue.3 && \
+ ${LN} -s EZ_GetSliderValue.3 EZ_SetSliderValue.3 && \
+ ${LN} -s EZ_SetStatusMeterForeground.3 EZ_SetStatusMeterForegroundN.3 && \
+ ${LN} -s EZ_SetStatusMeterRange.3 EZ_SetStatusMeterRangeN.3 && \
+ ${LN} -s EZ_SetStatusMeterValue.3 EZ_SetStatusMeterValueN.3 && \
+ ${LN} -s EZ_SetTimerClientData.3 EZ_SetTimerIntData.3 && \
+ ${LN} -s EZ_SetTimerClientData.3 EZ_SetTimerPtrData.3 && \
+ ${LN} -s EZ_SetHScrollbarDiscreteSpeed.3 EZ_SetVScrollbarDiscreteSpeed.3 && \
+ ${LN} -s EZ_GetWidgetIntData.3 EZ_SetWidgetClientData.3 && \
+ ${LN} -s EZ_SetWidgetPosition.3 EZ_SetWidgetHeight.3 && \
+ ${LN} -s EZ_GetWidgetIntData.3 EZ_SetWidgetIntData.3 && \
+ ${LN} -s EZ_GetWidgetIntData.3 EZ_SetWidgetPtrData.3 && \
+ ${LN} -s EZ_GetWidgetUnknownData.3 EZ_SetWidgetUnknownData.3 && \
+ ${LN} -s EZ_SetWidgetPosition.3 EZ_SetWidgetWidth.3 && \
+ ${LN} -s EZ_GetWorkAreaXYOffset.3 EZ_SetWorkAreaXYOffset.3 && \
+ ${LN} -s EZ_StopStatusMeter.3 EZ_StartStatusMeter.3 && \
+ ${LN} -s EZ_InsertWidgetAfter.3 EZ_SwapWidgets.3 && \
+ ${LN} -s EZ_Cube.3 EZ_Tetrahedron.3 && \
+ ${LN} -s EZ_TextEndOfLine.3 EZ_TextBackwardChar.3 && \
+ ${LN} -s EZ_TextEndOfLine.3 EZ_TextBackwardWord.3 && \
+ ${LN} -s EZ_TextEndOfLine.3 EZ_TextBeginningOfBuffer.3 && \
+ ${LN} -s EZ_TextEndOfLine.3 EZ_TextBeginningOfLine.3 && \
+ ${LN} -s EZ_TextEndOfLine.3 EZ_TextClear.3 && \
+ ${LN} -s EZ_TextEndOfLine.3 EZ_TextDeleteNextChar.3 && \
+ ${LN} -s EZ_TextEndOfLine.3 EZ_TextDeletePreviousChar.3 && \
+ ${LN} -s EZ_TextEndOfLine.3 EZ_TextEndOfBuffer.3 && \
+ ${LN} -s EZ_TextEndOfLine.3 EZ_TextForwardChar.3 && \
+ ${LN} -s EZ_TextEndOfLine.3 EZ_TextForwardWord.3 && \
+ ${LN} -s EZ_TextEndOfLine.3 EZ_TextGetPosition.3 && \
+ ${LN} -s EZ_TextEndOfLine.3 EZ_TextGetRegionString.3 && \
+ ${LN} -s EZ_TextEndOfLine.3 EZ_TextGotoPosition.3 && \
+ ${LN} -s EZ_TextEndOfLine.3 EZ_TextInsertChar.3 && \
+ ${LN} -s EZ_TextEndOfLine.3 EZ_TextInsertNewLine.3 && \
+ ${LN} -s EZ_TextEndOfLine.3 EZ_TextInsertString.3 && \
+ ${LN} -s EZ_TextEndOfLine.3 EZ_TextInsertStringWithProperty.3 && \
+ ${LN} -s EZ_TextEndOfLine.3 EZ_TextKillEndOfLine.3 && \
+ ${LN} -s EZ_TextEndOfLine.3 EZ_TextKillRegion.3 && \
+ ${LN} -s EZ_TextEndOfLine.3 EZ_TextLoadAnnotatedFile.3 && \
+ ${LN} -s EZ_TextEndOfLine.3 EZ_TextLoadFile.3 && \
+ ${LN} -s EZ_TextEndOfLine.3 EZ_TextNextLine.3 && \
+ ${LN} -s EZ_TextEndOfLine.3 EZ_TextNextPage.3 && \
+ ${LN} -s EZ_TextEndOfLine.3 EZ_TextPasteSelection.3 && \
+ ${LN} -s EZ_TextEndOfLine.3 EZ_TextPreviousLine.3 && \
+ ${LN} -s EZ_TextEndOfLine.3 EZ_TextPreviousPage.3 && \
+ ${LN} -s EZ_TextEndOfLine.3 EZ_TextReDisplay.3 && \
+ ${LN} -s EZ_TextEndOfLine.3 EZ_TextReplaceRegionWithPixmap.3 && \
+ ${LN} -s EZ_TextEndOfLine.3 EZ_TextSaveAnnotatedText.3 && \
+ ${LN} -s EZ_TextEndOfLine.3 EZ_TextSaveText.3 && \
+ ${LN} -s EZ_TextEndOfLine.3 EZ_TextSetMarker.3 && \
+ ${LN} -s EZ_TextEndOfLine.3 EZ_TextSetRegionBackground.3 && \
+ ${LN} -s EZ_TextEndOfLine.3 EZ_TextSetRegionFont.3 && \
+ ${LN} -s EZ_TextEndOfLine.3 EZ_TextSetRegionForeground.3 && \
+ ${LN} -s EZ_TextEndOfLine.3 EZ_TextSetRegionProperty.3 && \
+ ${LN} -s EZ_TextEndOfLine.3 EZ_TextSetRegionUnderline.3 && \
+ ${LN} -s EZ_TreeAttachSubtree.3 EZ_TreeDetachSubtree.3 && \
+ ${LN} -s EZ_TreeNodeGetChildren.3 EZ_TreeNodeGetParent.3 && \
+ ${LN} -s EZ_TreeNodeGetChildren.3 EZ_TreeNodeGetSibling.3 && \
+ ${LN} -s EZ_TreeSetBGColor.3 EZ_TreeSetBGColorName.3 && \
+ ${LN} -s EZ_TreeSetBGColor.3 EZ_TreeSetFGColor.3 && \
+ ${LN} -s EZ_TreeSetBGColor.3 EZ_TreeSetFGColorName.3 && \
+ ${LN} -s EZ_FreezeWidget.3 EZ_UnFreezeWidget.3 && \
+ ${LN} -s EZ_GrabPointer.3 EZ_UngrabPointer.3 && \
+ ${LN} -s EZ_GetScrollbarState.3 EZ_UpdateScrollbar.3 && \
+ ${LN} -s EZ_Vertex3f.3 EZ_Vertex2f.3 && \
+ ${LN} -s EZ_Vertex3f.3 EZ_Vertex2fv.3 && \
+ ${LN} -s EZ_Vertex3f.3 EZ_Vertex3fv.3 && \
+ ${LN} -s EZ_EventMainLoop.3 EZ_WaitAndServiceNextEvent.3 && \
+ ${LN} -s EZ_WarpPointer.3 EZ_WarpPointerToWidgetWindow.3 && \
+ ${LN} -s EZ_WidgetAddDnDDataDecoder.3 EZ_WidgetAddDnDDataEncoder.3 && \
+ ${LN} -s EZ_WidgetAddDnDDataDecoder.3 EZ_WidgetDeleteAllDnDDataDecoders.3 && \
+ ${LN} -s EZ_WidgetAddDnDDataDecoder.3 EZ_WidgetDeleteAllDnDDataEncoders.3 && \
+ ${LN} -s EZ_WidgetAddDnDDataDecoder.3 EZ_WidgetDeleteDnDDataDecoder.3 && \
+ ${LN} -s EZ_WidgetAddDnDDataDecoder.3 EZ_WidgetDeleteDnDDataEncoder.3 && \
+ ${LN} -s EZ_WorkAreaClear.3 EZ_WorkAreaDeleteItem.3 && \
+ ${LN} -s EZ_WorkAreaClear.3 EZ_WorkAreaDeleteItemUsingIdx.3 && \
+ ${LN} -s EZ_WorkAreaClear.3 EZ_WorkAreaInsertItem.3 && \
+ ${LN} -s EZ_WorkAreaClear.3 EZ_WorkAreaInsertItemAfter.3 && \
+ ${LN} -s EZ_WorkAreaClear.3 EZ_WorkAreaInsertItemBefore.3 && \
+ ${LN} -s EZ_WorkAreaClear.3 EZ_WorkAreaInsertItemUsingIdx.3 && \
+ ${LN} -s EZ_WorkAreaClear.3 EZ_WorkAreaRearrange.3 && \
+ ${LN} -s EZ_WorkAreaClear.3 EZ_WorkAreaSelectItem.3 && \
+ ${LN} -s EZ_WorkAreaClear.3 EZ_WorkAreaSelectItemUsingIdx.3 && \
+ ${LN} -s EZ_IdentityMatrix.3 EZ_ZeroMatrix.3)
diff --git a/graphics/EZWGL/files/manpages b/graphics/EZWGL/files/manpages
deleted file mode 100644
index 970d9a2e8c41..000000000000
--- a/graphics/EZWGL/files/manpages
+++ /dev/null
@@ -1,706 +0,0 @@
-MAN3+= EZ.3
-MAN3+= EZ_ActivateNoteBookPage.3
-MAN3+= EZ_ActivateWidget.3
-MAN3+= EZ_AddEventHandler.3
-MAN3+= EZ_AddIdleCallBack.3
-MAN3+= EZ_AddInput.3
-MAN3+= EZ_AddItemCallBack.3
-MAN3+= EZ_AddWidgetCallBack.3
-MAN3+= EZ_AllocateColorFromName.3
-MAN3+= EZ_AllowDualLabel.3
-MAN3+= EZ_AutoSelectBackBuffer.3
-MAN3+= EZ_Begin.3
-MAN3+= EZ_BlinkWidget.3
-MAN3+= EZ_CMove2f.3
-MAN3+= EZ_CMove3f.3
-MAN3+= EZ_CallList.3
-MAN3+= EZ_CallWidgetCallbacks.3
-MAN3+= EZ_Clear.3
-MAN3+= EZ_ClearColorf.3
-MAN3+= EZ_ClearLcd.3
-MAN3+= EZ_ClearListBox.3
-MAN3+= EZ_Color3f.3
-MAN3+= EZ_ColorMapMode.3
-MAN3+= EZ_ColorMaterial.3
-MAN3+= EZ_ComputeItemSize.3
-MAN3+= EZ_ComputeWidgetWindowSize.3
-MAN3+= EZ_Configure3DCanvas.3
-MAN3+= EZ_ConfigureItem.3
-MAN3+= EZ_ConfigureWidget.3
-MAN3+= EZ_CopyMatrix.3
-MAN3+= EZ_CopyTransposeMatrix.3
-MAN3+= EZ_CopyVector.3
-MAN3+= EZ_CreateCursorFromBitmapFile.3
-MAN3+= EZ_CreateDirTree.3
-MAN3+= EZ_CreateGLImage.3
-MAN3+= EZ_CreateItem.3
-MAN3+= EZ_CreateLabelPixmapFromImageFile.3
-MAN3+= EZ_CreateMenuFromList.3
-MAN3+= EZ_CreateRotateTextPixmap.3
-MAN3+= EZ_CreateSimpleMenu.3
-MAN3+= EZ_CreateTimer.3
-MAN3+= EZ_CreateTreeNode.3
-MAN3+= EZ_CreateWidget.3
-MAN3+= EZ_CreateXPixmapFromImageFile.3
-MAN3+= EZ_Cube.3
-MAN3+= EZ_CullFace.3
-MAN3+= EZ_DefineLightModel.3
-MAN3+= EZ_DefineLightSrc.3
-MAN3+= EZ_DefineMaterial.3
-MAN3+= EZ_DeleteList.3
-MAN3+= EZ_DestroyItem.3
-MAN3+= EZ_DestroyWidget.3
-MAN3+= EZ_DestroyWidgetWindows.3
-MAN3+= EZ_DetachFrame.3
-MAN3+= EZ_DisableBubbleHelp.3
-MAN3+= EZ_DisableHighlight.3
-MAN3+= EZ_DisableImageDithering.3
-MAN3+= EZ_DisableLabelOffset.3
-MAN3+= EZ_DisableSliderDepression.3
-MAN3+= EZ_DisableWidget.3
-MAN3+= EZ_DisableWidgetTree.3
-MAN3+= EZ_DisplayWidget.3
-MAN3+= EZ_DnDGetDragConversionTargets.3
-MAN3+= EZ_DnDGetMatchedConversionTargets.3
-MAN3+= EZ_DoPopup.3
-MAN3+= EZ_DoScroll.3
-MAN3+= EZ_DrawBuffer.3
-MAN3+= EZ_DrawRectBorder.3
-MAN3+= EZ_DrawString.3
-MAN3+= EZ_DrawWidget.3
-MAN3+= EZ_Enable.3
-MAN3+= EZ_EnterEvent.3
-MAN3+= EZ_EntryEditBackward.3
-MAN3+= EZ_EventMainLoop.3
-MAN3+= EZ_ExecuteIdleCallBacks.3
-MAN3+= EZ_FancyListBoxClear.3
-MAN3+= EZ_FancyListBoxDeleteSomeRows.3
-MAN3+= EZ_FancyListBoxFindItemAtXY.3
-MAN3+= EZ_FancyListBoxFindRowAtXY.3
-MAN3+= EZ_FancyListBoxGetHighlightedRows.3
-MAN3+= EZ_FigItemAddString.3
-MAN3+= EZ_FigItemHidePiece.3
-MAN3+= EZ_FixFocusHighlightBorder.3
-MAN3+= EZ_FlashWidgetBorder.3
-MAN3+= EZ_Fogfv.3
-MAN3+= EZ_FreezeWidget.3
-MAN3+= EZ_FrontFace.3
-MAN3+= EZ_Frustum.3
-MAN3+= EZ_GLNextEvent.3
-MAN3+= EZ_GLResetEvents.3
-MAN3+= EZ_GenLists.3
-MAN3+= EZ_GenerateRotationMatrix.3
-MAN3+= EZ_Get3DCanvasSize.3
-MAN3+= EZ_GetAndUseWidgetResources.3
-MAN3+= EZ_GetApplicationResource.3
-MAN3+= EZ_GetAtom.3
-MAN3+= EZ_GetBackgroundGC.3
-MAN3+= EZ_GetBackgroundPV.3
-MAN3+= EZ_GetBubbleHelp.3
-MAN3+= EZ_GetCheckButtonState.3
-MAN3+= EZ_GetCommunicationWindow.3
-MAN3+= EZ_GetCursor.3
-MAN3+= EZ_GetDarkBrightNormalBDGC.3
-MAN3+= EZ_GetDefaultMaterial.3
-MAN3+= EZ_GetDirTreeNodeFullPath.3
-MAN3+= EZ_GetDisplay.3
-MAN3+= EZ_GetDisplaySize.3
-MAN3+= EZ_GetDnDDragSrcXYOffset.3
-MAN3+= EZ_GetDnDDropLocation.3
-MAN3+= EZ_GetFancyListBoxData.3
-MAN3+= EZ_GetFancyListBoxItemUsingIdx.3
-MAN3+= EZ_GetFancyListBoxNumberOfRows.3
-MAN3+= EZ_GetFancyListBoxNumberofRows.3
-MAN3+= EZ_GetFancyListBoxSelection.3
-MAN3+= EZ_GetFancyListBoxSelectionIdx.3
-MAN3+= EZ_GetFancyListBoxWidgetComponents.3
-MAN3+= EZ_GetFancyListBoxXYOffset.3
-MAN3+= EZ_GetFileSelectorComponents.3
-MAN3+= EZ_GetFileSelectorSelection.3
-MAN3+= EZ_GetFileSelectorWidgetComponents.3
-MAN3+= EZ_GetFocus.3
-MAN3+= EZ_GetFontName.3
-MAN3+= EZ_GetGC.3
-MAN3+= EZ_GetGLImageInfo.3
-MAN3+= EZ_GetGLImageWindow.3
-MAN3+= EZ_GetHistogramSelection.3
-MAN3+= EZ_GetHistogramValue.3
-MAN3+= EZ_GetInstanceName.3
-MAN3+= EZ_GetItemClientData.3
-MAN3+= EZ_GetItemUnknownData.3
-MAN3+= EZ_GetItemWidth.3
-MAN3+= EZ_GetLabelItemStringInfo.3
-MAN3+= EZ_GetLabelPixmapFromGLImage.3
-MAN3+= EZ_GetLabelPixmapInfo.3
-MAN3+= EZ_GetLedString.3
-MAN3+= EZ_GetListBoxData.3
-MAN3+= EZ_GetListBoxSelection.3
-MAN3+= EZ_GetListBoxWidgetComponents.3
-MAN3+= EZ_GetListTreeWidgetComponents.3
-MAN3+= EZ_GetListTreeWidgetSelection.3
-MAN3+= EZ_GetListTreeWidgetTree.3
-MAN3+= EZ_GetListTreeWidgetXYOffset.3
-MAN3+= EZ_GetLoctorXY.3
-MAN3+= EZ_GetMatrix.3
-MAN3+= EZ_GetNoteBookPageTab.3
-MAN3+= EZ_GetNumberOfAllocatedColors.3
-MAN3+= EZ_GetOptionalEntryWidgetComponents.3
-MAN3+= EZ_GetParentBgGC.3
-MAN3+= EZ_GetParentWidget.3
-MAN3+= EZ_GetPopupMenuTitleWidget.3
-MAN3+= EZ_GetRadioButtonGroupID.3
-MAN3+= EZ_GetRadioButtonGroupVariableValue.3
-MAN3+= EZ_GetScrollButtonScrollCount.3
-MAN3+= EZ_GetScrollbarState.3
-MAN3+= EZ_GetSliderValue.3
-MAN3+= EZ_GetSpinButtonComponents.3
-MAN3+= EZ_GetSpinButtonValue.3
-MAN3+= EZ_GetTextProperty.3
-MAN3+= EZ_GetTextWidgetComponents.3
-MAN3+= EZ_GetThumbWheelValue.3
-MAN3+= EZ_GetTimerClientData.3
-MAN3+= EZ_GetTimerState.3
-MAN3+= EZ_GetToplevelWidget.3
-MAN3+= EZ_GetWidgetAbsoluteGeometry.3
-MAN3+= EZ_GetWidgetBorder.3
-MAN3+= EZ_GetWidgetFont.3
-MAN3+= EZ_GetWidgetGeometry.3
-MAN3+= EZ_GetWidgetGroupLeader.3
-MAN3+= EZ_GetWidgetIntData.3
-MAN3+= EZ_GetWidgetItemWidget.3
-MAN3+= EZ_GetWidgetOrientation.3
-MAN3+= EZ_GetWidgetPaddings.3
-MAN3+= EZ_GetWidgetPixmap.3
-MAN3+= EZ_GetWidgetResource.3
-MAN3+= EZ_GetWidgetReturnData.3
-MAN3+= EZ_GetWidgetReturnedData.3
-MAN3+= EZ_GetWidgetTileOrigin.3
-MAN3+= EZ_GetWidgetUnknownData.3
-MAN3+= EZ_GetWidgetWindow.3
-MAN3+= EZ_GetWorkAreaData.3
-MAN3+= EZ_GetWorkAreaItemUsingIdx.3
-MAN3+= EZ_GetWorkAreaNumberOfItems.3
-MAN3+= EZ_GetWorkAreaSelection.3
-MAN3+= EZ_GetWorkAreaWidgetComponents.3
-MAN3+= EZ_GetWorkAreaXYOffset.3
-MAN3+= EZ_GetWritableGC.3
-MAN3+= EZ_GlobFileName.3
-MAN3+= EZ_GlobFiles.3
-MAN3+= EZ_GlobHiddenFiles.3
-MAN3+= EZ_GrabPointer.3
-MAN3+= EZ_HandleDnDEvents.3
-MAN3+= EZ_HideWidget.3
-MAN3+= EZ_HighlightWidget.3
-MAN3+= EZ_IdentityMatrix.3
-MAN3+= EZ_Index.3
-MAN3+= EZ_Initialize.3
-MAN3+= EZ_InsertWidgetAfter.3
-MAN3+= EZ_InstallSymbol.3
-MAN3+= EZ_InstallSymbolicFloat.3
-MAN3+= EZ_InstallSymbolicInt.3
-MAN3+= EZ_InstallSymbolicPointer.3
-MAN3+= EZ_InstallSymbolicULong.3
-MAN3+= EZ_InverseTranspose.3
-MAN3+= EZ_InvertMatrix.3
-MAN3+= EZ_IsList.3
-MAN3+= EZ_ItemAddDnDDataDecoder.3
-MAN3+= EZ_ItemExist.3
-MAN3+= EZ_LabelItemSetProperty.3
-MAN3+= EZ_LedIsFree.3
-MAN3+= EZ_LibraryVersion.3
-MAN3+= EZ_LightModelf.3
-MAN3+= EZ_Lightf.3
-MAN3+= EZ_ListTreeFindNodeAtXY.3
-MAN3+= EZ_ListTreeGetHighlightedNodes.3
-MAN3+= EZ_ListTreeWidgetSelectNode.3
-MAN3+= EZ_ListTreeWidgetSelectNodeUsingItem.3
-MAN3+= EZ_LoadIdentity.3
-MAN3+= EZ_LoadMatrix.3
-MAN3+= EZ_LoadXFont.3
-MAN3+= EZ_LogicOp.3
-MAN3+= EZ_LookAt.3
-MAN3+= EZ_Malloc.3
-MAN3+= EZ_MapColor.3
-MAN3+= EZ_Materialf.3
-MAN3+= EZ_MatrixMode.3
-MAN3+= EZ_MenuBarAddItemAndMenu.3
-MAN3+= EZ_MenuBarDeleteItem.3
-MAN3+= EZ_MenuBarDeleteItemAndMenu.3
-MAN3+= EZ_MenuBarFindItem.3
-MAN3+= EZ_MenuBarFindItemAndMenu.3
-MAN3+= EZ_MenuBarInsertItemAndMenu.3
-MAN3+= EZ_MenuBarSetItemMenu.3
-MAN3+= EZ_MoveWidgetWindow.3
-MAN3+= EZ_MultMatrix.3
-MAN3+= EZ_MultiplyMatrix.3
-MAN3+= EZ_NewList.3
-MAN3+= EZ_Normal3f.3
-MAN3+= EZ_OnFrameDragHandle.3
-MAN3+= EZ_OnOffSecretEntry.3
-MAN3+= EZ_OptionEntryClearOptions.3
-MAN3+= EZ_OptionalEntryClearOptions.3
-MAN3+= EZ_Ortho.3
-MAN3+= EZ_Ortho2.3
-MAN3+= EZ_Perspective.3
-MAN3+= EZ_PolygonMode.3
-MAN3+= EZ_PopMatrix.3
-MAN3+= EZ_PrintStandardOptions.3
-MAN3+= EZ_PushMatrix.3
-MAN3+= EZ_PutGLImage.3
-MAN3+= EZ_QueryPixelValue.3
-MAN3+= EZ_QueueLedAction.3
-MAN3+= EZ_RaiseWidgetWindow.3
-MAN3+= EZ_RegisterApplicationResources.3
-MAN3+= EZ_RegisterCompositeWidget.3
-MAN3+= EZ_RegisterMessageHandler.3
-MAN3+= EZ_RegisterPrimitiveWidget.3
-MAN3+= EZ_RegisterResourcesAll.3
-MAN3+= EZ_RegisterWidget.3
-MAN3+= EZ_RemoveWidget.3
-MAN3+= EZ_ReparentWidget.3
-MAN3+= EZ_Rotate.3
-MAN3+= EZ_SSheetClearRegion.3
-MAN3+= EZ_SSheetCopyRegion.3
-MAN3+= EZ_SSheetDeleteChart.3
-MAN3+= EZ_SSheetFindCell.3
-MAN3+= EZ_SSheetFindCursorCell.3
-MAN3+= EZ_SSheetGetActiveCell.3
-MAN3+= EZ_SSheetGetActiveChart.3
-MAN3+= EZ_SSheetGetCell.3
-MAN3+= EZ_SSheetGetHighlightedRegion.3
-MAN3+= EZ_SSheetGetRegionString.3
-MAN3+= EZ_SSheetGetSizes.3
-MAN3+= EZ_SSheetIndexToString.3
-MAN3+= EZ_SSheetInsertItem.3
-MAN3+= EZ_SSheetInsertRegionString.3
-MAN3+= EZ_SSheetMakeChart.3
-MAN3+= EZ_SSheetSetActiveCell.3
-MAN3+= EZ_SSheetSetFirstCell.3
-MAN3+= EZ_SSheetSetHScrollbar.3
-MAN3+= EZ_SSheetSetRegionJustification.3
-MAN3+= EZ_SSheetSetTabChar.3
-MAN3+= EZ_SSheetSetTextProperty.3
-MAN3+= EZ_SSheetSortRegion.3
-MAN3+= EZ_SSheetSwapRow.3
-MAN3+= EZ_Save3DCanvas2PPMImage.3
-MAN3+= EZ_Save3DCanvas2PS.3
-MAN3+= EZ_SaveWidget2Postscript.3
-MAN3+= EZ_Scale.3
-MAN3+= EZ_ScaleFigItem.3
-MAN3+= EZ_SendMessage.3
-MAN3+= EZ_Set3DCanvas.3
-MAN3+= EZ_SetApplicationName.3
-MAN3+= EZ_SetBackBuffer.3
-MAN3+= EZ_SetBitmapFont.3
-MAN3+= EZ_SetClientMessageHandler.3
-MAN3+= EZ_SetDefaultEntryTextFont.3
-MAN3+= EZ_SetDefaultMessageHandler.3
-MAN3+= EZ_SetDialValue.3
-MAN3+= EZ_SetDirTreeDefaultPixmaps.3
-MAN3+= EZ_SetDirTreeDirectoryNodeCreator.3
-MAN3+= EZ_SetDirTreeOpenDirectoryMode.3
-MAN3+= EZ_SetDragIcon.3
-MAN3+= EZ_SetEntryString.3
-MAN3+= EZ_SetExecutorCommand.3
-MAN3+= EZ_SetFancyListBoxData.3
-MAN3+= EZ_SetFancyListBoxHeader.3
-MAN3+= EZ_SetFancyListBoxRowBg.3
-MAN3+= EZ_SetFileSelectorInitialPattern.3
-MAN3+= EZ_SetFocusTo.3
-MAN3+= EZ_SetGlobalBackground.3
-MAN3+= EZ_SetGlobalEventFilter.3
-MAN3+= EZ_SetGlobalForeground.3
-MAN3+= EZ_SetGrab.3
-MAN3+= EZ_SetGradientBarColors.3
-MAN3+= EZ_SetGradientBarValue.3
-MAN3+= EZ_SetHScrollbarDiscreteSpeed.3
-MAN3+= EZ_SetHistogramColors.3
-MAN3+= EZ_SetHistogramRange.3
-MAN3+= EZ_SetHistogramValue.3
-MAN3+= EZ_SetHistogramValues.3
-MAN3+= EZ_SetIconPath.3
-MAN3+= EZ_SetKbdHighlightColor.3
-MAN3+= EZ_SetLcdBackground.3
-MAN3+= EZ_SetLcdFontSize.3
-MAN3+= EZ_SetLcdInteger.3
-MAN3+= EZ_SetLcdNDigits.3
-MAN3+= EZ_SetLcdString.3
-MAN3+= EZ_SetLedBackground.3
-MAN3+= EZ_SetLedColorFunction.3
-MAN3+= EZ_SetLedFont.3
-MAN3+= EZ_SetLedPixelSize.3
-MAN3+= EZ_SetLedSize.3
-MAN3+= EZ_SetLedString.3
-MAN3+= EZ_SetListBoxItems.3
-MAN3+= EZ_SetListTreeWidgetTree.3
-MAN3+= EZ_SetMenuButtonMenu.3
-MAN3+= EZ_SetNoteBookOrientation.3
-MAN3+= EZ_SetOptionalEntryOptionalItems.3
-MAN3+= EZ_SetOptionalEntryString.3
-MAN3+= EZ_SetOptionalEntryStyle.3
-MAN3+= EZ_SetScrollbarDiscreteSpeed.3
-MAN3+= EZ_SetSliderRange.3
-MAN3+= EZ_SetStatusMeterBackground.3
-MAN3+= EZ_SetStatusMeterForeground.3
-MAN3+= EZ_SetStatusMeterRange.3
-MAN3+= EZ_SetStatusMeterValue.3
-MAN3+= EZ_SetSubMenuMenu.3
-MAN3+= EZ_SetTimerCallBack.3
-MAN3+= EZ_SetTimerClientData.3
-MAN3+= EZ_SetTreeWidgetRowBg.3
-MAN3+= EZ_SetVectorFont.3
-MAN3+= EZ_SetWidgetCINames.3
-MAN3+= EZ_SetWidgetCallBack.3
-MAN3+= EZ_SetWidgetLabelString.3
-MAN3+= EZ_SetWidgetPosition.3
-MAN3+= EZ_SetWorkAreaGeometryManager.3
-MAN3+= EZ_SetupRuler.3
-MAN3+= EZ_SetupSpinButton.3
-MAN3+= EZ_ShadeModel.3
-MAN3+= EZ_Shutdown.3
-MAN3+= EZ_SitForALittleBit.3
-MAN3+= EZ_SlideOpenWidget.3
-MAN3+= EZ_Sphere.3
-MAN3+= EZ_StartAsIcon.3
-MAN3+= EZ_StopStatusMeter.3
-MAN3+= EZ_SwapBuffers.3
-MAN3+= EZ_TermStartCommand.3
-MAN3+= EZ_TextEndOfLine.3
-MAN3+= EZ_TextGetBufferString.3
-MAN3+= EZ_TiePopupMenu.3
-MAN3+= EZ_TildeExpand.3
-MAN3+= EZ_Translate.3
-MAN3+= EZ_TreeAttachSubtree.3
-MAN3+= EZ_TreeDestroyNodeDescendants.3
-MAN3+= EZ_TreeDestroySubtree.3
-MAN3+= EZ_TreeFindNode.3
-MAN3+= EZ_TreeFindNodeUsingItem.3
-MAN3+= EZ_TreeNodeGetChildren.3
-MAN3+= EZ_TreeNodeGetItem.3
-MAN3+= EZ_TreeSetBGColor.3
-MAN3+= EZ_TreeSetCharacter.3
-MAN3+= EZ_TreeTraverseTree.3
-MAN3+= EZ_Tube.3
-MAN3+= EZ_UpdateDirTreeWidget.3
-MAN3+= EZ_Vertex3f.3
-MAN3+= EZ_WaitCursor.3
-MAN3+= EZ_WarpPointer.3
-MAN3+= EZ_WidgetAddDnDDataDecoder.3
-MAN3+= EZ_WidgetDispatchEvent.3
-MAN3+= EZ_WidgetExist.3
-MAN3+= EZ_WidgetIsViewable.3
-MAN3+= EZ_WidgetMarkRuler.3
-MAN3+= EZ_WidgetNotifyRuler.3
-MAN3+= EZ_WindowIsWidgetWindow.3
-MAN3+= EZ_WorkAreaClear.3
-MAN3+= EZ_WorkAreaDrawItemAt.3
-MAN3+= EZ_WorkAreaFindItemAtXY.3
-MAN3+= EZ_WorkAreaGetHighlightedItems.3
-MAN3+= EZ_WorkAreaInsertAndDrawItemAt.3
-MAN3+= EZ_WorkAreaInsertItems.3
-MAN3+= EZ_WorkAreaRaiseItem.3
-MAN3+= EZ_WorkAreaScaleItem.3
-
-MLINKS+= EZ_ActivateWidget.3 EZ_ActivateChildren.3
-MLINKS+= EZ_ActivateWidget.3 EZ_ActivateSibling.3
-MLINKS+= EZ_AllocateColorFromName.3 EZ_AllocateColorFromRGB.3
-MLINKS+= EZ_ClearListBox.3 EZ_AppendListBoxItem.3
-MLINKS+= EZ_DefineLightSrc.3 EZ_BindLightSrc.3
-MLINKS+= EZ_DefineMaterial.3 EZ_BindMaterial.3
-MLINKS+= EZ_SendMessage.3 EZ_BroadcastMessage.3
-MLINKS+= EZ_WaitCursor.3 EZ_BusyCursor.3
-MLINKS+= EZ_CMove3f.3 EZ_CMove3fv.3
-MLINKS+= EZ_CMove3f.3 EZ_CMoveScreen2f.3
-MLINKS+= EZ_CMove3f.3 EZ_CMoveScreen3f.3
-MLINKS+= EZ_CMove3f.3 EZ_CMoveScreen3fv.3
-MLINKS+= EZ_CallList.3 EZ_CallLists.3
-MLINKS+= EZ_CallWidgetCallbacks.3 EZ_CallWidgetMotionCallbacks.3
-MLINKS+= EZ_CreateTimer.3 EZ_CancelTimer.3
-MLINKS+= EZ_ClearColorf.3 EZ_ClearIndex.3
-MLINKS+= EZ_Color3f.3 EZ_Color3fv.3
-MLINKS+= EZ_Color3f.3 EZ_Color4f.3
-MLINKS+= EZ_Color3f.3 EZ_Color4fv.3
-MLINKS+= EZ_CreateCursorFromBitmapFile.3 EZ_CreateCursorFromBitmapData.3
-MLINKS+= EZ_CreateLabelPixmapFromImageFile.3 EZ_CreateLabelPixmapFromXBitmapData.3
-MLINKS+= EZ_CreateLabelPixmapFromImageFile.3 EZ_CreateLabelPixmapFromXBitmapFile.3
-MLINKS+= EZ_CreateLabelPixmapFromImageFile.3 EZ_CreateLabelPixmapFromXPixmap.3
-MLINKS+= EZ_CreateLabelPixmapFromImageFile.3 EZ_CreateLabelPixmapFromXpmData.3
-MLINKS+= EZ_CreateLabelPixmapFromImageFile.3 EZ_CreateLabelPixmapFromXpmFile.3
-MLINKS+= EZ_CreateWidget.3 EZ_CreateWidgetXrm.3
-MLINKS+= EZ_CreateXPixmapFromImageFile.3 EZ_CreateXPixmapFromBitmapFile.3
-MLINKS+= EZ_CreateXPixmapFromImageFile.3 EZ_CreateXPixmapFromXpmData.3
-MLINKS+= EZ_CreateXPixmapFromImageFile.3 EZ_CreateXPixmapFromXpmFile.3
-MLINKS+= EZ_ActivateWidget.3 EZ_DeActivateChildren.3
-MLINKS+= EZ_ActivateWidget.3 EZ_DeActivateSibling.3
-MLINKS+= EZ_ActivateWidget.3 EZ_DeActivateWidget.3
-MLINKS+= EZ_ClearListBox.3 EZ_DeleteListBoxItem.3
-MLINKS+= EZ_DeleteList.3 EZ_DeleteLists.3
-MLINKS+= EZ_RegisterMessageHandler.3 EZ_DeleteMessageHandler.3
-MLINKS+= EZ_Enable.3 EZ_Disable.3
-MLINKS+= EZ_DisplayWidget.3 EZ_DisplayWidgetUnderPointer.3
-MLINKS+= EZ_DoPopup.3 EZ_DoPopupAt.3
-MLINKS+= EZ_DetachFrame.3 EZ_DockFrame.3
-MLINKS+= EZ_Cube.3 EZ_Dodecahedron.3
-MLINKS+= EZ_DisableBubbleHelp.3 EZ_EnableBubbleHelp.3
-MLINKS+= EZ_DisableHighlight.3 EZ_EnableHighlight.3
-MLINKS+= EZ_DisableImageDithering.3 EZ_EnableImageDithering.3
-MLINKS+= EZ_DisableLabelOffset.3 EZ_EnableLableOffset.3
-MLINKS+= EZ_DisableSliderDepression.3 EZ_EnableSliderDepression.3
-MLINKS+= EZ_DisableWidget.3 EZ_EnableWidget.3
-MLINKS+= EZ_DisableWidgetTree.3 EZ_EnableWidgetTree.3
-MLINKS+= EZ_Begin.3 EZ_End.3
-MLINKS+= EZ_NewList.3 EZ_EndList.3
-MLINKS+= EZ_EntryEditBackward.3 EZ_EntryEditBackwardWord.3
-MLINKS+= EZ_EntryEditBackward.3 EZ_EntryEditBeginOfInput.3
-MLINKS+= EZ_EntryEditBackward.3 EZ_EntryEditDeleteChar.3
-MLINKS+= EZ_EntryEditBackward.3 EZ_EntryEditEndOfInput.3
-MLINKS+= EZ_EntryEditBackward.3 EZ_EntryEditForeward.3
-MLINKS+= EZ_EntryEditBackward.3 EZ_EntryEditForwardWord.3
-MLINKS+= EZ_EntryEditBackward.3 EZ_EntryEditInsertString.3
-MLINKS+= EZ_EntryEditBackward.3 EZ_EntryEditKillEndOfLine.3
-MLINKS+= EZ_EntryEditBackward.3 EZ_EntryEditKillRegion.3
-MLINKS+= EZ_EntryEditBackward.3 EZ_EntryEditSetMarker.3
-MLINKS+= EZ_EntryEditBackward.3 EZ_EntryPasteSelection.3
-MLINKS+= EZ_FancyListBoxClear.3 EZ_FancyListBoxDeleteRow.3
-MLINKS+= EZ_FancyListBoxGetHighlightedRows.3 EZ_FancyListBoxGetHighlightedItems.3
-MLINKS+= EZ_FancyListBoxClear.3 EZ_FancyListBoxInsertRow.3
-MLINKS+= EZ_FancyListBoxClear.3 EZ_FancyListBoxReplaceItem.3
-MLINKS+= EZ_FancyListBoxClear.3 EZ_FancyListBoxReplaceItemUsingIdx.3
-MLINKS+= EZ_FancyListBoxClear.3 EZ_FancyListBoxSelectItem.3
-MLINKS+= EZ_FancyListBoxClear.3 EZ_FancyListBoxSelectItemUsingIdx.3
-MLINKS+= EZ_FigItemAddString.3 EZ_FigItemAddArc.3
-MLINKS+= EZ_FigItemAddString.3 EZ_FigItemAddArcs.3
-MLINKS+= EZ_FigItemAddString.3 EZ_FigItemAddFilledArc.3
-MLINKS+= EZ_FigItemAddString.3 EZ_FigItemAddFilledArcs.3
-MLINKS+= EZ_FigItemAddString.3 EZ_FigItemAddFilledRectangle.3
-MLINKS+= EZ_FigItemAddString.3 EZ_FigItemAddFilledRectangles.3
-MLINKS+= EZ_FigItemAddString.3 EZ_FigItemAddLines.3
-MLINKS+= EZ_FigItemAddString.3 EZ_FigItemAddPixmap.3
-MLINKS+= EZ_FigItemAddString.3 EZ_FigItemAddPoints.3
-MLINKS+= EZ_FigItemAddString.3 EZ_FigItemAddPolygon.3
-MLINKS+= EZ_FigItemAddString.3 EZ_FigItemAddRectangle.3
-MLINKS+= EZ_FigItemAddString.3 EZ_FigItemAddRectangles.3
-MLINKS+= EZ_FigItemAddString.3 EZ_FigItemAddSegments.3
-MLINKS+= EZ_DetachFrame.3 EZ_FrameIsDetached.3
-MLINKS+= EZ_Malloc.3 EZ_Free.3
-MLINKS+= EZ_GetGC.3 EZ_FreeGC.3
-MLINKS+= EZ_CreateGLImage.3 EZ_FreeGLImage.3
-MLINKS+= EZ_CreateLabelPixmapFromImageFile.3 EZ_FreeLabelPixmap.3
-MLINKS+= EZ_CreateXPixmapFromImageFile.3 EZ_FreeXPixmap.3
-MLINKS+= EZ_Configure3DCanvas.3 EZ_GLConfig.3
-MLINKS+= EZ_EnterEvent.3 EZ_GLEnterEvent.3
-MLINKS+= EZ_SetApplicationName.3 EZ_GetApplicationName.3
-MLINKS+= EZ_GetBackgroundGC.3 EZ_GetBackgroundTileGC.3
-MLINKS+= EZ_GetParentWidget.3 EZ_GetChildrenWidget.3
-MLINKS+= EZ_GetInstanceName.3 EZ_GetClassName.3
-MLINKS+= EZ_GetDisplay.3 EZ_GetColormap.3
-MLINKS+= EZ_GetCursor.3 EZ_GetCursorByName.3
-MLINKS+= EZ_GetCursor.3 EZ_GetCursorName.3
-MLINKS+= EZ_GetDisplay.3 EZ_GetDepth.3
-MLINKS+= EZ_GetDisplay.3 EZ_GetDisplayInfo.3
-MLINKS+= EZ_SetEntryString.3 EZ_GetEntryString.3
-MLINKS+= EZ_GetFancyListBoxNumberofRows.3 EZ_GetFancyListBoxNumberOfColumns.3
-MLINKS+= EZ_GetWidgetFont.3 EZ_GetFontFromId.3
-MLINKS+= EZ_GetWidgetFont.3 EZ_GetFontFromName.3
-MLINKS+= EZ_GetWidgetFont.3 EZ_GetFontFromXFontId.3
-MLINKS+= EZ_GetGLImageWindow.3 EZ_GetGLImageXWindow.3
-MLINKS+= EZ_SetIconPath.3 EZ_GetIconPath.3
-MLINKS+= EZ_GetItemWidth.3 EZ_GetItemDimension.3
-MLINKS+= EZ_GetItemWidth.3 EZ_GetItemHeight.3
-MLINKS+= EZ_GetItemClientData.3 EZ_GetItemIntData.3
-MLINKS+= EZ_GetItemWidth.3 EZ_GetItemPosition.3
-MLINKS+= EZ_GetItemClientData.3 EZ_GetItemPtrData.3
-MLINKS+= EZ_GetItemUnknownData.3 EZ_GetItemUnknownDataPtr.3
-MLINKS+= EZ_GetListBoxSelection.3 EZ_GetListBoxSelectedItem.3
-MLINKS+= EZ_GetListBoxSelection.3 EZ_GetListBoxSelectionLineNumber.3
-MLINKS+= EZ_SetMenuButtonMenu.3 EZ_GetMenuButtonMenu.3
-MLINKS+= EZ_GetNumberOfAllocatedColors.3 EZ_GetNumberOfReservedColorsForGL.3
-MLINKS+= EZ_SetOptionalEntryString.3 EZ_GetOptionalEntryString.3
-MLINKS+= EZ_GetParentBgGC.3 EZ_GetParentBgTileGC.3
-MLINKS+= EZ_GetDisplay.3 EZ_GetScreen.3
-MLINKS+= EZ_GetWidgetReturnData.3 EZ_GetSelectedMenuItem.3
-MLINKS+= EZ_GetParentWidget.3 EZ_GetSiblingWidget.3
-MLINKS+= EZ_SetStatusMeterValue.3 EZ_GetStatusMeterValue.3
-MLINKS+= EZ_SetStatusMeterValue.3 EZ_GetStatusMeterValueN.3
-MLINKS+= EZ_GetTimerClientData.3 EZ_GetTimerIntData.3
-MLINKS+= EZ_GetTimerClientData.3 EZ_GetTimerPtrData.3
-MLINKS+= EZ_GetDisplay.3 EZ_GetVisual.3
-MLINKS+= EZ_GetWidgetGeometry.3 EZ_GetWidgetBorderWidth.3
-MLINKS+= EZ_SetWidgetCINames.3 EZ_GetWidgetCINames.3
-MLINKS+= EZ_GetWidgetIntData.3 EZ_GetWidgetClientData.3
-MLINKS+= EZ_GetWidgetGeometry.3 EZ_GetWidgetDimension.3
-MLINKS+= EZ_GetWidgetGeometry.3 EZ_GetWidgetHeight.3
-MLINKS+= EZ_SetWidgetLabelString.3 EZ_GetWidgetLabelPosition.3
-MLINKS+= EZ_SetWidgetLabelString.3 EZ_GetWidgetLabelString.3
-MLINKS+= EZ_GetWidgetGeometry.3 EZ_GetWidgetMinDimention.3
-MLINKS+= EZ_GetWidgetGeometry.3 EZ_GetWidgetMinHeight.3
-MLINKS+= EZ_GetWidgetGeometry.3 EZ_GetWidgetMinWidth.3
-MLINKS+= EZ_GetWidgetGeometry.3 EZ_GetWidgetPosition.3
-MLINKS+= EZ_GetWidgetIntData.3 EZ_GetWidgetPtrData.3
-MLINKS+= EZ_GetWidgetUnknownData.3 EZ_GetWidgetUnknownDataPtr.3
-MLINKS+= EZ_GetWidgetGeometry.3 EZ_GetWidgetWidth.3
-MLINKS+= EZ_OnFrameDragHandle.3 EZ_HighlightFrameDragHandle.3
-MLINKS+= EZ_Cube.3 EZ_Icosahedron.3
-MLINKS+= EZ_Index.3 EZ_Indexf.3
-MLINKS+= EZ_Initialize.3 EZ_InitializeXrm.3
-MLINKS+= EZ_ClearListBox.3 EZ_InsertListBoxItem.3
-MLINKS+= EZ_InsertWidgetAfter.3 EZ_InsertWidgetBefore.3
-MLINKS+= EZ_ItemAddDnDDataDecoder.3 EZ_ItemAddDnDDataEncoder.3
-MLINKS+= EZ_ItemAddDnDDataDecoder.3 EZ_ItemDeleteAllDnDDataDecoders.3
-MLINKS+= EZ_ItemAddDnDDataDecoder.3 EZ_ItemDeleteAllDnDDataEncoders.3
-MLINKS+= EZ_ItemAddDnDDataDecoder.3 EZ_ItemDeleteDnDDataDecoder.3
-MLINKS+= EZ_ItemAddDnDDataDecoder.3 EZ_ItemDeleteDnDDataEncoder.3
-MLINKS+= EZ_LightModelf.3 EZ_LightModelfv.3
-MLINKS+= EZ_Lightf.3 EZ_Lightfv.3
-MLINKS+= EZ_ClearListBox.3 EZ_ListBoxSelectItem.3
-MLINKS+= EZ_ClearListBox.3 EZ_ListBoxSelectItemUsingIdx.3
-MLINKS+= EZ_ListTreeGetHighlightedNodes.3 EZ_ListTreeGetHighlightedItems.3
-MLINKS+= EZ_Materialf.3 EZ_Materialfv.3
-MLINKS+= EZ_ClearListBox.3 EZ_ModifyListBoxItem.3
-MLINKS+= EZ_Normal3f.3 EZ_Normal3fv.3
-MLINKS+= EZ_WaitCursor.3 EZ_NormalCursor.3
-MLINKS+= EZ_Cube.3 EZ_Octahedron.3
-MLINKS+= EZ_OptionEntryClearOptions.3 EZ_OptionEntryAppendOption.3
-MLINKS+= EZ_OptionEntryClearOptions.3 EZ_OptionEntryDeleteOption.3
-MLINKS+= EZ_OptionEntryClearOptions.3 EZ_OptionalEntryAppendOption.3
-MLINKS+= EZ_OptionEntryClearOptions.3 EZ_OptionalEntryDeleteOption.3
-MLINKS+= EZ_OptionEntryClearOptions.3 EZ_OptionalEntryInsertOption.3
-MLINKS+= EZ_AllocateColorFromName.3 EZ_PixelValue2RGB.3
-MLINKS+= EZ_PutGLImage.3 EZ_PutGLImageScreen.3
-MLINKS+= EZ_PutGLImage.3 EZ_PutGLImageWindow.3
-MLINKS+= EZ_PutGLImage.3 EZ_PutGLImageXWindow.3
-MLINKS+= EZ_ColorMapMode.3 EZ_RGBMode.3
-MLINKS+= EZ_SetGrab.3 EZ_ReleaseGrab.3
-MLINKS+= EZ_AddEventHandler.3 EZ_RemoveAllEventHandlers.3
-MLINKS+= EZ_AddIdleCallBack.3 EZ_RemoveAllIdleCallBacks.3
-MLINKS+= EZ_AddItemCallBack.3 EZ_RemoveAllItemCallBacks.3
-MLINKS+= EZ_AddWidgetCallBack.3 EZ_RemoveAllWidgetCallBacks.3
-MLINKS+= EZ_WidgetDispatchEvent.3 EZ_RemoveEvent.3
-MLINKS+= EZ_AddEventHandler.3 EZ_RemoveEventHandler.3
-MLINKS+= EZ_AddIdleCallBack.3 EZ_RemoveIdleCallBack.3
-MLINKS+= EZ_AddInput.3 EZ_RemoveInput.3
-MLINKS+= EZ_AddItemCallBack.3 EZ_RemoveItemCallBack.3
-MLINKS+= EZ_QueueLedAction.3 EZ_RemoveLedAction.3
-MLINKS+= EZ_AddWidgetCallBack.3 EZ_RemoveWidgetCallBack.3
-MLINKS+= EZ_SendMessage.3 EZ_ReplyMessage.3
-MLINKS+= EZ_SendMessage.3 EZ_ReplyMessageR.3
-MLINKS+= EZ_CreateTimer.3 EZ_ResetTimer.3
-MLINKS+= EZ_CreateTimer.3 EZ_RestartTimer.3
-MLINKS+= EZ_InstallSymbol.3 EZ_RetrieveSymbol.3
-MLINKS+= EZ_InstallSymbolicFloat.3 EZ_RetrieveSymbolicFloat.3
-MLINKS+= EZ_InstallSymbolicInt.3 EZ_RetrieveSymbolicInt.3
-MLINKS+= EZ_InstallSymbolicPointer.3 EZ_RetrieveSymbolicPointer.3
-MLINKS+= EZ_InstallSymbolicULong.3 EZ_RetrieveSymbolicULong.3
-MLINKS+= EZ_SSheetSortRegion.3 EZ_SSheetSortColumns.3
-MLINKS+= EZ_SSheetSortRegion.3 EZ_SSheetSortRegionR.3
-MLINKS+= EZ_SSheetSortRegion.3 EZ_SSheetSortRows.3
-MLINKS+= EZ_Save3DCanvas2PS.3 EZ_Save3DCanvas2PSA.3
-MLINKS+= EZ_SaveWidget2Postscript.3 EZ_SaveWidget2PPM.3
-MLINKS+= EZ_EventMainLoop.3 EZ_ServiceEvents.3
-MLINKS+= EZ_GetCheckButtonState.3 EZ_SetCheckButtonState.3
-MLINKS+= EZ_SetDefaultEntryTextFont.3 EZ_SetDefaultLabelFont.3
-MLINKS+= EZ_SetDefaultEntryTextFont.3 EZ_SetDefaultMenuTitleFont.3
-MLINKS+= EZ_SetDirTreeDefaultPixmaps.3 EZ_SetDirTreeDefaultPixmapsFromXpmFiles.3
-MLINKS+= EZ_SetDirTreeDirectoryNodeCreator.3 EZ_SetDirTreeFileNodeCreator.3
-MLINKS+= EZ_SetDragIcon.3 EZ_SetDragCursor.3
-MLINKS+= EZ_GetFancyListBoxXYOffset.3 EZ_SetFancyListBoxXYOffset.3
-MLINKS+= EZ_SetLedBackground.3 EZ_SetForeground.3
-MLINKS+= EZ_GetItemClientData.3 EZ_SetItemClientData.3
-MLINKS+= EZ_GetItemWidth.3 EZ_SetItemDimension.3
-MLINKS+= EZ_GetItemWidth.3 EZ_SetItemHeight.3
-MLINKS+= EZ_GetItemClientData.3 EZ_SetItemIntData.3
-MLINKS+= EZ_GetItemWidth.3 EZ_SetItemPosition.3
-MLINKS+= EZ_GetItemClientData.3 EZ_SetItemPtrData.3
-MLINKS+= EZ_GetItemUnknownData.3 EZ_SetItemUnknownData.3
-MLINKS+= EZ_GetItemWidth.3 EZ_SetItemWidth.3
-MLINKS+= EZ_SetKbdHighlightColor.3 EZ_SetKbdHighlightColorRGB.3
-MLINKS+= EZ_SetLcdInteger.3 EZ_SetLcdFloat.3
-MLINKS+= EZ_SetLcdBackground.3 EZ_SetLcdForeground.3
-MLINKS+= EZ_SetLedBackground.3 EZ_SetLedForeground.3
-MLINKS+= EZ_SetLedSize.3 EZ_SetLedHeight.3
-MLINKS+= EZ_SetLedSize.3 EZ_SetLedWidth.3
-MLINKS+= EZ_GetListTreeWidgetXYOffset.3 EZ_SetListTreeWidgetXYOffset.3
-MLINKS+= EZ_SetLedBackground.3 EZ_SetOffPixelColor.3
-MLINKS+= EZ_GetRadioButtonGroupVariableValue.3 EZ_SetRadioButtonGroupVariableValue.3
-MLINKS+= EZ_GetSliderValue.3 EZ_SetSliderValue.3
-MLINKS+= EZ_SetStatusMeterForeground.3 EZ_SetStatusMeterForegroundN.3
-MLINKS+= EZ_SetStatusMeterRange.3 EZ_SetStatusMeterRangeN.3
-MLINKS+= EZ_SetStatusMeterValue.3 EZ_SetStatusMeterValueN.3
-MLINKS+= EZ_SetTimerClientData.3 EZ_SetTimerIntData.3
-MLINKS+= EZ_SetTimerClientData.3 EZ_SetTimerPtrData.3
-MLINKS+= EZ_SetHScrollbarDiscreteSpeed.3 EZ_SetVScrollbarDiscreteSpeed.3
-MLINKS+= EZ_GetWidgetIntData.3 EZ_SetWidgetClientData.3
-MLINKS+= EZ_SetWidgetPosition.3 EZ_SetWidgetHeight.3
-MLINKS+= EZ_GetWidgetIntData.3 EZ_SetWidgetIntData.3
-MLINKS+= EZ_GetWidgetIntData.3 EZ_SetWidgetPtrData.3
-MLINKS+= EZ_GetWidgetUnknownData.3 EZ_SetWidgetUnknownData.3
-MLINKS+= EZ_SetWidgetPosition.3 EZ_SetWidgetWidth.3
-MLINKS+= EZ_GetWorkAreaXYOffset.3 EZ_SetWorkAreaXYOffset.3
-MLINKS+= EZ_StopStatusMeter.3 EZ_StartStatusMeter.3
-MLINKS+= EZ_InsertWidgetAfter.3 EZ_SwapWidgets.3
-MLINKS+= EZ_Cube.3 EZ_Tetrahedron.3
-MLINKS+= EZ_TextEndOfLine.3 EZ_TextBackwardChar.3
-MLINKS+= EZ_TextEndOfLine.3 EZ_TextBackwardWord.3
-MLINKS+= EZ_TextEndOfLine.3 EZ_TextBeginningOfBuffer.3
-MLINKS+= EZ_TextEndOfLine.3 EZ_TextBeginningOfLine.3
-MLINKS+= EZ_TextEndOfLine.3 EZ_TextClear.3
-MLINKS+= EZ_TextEndOfLine.3 EZ_TextDeleteNextChar.3
-MLINKS+= EZ_TextEndOfLine.3 EZ_TextDeletePreviousChar.3
-MLINKS+= EZ_TextEndOfLine.3 EZ_TextEndOfBuffer.3
-MLINKS+= EZ_TextEndOfLine.3 EZ_TextForwardChar.3
-MLINKS+= EZ_TextEndOfLine.3 EZ_TextForwardWord.3
-MLINKS+= EZ_TextEndOfLine.3 EZ_TextGetPosition.3
-MLINKS+= EZ_TextEndOfLine.3 EZ_TextGetRegionString.3
-MLINKS+= EZ_TextEndOfLine.3 EZ_TextGotoPosition.3
-MLINKS+= EZ_TextEndOfLine.3 EZ_TextInsertChar.3
-MLINKS+= EZ_TextEndOfLine.3 EZ_TextInsertNewLine.3
-MLINKS+= EZ_TextEndOfLine.3 EZ_TextInsertString.3
-MLINKS+= EZ_TextEndOfLine.3 EZ_TextInsertStringWithProperty.3
-MLINKS+= EZ_TextEndOfLine.3 EZ_TextKillEndOfLine.3
-MLINKS+= EZ_TextEndOfLine.3 EZ_TextKillRegion.3
-MLINKS+= EZ_TextEndOfLine.3 EZ_TextLoadAnnotatedFile.3
-MLINKS+= EZ_TextEndOfLine.3 EZ_TextLoadFile.3
-MLINKS+= EZ_TextEndOfLine.3 EZ_TextNextLine.3
-MLINKS+= EZ_TextEndOfLine.3 EZ_TextNextPage.3
-MLINKS+= EZ_TextEndOfLine.3 EZ_TextPasteSelection.3
-MLINKS+= EZ_TextEndOfLine.3 EZ_TextPreviousLine.3
-MLINKS+= EZ_TextEndOfLine.3 EZ_TextPreviousPage.3
-MLINKS+= EZ_TextEndOfLine.3 EZ_TextReDisplay.3
-MLINKS+= EZ_TextEndOfLine.3 EZ_TextReplaceRegionWithPixmap.3
-MLINKS+= EZ_TextEndOfLine.3 EZ_TextSaveAnnotatedText.3
-MLINKS+= EZ_TextEndOfLine.3 EZ_TextSaveText.3
-MLINKS+= EZ_TextEndOfLine.3 EZ_TextSetMarker.3
-MLINKS+= EZ_TextEndOfLine.3 EZ_TextSetRegionBackground.3
-MLINKS+= EZ_TextEndOfLine.3 EZ_TextSetRegionFont.3
-MLINKS+= EZ_TextEndOfLine.3 EZ_TextSetRegionForeground.3
-MLINKS+= EZ_TextEndOfLine.3 EZ_TextSetRegionProperty.3
-MLINKS+= EZ_TextEndOfLine.3 EZ_TextSetRegionUnderline.3
-MLINKS+= EZ_TreeAttachSubtree.3 EZ_TreeDetachSubtree.3
-MLINKS+= EZ_TreeNodeGetChildren.3 EZ_TreeNodeGetParent.3
-MLINKS+= EZ_TreeNodeGetChildren.3 EZ_TreeNodeGetSibling.3
-MLINKS+= EZ_TreeSetBGColor.3 EZ_TreeSetBGColorName.3
-MLINKS+= EZ_TreeSetBGColor.3 EZ_TreeSetFGColor.3
-MLINKS+= EZ_TreeSetBGColor.3 EZ_TreeSetFGColorName.3
-MLINKS+= EZ_FreezeWidget.3 EZ_UnFreezeWidget.3
-MLINKS+= EZ_GrabPointer.3 EZ_UngrabPointer.3
-MLINKS+= EZ_GetScrollbarState.3 EZ_UpdateScrollbar.3
-MLINKS+= EZ_Vertex3f.3 EZ_Vertex2f.3
-MLINKS+= EZ_Vertex3f.3 EZ_Vertex2fv.3
-MLINKS+= EZ_Vertex3f.3 EZ_Vertex3fv.3
-MLINKS+= EZ_EventMainLoop.3 EZ_WaitAndServiceNextEvent.3
-MLINKS+= EZ_WarpPointer.3 EZ_WarpPointerToWidgetWindow.3
-MLINKS+= EZ_WidgetAddDnDDataDecoder.3 EZ_WidgetAddDnDDataEncoder.3
-MLINKS+= EZ_WidgetAddDnDDataDecoder.3 EZ_WidgetDeleteAllDnDDataDecoders.3
-MLINKS+= EZ_WidgetAddDnDDataDecoder.3 EZ_WidgetDeleteAllDnDDataEncoders.3
-MLINKS+= EZ_WidgetAddDnDDataDecoder.3 EZ_WidgetDeleteDnDDataDecoder.3
-MLINKS+= EZ_WidgetAddDnDDataDecoder.3 EZ_WidgetDeleteDnDDataEncoder.3
-MLINKS+= EZ_WorkAreaClear.3 EZ_WorkAreaDeleteItem.3
-MLINKS+= EZ_WorkAreaClear.3 EZ_WorkAreaDeleteItemUsingIdx.3
-MLINKS+= EZ_WorkAreaClear.3 EZ_WorkAreaInsertItem.3
-MLINKS+= EZ_WorkAreaClear.3 EZ_WorkAreaInsertItemAfter.3
-MLINKS+= EZ_WorkAreaClear.3 EZ_WorkAreaInsertItemBefore.3
-MLINKS+= EZ_WorkAreaClear.3 EZ_WorkAreaInsertItemUsingIdx.3
-MLINKS+= EZ_WorkAreaClear.3 EZ_WorkAreaRearrange.3
-MLINKS+= EZ_WorkAreaClear.3 EZ_WorkAreaSelectItem.3
-MLINKS+= EZ_WorkAreaClear.3 EZ_WorkAreaSelectItemUsingIdx.3
-MLINKS+= EZ_IdentityMatrix.3 EZ_ZeroMatrix.3
diff --git a/graphics/EZWGL/files/patch-ah b/graphics/EZWGL/files/patch-Make.common.in
index 9513881dfdbb..e3633aa93e29 100644
--- a/graphics/EZWGL/files/patch-ah
+++ b/graphics/EZWGL/files/patch-Make.common.in
@@ -1,5 +1,5 @@
---- Make.common.in.orig Sat Dec 4 06:48:54 1999
-+++ Make.common.in Sat Apr 8 18:00:00 2000
+--- Make.common.in.orig 1999-12-03 21:48:54 UTC
++++ Make.common.in
@@ -30,8 +30,8 @@
LN = @LN@
RANLIB = @RANLIB@
diff --git a/graphics/EZWGL/files/patch-ai b/graphics/EZWGL/files/patch-Makefile.in
index 95e6a1350da8..db85ae03bfaa 100644
--- a/graphics/EZWGL/files/patch-ai
+++ b/graphics/EZWGL/files/patch-Makefile.in
@@ -1,5 +1,5 @@
---- Makefile.in.orig Sat Dec 4 06:48:54 1999
-+++ Makefile.in Sat Apr 8 18:00:00 2000
+--- Makefile.in.orig 1999-12-03 21:48:54 UTC
++++ Makefile.in
@@ -25,11 +25,11 @@
all shared static:
diff --git a/graphics/EZWGL/files/patch-aj b/graphics/EZWGL/files/patch-configure
index 941a60273fe8..3f8e7999892b 100644
--- a/graphics/EZWGL/files/patch-aj
+++ b/graphics/EZWGL/files/patch-configure
@@ -1,5 +1,5 @@
---- configure.orig Sat Dec 4 06:48:55 1999
-+++ configure Sat Apr 8 18:00:00 2000
+--- configure.orig 1999-12-03 21:48:55 UTC
++++ configure
@@ -1008,7 +1008,7 @@
fi
CFLAGS="$CCOPTS"
diff --git a/graphics/EZWGL/files/patch-ak b/graphics/EZWGL/files/patch-include__Makefile.in
index 83221971f500..fe040c63247f 100644
--- a/graphics/EZWGL/files/patch-ak
+++ b/graphics/EZWGL/files/patch-include__Makefile.in
@@ -1,5 +1,5 @@
---- include/Makefile.in.orig Sat Dec 4 06:49:18 1999
-+++ include/Makefile.in Sat Apr 8 18:00:00 2000
+--- include/Makefile.in.orig 1999-12-03 21:49:18 UTC
++++ include/Makefile.in
@@ -9,7 +9,7 @@
install-shared install-static: install
diff --git a/graphics/EZWGL/files/patch-EZ_Png.c b/graphics/EZWGL/files/patch-lib__EZ_Png.c
index 2cbe00f9e1ab..9e93ff97d34c 100644
--- a/graphics/EZWGL/files/patch-EZ_Png.c
+++ b/graphics/EZWGL/files/patch-lib__EZ_Png.c
@@ -1,5 +1,5 @@
---- lib/EZ_Png.c.orig 1999-12-03 22:49:22.000000000 +0100
-+++ lib/EZ_Png.c 2012-04-27 07:56:25.000000000 +0200
+--- lib/EZ_Png.c.orig 1999-12-03 21:49:22 UTC
++++ lib/EZ_Png.c
@@ -37,6 +37,7 @@
#if defined(HAVE_LIBPNG) && defined(PNG_SUPPORT)
#undef EXTERN
diff --git a/graphics/EZWGL/files/patch-al b/graphics/EZWGL/files/patch-lib__Makefile.in
index 7e06d72922ab..efa3ca8e6000 100644
--- a/graphics/EZWGL/files/patch-al
+++ b/graphics/EZWGL/files/patch-lib__Makefile.in
@@ -1,5 +1,5 @@
---- lib/Makefile.in.orig Sat Dec 4 06:49:27 1999
-+++ lib/Makefile.in Sat Apr 8 18:00:00 2000
+--- lib/Makefile.in.orig 1999-12-03 21:49:27 UTC
++++ lib/Makefile.in
@@ -4,9 +4,9 @@
#----------------------------------------------------------------------------------
diff --git a/graphics/EZWGL/pkg-plist b/graphics/EZWGL/pkg-plist
index c14a68a24f93..849f13bb37db 100644
--- a/graphics/EZWGL/pkg-plist
+++ b/graphics/EZWGL/pkg-plist
@@ -2,947 +2,708 @@ include/EZ.h
lib/libEZ.a
lib/libEZ.so
lib/libEZ.so.1
-%%PORTDOCS%%share/doc/EZ/html/applications.html
-%%PORTDOCS%%share/doc/EZ/html/documentation.html
-%%PORTDOCS%%share/doc/EZ/html/download.html
-%%PORTDOCS%%share/doc/EZ/html/ezfm.html
-%%PORTDOCS%%share/doc/EZ/html/images/dot_clear.gif
-%%PORTDOCS%%share/doc/EZ/html/images/ez.gif
-%%PORTDOCS%%share/doc/EZ/html/images/grnbg.gif
-%%PORTDOCS%%share/doc/EZ/html/index.html
-%%PORTDOCS%%share/doc/EZ/html/mailinglist.html
-%%PORTDOCS%%share/doc/EZ/html/manp/.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_ActivateNoteBookPage.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_ActivateWidget.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_AddEventHandler.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_AddIdleCallBack.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_AddInput.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_AddItemCallBack.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_AddWidgetCallBack.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_AllocateColorFromName.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_AllowDualLabel.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_AutoSelectBackBuffer.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_Begin.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_BlinkWidget.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_CMove2f.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_CMove3f.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_CallList.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_CallWidgetCallbacks.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_Clear.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_ClearColorf.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_ClearLcd.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_ClearListBox.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_Color3f.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_ColorMapMode.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_ColorMaterial.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_ComputeItemSize.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_ComputeWidgetWindowSize.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_Configure3DCanvas.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_ConfigureItem.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_ConfigureWidget.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_CopyMatrix.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_CopyTransposeMatrix.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_CopyVector.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_CreateCursorFromBitmapFile.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_CreateDirTree.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_CreateGLImage.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_CreateItem.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_CreateLabelPixmapFromImageFile.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_CreateMenuFromList.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_CreateRotateTextPixmap.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_CreateSimpleMenu.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_CreateTimer.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_CreateTreeNode.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_CreateWidget.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_CreateXPixmapFromImageFile.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_Cube.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_CullFace.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_DefineLightModel.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_DefineLightSrc.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_DefineMaterial.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_DeleteList.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_DestroyItem.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_DestroyWidget.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_DestroyWidgetWindows.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_DetachFrame.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_DisableBubbleHelp.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_DisableHighlight.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_DisableImageDithering.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_DisableLabelOffset.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_DisableSliderDepression.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_DisableWidget.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_DisableWidgetTree.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_DisplayWidget.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_DnDGetDragConversionTargets.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_DnDGetMatchedConversionTargets.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_DoPopup.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_DoScroll.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_DrawBuffer.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_DrawRectBorder.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_DrawString.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_DrawWidget.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_Enable.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_EnterEvent.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_EntryEditBackward.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_EventMainLoop.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_ExecuteIdleCallBacks.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_FancyListBoxClear.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_FancyListBoxDeleteSomeRows.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_FancyListBoxFindItemAtXY.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_FancyListBoxFindRowAtXY.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_FancyListBoxGetHighlightedRows.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_FigItemAddString.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_FigItemHidePiece.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_FixFocusHighlightBorder.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_FlashWidgetBorder.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_Fogfv.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_FreezeWidget.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_FrontFace.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_Frustum.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GLNextEvent.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GLResetEvents.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GenLists.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GenerateRotationMatrix.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_Get3DCanvasSize.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetAndUseWidgetResources.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetApplicationResource.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetAtom.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetBackgroundGC.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetBackgroundPV.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetBubbleHelp.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetCheckButtonState.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetCommunicationWindow.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetCursor.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetDarkBrightNormalBDGC.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetDefaultMaterial.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetDirTreeNodeFullPath.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetDisplay.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetDisplaySize.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetDnDDragSrcXYOffset.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetDnDDropLocation.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetFancyListBoxData.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetFancyListBoxItemUsingIdx.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetFancyListBoxNumberOfRows.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetFancyListBoxNumberofRows.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetFancyListBoxSelection.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetFancyListBoxSelectionIdx.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetFancyListBoxWidgetComponents.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetFancyListBoxXYOffset.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetFileSelectorComponents.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetFileSelectorSelection.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetFileSelectorWidgetComponents.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetFocus.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetFontName.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetGC.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetGLImageInfo.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetGLImageWindow.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetHistogramSelection.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetHistogramValue.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetInstanceName.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetItemClientData.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetItemUnknownData.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetItemWidth.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetLabelItemStringInfo.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetLabelPixmapFromGLImage.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetLabelPixmapInfo.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetLedString.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetListBoxData.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetListBoxSelection.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetListBoxWidgetComponents.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetListTreeWidgetComponents.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetListTreeWidgetSelection.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetListTreeWidgetTree.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetListTreeWidgetXYOffset.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetLoctorXY.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetMatrix.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetNoteBookPageTab.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetNumberOfAllocatedColors.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetOptionalEntryWidgetComponents.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetParentBgGC.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetParentWidget.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetPopupMenuTitleWidget.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetRadioButtonGroupID.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetRadioButtonGroupVariableValue.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetScrollButtonScrollCount.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetScrollbarState.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetSliderValue.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetSpinButtonComponents.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetSpinButtonValue.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetTextProperty.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetTextWidgetComponents.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetThumbWheelValue.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetTimerClientData.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetTimerState.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetToplevelWidget.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetWidgetAbsoluteGeometry.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetWidgetBorder.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetWidgetFont.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetWidgetGeometry.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetWidgetGroupLeader.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetWidgetIntData.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetWidgetItemWidget.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetWidgetOrientation.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetWidgetPaddings.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetWidgetPixmap.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetWidgetResource.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetWidgetReturnData.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetWidgetReturnedData.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetWidgetTileOrigin.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetWidgetUnknownData.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetWidgetWindow.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetWorkAreaData.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetWorkAreaItemUsingIdx.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetWorkAreaNumberOfItems.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetWorkAreaSelection.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetWorkAreaWidgetComponents.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetWorkAreaXYOffset.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GetWritableGC.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GlobFileName.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GlobFiles.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GlobHiddenFiles.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_GrabPointer.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_HandleDnDEvents.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_HideWidget.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_HighlightWidget.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_IdentityMatrix.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_Index.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_Initialize.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_InsertWidgetAfter.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_InstallSymbol.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_InstallSymbolicFloat.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_InstallSymbolicInt.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_InstallSymbolicPointer.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_InstallSymbolicULong.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_InverseTranspose.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_InvertMatrix.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_IsList.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_ItemAddDnDDataDecoder.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_ItemExist.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_LabelItemSetProperty.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_LedIsFree.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_LibraryVersion.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_LightModelf.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_Lightf.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_ListTreeFindNodeAtXY.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_ListTreeGetHighlightedNodes.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_ListTreeWidgetSelectNode.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_ListTreeWidgetSelectNodeUsingItem.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_LoadIdentity.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_LoadMatrix.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_LoadXFont.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_LogicOp.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_LookAt.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_Malloc.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_MapColor.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_Materialf.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_MatrixMode.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_MenuBarAddItemAndMenu.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_MenuBarDeleteItem.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_MenuBarDeleteItemAndMenu.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_MenuBarFindItem.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_MenuBarFindItemAndMenu.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_MenuBarInsertItemAndMenu.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_MenuBarSetItemMenu.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_MoveWidgetWindow.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_MultMatrix.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_MultiplyMatrix.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_NewList.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_Normal3f.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_OnFrameDragHandle.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_OnOffSecretEntry.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_OptionEntryClearOptions.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_OptionalEntryClearOptions.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_Ortho.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_Ortho2.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_Perspective.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_PolygonMode.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_PopMatrix.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_PrintStandardOptions.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_PushMatrix.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_PutGLImage.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_QueryPixelValue.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_QueueLedAction.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_RaiseWidgetWindow.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_RegisterApplicationResources.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_RegisterCompositeWidget.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_RegisterMessageHandler.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_RegisterPrimitiveWidget.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_RegisterResourcesAll.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_RegisterWidget.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_RemoveWidget.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_ReparentWidget.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_Rotate.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SSheetClearRegion.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SSheetCopyRegion.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SSheetDeleteChart.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SSheetFindCell.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SSheetFindCursorCell.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SSheetGetActiveCell.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SSheetGetActiveChart.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SSheetGetCell.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SSheetGetHighlightedRegion.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SSheetGetRegionString.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SSheetGetSizes.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SSheetIndexToString.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SSheetInsertItem.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SSheetInsertRegionString.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SSheetMakeChart.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SSheetSetActiveCell.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SSheetSetFirstCell.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SSheetSetHScrollbar.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SSheetSetRegionJustification.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SSheetSetTabChar.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SSheetSetTextProperty.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SSheetSortColumns.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SSheetSortRegion.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SSheetSortRegionR.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SSheetSortRows.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SSheetSwapRow.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_Save3DCanvas2PPMImage.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_Save3DCanvas2PS.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SaveWidget2Postscript.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_Scale.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_ScaleFigItem.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SendMessage.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_Set3DCanvas.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetApplicationName.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetBackBuffer.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetBitmapFont.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetClientMessageHandler.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetDefaultEntryTextFont.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetDefaultMessageHandler.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetDialValue.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetDirTreeDefaultPixmaps.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetDirTreeDirectoryNodeCreator.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetDirTreeOpenDirectoryMode.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetDragIcon.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetEntryString.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetExecutorCommand.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetFancyListBoxData.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetFancyListBoxHeader.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetFancyListBoxRowBg.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetFileSelectorInitialPattern.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetFocusTo.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetGlobalBackground.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetGlobalEventFilter.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetGlobalForeground.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetGrab.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetGradientBarColors.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetGradientBarValue.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetHScrollbarDiscreteSpeed.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetHistogramColors.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetHistogramRange.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetHistogramValue.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetHistogramValues.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetIconPath.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetKbdHighlightColor.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetLcdBackground.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetLcdFontSize.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetLcdInteger.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetLcdNDigits.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetLcdString.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetLedBackground.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetLedColorFunction.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetLedFont.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetLedPixelSize.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetLedSize.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetLedString.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetListBoxItems.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetListTreeWidgetTree.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetMenuButtonMenu.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetNoteBookOrientation.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetOptionalEntryOptionalItems.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetOptionalEntryString.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetOptionalEntryStyle.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetScrollbarDiscreteSpeed.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetSliderRange.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetStatusMeterBackground.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetStatusMeterForeground.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetStatusMeterRange.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetStatusMeterValue.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetSubMenuMenu.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetTimerCallBack.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetTimerClientData.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetTreeWidgetRowBg.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetVectorFont.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetWidgetCINames.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetWidgetCallBack.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetWidgetLabelString.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetWidgetPosition.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetWorkAreaGeometryManager.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetupRuler.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SetupSpinButton.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_ShadeModel.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_Shutdown.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SitForALittleBit.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SlideOpenWidget.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_Sphere.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_StartAsIcon.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_StopStatusMeter.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_SwapBuffers.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_TermStartCommand.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_TextEndOfLine.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_TextGetBufferString.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_TiePopupMenu.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_TildeExpand.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_Translate.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_TreeAttachSubtree.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_TreeDestroyNodeDescendants.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_TreeDestroySubtree.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_TreeFindNode.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_TreeFindNodeUsingItem.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_TreeNodeGetChildren.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_TreeNodeGetItem.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_TreeSetBGColor.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_TreeSetCharacter.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_TreeTraverseTree.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_Tube.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_UpdateDirTreeWidget.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_Vertex3f.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_WaitCursor.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_WarpPointer.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_WidgetAddDnDDataDecoder.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_WidgetDispatchEvent.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_WidgetExist.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_WidgetIsViewable.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_WidgetMarkRuler.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_WidgetNotifyRuler.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_WindowIsWidgetWindow.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_WorkAreaClear.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_WorkAreaDrawItemAt.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_WorkAreaFindItemAtXY.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_WorkAreaGetHighlightedItems.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_WorkAreaInsertAndDrawItemAt.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_WorkAreaInsertItems.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_WorkAreaRaiseItem.html
-%%PORTDOCS%%share/doc/EZ/html/manp/EZ_WorkAreaScaleItem.html
-%%PORTDOCS%%share/doc/EZ/html/manp/contents.html
-%%PORTDOCS%%share/doc/EZ/html/manp/ez.gif
-%%PORTDOCS%%share/doc/EZ/html/manp/index.html
-%%PORTDOCS%%share/doc/EZ/html/manual/0.html
-%%PORTDOCS%%share/doc/EZ/html/manual/1.html
-%%PORTDOCS%%share/doc/EZ/html/manual/10.html
-%%PORTDOCS%%share/doc/EZ/html/manual/100.html
-%%PORTDOCS%%share/doc/EZ/html/manual/101.html
-%%PORTDOCS%%share/doc/EZ/html/manual/102.html
-%%PORTDOCS%%share/doc/EZ/html/manual/103.html
-%%PORTDOCS%%share/doc/EZ/html/manual/104.html
-%%PORTDOCS%%share/doc/EZ/html/manual/105.html
-%%PORTDOCS%%share/doc/EZ/html/manual/106.html
-%%PORTDOCS%%share/doc/EZ/html/manual/107.html
-%%PORTDOCS%%share/doc/EZ/html/manual/108.html
-%%PORTDOCS%%share/doc/EZ/html/manual/109.html
-%%PORTDOCS%%share/doc/EZ/html/manual/11.html
-%%PORTDOCS%%share/doc/EZ/html/manual/110.html
-%%PORTDOCS%%share/doc/EZ/html/manual/111.html
-%%PORTDOCS%%share/doc/EZ/html/manual/112.html
-%%PORTDOCS%%share/doc/EZ/html/manual/113.html
-%%PORTDOCS%%share/doc/EZ/html/manual/114.html
-%%PORTDOCS%%share/doc/EZ/html/manual/115.html
-%%PORTDOCS%%share/doc/EZ/html/manual/116.html
-%%PORTDOCS%%share/doc/EZ/html/manual/117.html
-%%PORTDOCS%%share/doc/EZ/html/manual/118.html
-%%PORTDOCS%%share/doc/EZ/html/manual/119.html
-%%PORTDOCS%%share/doc/EZ/html/manual/12.html
-%%PORTDOCS%%share/doc/EZ/html/manual/120.html
-%%PORTDOCS%%share/doc/EZ/html/manual/13.html
-%%PORTDOCS%%share/doc/EZ/html/manual/14.html
-%%PORTDOCS%%share/doc/EZ/html/manual/15.html
-%%PORTDOCS%%share/doc/EZ/html/manual/16.html
-%%PORTDOCS%%share/doc/EZ/html/manual/17.html
-%%PORTDOCS%%share/doc/EZ/html/manual/18.html
-%%PORTDOCS%%share/doc/EZ/html/manual/19.html
-%%PORTDOCS%%share/doc/EZ/html/manual/2.html
-%%PORTDOCS%%share/doc/EZ/html/manual/20.html
-%%PORTDOCS%%share/doc/EZ/html/manual/21.html
-%%PORTDOCS%%share/doc/EZ/html/manual/22.html
-%%PORTDOCS%%share/doc/EZ/html/manual/23.html
-%%PORTDOCS%%share/doc/EZ/html/manual/24.html
-%%PORTDOCS%%share/doc/EZ/html/manual/25.html
-%%PORTDOCS%%share/doc/EZ/html/manual/26.html
-%%PORTDOCS%%share/doc/EZ/html/manual/27.html
-%%PORTDOCS%%share/doc/EZ/html/manual/28.html
-%%PORTDOCS%%share/doc/EZ/html/manual/29.html
-%%PORTDOCS%%share/doc/EZ/html/manual/3.html
-%%PORTDOCS%%share/doc/EZ/html/manual/30.html
-%%PORTDOCS%%share/doc/EZ/html/manual/31.html
-%%PORTDOCS%%share/doc/EZ/html/manual/32.html
-%%PORTDOCS%%share/doc/EZ/html/manual/33.html
-%%PORTDOCS%%share/doc/EZ/html/manual/34.html
-%%PORTDOCS%%share/doc/EZ/html/manual/35.html
-%%PORTDOCS%%share/doc/EZ/html/manual/36.html
-%%PORTDOCS%%share/doc/EZ/html/manual/37.html
-%%PORTDOCS%%share/doc/EZ/html/manual/38.html
-%%PORTDOCS%%share/doc/EZ/html/manual/39.html
-%%PORTDOCS%%share/doc/EZ/html/manual/4.html
-%%PORTDOCS%%share/doc/EZ/html/manual/40.html
-%%PORTDOCS%%share/doc/EZ/html/manual/41.html
-%%PORTDOCS%%share/doc/EZ/html/manual/42.html
-%%PORTDOCS%%share/doc/EZ/html/manual/43.html
-%%PORTDOCS%%share/doc/EZ/html/manual/44.html
-%%PORTDOCS%%share/doc/EZ/html/manual/45.html
-%%PORTDOCS%%share/doc/EZ/html/manual/46.html
-%%PORTDOCS%%share/doc/EZ/html/manual/47.html
-%%PORTDOCS%%share/doc/EZ/html/manual/48.html
-%%PORTDOCS%%share/doc/EZ/html/manual/49.html
-%%PORTDOCS%%share/doc/EZ/html/manual/5.html
-%%PORTDOCS%%share/doc/EZ/html/manual/50.html
-%%PORTDOCS%%share/doc/EZ/html/manual/51.html
-%%PORTDOCS%%share/doc/EZ/html/manual/52.html
-%%PORTDOCS%%share/doc/EZ/html/manual/53.html
-%%PORTDOCS%%share/doc/EZ/html/manual/54.html
-%%PORTDOCS%%share/doc/EZ/html/manual/55.html
-%%PORTDOCS%%share/doc/EZ/html/manual/56.html
-%%PORTDOCS%%share/doc/EZ/html/manual/57.html
-%%PORTDOCS%%share/doc/EZ/html/manual/58.html
-%%PORTDOCS%%share/doc/EZ/html/manual/59.html
-%%PORTDOCS%%share/doc/EZ/html/manual/6.html
-%%PORTDOCS%%share/doc/EZ/html/manual/60.html
-%%PORTDOCS%%share/doc/EZ/html/manual/61.html
-%%PORTDOCS%%share/doc/EZ/html/manual/62.html
-%%PORTDOCS%%share/doc/EZ/html/manual/63.html
-%%PORTDOCS%%share/doc/EZ/html/manual/64.html
-%%PORTDOCS%%share/doc/EZ/html/manual/65.html
-%%PORTDOCS%%share/doc/EZ/html/manual/66.html
-%%PORTDOCS%%share/doc/EZ/html/manual/67.html
-%%PORTDOCS%%share/doc/EZ/html/manual/68.html
-%%PORTDOCS%%share/doc/EZ/html/manual/69.html
-%%PORTDOCS%%share/doc/EZ/html/manual/7.html
-%%PORTDOCS%%share/doc/EZ/html/manual/70.html
-%%PORTDOCS%%share/doc/EZ/html/manual/71.html
-%%PORTDOCS%%share/doc/EZ/html/manual/72.html
-%%PORTDOCS%%share/doc/EZ/html/manual/73.html
-%%PORTDOCS%%share/doc/EZ/html/manual/74.html
-%%PORTDOCS%%share/doc/EZ/html/manual/75.html
-%%PORTDOCS%%share/doc/EZ/html/manual/76.html
-%%PORTDOCS%%share/doc/EZ/html/manual/77.html
-%%PORTDOCS%%share/doc/EZ/html/manual/78.html
-%%PORTDOCS%%share/doc/EZ/html/manual/79.html
-%%PORTDOCS%%share/doc/EZ/html/manual/8.html
-%%PORTDOCS%%share/doc/EZ/html/manual/80.html
-%%PORTDOCS%%share/doc/EZ/html/manual/81.html
-%%PORTDOCS%%share/doc/EZ/html/manual/82.html
-%%PORTDOCS%%share/doc/EZ/html/manual/83.html
-%%PORTDOCS%%share/doc/EZ/html/manual/84.html
-%%PORTDOCS%%share/doc/EZ/html/manual/85.html
-%%PORTDOCS%%share/doc/EZ/html/manual/86.html
-%%PORTDOCS%%share/doc/EZ/html/manual/87.html
-%%PORTDOCS%%share/doc/EZ/html/manual/88.html
-%%PORTDOCS%%share/doc/EZ/html/manual/89.html
-%%PORTDOCS%%share/doc/EZ/html/manual/9.html
-%%PORTDOCS%%share/doc/EZ/html/manual/90.html
-%%PORTDOCS%%share/doc/EZ/html/manual/91.html
-%%PORTDOCS%%share/doc/EZ/html/manual/92.html
-%%PORTDOCS%%share/doc/EZ/html/manual/93.html
-%%PORTDOCS%%share/doc/EZ/html/manual/94.html
-%%PORTDOCS%%share/doc/EZ/html/manual/95.html
-%%PORTDOCS%%share/doc/EZ/html/manual/96.html
-%%PORTDOCS%%share/doc/EZ/html/manual/97.html
-%%PORTDOCS%%share/doc/EZ/html/manual/98.html
-%%PORTDOCS%%share/doc/EZ/html/manual/99.html
-%%PORTDOCS%%share/doc/EZ/html/manual/contents.html
-%%PORTDOCS%%share/doc/EZ/html/manual/images/0.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/1.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/10.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/11.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/12.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/13.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/14.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/15.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/16.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/17.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/18.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/19.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/2.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/20.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/21.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/22.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/23.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/24.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/25.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/26.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/27.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/28.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/29.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/3.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/30.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/31.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/32.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/33.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/34.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/35.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/36.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/37.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/38.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/39.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/3dcanvas.jpg
-%%PORTDOCS%%share/doc/EZ/html/manual/images/4.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/40.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/41.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/42.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/43.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/44.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/45.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/46.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/47.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/48.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/49.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/5.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/50.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/51.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/52.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/53.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/54.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/55.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/56.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/57.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/58.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/59.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/6.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/60.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/61.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/62.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/63.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/64.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/65.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/66.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/67.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/68.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/69.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/7.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/70.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/71.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/72.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/8.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/9.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/bgrnd08.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/blue_ball_small.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/blue_contents.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/blue_dir.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/blue_grab.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/blue_next.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/blue_prev.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/blue_readme.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/blue_up.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/blue_warning.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/button.jpg
-%%PORTDOCS%%share/doc/EZ/html/manual/images/cbutton.jpg
-%%PORTDOCS%%share/doc/EZ/html/manual/images/dial.jpg
-%%PORTDOCS%%share/doc/EZ/html/manual/images/dot_clear.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/entry.jpg
-%%PORTDOCS%%share/doc/EZ/html/manual/images/executor.jpg
-%%PORTDOCS%%share/doc/EZ/html/manual/images/ez.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/fileselector.jpg
-%%PORTDOCS%%share/doc/EZ/html/manual/images/flistbox.jpg
-%%PORTDOCS%%share/doc/EZ/html/manual/images/frame.jpg
-%%PORTDOCS%%share/doc/EZ/html/manual/images/gbar.jpg
-%%PORTDOCS%%share/doc/EZ/html/manual/images/grnbg.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/histogram.jpg
-%%PORTDOCS%%share/doc/EZ/html/manual/images/label.jpg
-%%PORTDOCS%%share/doc/EZ/html/manual/images/lcd.jpg
-%%PORTDOCS%%share/doc/EZ/html/manual/images/led.jpg
-%%PORTDOCS%%share/doc/EZ/html/manual/images/listTree.jpg
-%%PORTDOCS%%share/doc/EZ/html/manual/images/listbox.jpg
-%%PORTDOCS%%share/doc/EZ/html/manual/images/locator.jpg
-%%PORTDOCS%%share/doc/EZ/html/manual/images/mbutton.jpg
-%%PORTDOCS%%share/doc/EZ/html/manual/images/mbutton1.jpg
-%%PORTDOCS%%share/doc/EZ/html/manual/images/menu.jpg
-%%PORTDOCS%%share/doc/EZ/html/manual/images/menu1.jpg
-%%PORTDOCS%%share/doc/EZ/html/manual/images/menubar.jpg
-%%PORTDOCS%%share/doc/EZ/html/manual/images/menus.jpg
-%%PORTDOCS%%share/doc/EZ/html/manual/images/nbutton.jpg
-%%PORTDOCS%%share/doc/EZ/html/manual/images/notebook.jpg
-%%PORTDOCS%%share/doc/EZ/html/manual/images/optionEntry.jpg
-%%PORTDOCS%%share/doc/EZ/html/manual/images/paneHandle.jpg
-%%PORTDOCS%%share/doc/EZ/html/manual/images/rbutton.jpg
-%%PORTDOCS%%share/doc/EZ/html/manual/images/red_ball_small.gif
-%%PORTDOCS%%share/doc/EZ/html/manual/images/ruler.jpg
-%%PORTDOCS%%share/doc/EZ/html/manual/images/scroll.jpg
-%%PORTDOCS%%share/doc/EZ/html/manual/images/scrollBtn.jpg
-%%PORTDOCS%%share/doc/EZ/html/manual/images/slider.jpg
-%%PORTDOCS%%share/doc/EZ/html/manual/images/spinBtn.jpg
-%%PORTDOCS%%share/doc/EZ/html/manual/images/ssheet.jpg
-%%PORTDOCS%%share/doc/EZ/html/manual/images/statusmeter.jpg
-%%PORTDOCS%%share/doc/EZ/html/manual/images/term.jpg
-%%PORTDOCS%%share/doc/EZ/html/manual/images/text.jpg
-%%PORTDOCS%%share/doc/EZ/html/manual/images/thumbWheel.jpg
-%%PORTDOCS%%share/doc/EZ/html/manual/images/toplevel.jpg
-%%PORTDOCS%%share/doc/EZ/html/manual/images/tree.jpg
-%%PORTDOCS%%share/doc/EZ/html/manual/images/workarea.jpg
-%%PORTDOCS%%share/doc/EZ/html/navigation.html
-%%PORTDOCS%%share/doc/EZ/html/release.html
-%%PORTDOCS%%share/doc/EZ/html/screenshots/3dcanvas.html
-%%PORTDOCS%%share/doc/EZ/html/screenshots/3dcanvas.jpg
-%%PORTDOCS%%share/doc/EZ/html/screenshots/button.html
-%%PORTDOCS%%share/doc/EZ/html/screenshots/button.jpg
-%%PORTDOCS%%share/doc/EZ/html/screenshots/cbutton.html
-%%PORTDOCS%%share/doc/EZ/html/screenshots/cbutton.jpg
-%%PORTDOCS%%share/doc/EZ/html/screenshots/dial.html
-%%PORTDOCS%%share/doc/EZ/html/screenshots/dial.jpg
-%%PORTDOCS%%share/doc/EZ/html/screenshots/entry.html
-%%PORTDOCS%%share/doc/EZ/html/screenshots/entry.jpg
-%%PORTDOCS%%share/doc/EZ/html/screenshots/executor.html
-%%PORTDOCS%%share/doc/EZ/html/screenshots/executor.jpg
-%%PORTDOCS%%share/doc/EZ/html/screenshots/fileselector.html
-%%PORTDOCS%%share/doc/EZ/html/screenshots/fileselector.jpg
-%%PORTDOCS%%share/doc/EZ/html/screenshots/flistbox.html
-%%PORTDOCS%%share/doc/EZ/html/screenshots/flistbox.jpg
-%%PORTDOCS%%share/doc/EZ/html/screenshots/frame.html
-%%PORTDOCS%%share/doc/EZ/html/screenshots/frame.jpg
-%%PORTDOCS%%share/doc/EZ/html/screenshots/gbar.html
-%%PORTDOCS%%share/doc/EZ/html/screenshots/gbar.jpg
-%%PORTDOCS%%share/doc/EZ/html/screenshots/histogram.html
-%%PORTDOCS%%share/doc/EZ/html/screenshots/histogram.jpg
-%%PORTDOCS%%share/doc/EZ/html/screenshots/label.html
-%%PORTDOCS%%share/doc/EZ/html/screenshots/label.jpg
-%%PORTDOCS%%share/doc/EZ/html/screenshots/lcd.html
-%%PORTDOCS%%share/doc/EZ/html/screenshots/lcd.jpg
-%%PORTDOCS%%share/doc/EZ/html/screenshots/led.html
-%%PORTDOCS%%share/doc/EZ/html/screenshots/led.jpg
-%%PORTDOCS%%share/doc/EZ/html/screenshots/listTree.html
-%%PORTDOCS%%share/doc/EZ/html/screenshots/listTree.jpg
-%%PORTDOCS%%share/doc/EZ/html/screenshots/listbox.html
-%%PORTDOCS%%share/doc/EZ/html/screenshots/listbox.jpg
-%%PORTDOCS%%share/doc/EZ/html/screenshots/locator.html
-%%PORTDOCS%%share/doc/EZ/html/screenshots/locator.jpg
-%%PORTDOCS%%share/doc/EZ/html/screenshots/mbutton.html
-%%PORTDOCS%%share/doc/EZ/html/screenshots/mbutton.jpg
-%%PORTDOCS%%share/doc/EZ/html/screenshots/mbutton1.html
-%%PORTDOCS%%share/doc/EZ/html/screenshots/mbutton1.jpg
-%%PORTDOCS%%share/doc/EZ/html/screenshots/menu.html
-%%PORTDOCS%%share/doc/EZ/html/screenshots/menu.jpg
-%%PORTDOCS%%share/doc/EZ/html/screenshots/menu1.html
-%%PORTDOCS%%share/doc/EZ/html/screenshots/menu1.jpg
-%%PORTDOCS%%share/doc/EZ/html/screenshots/menubar.html
-%%PORTDOCS%%share/doc/EZ/html/screenshots/menubar.jpg
-%%PORTDOCS%%share/doc/EZ/html/screenshots/menus.html
-%%PORTDOCS%%share/doc/EZ/html/screenshots/menus.jpg
-%%PORTDOCS%%share/doc/EZ/html/screenshots/nbutton.html
-%%PORTDOCS%%share/doc/EZ/html/screenshots/nbutton.jpg
-%%PORTDOCS%%share/doc/EZ/html/screenshots/notebook.html
-%%PORTDOCS%%share/doc/EZ/html/screenshots/notebook.jpg
-%%PORTDOCS%%share/doc/EZ/html/screenshots/optionEntry.html
-%%PORTDOCS%%share/doc/EZ/html/screenshots/optionEntry.jpg
-%%PORTDOCS%%share/doc/EZ/html/screenshots/paneHandle.html
-%%PORTDOCS%%share/doc/EZ/html/screenshots/paneHandle.jpg
-%%PORTDOCS%%share/doc/EZ/html/screenshots/rbutton.html
-%%PORTDOCS%%share/doc/EZ/html/screenshots/rbutton.jpg
-%%PORTDOCS%%share/doc/EZ/html/screenshots/ruler.html
-%%PORTDOCS%%share/doc/EZ/html/screenshots/ruler.jpg
-%%PORTDOCS%%share/doc/EZ/html/screenshots/scroll.html
-%%PORTDOCS%%share/doc/EZ/html/screenshots/scroll.jpg
-%%PORTDOCS%%share/doc/EZ/html/screenshots/scrollBtn.html
-%%PORTDOCS%%share/doc/EZ/html/screenshots/scrollBtn.jpg
-%%PORTDOCS%%share/doc/EZ/html/screenshots/slider.html
-%%PORTDOCS%%share/doc/EZ/html/screenshots/slider.jpg
-%%PORTDOCS%%share/doc/EZ/html/screenshots/spinBtn.html
-%%PORTDOCS%%share/doc/EZ/html/screenshots/spinBtn.jpg
-%%PORTDOCS%%share/doc/EZ/html/screenshots/ssheet.html
-%%PORTDOCS%%share/doc/EZ/html/screenshots/ssheet.jpg
-%%PORTDOCS%%share/doc/EZ/html/screenshots/statusmeter.html
-%%PORTDOCS%%share/doc/EZ/html/screenshots/statusmeter.jpg
-%%PORTDOCS%%share/doc/EZ/html/screenshots/term.html
-%%PORTDOCS%%share/doc/EZ/html/screenshots/term.jpg
-%%PORTDOCS%%share/doc/EZ/html/screenshots/text.html
-%%PORTDOCS%%share/doc/EZ/html/screenshots/text.jpg
-%%PORTDOCS%%share/doc/EZ/html/screenshots/thumbWheel.html
-%%PORTDOCS%%share/doc/EZ/html/screenshots/thumbWheel.jpg
-%%PORTDOCS%%share/doc/EZ/html/screenshots/toplevel.html
-%%PORTDOCS%%share/doc/EZ/html/screenshots/toplevel.jpg
-%%PORTDOCS%%share/doc/EZ/html/screenshots/tree.html
-%%PORTDOCS%%share/doc/EZ/html/screenshots/tree.jpg
-%%PORTDOCS%%share/doc/EZ/html/screenshots/workarea.html
-%%PORTDOCS%%share/doc/EZ/html/screenshots/workarea.jpg
-%%PORTDOCS%%share/doc/EZ/html/screenshots.html
-%%PORTDOCS%%share/doc/EZ/html/welcome.html
-%%PORTDOCS%%share/doc/EZ/ps/part1.ps
-%%PORTDOCS%%share/doc/EZ/ps/part2.ps
-share/examples/EZ/Demo
-share/examples/EZ/LED.c
-share/examples/EZ/Makefile
-share/examples/EZ/README
-share/examples/EZ/REdit.c
-share/examples/EZ/a.gif
-share/examples/EZ/abcd
-share/examples/EZ/appres.c
-share/examples/EZ/arrows.c
-share/examples/EZ/bg.gif
-share/examples/EZ/bg1.gif
-share/examples/EZ/browser.c
-share/examples/EZ/button_pig.xpm
-share/examples/EZ/cbutton.c
-share/examples/EZ/cloth.gif
-share/examples/EZ/color.c
-share/examples/EZ/csrc.c
-share/examples/EZ/cursor.c
-share/examples/EZ/demo.c
-share/examples/EZ/demos/DnD/Makefile
-share/examples/EZ/demos/DnD/README
-share/examples/EZ/demos/DnD/src1.c
-share/examples/EZ/demos/DnD/src2.c
-share/examples/EZ/demos/DnD/target1.c
-share/examples/EZ/demos/DnD/target2.c
-share/examples/EZ/demos/GL/Makefile
-share/examples/EZ/demos/GL/README
-share/examples/EZ/demos/GL/example1.c
-share/examples/EZ/demos/GL/example2.c
-share/examples/EZ/demos/GL/example3.c
-share/examples/EZ/demos/GL/example4.c
-share/examples/EZ/demos/GL/flowers.xpm
-share/examples/EZ/demos/GL/gears.c
-share/examples/EZ/demos/GL/guilin.gif
-share/examples/EZ/demos/GL/image.c
-share/examples/EZ/demos/GL/image2.c
-share/examples/EZ/demos/GL/julia.c
-share/examples/EZ/demos/GL/pendulum.c
-share/examples/EZ/demos/Glass/Makefile
-share/examples/EZ/demos/Glass/README
-share/examples/EZ/demos/Glass/setroot.c
-share/examples/EZ/demos/Glass/transparent.c
-share/examples/EZ/demos/Glass/widget.c
-share/examples/EZ/demos/Makefile
-share/examples/EZ/demos/Message/Makefile
-share/examples/EZ/demos/Message/README
-share/examples/EZ/demos/Message/client.c
-share/examples/EZ/demos/Message/server.c
-share/examples/EZ/demos/README
-share/examples/EZ/demos/REdit/Makefile
-share/examples/EZ/demos/REdit/README
-share/examples/EZ/demos/REdit/REdit.c
-share/examples/EZ/demos/REdit/redit.c
-share/examples/EZ/demos/animate.c
-share/examples/EZ/demos/bg.gif
-share/examples/EZ/demos/bg1.gif
-share/examples/EZ/demos/btnbox.c
-share/examples/EZ/demos/burning/borrar-0.xpm
-share/examples/EZ/demos/burning/borrar-1.xpm
-share/examples/EZ/demos/burning/borrar-2.xpm
-share/examples/EZ/demos/burning/borrar-3.xpm
-share/examples/EZ/demos/burning/borrar-4.xpm
-share/examples/EZ/demos/burning/borrar-5.xpm
-share/examples/EZ/demos/burning/borrar-6.xpm
-share/examples/EZ/demos/burning/borrar-7.xpm
-share/examples/EZ/demos/burning/borrar-8.xpm
-share/examples/EZ/demos/clock.c
-share/examples/EZ/demos/counter.c
-share/examples/EZ/demos/ezterm.c
-share/examples/EZ/demos/greatwall.gif
-share/examples/EZ/demos/hanoi.c
-share/examples/EZ/demos/led.c
-share/examples/EZ/demos/marble
-share/examples/EZ/demos/meter.c
-share/examples/EZ/demos/pendulum.c
-share/examples/EZ/demos/puzzle.c
-share/examples/EZ/demos/scroll.c
-share/examples/EZ/demos/slide.c
-share/examples/EZ/demos/xpm.c
-share/examples/EZ/demos/xpms/aicons.xpm
-share/examples/EZ/demos/xpms/bart.xpm
-share/examples/EZ/demos/xpms/batsignal.xpm
-share/examples/EZ/demos/xpms/bill_cat.xpm
-share/examples/EZ/demos/xpms/bsd_daemon.xpm
-share/examples/EZ/demos/xpms/bsd_daemon2.xpm
-share/examples/EZ/demos/xpms/cat_scratch.xpm
-share/examples/EZ/demos/xpms/caution.xpm
-share/examples/EZ/demos/xpms/city.xpm
-share/examples/EZ/demos/xpms/clipboard.xpm
-share/examples/EZ/demos/xpms/dont_panic.xpm
-share/examples/EZ/demos/xpms/dont_panic2.xpm
-share/examples/EZ/demos/xpms/dragon_head.xpm
-share/examples/EZ/demos/xpms/dragonfly.xpm
-share/examples/EZ/demos/xpms/earth.xpm
-share/examples/EZ/demos/xpms/escherknot.xpm
-share/examples/EZ/demos/xpms/file.xpm
-share/examples/EZ/demos/xpms/fireplace.xpm
-share/examples/EZ/demos/xpms/flowers.xpm
-share/examples/EZ/demos/xpms/gary.xpm
-share/examples/EZ/demos/xpms/hawk.xpm
-share/examples/EZ/demos/xpms/hobbes.xpm
-share/examples/EZ/demos/xpms/iris.xpm
-share/examples/EZ/demos/xpms/lightning.xpm
-share/examples/EZ/demos/xpms/monster.xpm
-share/examples/EZ/demos/xpms/new.xpm
-share/examples/EZ/demos/xpms/next.xpm
-share/examples/EZ/demos/xpms/panda.xpm
-share/examples/EZ/demos/xpms/plane.xpm
-share/examples/EZ/demos/xpms/robotman.xpm
-share/examples/EZ/demos/xpms/scissors.xpm
-share/examples/EZ/demos/xpms/sgi.xpm
-share/examples/EZ/demos/xpms/sonic.xpm
-share/examples/EZ/demos/xpms/spacecop.xpm
-share/examples/EZ/demos/xpms/spider.xpm
-share/examples/EZ/demos/xpms/taz.xpm
-share/examples/EZ/demos/xpms/triceratops.xpm
-share/examples/EZ/demos/xpms/trout.xpm
-share/examples/EZ/demos/xpms/tuna.xpm
-share/examples/EZ/demos/xpms/twotails.xpm
-share/examples/EZ/demos/xpms/unicorn.xpm
-share/examples/EZ/demos/xpms/war.xpm
-share/examples/EZ/demos/xpms/xmh.xpm
-share/examples/EZ/demos/xruler.c
-share/examples/EZ/dial.c
-share/examples/EZ/display.c
-share/examples/EZ/dog3.xpm
-share/examples/EZ/entry.c
-share/examples/EZ/fileselector.c
-share/examples/EZ/flbxselection.c
-share/examples/EZ/flistbox.c
-share/examples/EZ/folder.xpm
-share/examples/EZ/frame.c
-share/examples/EZ/freelabel.c
-share/examples/EZ/gbar.c
-share/examples/EZ/gridbag.c
-share/examples/EZ/h.c
-share/examples/EZ/hibye.c
-share/examples/EZ/histogram.c
-share/examples/EZ/idle.c
-share/examples/EZ/input.c
-share/examples/EZ/label.c
-share/examples/EZ/led.c
-share/examples/EZ/locator.c
-share/examples/EZ/marble
-share/examples/EZ/mbutton.c
-share/examples/EZ/menu.c
-share/examples/EZ/menu1.c
-share/examples/EZ/nbutton.c
-share/examples/EZ/notebook.c
-share/examples/EZ/optentry.c
-share/examples/EZ/rbutton.c
-share/examples/EZ/rotateTxt.c
-share/examples/EZ/ruler.c
-share/examples/EZ/scroll.c
-share/examples/EZ/scrollBtn.c
-share/examples/EZ/sguilin.gif
-share/examples/EZ/shape.c
-share/examples/EZ/slider.c
-share/examples/EZ/spinBtn.c
-share/examples/EZ/ssheet.c
-share/examples/EZ/text.c
-share/examples/EZ/text.txt
-share/examples/EZ/thumWheel.c
-share/examples/EZ/timer.c
-share/examples/EZ/tree.c
-share/examples/EZ/treetest.c
-share/examples/EZ/twotails.xpm
-share/examples/EZ/warning.c
-share/examples/EZ/workarea.c
-share/examples/EZ/xevent.c
-share/examples/EZ/ximage.c
-@dirrm share/examples/EZ/demos/xpms
-@dirrm share/examples/EZ/demos/burning
-@dirrm share/examples/EZ/demos/REdit
-@dirrm share/examples/EZ/demos/Message
-@dirrm share/examples/EZ/demos/Glass
-@dirrm share/examples/EZ/demos/GL
-@dirrm share/examples/EZ/demos/DnD
-@dirrm share/examples/EZ/demos
-@dirrm share/examples/EZ
-%%PORTDOCS%%@dirrm share/doc/EZ/ps
-%%PORTDOCS%%@dirrm share/doc/EZ/html/screenshots
-%%PORTDOCS%%@dirrm share/doc/EZ/html/manual/images
-%%PORTDOCS%%@dirrm share/doc/EZ/html/manual
-%%PORTDOCS%%@dirrm share/doc/EZ/html/manp
-%%PORTDOCS%%@dirrm share/doc/EZ/html/images
-%%PORTDOCS%%@dirrm share/doc/EZ/html
-%%PORTDOCS%%@dirrm share/doc/EZ
+man/man3/EZ.3.gz
+man/man3/EZ_ActivateChildren.3.gz
+man/man3/EZ_ActivateNoteBookPage.3.gz
+man/man3/EZ_ActivateSibling.3.gz
+man/man3/EZ_ActivateWidget.3.gz
+man/man3/EZ_AddEventHandler.3.gz
+man/man3/EZ_AddIdleCallBack.3.gz
+man/man3/EZ_AddInput.3.gz
+man/man3/EZ_AddItemCallBack.3.gz
+man/man3/EZ_AddWidgetCallBack.3.gz
+man/man3/EZ_AllocateColorFromName.3.gz
+man/man3/EZ_AllocateColorFromRGB.3.gz
+man/man3/EZ_AllowDualLabel.3.gz
+man/man3/EZ_AppendListBoxItem.3.gz
+man/man3/EZ_AutoSelectBackBuffer.3.gz
+man/man3/EZ_Begin.3.gz
+man/man3/EZ_BindLightSrc.3.gz
+man/man3/EZ_BindMaterial.3.gz
+man/man3/EZ_BlinkWidget.3.gz
+man/man3/EZ_BroadcastMessage.3.gz
+man/man3/EZ_BusyCursor.3.gz
+man/man3/EZ_CMove2f.3.gz
+man/man3/EZ_CMove3f.3.gz
+man/man3/EZ_CMove3fv.3.gz
+man/man3/EZ_CMoveScreen2f.3.gz
+man/man3/EZ_CMoveScreen3f.3.gz
+man/man3/EZ_CMoveScreen3fv.3.gz
+man/man3/EZ_CallList.3.gz
+man/man3/EZ_CallLists.3.gz
+man/man3/EZ_CallWidgetCallbacks.3.gz
+man/man3/EZ_CallWidgetMotionCallbacks.3.gz
+man/man3/EZ_CancelTimer.3.gz
+man/man3/EZ_Clear.3.gz
+man/man3/EZ_ClearColorf.3.gz
+man/man3/EZ_ClearIndex.3.gz
+man/man3/EZ_ClearLcd.3.gz
+man/man3/EZ_ClearListBox.3.gz
+man/man3/EZ_Color3f.3.gz
+man/man3/EZ_Color3fv.3.gz
+man/man3/EZ_Color4f.3.gz
+man/man3/EZ_Color4fv.3.gz
+man/man3/EZ_ColorMapMode.3.gz
+man/man3/EZ_ColorMaterial.3.gz
+man/man3/EZ_ComputeItemSize.3.gz
+man/man3/EZ_ComputeWidgetWindowSize.3.gz
+man/man3/EZ_Configure3DCanvas.3.gz
+man/man3/EZ_ConfigureItem.3.gz
+man/man3/EZ_ConfigureWidget.3.gz
+man/man3/EZ_CopyMatrix.3.gz
+man/man3/EZ_CopyTransposeMatrix.3.gz
+man/man3/EZ_CopyVector.3.gz
+man/man3/EZ_CreateCursorFromBitmapData.3.gz
+man/man3/EZ_CreateCursorFromBitmapFile.3.gz
+man/man3/EZ_CreateDirTree.3.gz
+man/man3/EZ_CreateGLImage.3.gz
+man/man3/EZ_CreateItem.3.gz
+man/man3/EZ_CreateLabelPixmapFromImageFile.3.gz
+man/man3/EZ_CreateLabelPixmapFromXBitmapData.3.gz
+man/man3/EZ_CreateLabelPixmapFromXBitmapFile.3.gz
+man/man3/EZ_CreateLabelPixmapFromXPixmap.3.gz
+man/man3/EZ_CreateLabelPixmapFromXpmData.3.gz
+man/man3/EZ_CreateLabelPixmapFromXpmFile.3.gz
+man/man3/EZ_CreateMenuFromList.3.gz
+man/man3/EZ_CreateRotateTextPixmap.3.gz
+man/man3/EZ_CreateSimpleMenu.3.gz
+man/man3/EZ_CreateTimer.3.gz
+man/man3/EZ_CreateTreeNode.3.gz
+man/man3/EZ_CreateWidget.3.gz
+man/man3/EZ_CreateWidgetXrm.3.gz
+man/man3/EZ_CreateXPixmapFromBitmapFile.3.gz
+man/man3/EZ_CreateXPixmapFromImageFile.3.gz
+man/man3/EZ_CreateXPixmapFromXpmData.3.gz
+man/man3/EZ_CreateXPixmapFromXpmFile.3.gz
+man/man3/EZ_Cube.3.gz
+man/man3/EZ_CullFace.3.gz
+man/man3/EZ_DeActivateChildren.3.gz
+man/man3/EZ_DeActivateSibling.3.gz
+man/man3/EZ_DeActivateWidget.3.gz
+man/man3/EZ_DefineLightModel.3.gz
+man/man3/EZ_DefineLightSrc.3.gz
+man/man3/EZ_DefineMaterial.3.gz
+man/man3/EZ_DeleteList.3.gz
+man/man3/EZ_DeleteListBoxItem.3.gz
+man/man3/EZ_DeleteLists.3.gz
+man/man3/EZ_DeleteMessageHandler.3.gz
+man/man3/EZ_DestroyItem.3.gz
+man/man3/EZ_DestroyWidget.3.gz
+man/man3/EZ_DestroyWidgetWindows.3.gz
+man/man3/EZ_DetachFrame.3.gz
+man/man3/EZ_Disable.3.gz
+man/man3/EZ_DisableBubbleHelp.3.gz
+man/man3/EZ_DisableHighlight.3.gz
+man/man3/EZ_DisableImageDithering.3.gz
+man/man3/EZ_DisableLabelOffset.3.gz
+man/man3/EZ_DisableSliderDepression.3.gz
+man/man3/EZ_DisableWidget.3.gz
+man/man3/EZ_DisableWidgetTree.3.gz
+man/man3/EZ_DisplayWidget.3.gz
+man/man3/EZ_DisplayWidgetUnderPointer.3.gz
+man/man3/EZ_DnDGetDragConversionTargets.3.gz
+man/man3/EZ_DnDGetMatchedConversionTargets.3.gz
+man/man3/EZ_DoPopup.3.gz
+man/man3/EZ_DoPopupAt.3.gz
+man/man3/EZ_DoScroll.3.gz
+man/man3/EZ_DockFrame.3.gz
+man/man3/EZ_Dodecahedron.3.gz
+man/man3/EZ_DrawBuffer.3.gz
+man/man3/EZ_DrawRectBorder.3.gz
+man/man3/EZ_DrawString.3.gz
+man/man3/EZ_DrawWidget.3.gz
+man/man3/EZ_Enable.3.gz
+man/man3/EZ_EnableBubbleHelp.3.gz
+man/man3/EZ_EnableHighlight.3.gz
+man/man3/EZ_EnableImageDithering.3.gz
+man/man3/EZ_EnableLableOffset.3.gz
+man/man3/EZ_EnableSliderDepression.3.gz
+man/man3/EZ_EnableWidget.3.gz
+man/man3/EZ_EnableWidgetTree.3.gz
+man/man3/EZ_End.3.gz
+man/man3/EZ_EndList.3.gz
+man/man3/EZ_EnterEvent.3.gz
+man/man3/EZ_EntryEditBackward.3.gz
+man/man3/EZ_EntryEditBackwardWord.3.gz
+man/man3/EZ_EntryEditBeginOfInput.3.gz
+man/man3/EZ_EntryEditDeleteChar.3.gz
+man/man3/EZ_EntryEditEndOfInput.3.gz
+man/man3/EZ_EntryEditForeward.3.gz
+man/man3/EZ_EntryEditForwardWord.3.gz
+man/man3/EZ_EntryEditInsertString.3.gz
+man/man3/EZ_EntryEditKillEndOfLine.3.gz
+man/man3/EZ_EntryEditKillRegion.3.gz
+man/man3/EZ_EntryEditSetMarker.3.gz
+man/man3/EZ_EntryPasteSelection.3.gz
+man/man3/EZ_EventMainLoop.3.gz
+man/man3/EZ_ExecuteIdleCallBacks.3.gz
+man/man3/EZ_FancyListBoxClear.3.gz
+man/man3/EZ_FancyListBoxDeleteRow.3.gz
+man/man3/EZ_FancyListBoxDeleteSomeRows.3.gz
+man/man3/EZ_FancyListBoxFindItemAtXY.3.gz
+man/man3/EZ_FancyListBoxFindRowAtXY.3.gz
+man/man3/EZ_FancyListBoxGetHighlightedItems.3.gz
+man/man3/EZ_FancyListBoxGetHighlightedRows.3.gz
+man/man3/EZ_FancyListBoxInsertRow.3.gz
+man/man3/EZ_FancyListBoxReplaceItem.3.gz
+man/man3/EZ_FancyListBoxReplaceItemUsingIdx.3.gz
+man/man3/EZ_FancyListBoxSelectItem.3.gz
+man/man3/EZ_FancyListBoxSelectItemUsingIdx.3.gz
+man/man3/EZ_FigItemAddArc.3.gz
+man/man3/EZ_FigItemAddArcs.3.gz
+man/man3/EZ_FigItemAddFilledArc.3.gz
+man/man3/EZ_FigItemAddFilledArcs.3.gz
+man/man3/EZ_FigItemAddFilledRectangle.3.gz
+man/man3/EZ_FigItemAddFilledRectangles.3.gz
+man/man3/EZ_FigItemAddLines.3.gz
+man/man3/EZ_FigItemAddPixmap.3.gz
+man/man3/EZ_FigItemAddPoints.3.gz
+man/man3/EZ_FigItemAddPolygon.3.gz
+man/man3/EZ_FigItemAddRectangle.3.gz
+man/man3/EZ_FigItemAddRectangles.3.gz
+man/man3/EZ_FigItemAddSegments.3.gz
+man/man3/EZ_FigItemAddString.3.gz
+man/man3/EZ_FigItemHidePiece.3.gz
+man/man3/EZ_FixFocusHighlightBorder.3.gz
+man/man3/EZ_FlashWidgetBorder.3.gz
+man/man3/EZ_Fogfv.3.gz
+man/man3/EZ_FrameIsDetached.3.gz
+man/man3/EZ_Free.3.gz
+man/man3/EZ_FreeGC.3.gz
+man/man3/EZ_FreeGLImage.3.gz
+man/man3/EZ_FreeLabelPixmap.3.gz
+man/man3/EZ_FreeXPixmap.3.gz
+man/man3/EZ_FreezeWidget.3.gz
+man/man3/EZ_FrontFace.3.gz
+man/man3/EZ_Frustum.3.gz
+man/man3/EZ_GLConfig.3.gz
+man/man3/EZ_GLEnterEvent.3.gz
+man/man3/EZ_GLNextEvent.3.gz
+man/man3/EZ_GLResetEvents.3.gz
+man/man3/EZ_GenLists.3.gz
+man/man3/EZ_GenerateRotationMatrix.3.gz
+man/man3/EZ_Get3DCanvasSize.3.gz
+man/man3/EZ_GetAndUseWidgetResources.3.gz
+man/man3/EZ_GetApplicationName.3.gz
+man/man3/EZ_GetApplicationResource.3.gz
+man/man3/EZ_GetAtom.3.gz
+man/man3/EZ_GetBackgroundGC.3.gz
+man/man3/EZ_GetBackgroundPV.3.gz
+man/man3/EZ_GetBackgroundTileGC.3.gz
+man/man3/EZ_GetBubbleHelp.3.gz
+man/man3/EZ_GetCheckButtonState.3.gz
+man/man3/EZ_GetChildrenWidget.3.gz
+man/man3/EZ_GetClassName.3.gz
+man/man3/EZ_GetColormap.3.gz
+man/man3/EZ_GetCommunicationWindow.3.gz
+man/man3/EZ_GetCursor.3.gz
+man/man3/EZ_GetCursorByName.3.gz
+man/man3/EZ_GetCursorName.3.gz
+man/man3/EZ_GetDarkBrightNormalBDGC.3.gz
+man/man3/EZ_GetDefaultMaterial.3.gz
+man/man3/EZ_GetDepth.3.gz
+man/man3/EZ_GetDirTreeNodeFullPath.3.gz
+man/man3/EZ_GetDisplay.3.gz
+man/man3/EZ_GetDisplayInfo.3.gz
+man/man3/EZ_GetDisplaySize.3.gz
+man/man3/EZ_GetDnDDragSrcXYOffset.3.gz
+man/man3/EZ_GetDnDDropLocation.3.gz
+man/man3/EZ_GetEntryString.3.gz
+man/man3/EZ_GetFancyListBoxData.3.gz
+man/man3/EZ_GetFancyListBoxItemUsingIdx.3.gz
+man/man3/EZ_GetFancyListBoxNumberOfColumns.3.gz
+man/man3/EZ_GetFancyListBoxNumberOfRows.3.gz
+man/man3/EZ_GetFancyListBoxNumberofRows.3.gz
+man/man3/EZ_GetFancyListBoxSelection.3.gz
+man/man3/EZ_GetFancyListBoxSelectionIdx.3.gz
+man/man3/EZ_GetFancyListBoxWidgetComponents.3.gz
+man/man3/EZ_GetFancyListBoxXYOffset.3.gz
+man/man3/EZ_GetFileSelectorComponents.3.gz
+man/man3/EZ_GetFileSelectorSelection.3.gz
+man/man3/EZ_GetFileSelectorWidgetComponents.3.gz
+man/man3/EZ_GetFocus.3.gz
+man/man3/EZ_GetFontFromId.3.gz
+man/man3/EZ_GetFontFromName.3.gz
+man/man3/EZ_GetFontFromXFontId.3.gz
+man/man3/EZ_GetFontName.3.gz
+man/man3/EZ_GetGC.3.gz
+man/man3/EZ_GetGLImageInfo.3.gz
+man/man3/EZ_GetGLImageWindow.3.gz
+man/man3/EZ_GetGLImageXWindow.3.gz
+man/man3/EZ_GetHistogramSelection.3.gz
+man/man3/EZ_GetHistogramValue.3.gz
+man/man3/EZ_GetIconPath.3.gz
+man/man3/EZ_GetInstanceName.3.gz
+man/man3/EZ_GetItemClientData.3.gz
+man/man3/EZ_GetItemDimension.3.gz
+man/man3/EZ_GetItemHeight.3.gz
+man/man3/EZ_GetItemIntData.3.gz
+man/man3/EZ_GetItemPosition.3.gz
+man/man3/EZ_GetItemPtrData.3.gz
+man/man3/EZ_GetItemUnknownData.3.gz
+man/man3/EZ_GetItemUnknownDataPtr.3.gz
+man/man3/EZ_GetItemWidth.3.gz
+man/man3/EZ_GetLabelItemStringInfo.3.gz
+man/man3/EZ_GetLabelPixmapFromGLImage.3.gz
+man/man3/EZ_GetLabelPixmapInfo.3.gz
+man/man3/EZ_GetLedString.3.gz
+man/man3/EZ_GetListBoxData.3.gz
+man/man3/EZ_GetListBoxSelectedItem.3.gz
+man/man3/EZ_GetListBoxSelection.3.gz
+man/man3/EZ_GetListBoxSelectionLineNumber.3.gz
+man/man3/EZ_GetListBoxWidgetComponents.3.gz
+man/man3/EZ_GetListTreeWidgetComponents.3.gz
+man/man3/EZ_GetListTreeWidgetSelection.3.gz
+man/man3/EZ_GetListTreeWidgetTree.3.gz
+man/man3/EZ_GetListTreeWidgetXYOffset.3.gz
+man/man3/EZ_GetLoctorXY.3.gz
+man/man3/EZ_GetMatrix.3.gz
+man/man3/EZ_GetMenuButtonMenu.3.gz
+man/man3/EZ_GetNoteBookPageTab.3.gz
+man/man3/EZ_GetNumberOfAllocatedColors.3.gz
+man/man3/EZ_GetNumberOfReservedColorsForGL.3.gz
+man/man3/EZ_GetOptionalEntryString.3.gz
+man/man3/EZ_GetOptionalEntryWidgetComponents.3.gz
+man/man3/EZ_GetParentBgGC.3.gz
+man/man3/EZ_GetParentBgTileGC.3.gz
+man/man3/EZ_GetParentWidget.3.gz
+man/man3/EZ_GetPopupMenuTitleWidget.3.gz
+man/man3/EZ_GetRadioButtonGroupID.3.gz
+man/man3/EZ_GetRadioButtonGroupVariableValue.3.gz
+man/man3/EZ_GetScreen.3.gz
+man/man3/EZ_GetScrollButtonScrollCount.3.gz
+man/man3/EZ_GetScrollbarState.3.gz
+man/man3/EZ_GetSelectedMenuItem.3.gz
+man/man3/EZ_GetSiblingWidget.3.gz
+man/man3/EZ_GetSliderValue.3.gz
+man/man3/EZ_GetSpinButtonComponents.3.gz
+man/man3/EZ_GetSpinButtonValue.3.gz
+man/man3/EZ_GetStatusMeterValue.3.gz
+man/man3/EZ_GetStatusMeterValueN.3.gz
+man/man3/EZ_GetTextProperty.3.gz
+man/man3/EZ_GetTextWidgetComponents.3.gz
+man/man3/EZ_GetThumbWheelValue.3.gz
+man/man3/EZ_GetTimerClientData.3.gz
+man/man3/EZ_GetTimerIntData.3.gz
+man/man3/EZ_GetTimerPtrData.3.gz
+man/man3/EZ_GetTimerState.3.gz
+man/man3/EZ_GetToplevelWidget.3.gz
+man/man3/EZ_GetVisual.3.gz
+man/man3/EZ_GetWidgetAbsoluteGeometry.3.gz
+man/man3/EZ_GetWidgetBorder.3.gz
+man/man3/EZ_GetWidgetBorderWidth.3.gz
+man/man3/EZ_GetWidgetCINames.3.gz
+man/man3/EZ_GetWidgetClientData.3.gz
+man/man3/EZ_GetWidgetDimension.3.gz
+man/man3/EZ_GetWidgetFont.3.gz
+man/man3/EZ_GetWidgetGeometry.3.gz
+man/man3/EZ_GetWidgetGroupLeader.3.gz
+man/man3/EZ_GetWidgetHeight.3.gz
+man/man3/EZ_GetWidgetIntData.3.gz
+man/man3/EZ_GetWidgetItemWidget.3.gz
+man/man3/EZ_GetWidgetLabelPosition.3.gz
+man/man3/EZ_GetWidgetLabelString.3.gz
+man/man3/EZ_GetWidgetMinDimention.3.gz
+man/man3/EZ_GetWidgetMinHeight.3.gz
+man/man3/EZ_GetWidgetMinWidth.3.gz
+man/man3/EZ_GetWidgetOrientation.3.gz
+man/man3/EZ_GetWidgetPaddings.3.gz
+man/man3/EZ_GetWidgetPixmap.3.gz
+man/man3/EZ_GetWidgetPosition.3.gz
+man/man3/EZ_GetWidgetPtrData.3.gz
+man/man3/EZ_GetWidgetResource.3.gz
+man/man3/EZ_GetWidgetReturnData.3.gz
+man/man3/EZ_GetWidgetReturnedData.3.gz
+man/man3/EZ_GetWidgetTileOrigin.3.gz
+man/man3/EZ_GetWidgetUnknownData.3.gz
+man/man3/EZ_GetWidgetUnknownDataPtr.3.gz
+man/man3/EZ_GetWidgetWidth.3.gz
+man/man3/EZ_GetWidgetWindow.3.gz
+man/man3/EZ_GetWorkAreaData.3.gz
+man/man3/EZ_GetWorkAreaItemUsingIdx.3.gz
+man/man3/EZ_GetWorkAreaNumberOfItems.3.gz
+man/man3/EZ_GetWorkAreaSelection.3.gz
+man/man3/EZ_GetWorkAreaWidgetComponents.3.gz
+man/man3/EZ_GetWorkAreaXYOffset.3.gz
+man/man3/EZ_GetWritableGC.3.gz
+man/man3/EZ_GlobFileName.3.gz
+man/man3/EZ_GlobFiles.3.gz
+man/man3/EZ_GlobHiddenFiles.3.gz
+man/man3/EZ_GrabPointer.3.gz
+man/man3/EZ_HandleDnDEvents.3.gz
+man/man3/EZ_HideWidget.3.gz
+man/man3/EZ_HighlightFrameDragHandle.3.gz
+man/man3/EZ_HighlightWidget.3.gz
+man/man3/EZ_Icosahedron.3.gz
+man/man3/EZ_IdentityMatrix.3.gz
+man/man3/EZ_Index.3.gz
+man/man3/EZ_Indexf.3.gz
+man/man3/EZ_Initialize.3.gz
+man/man3/EZ_InitializeXrm.3.gz
+man/man3/EZ_InsertListBoxItem.3.gz
+man/man3/EZ_InsertWidgetAfter.3.gz
+man/man3/EZ_InsertWidgetBefore.3.gz
+man/man3/EZ_InstallSymbol.3.gz
+man/man3/EZ_InstallSymbolicFloat.3.gz
+man/man3/EZ_InstallSymbolicInt.3.gz
+man/man3/EZ_InstallSymbolicPointer.3.gz
+man/man3/EZ_InstallSymbolicULong.3.gz
+man/man3/EZ_InverseTranspose.3.gz
+man/man3/EZ_InvertMatrix.3.gz
+man/man3/EZ_IsList.3.gz
+man/man3/EZ_ItemAddDnDDataDecoder.3.gz
+man/man3/EZ_ItemAddDnDDataEncoder.3.gz
+man/man3/EZ_ItemDeleteAllDnDDataDecoders.3.gz
+man/man3/EZ_ItemDeleteAllDnDDataEncoders.3.gz
+man/man3/EZ_ItemDeleteDnDDataDecoder.3.gz
+man/man3/EZ_ItemDeleteDnDDataEncoder.3.gz
+man/man3/EZ_ItemExist.3.gz
+man/man3/EZ_LabelItemSetProperty.3.gz
+man/man3/EZ_LedIsFree.3.gz
+man/man3/EZ_LibraryVersion.3.gz
+man/man3/EZ_LightModelf.3.gz
+man/man3/EZ_LightModelfv.3.gz
+man/man3/EZ_Lightf.3.gz
+man/man3/EZ_Lightfv.3.gz
+man/man3/EZ_ListBoxSelectItem.3.gz
+man/man3/EZ_ListBoxSelectItemUsingIdx.3.gz
+man/man3/EZ_ListTreeFindNodeAtXY.3.gz
+man/man3/EZ_ListTreeGetHighlightedItems.3.gz
+man/man3/EZ_ListTreeGetHighlightedNodes.3.gz
+man/man3/EZ_ListTreeWidgetSelectNode.3.gz
+man/man3/EZ_ListTreeWidgetSelectNodeUsingItem.3.gz
+man/man3/EZ_LoadIdentity.3.gz
+man/man3/EZ_LoadMatrix.3.gz
+man/man3/EZ_LoadXFont.3.gz
+man/man3/EZ_LogicOp.3.gz
+man/man3/EZ_LookAt.3.gz
+man/man3/EZ_Malloc.3.gz
+man/man3/EZ_MapColor.3.gz
+man/man3/EZ_Materialf.3.gz
+man/man3/EZ_Materialfv.3.gz
+man/man3/EZ_MatrixMode.3.gz
+man/man3/EZ_MenuBarAddItemAndMenu.3.gz
+man/man3/EZ_MenuBarDeleteItem.3.gz
+man/man3/EZ_MenuBarDeleteItemAndMenu.3.gz
+man/man3/EZ_MenuBarFindItem.3.gz
+man/man3/EZ_MenuBarFindItemAndMenu.3.gz
+man/man3/EZ_MenuBarInsertItemAndMenu.3.gz
+man/man3/EZ_MenuBarSetItemMenu.3.gz
+man/man3/EZ_ModifyListBoxItem.3.gz
+man/man3/EZ_MoveWidgetWindow.3.gz
+man/man3/EZ_MultMatrix.3.gz
+man/man3/EZ_MultiplyMatrix.3.gz
+man/man3/EZ_NewList.3.gz
+man/man3/EZ_Normal3f.3.gz
+man/man3/EZ_Normal3fv.3.gz
+man/man3/EZ_NormalCursor.3.gz
+man/man3/EZ_Octahedron.3.gz
+man/man3/EZ_OnFrameDragHandle.3.gz
+man/man3/EZ_OnOffSecretEntry.3.gz
+man/man3/EZ_OptionEntryAppendOption.3.gz
+man/man3/EZ_OptionEntryClearOptions.3.gz
+man/man3/EZ_OptionEntryDeleteOption.3.gz
+man/man3/EZ_OptionalEntryAppendOption.3.gz
+man/man3/EZ_OptionalEntryClearOptions.3.gz
+man/man3/EZ_OptionalEntryDeleteOption.3.gz
+man/man3/EZ_OptionalEntryInsertOption.3.gz
+man/man3/EZ_Ortho.3.gz
+man/man3/EZ_Ortho2.3.gz
+man/man3/EZ_Perspective.3.gz
+man/man3/EZ_PixelValue2RGB.3.gz
+man/man3/EZ_PolygonMode.3.gz
+man/man3/EZ_PopMatrix.3.gz
+man/man3/EZ_PrintStandardOptions.3.gz
+man/man3/EZ_PushMatrix.3.gz
+man/man3/EZ_PutGLImage.3.gz
+man/man3/EZ_PutGLImageScreen.3.gz
+man/man3/EZ_PutGLImageWindow.3.gz
+man/man3/EZ_PutGLImageXWindow.3.gz
+man/man3/EZ_QueryPixelValue.3.gz
+man/man3/EZ_QueueLedAction.3.gz
+man/man3/EZ_RGBMode.3.gz
+man/man3/EZ_RaiseWidgetWindow.3.gz
+man/man3/EZ_RegisterApplicationResources.3.gz
+man/man3/EZ_RegisterCompositeWidget.3.gz
+man/man3/EZ_RegisterMessageHandler.3.gz
+man/man3/EZ_RegisterPrimitiveWidget.3.gz
+man/man3/EZ_RegisterResourcesAll.3.gz
+man/man3/EZ_RegisterWidget.3.gz
+man/man3/EZ_ReleaseGrab.3.gz
+man/man3/EZ_RemoveAllEventHandlers.3.gz
+man/man3/EZ_RemoveAllIdleCallBacks.3.gz
+man/man3/EZ_RemoveAllItemCallBacks.3.gz
+man/man3/EZ_RemoveAllWidgetCallBacks.3.gz
+man/man3/EZ_RemoveEvent.3.gz
+man/man3/EZ_RemoveEventHandler.3.gz
+man/man3/EZ_RemoveIdleCallBack.3.gz
+man/man3/EZ_RemoveInput.3.gz
+man/man3/EZ_RemoveItemCallBack.3.gz
+man/man3/EZ_RemoveLedAction.3.gz
+man/man3/EZ_RemoveWidget.3.gz
+man/man3/EZ_RemoveWidgetCallBack.3.gz
+man/man3/EZ_ReparentWidget.3.gz
+man/man3/EZ_ReplyMessage.3.gz
+man/man3/EZ_ReplyMessageR.3.gz
+man/man3/EZ_ResetTimer.3.gz
+man/man3/EZ_RestartTimer.3.gz
+man/man3/EZ_RetrieveSymbol.3.gz
+man/man3/EZ_RetrieveSymbolicFloat.3.gz
+man/man3/EZ_RetrieveSymbolicInt.3.gz
+man/man3/EZ_RetrieveSymbolicPointer.3.gz
+man/man3/EZ_RetrieveSymbolicULong.3.gz
+man/man3/EZ_Rotate.3.gz
+man/man3/EZ_SSheetClearRegion.3.gz
+man/man3/EZ_SSheetCopyRegion.3.gz
+man/man3/EZ_SSheetDeleteChart.3.gz
+man/man3/EZ_SSheetFindCell.3.gz
+man/man3/EZ_SSheetFindCursorCell.3.gz
+man/man3/EZ_SSheetGetActiveCell.3.gz
+man/man3/EZ_SSheetGetActiveChart.3.gz
+man/man3/EZ_SSheetGetCell.3.gz
+man/man3/EZ_SSheetGetHighlightedRegion.3.gz
+man/man3/EZ_SSheetGetRegionString.3.gz
+man/man3/EZ_SSheetGetSizes.3.gz
+man/man3/EZ_SSheetIndexToString.3.gz
+man/man3/EZ_SSheetInsertItem.3.gz
+man/man3/EZ_SSheetInsertRegionString.3.gz
+man/man3/EZ_SSheetMakeChart.3.gz
+man/man3/EZ_SSheetSetActiveCell.3.gz
+man/man3/EZ_SSheetSetFirstCell.3.gz
+man/man3/EZ_SSheetSetHScrollbar.3.gz
+man/man3/EZ_SSheetSetRegionJustification.3.gz
+man/man3/EZ_SSheetSetTabChar.3.gz
+man/man3/EZ_SSheetSetTextProperty.3.gz
+man/man3/EZ_SSheetSortColumns.3.gz
+man/man3/EZ_SSheetSortRegion.3.gz
+man/man3/EZ_SSheetSortRegionR.3.gz
+man/man3/EZ_SSheetSortRows.3.gz
+man/man3/EZ_SSheetSwapRow.3.gz
+man/man3/EZ_Save3DCanvas2PPMImage.3.gz
+man/man3/EZ_Save3DCanvas2PS.3.gz
+man/man3/EZ_Save3DCanvas2PSA.3.gz
+man/man3/EZ_SaveWidget2PPM.3.gz
+man/man3/EZ_SaveWidget2Postscript.3.gz
+man/man3/EZ_Scale.3.gz
+man/man3/EZ_ScaleFigItem.3.gz
+man/man3/EZ_SendMessage.3.gz
+man/man3/EZ_ServiceEvents.3.gz
+man/man3/EZ_Set3DCanvas.3.gz
+man/man3/EZ_SetApplicationName.3.gz
+man/man3/EZ_SetBackBuffer.3.gz
+man/man3/EZ_SetBitmapFont.3.gz
+man/man3/EZ_SetCheckButtonState.3.gz
+man/man3/EZ_SetClientMessageHandler.3.gz
+man/man3/EZ_SetDefaultEntryTextFont.3.gz
+man/man3/EZ_SetDefaultLabelFont.3.gz
+man/man3/EZ_SetDefaultMenuTitleFont.3.gz
+man/man3/EZ_SetDefaultMessageHandler.3.gz
+man/man3/EZ_SetDialValue.3.gz
+man/man3/EZ_SetDirTreeDefaultPixmaps.3.gz
+man/man3/EZ_SetDirTreeDefaultPixmapsFromXpmFiles.3.gz
+man/man3/EZ_SetDirTreeDirectoryNodeCreator.3.gz
+man/man3/EZ_SetDirTreeFileNodeCreator.3.gz
+man/man3/EZ_SetDirTreeOpenDirectoryMode.3.gz
+man/man3/EZ_SetDragCursor.3.gz
+man/man3/EZ_SetDragIcon.3.gz
+man/man3/EZ_SetEntryString.3.gz
+man/man3/EZ_SetExecutorCommand.3.gz
+man/man3/EZ_SetFancyListBoxData.3.gz
+man/man3/EZ_SetFancyListBoxHeader.3.gz
+man/man3/EZ_SetFancyListBoxRowBg.3.gz
+man/man3/EZ_SetFancyListBoxXYOffset.3.gz
+man/man3/EZ_SetFileSelectorInitialPattern.3.gz
+man/man3/EZ_SetFocusTo.3.gz
+man/man3/EZ_SetForeground.3.gz
+man/man3/EZ_SetGlobalBackground.3.gz
+man/man3/EZ_SetGlobalEventFilter.3.gz
+man/man3/EZ_SetGlobalForeground.3.gz
+man/man3/EZ_SetGrab.3.gz
+man/man3/EZ_SetGradientBarColors.3.gz
+man/man3/EZ_SetGradientBarValue.3.gz
+man/man3/EZ_SetHScrollbarDiscreteSpeed.3.gz
+man/man3/EZ_SetHistogramColors.3.gz
+man/man3/EZ_SetHistogramRange.3.gz
+man/man3/EZ_SetHistogramValue.3.gz
+man/man3/EZ_SetHistogramValues.3.gz
+man/man3/EZ_SetIconPath.3.gz
+man/man3/EZ_SetItemClientData.3.gz
+man/man3/EZ_SetItemDimension.3.gz
+man/man3/EZ_SetItemHeight.3.gz
+man/man3/EZ_SetItemIntData.3.gz
+man/man3/EZ_SetItemPosition.3.gz
+man/man3/EZ_SetItemPtrData.3.gz
+man/man3/EZ_SetItemUnknownData.3.gz
+man/man3/EZ_SetItemWidth.3.gz
+man/man3/EZ_SetKbdHighlightColor.3.gz
+man/man3/EZ_SetKbdHighlightColorRGB.3.gz
+man/man3/EZ_SetLcdBackground.3.gz
+man/man3/EZ_SetLcdFloat.3.gz
+man/man3/EZ_SetLcdFontSize.3.gz
+man/man3/EZ_SetLcdForeground.3.gz
+man/man3/EZ_SetLcdInteger.3.gz
+man/man3/EZ_SetLcdNDigits.3.gz
+man/man3/EZ_SetLcdString.3.gz
+man/man3/EZ_SetLedBackground.3.gz
+man/man3/EZ_SetLedColorFunction.3.gz
+man/man3/EZ_SetLedFont.3.gz
+man/man3/EZ_SetLedForeground.3.gz
+man/man3/EZ_SetLedHeight.3.gz
+man/man3/EZ_SetLedPixelSize.3.gz
+man/man3/EZ_SetLedSize.3.gz
+man/man3/EZ_SetLedString.3.gz
+man/man3/EZ_SetLedWidth.3.gz
+man/man3/EZ_SetListBoxItems.3.gz
+man/man3/EZ_SetListTreeWidgetTree.3.gz
+man/man3/EZ_SetListTreeWidgetXYOffset.3.gz
+man/man3/EZ_SetMenuButtonMenu.3.gz
+man/man3/EZ_SetNoteBookOrientation.3.gz
+man/man3/EZ_SetOffPixelColor.3.gz
+man/man3/EZ_SetOptionalEntryOptionalItems.3.gz
+man/man3/EZ_SetOptionalEntryString.3.gz
+man/man3/EZ_SetOptionalEntryStyle.3.gz
+man/man3/EZ_SetRadioButtonGroupVariableValue.3.gz
+man/man3/EZ_SetScrollbarDiscreteSpeed.3.gz
+man/man3/EZ_SetSliderRange.3.gz
+man/man3/EZ_SetSliderValue.3.gz
+man/man3/EZ_SetStatusMeterBackground.3.gz
+man/man3/EZ_SetStatusMeterForeground.3.gz
+man/man3/EZ_SetStatusMeterForegroundN.3.gz
+man/man3/EZ_SetStatusMeterRange.3.gz
+man/man3/EZ_SetStatusMeterRangeN.3.gz
+man/man3/EZ_SetStatusMeterValue.3.gz
+man/man3/EZ_SetStatusMeterValueN.3.gz
+man/man3/EZ_SetSubMenuMenu.3.gz
+man/man3/EZ_SetTimerCallBack.3.gz
+man/man3/EZ_SetTimerClientData.3.gz
+man/man3/EZ_SetTimerIntData.3.gz
+man/man3/EZ_SetTimerPtrData.3.gz
+man/man3/EZ_SetTreeWidgetRowBg.3.gz
+man/man3/EZ_SetVScrollbarDiscreteSpeed.3.gz
+man/man3/EZ_SetVectorFont.3.gz
+man/man3/EZ_SetWidgetCINames.3.gz
+man/man3/EZ_SetWidgetCallBack.3.gz
+man/man3/EZ_SetWidgetClientData.3.gz
+man/man3/EZ_SetWidgetHeight.3.gz
+man/man3/EZ_SetWidgetIntData.3.gz
+man/man3/EZ_SetWidgetLabelString.3.gz
+man/man3/EZ_SetWidgetPosition.3.gz
+man/man3/EZ_SetWidgetPtrData.3.gz
+man/man3/EZ_SetWidgetUnknownData.3.gz
+man/man3/EZ_SetWidgetWidth.3.gz
+man/man3/EZ_SetWorkAreaGeometryManager.3.gz
+man/man3/EZ_SetWorkAreaXYOffset.3.gz
+man/man3/EZ_SetupRuler.3.gz
+man/man3/EZ_SetupSpinButton.3.gz
+man/man3/EZ_ShadeModel.3.gz
+man/man3/EZ_Shutdown.3.gz
+man/man3/EZ_SitForALittleBit.3.gz
+man/man3/EZ_SlideOpenWidget.3.gz
+man/man3/EZ_Sphere.3.gz
+man/man3/EZ_StartAsIcon.3.gz
+man/man3/EZ_StartStatusMeter.3.gz
+man/man3/EZ_StopStatusMeter.3.gz
+man/man3/EZ_SwapBuffers.3.gz
+man/man3/EZ_SwapWidgets.3.gz
+man/man3/EZ_TermStartCommand.3.gz
+man/man3/EZ_Tetrahedron.3.gz
+man/man3/EZ_TextBackwardChar.3.gz
+man/man3/EZ_TextBackwardWord.3.gz
+man/man3/EZ_TextBeginningOfBuffer.3.gz
+man/man3/EZ_TextBeginningOfLine.3.gz
+man/man3/EZ_TextClear.3.gz
+man/man3/EZ_TextDeleteNextChar.3.gz
+man/man3/EZ_TextDeletePreviousChar.3.gz
+man/man3/EZ_TextEndOfBuffer.3.gz
+man/man3/EZ_TextEndOfLine.3.gz
+man/man3/EZ_TextForwardChar.3.gz
+man/man3/EZ_TextForwardWord.3.gz
+man/man3/EZ_TextGetBufferString.3.gz
+man/man3/EZ_TextGetPosition.3.gz
+man/man3/EZ_TextGetRegionString.3.gz
+man/man3/EZ_TextGotoPosition.3.gz
+man/man3/EZ_TextInsertChar.3.gz
+man/man3/EZ_TextInsertNewLine.3.gz
+man/man3/EZ_TextInsertString.3.gz
+man/man3/EZ_TextInsertStringWithProperty.3.gz
+man/man3/EZ_TextKillEndOfLine.3.gz
+man/man3/EZ_TextKillRegion.3.gz
+man/man3/EZ_TextLoadAnnotatedFile.3.gz
+man/man3/EZ_TextLoadFile.3.gz
+man/man3/EZ_TextNextLine.3.gz
+man/man3/EZ_TextNextPage.3.gz
+man/man3/EZ_TextPasteSelection.3.gz
+man/man3/EZ_TextPreviousLine.3.gz
+man/man3/EZ_TextPreviousPage.3.gz
+man/man3/EZ_TextReDisplay.3.gz
+man/man3/EZ_TextReplaceRegionWithPixmap.3.gz
+man/man3/EZ_TextSaveAnnotatedText.3.gz
+man/man3/EZ_TextSaveText.3.gz
+man/man3/EZ_TextSetMarker.3.gz
+man/man3/EZ_TextSetRegionBackground.3.gz
+man/man3/EZ_TextSetRegionFont.3.gz
+man/man3/EZ_TextSetRegionForeground.3.gz
+man/man3/EZ_TextSetRegionProperty.3.gz
+man/man3/EZ_TextSetRegionUnderline.3.gz
+man/man3/EZ_TiePopupMenu.3.gz
+man/man3/EZ_TildeExpand.3.gz
+man/man3/EZ_Translate.3.gz
+man/man3/EZ_TreeAttachSubtree.3.gz
+man/man3/EZ_TreeDestroyNodeDescendants.3.gz
+man/man3/EZ_TreeDestroySubtree.3.gz
+man/man3/EZ_TreeDetachSubtree.3.gz
+man/man3/EZ_TreeFindNode.3.gz
+man/man3/EZ_TreeFindNodeUsingItem.3.gz
+man/man3/EZ_TreeNodeGetChildren.3.gz
+man/man3/EZ_TreeNodeGetItem.3.gz
+man/man3/EZ_TreeNodeGetParent.3.gz
+man/man3/EZ_TreeNodeGetSibling.3.gz
+man/man3/EZ_TreeSetBGColor.3.gz
+man/man3/EZ_TreeSetBGColorName.3.gz
+man/man3/EZ_TreeSetCharacter.3.gz
+man/man3/EZ_TreeSetFGColor.3.gz
+man/man3/EZ_TreeSetFGColorName.3.gz
+man/man3/EZ_TreeTraverseTree.3.gz
+man/man3/EZ_Tube.3.gz
+man/man3/EZ_UnFreezeWidget.3.gz
+man/man3/EZ_UngrabPointer.3.gz
+man/man3/EZ_UpdateDirTreeWidget.3.gz
+man/man3/EZ_UpdateScrollbar.3.gz
+man/man3/EZ_Vertex2f.3.gz
+man/man3/EZ_Vertex2fv.3.gz
+man/man3/EZ_Vertex3f.3.gz
+man/man3/EZ_Vertex3fv.3.gz
+man/man3/EZ_WaitAndServiceNextEvent.3.gz
+man/man3/EZ_WaitCursor.3.gz
+man/man3/EZ_WarpPointer.3.gz
+man/man3/EZ_WarpPointerToWidgetWindow.3.gz
+man/man3/EZ_WidgetAddDnDDataDecoder.3.gz
+man/man3/EZ_WidgetAddDnDDataEncoder.3.gz
+man/man3/EZ_WidgetDeleteAllDnDDataDecoders.3.gz
+man/man3/EZ_WidgetDeleteAllDnDDataEncoders.3.gz
+man/man3/EZ_WidgetDeleteDnDDataDecoder.3.gz
+man/man3/EZ_WidgetDeleteDnDDataEncoder.3.gz
+man/man3/EZ_WidgetDispatchEvent.3.gz
+man/man3/EZ_WidgetExist.3.gz
+man/man3/EZ_WidgetIsViewable.3.gz
+man/man3/EZ_WidgetMarkRuler.3.gz
+man/man3/EZ_WidgetNotifyRuler.3.gz
+man/man3/EZ_WindowIsWidgetWindow.3.gz
+man/man3/EZ_WorkAreaClear.3.gz
+man/man3/EZ_WorkAreaDeleteItem.3.gz
+man/man3/EZ_WorkAreaDeleteItemUsingIdx.3.gz
+man/man3/EZ_WorkAreaDrawItemAt.3.gz
+man/man3/EZ_WorkAreaFindItemAtXY.3.gz
+man/man3/EZ_WorkAreaGetHighlightedItems.3.gz
+man/man3/EZ_WorkAreaInsertAndDrawItemAt.3.gz
+man/man3/EZ_WorkAreaInsertItem.3.gz
+man/man3/EZ_WorkAreaInsertItemAfter.3.gz
+man/man3/EZ_WorkAreaInsertItemBefore.3.gz
+man/man3/EZ_WorkAreaInsertItemUsingIdx.3.gz
+man/man3/EZ_WorkAreaInsertItems.3.gz
+man/man3/EZ_WorkAreaRaiseItem.3.gz
+man/man3/EZ_WorkAreaRearrange.3.gz
+man/man3/EZ_WorkAreaScaleItem.3.gz
+man/man3/EZ_WorkAreaSelectItem.3.gz
+man/man3/EZ_WorkAreaSelectItemUsingIdx.3.gz
+man/man3/EZ_ZeroMatrix.3.gz