Make indentation of dix/tables.c much more consistent and readable
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Acked-by: Daniel Stone <daniel@fooishbar.org>
This commit is contained in:
parent
9f7ef7f7f0
commit
c37c65052f
297
dix/tables.c
297
dix/tables.c
|
@ -58,38 +58,140 @@ SOFTWARE.
|
||||||
#include "swaprep.h"
|
#include "swaprep.h"
|
||||||
#include "swapreq.h"
|
#include "swapreq.h"
|
||||||
|
|
||||||
int (*InitialVector[3]) (ClientPtr /* client */
|
int (*InitialVector[3]) (ClientPtr /* client */) = {
|
||||||
) = {
|
0,
|
||||||
0, ProcInitialConnection, ProcEstablishConnection};
|
ProcInitialConnection,
|
||||||
|
ProcEstablishConnection
|
||||||
|
};
|
||||||
|
|
||||||
int (*ProcVector[256]) (ClientPtr /* client */
|
int (*ProcVector[256]) (ClientPtr /* client */) = {
|
||||||
) = {
|
ProcBadRequest,
|
||||||
ProcBadRequest, ProcCreateWindow, ProcChangeWindowAttributes, ProcGetWindowAttributes, ProcDestroyWindow, ProcDestroySubwindows, /* 5 */
|
ProcCreateWindow,
|
||||||
ProcChangeSaveSet, ProcReparentWindow, ProcMapWindow, ProcMapSubwindows, ProcUnmapWindow, /* 10 */
|
ProcChangeWindowAttributes,
|
||||||
ProcUnmapSubwindows, ProcConfigureWindow, ProcCirculateWindow, ProcGetGeometry, ProcQueryTree, /* 15 */
|
ProcGetWindowAttributes,
|
||||||
ProcInternAtom, ProcGetAtomName, ProcChangeProperty, ProcDeleteProperty, ProcGetProperty, /* 20 */
|
ProcDestroyWindow,
|
||||||
ProcListProperties, ProcSetSelectionOwner, ProcGetSelectionOwner, ProcConvertSelection, ProcSendEvent, /* 25 */
|
ProcDestroySubwindows, /* 5 */
|
||||||
ProcGrabPointer, ProcUngrabPointer, ProcGrabButton, ProcUngrabButton, ProcChangeActivePointerGrab, /* 30 */
|
ProcChangeSaveSet,
|
||||||
ProcGrabKeyboard, ProcUngrabKeyboard, ProcGrabKey, ProcUngrabKey, ProcAllowEvents, /* 35 */
|
ProcReparentWindow,
|
||||||
ProcGrabServer, ProcUngrabServer, ProcQueryPointer, ProcGetMotionEvents, ProcTranslateCoords, /* 40 */
|
ProcMapWindow,
|
||||||
ProcWarpPointer, ProcSetInputFocus, ProcGetInputFocus, ProcQueryKeymap, ProcOpenFont, /* 45 */
|
ProcMapSubwindows,
|
||||||
ProcCloseFont, ProcQueryFont, ProcQueryTextExtents, ProcListFonts, ProcListFontsWithInfo, /* 50 */
|
ProcUnmapWindow, /* 10 */
|
||||||
ProcSetFontPath, ProcGetFontPath, ProcCreatePixmap, ProcFreePixmap, ProcCreateGC, /* 55 */
|
ProcUnmapSubwindows,
|
||||||
ProcChangeGC, ProcCopyGC, ProcSetDashes, ProcSetClipRectangles, ProcFreeGC, /* 60 */
|
ProcConfigureWindow,
|
||||||
ProcClearToBackground, ProcCopyArea, ProcCopyPlane, ProcPolyPoint, ProcPolyLine, /* 65 */
|
ProcCirculateWindow,
|
||||||
ProcPolySegment, ProcPolyRectangle, ProcPolyArc, ProcFillPoly, ProcPolyFillRectangle, /* 70 */
|
ProcGetGeometry,
|
||||||
ProcPolyFillArc, ProcPutImage, ProcGetImage, ProcPolyText, ProcPolyText, /* 75 */
|
ProcQueryTree, /* 15 */
|
||||||
ProcImageText8, ProcImageText16, ProcCreateColormap, ProcFreeColormap, ProcCopyColormapAndFree, /* 80 */
|
ProcInternAtom,
|
||||||
ProcInstallColormap, ProcUninstallColormap, ProcListInstalledColormaps, ProcAllocColor, ProcAllocNamedColor, /* 85 */
|
ProcGetAtomName,
|
||||||
ProcAllocColorCells, ProcAllocColorPlanes, ProcFreeColors, ProcStoreColors, ProcStoreNamedColor, /* 90 */
|
ProcChangeProperty,
|
||||||
ProcQueryColors, ProcLookupColor, ProcCreateCursor, ProcCreateGlyphCursor, ProcFreeCursor, /* 95 */
|
ProcDeleteProperty,
|
||||||
ProcRecolorCursor, ProcQueryBestSize, ProcQueryExtension, ProcListExtensions, ProcChangeKeyboardMapping, /* 100 */
|
ProcGetProperty, /* 20 */
|
||||||
ProcGetKeyboardMapping, ProcChangeKeyboardControl, ProcGetKeyboardControl, ProcBell, ProcChangePointerControl, /* 105 */
|
ProcListProperties,
|
||||||
ProcGetPointerControl, ProcSetScreenSaver, ProcGetScreenSaver, ProcChangeHosts, ProcListHosts, /* 110 */
|
ProcSetSelectionOwner,
|
||||||
ProcChangeAccessControl, ProcChangeCloseDownMode, ProcKillClient, ProcRotateProperties, ProcForceScreenSaver, /* 115 */
|
ProcGetSelectionOwner,
|
||||||
ProcSetPointerMapping, ProcGetPointerMapping, ProcSetModifierMapping, ProcGetModifierMapping, ProcBadRequest, /* 120 */
|
ProcConvertSelection,
|
||||||
ProcBadRequest, ProcBadRequest, ProcBadRequest, ProcBadRequest, ProcBadRequest, /* 125 */
|
ProcSendEvent, /* 25 */
|
||||||
ProcBadRequest,
|
ProcGrabPointer,
|
||||||
|
ProcUngrabPointer,
|
||||||
|
ProcGrabButton,
|
||||||
|
ProcUngrabButton,
|
||||||
|
ProcChangeActivePointerGrab, /* 30 */
|
||||||
|
ProcGrabKeyboard,
|
||||||
|
ProcUngrabKeyboard,
|
||||||
|
ProcGrabKey,
|
||||||
|
ProcUngrabKey,
|
||||||
|
ProcAllowEvents, /* 35 */
|
||||||
|
ProcGrabServer,
|
||||||
|
ProcUngrabServer,
|
||||||
|
ProcQueryPointer,
|
||||||
|
ProcGetMotionEvents,
|
||||||
|
ProcTranslateCoords, /* 40 */
|
||||||
|
ProcWarpPointer,
|
||||||
|
ProcSetInputFocus,
|
||||||
|
ProcGetInputFocus,
|
||||||
|
ProcQueryKeymap,
|
||||||
|
ProcOpenFont, /* 45 */
|
||||||
|
ProcCloseFont,
|
||||||
|
ProcQueryFont,
|
||||||
|
ProcQueryTextExtents,
|
||||||
|
ProcListFonts,
|
||||||
|
ProcListFontsWithInfo, /* 50 */
|
||||||
|
ProcSetFontPath,
|
||||||
|
ProcGetFontPath,
|
||||||
|
ProcCreatePixmap,
|
||||||
|
ProcFreePixmap,
|
||||||
|
ProcCreateGC, /* 55 */
|
||||||
|
ProcChangeGC,
|
||||||
|
ProcCopyGC,
|
||||||
|
ProcSetDashes,
|
||||||
|
ProcSetClipRectangles,
|
||||||
|
ProcFreeGC, /* 60 */
|
||||||
|
ProcClearToBackground,
|
||||||
|
ProcCopyArea,
|
||||||
|
ProcCopyPlane,
|
||||||
|
ProcPolyPoint,
|
||||||
|
ProcPolyLine, /* 65 */
|
||||||
|
ProcPolySegment,
|
||||||
|
ProcPolyRectangle,
|
||||||
|
ProcPolyArc,
|
||||||
|
ProcFillPoly,
|
||||||
|
ProcPolyFillRectangle, /* 70 */
|
||||||
|
ProcPolyFillArc,
|
||||||
|
ProcPutImage,
|
||||||
|
ProcGetImage,
|
||||||
|
ProcPolyText,
|
||||||
|
ProcPolyText, /* 75 */
|
||||||
|
ProcImageText8,
|
||||||
|
ProcImageText16,
|
||||||
|
ProcCreateColormap,
|
||||||
|
ProcFreeColormap,
|
||||||
|
ProcCopyColormapAndFree, /* 80 */
|
||||||
|
ProcInstallColormap,
|
||||||
|
ProcUninstallColormap,
|
||||||
|
ProcListInstalledColormaps,
|
||||||
|
ProcAllocColor,
|
||||||
|
ProcAllocNamedColor, /* 85 */
|
||||||
|
ProcAllocColorCells,
|
||||||
|
ProcAllocColorPlanes,
|
||||||
|
ProcFreeColors,
|
||||||
|
ProcStoreColors,
|
||||||
|
ProcStoreNamedColor, /* 90 */
|
||||||
|
ProcQueryColors,
|
||||||
|
ProcLookupColor,
|
||||||
|
ProcCreateCursor,
|
||||||
|
ProcCreateGlyphCursor,
|
||||||
|
ProcFreeCursor, /* 95 */
|
||||||
|
ProcRecolorCursor,
|
||||||
|
ProcQueryBestSize,
|
||||||
|
ProcQueryExtension,
|
||||||
|
ProcListExtensions,
|
||||||
|
ProcChangeKeyboardMapping, /* 100 */
|
||||||
|
ProcGetKeyboardMapping,
|
||||||
|
ProcChangeKeyboardControl,
|
||||||
|
ProcGetKeyboardControl,
|
||||||
|
ProcBell,
|
||||||
|
ProcChangePointerControl, /* 105 */
|
||||||
|
ProcGetPointerControl,
|
||||||
|
ProcSetScreenSaver,
|
||||||
|
ProcGetScreenSaver,
|
||||||
|
ProcChangeHosts,
|
||||||
|
ProcListHosts, /* 110 */
|
||||||
|
ProcChangeAccessControl,
|
||||||
|
ProcChangeCloseDownMode,
|
||||||
|
ProcKillClient,
|
||||||
|
ProcRotateProperties,
|
||||||
|
ProcForceScreenSaver, /* 115 */
|
||||||
|
ProcSetPointerMapping,
|
||||||
|
ProcGetPointerMapping,
|
||||||
|
ProcSetModifierMapping,
|
||||||
|
ProcGetModifierMapping,
|
||||||
|
ProcBadRequest, /* 120 */
|
||||||
|
ProcBadRequest,
|
||||||
|
ProcBadRequest,
|
||||||
|
ProcBadRequest,
|
||||||
|
ProcBadRequest,
|
||||||
|
ProcBadRequest, /* 125 */
|
||||||
|
ProcBadRequest,
|
||||||
ProcNoOperation,
|
ProcNoOperation,
|
||||||
ProcBadRequest,
|
ProcBadRequest,
|
||||||
ProcBadRequest,
|
ProcBadRequest,
|
||||||
|
@ -215,81 +317,140 @@ ProcBadRequest,
|
||||||
ProcBadRequest,
|
ProcBadRequest,
|
||||||
ProcBadRequest,
|
ProcBadRequest,
|
||||||
ProcBadRequest,
|
ProcBadRequest,
|
||||||
ProcBadRequest, ProcBadRequest, ProcBadRequest, ProcBadRequest};
|
ProcBadRequest,
|
||||||
|
ProcBadRequest,
|
||||||
|
ProcBadRequest,
|
||||||
|
ProcBadRequest
|
||||||
|
};
|
||||||
|
|
||||||
int (*SwappedProcVector[256]) (ClientPtr /* client */
|
int (*SwappedProcVector[256]) (ClientPtr /* client */) = {
|
||||||
) = {
|
ProcBadRequest,
|
||||||
ProcBadRequest, SProcCreateWindow, SProcChangeWindowAttributes, SProcResourceReq, /* GetWindowAttributes */
|
SProcCreateWindow,
|
||||||
|
SProcChangeWindowAttributes,
|
||||||
|
SProcResourceReq, /* GetWindowAttributes */
|
||||||
SProcResourceReq, /* DestroyWindow */
|
SProcResourceReq, /* DestroyWindow */
|
||||||
SProcResourceReq, /* 5 DestroySubwindows */
|
SProcResourceReq, /* 5 DestroySubwindows */
|
||||||
SProcResourceReq, /* SProcChangeSaveSet, */
|
SProcResourceReq, /* SProcChangeSaveSet, */
|
||||||
SProcReparentWindow, SProcResourceReq, /* MapWindow */
|
SProcReparentWindow,
|
||||||
|
SProcResourceReq, /* MapWindow */
|
||||||
SProcResourceReq, /* MapSubwindows */
|
SProcResourceReq, /* MapSubwindows */
|
||||||
SProcResourceReq, /* 10 UnmapWindow */
|
SProcResourceReq, /* 10 UnmapWindow */
|
||||||
SProcResourceReq, /* UnmapSubwindows */
|
SProcResourceReq, /* UnmapSubwindows */
|
||||||
SProcConfigureWindow, SProcResourceReq, /* SProcCirculateWindow, */
|
SProcConfigureWindow,
|
||||||
|
SProcResourceReq, /* SProcCirculateWindow, */
|
||||||
SProcResourceReq, /* GetGeometry */
|
SProcResourceReq, /* GetGeometry */
|
||||||
SProcResourceReq, /* 15 QueryTree */
|
SProcResourceReq, /* 15 QueryTree */
|
||||||
SProcInternAtom, SProcResourceReq, /* SProcGetAtomName, */
|
SProcInternAtom,
|
||||||
SProcChangeProperty, SProcDeleteProperty, SProcGetProperty, /* 20 */
|
SProcResourceReq, /* SProcGetAtomName, */
|
||||||
|
SProcChangeProperty,
|
||||||
|
SProcDeleteProperty,
|
||||||
|
SProcGetProperty, /* 20 */
|
||||||
SProcResourceReq, /* SProcListProperties, */
|
SProcResourceReq, /* SProcListProperties, */
|
||||||
SProcSetSelectionOwner, SProcResourceReq, /* SProcGetSelectionOwner, */
|
SProcSetSelectionOwner,
|
||||||
SProcConvertSelection, SProcSendEvent, /* 25 */
|
SProcResourceReq, /* SProcGetSelectionOwner, */
|
||||||
SProcGrabPointer, SProcResourceReq, /* SProcUngrabPointer, */
|
SProcConvertSelection,
|
||||||
SProcGrabButton, SProcUngrabButton, SProcChangeActivePointerGrab, /* 30 */
|
SProcSendEvent, /* 25 */
|
||||||
SProcGrabKeyboard, SProcResourceReq, /* SProcUngrabKeyboard, */
|
SProcGrabPointer,
|
||||||
SProcGrabKey, SProcUngrabKey, SProcResourceReq, /* 35 SProcAllowEvents, */
|
SProcResourceReq, /* SProcUngrabPointer, */
|
||||||
|
SProcGrabButton,
|
||||||
|
SProcUngrabButton,
|
||||||
|
SProcChangeActivePointerGrab, /* 30 */
|
||||||
|
SProcGrabKeyboard,
|
||||||
|
SProcResourceReq, /* SProcUngrabKeyboard, */
|
||||||
|
SProcGrabKey,
|
||||||
|
SProcUngrabKey,
|
||||||
|
SProcResourceReq, /* 35 SProcAllowEvents, */
|
||||||
SProcSimpleReq, /* SProcGrabServer, */
|
SProcSimpleReq, /* SProcGrabServer, */
|
||||||
SProcSimpleReq, /* SProcUngrabServer, */
|
SProcSimpleReq, /* SProcUngrabServer, */
|
||||||
SProcResourceReq, /* SProcQueryPointer, */
|
SProcResourceReq, /* SProcQueryPointer, */
|
||||||
SProcGetMotionEvents, SProcTranslateCoords, /*40 */
|
SProcGetMotionEvents,
|
||||||
SProcWarpPointer, SProcSetInputFocus, SProcSimpleReq, /* SProcGetInputFocus, */
|
SProcTranslateCoords, /*40 */
|
||||||
|
SProcWarpPointer,
|
||||||
|
SProcSetInputFocus,
|
||||||
|
SProcSimpleReq, /* SProcGetInputFocus, */
|
||||||
SProcSimpleReq, /* QueryKeymap, */
|
SProcSimpleReq, /* QueryKeymap, */
|
||||||
SProcOpenFont, /* 45 */
|
SProcOpenFont, /* 45 */
|
||||||
SProcResourceReq, /* SProcCloseFont, */
|
SProcResourceReq, /* SProcCloseFont, */
|
||||||
SProcResourceReq, /* SProcQueryFont, */
|
SProcResourceReq, /* SProcQueryFont, */
|
||||||
SProcResourceReq, /* SProcQueryTextExtents, */
|
SProcResourceReq, /* SProcQueryTextExtents, */
|
||||||
SProcListFonts, SProcListFontsWithInfo, /* 50 */
|
SProcListFonts,
|
||||||
SProcSetFontPath, SProcSimpleReq, /* GetFontPath, */
|
SProcListFontsWithInfo, /* 50 */
|
||||||
SProcCreatePixmap, SProcResourceReq, /* SProcFreePixmap, */
|
SProcSetFontPath,
|
||||||
|
SProcSimpleReq, /* GetFontPath, */
|
||||||
|
SProcCreatePixmap,
|
||||||
|
SProcResourceReq, /* SProcFreePixmap, */
|
||||||
SProcCreateGC, /* 55 */
|
SProcCreateGC, /* 55 */
|
||||||
SProcChangeGC, SProcCopyGC, SProcSetDashes, SProcSetClipRectangles, SProcResourceReq, /* 60 SProcFreeGC, */
|
SProcChangeGC,
|
||||||
SProcClearToBackground, SProcCopyArea, SProcCopyPlane, SProcPoly, /* PolyPoint, */
|
SProcCopyGC,
|
||||||
|
SProcSetDashes,
|
||||||
|
SProcSetClipRectangles,
|
||||||
|
SProcResourceReq, /* 60 SProcFreeGC, */
|
||||||
|
SProcClearToBackground,
|
||||||
|
SProcCopyArea,
|
||||||
|
SProcCopyPlane,
|
||||||
|
SProcPoly, /* PolyPoint, */
|
||||||
SProcPoly, /* 65 PolyLine */
|
SProcPoly, /* 65 PolyLine */
|
||||||
SProcPoly, /* PolySegment, */
|
SProcPoly, /* PolySegment, */
|
||||||
SProcPoly, /* PolyRectangle, */
|
SProcPoly, /* PolyRectangle, */
|
||||||
SProcPoly, /* PolyArc, */
|
SProcPoly, /* PolyArc, */
|
||||||
SProcFillPoly, SProcPoly, /* 70 PolyFillRectangle */
|
SProcFillPoly,
|
||||||
|
SProcPoly, /* 70 PolyFillRectangle */
|
||||||
SProcPoly, /* PolyFillArc, */
|
SProcPoly, /* PolyFillArc, */
|
||||||
SProcPutImage, SProcGetImage, SProcPolyText, SProcPolyText, /* 75 */
|
SProcPutImage,
|
||||||
SProcImageText, SProcImageText, SProcCreateColormap, SProcResourceReq, /* SProcFreeColormap, */
|
SProcGetImage,
|
||||||
|
SProcPolyText,
|
||||||
|
SProcPolyText, /* 75 */
|
||||||
|
SProcImageText,
|
||||||
|
SProcImageText,
|
||||||
|
SProcCreateColormap,
|
||||||
|
SProcResourceReq, /* SProcFreeColormap, */
|
||||||
SProcCopyColormapAndFree, /* 80 */
|
SProcCopyColormapAndFree, /* 80 */
|
||||||
SProcResourceReq, /* SProcInstallColormap, */
|
SProcResourceReq, /* SProcInstallColormap, */
|
||||||
SProcResourceReq, /* SProcUninstallColormap, */
|
SProcResourceReq, /* SProcUninstallColormap, */
|
||||||
SProcResourceReq, /* SProcListInstalledColormaps, */
|
SProcResourceReq, /* SProcListInstalledColormaps, */
|
||||||
SProcAllocColor, SProcAllocNamedColor, /* 85 */
|
SProcAllocColor,
|
||||||
SProcAllocColorCells, SProcAllocColorPlanes, SProcFreeColors, SProcStoreColors, SProcStoreNamedColor, /* 90 */
|
SProcAllocNamedColor, /* 85 */
|
||||||
SProcQueryColors, SProcLookupColor, SProcCreateCursor, SProcCreateGlyphCursor, SProcResourceReq, /* 95 SProcFreeCursor, */
|
SProcAllocColorCells,
|
||||||
SProcRecolorCursor, SProcQueryBestSize, SProcQueryExtension, SProcSimpleReq, /* ListExtensions, */
|
SProcAllocColorPlanes,
|
||||||
|
SProcFreeColors,
|
||||||
|
SProcStoreColors,
|
||||||
|
SProcStoreNamedColor, /* 90 */
|
||||||
|
SProcQueryColors,
|
||||||
|
SProcLookupColor,
|
||||||
|
SProcCreateCursor,
|
||||||
|
SProcCreateGlyphCursor,
|
||||||
|
SProcResourceReq, /* 95 SProcFreeCursor, */
|
||||||
|
SProcRecolorCursor,
|
||||||
|
SProcQueryBestSize,
|
||||||
|
SProcQueryExtension,
|
||||||
|
SProcSimpleReq, /* ListExtensions, */
|
||||||
SProcChangeKeyboardMapping, /* 100 */
|
SProcChangeKeyboardMapping, /* 100 */
|
||||||
SProcSimpleReq, /* GetKeyboardMapping, */
|
SProcSimpleReq, /* GetKeyboardMapping, */
|
||||||
SProcChangeKeyboardControl, SProcSimpleReq, /* GetKeyboardControl, */
|
SProcChangeKeyboardControl,
|
||||||
|
SProcSimpleReq, /* GetKeyboardControl, */
|
||||||
SProcSimpleReq, /* Bell, */
|
SProcSimpleReq, /* Bell, */
|
||||||
SProcChangePointerControl, /* 105 */
|
SProcChangePointerControl, /* 105 */
|
||||||
SProcSimpleReq, /* GetPointerControl, */
|
SProcSimpleReq, /* GetPointerControl, */
|
||||||
SProcSetScreenSaver, SProcSimpleReq, /* GetScreenSaver, */
|
SProcSetScreenSaver,
|
||||||
SProcChangeHosts, SProcSimpleReq, /* 110 ListHosts, */
|
SProcSimpleReq, /* GetScreenSaver, */
|
||||||
|
SProcChangeHosts,
|
||||||
|
SProcSimpleReq, /* 110 ListHosts, */
|
||||||
SProcSimpleReq, /* SProcChangeAccessControl, */
|
SProcSimpleReq, /* SProcChangeAccessControl, */
|
||||||
SProcSimpleReq, /* SProcChangeCloseDownMode, */
|
SProcSimpleReq, /* SProcChangeCloseDownMode, */
|
||||||
SProcResourceReq, /* SProcKillClient, */
|
SProcResourceReq, /* SProcKillClient, */
|
||||||
SProcRotateProperties, SProcSimpleReq, /* 115 ForceScreenSaver */
|
SProcRotateProperties,
|
||||||
|
SProcSimpleReq, /* 115 ForceScreenSaver */
|
||||||
SProcSimpleReq, /* SetPointerMapping, */
|
SProcSimpleReq, /* SetPointerMapping, */
|
||||||
SProcSimpleReq, /* GetPointerMapping, */
|
SProcSimpleReq, /* GetPointerMapping, */
|
||||||
SProcSimpleReq, /* SetModifierMapping, */
|
SProcSimpleReq, /* SetModifierMapping, */
|
||||||
SProcSimpleReq, /* GetModifierMapping, */
|
SProcSimpleReq, /* GetModifierMapping, */
|
||||||
ProcBadRequest, /* 120 */
|
ProcBadRequest, /* 120 */
|
||||||
ProcBadRequest, ProcBadRequest, ProcBadRequest, ProcBadRequest, ProcBadRequest, /* 125 */
|
ProcBadRequest,
|
||||||
ProcBadRequest,
|
ProcBadRequest,
|
||||||
|
ProcBadRequest,
|
||||||
|
ProcBadRequest,
|
||||||
|
ProcBadRequest, /* 125 */
|
||||||
|
ProcBadRequest,
|
||||||
SProcNoOperation,
|
SProcNoOperation,
|
||||||
ProcBadRequest,
|
ProcBadRequest,
|
||||||
ProcBadRequest,
|
ProcBadRequest,
|
||||||
|
@ -415,7 +576,11 @@ ProcBadRequest,
|
||||||
ProcBadRequest,
|
ProcBadRequest,
|
||||||
ProcBadRequest,
|
ProcBadRequest,
|
||||||
ProcBadRequest,
|
ProcBadRequest,
|
||||||
ProcBadRequest, ProcBadRequest, ProcBadRequest, ProcBadRequest};
|
ProcBadRequest,
|
||||||
|
ProcBadRequest,
|
||||||
|
ProcBadRequest,
|
||||||
|
ProcBadRequest
|
||||||
|
};
|
||||||
|
|
||||||
EventSwapPtr EventSwapVector[MAXEVENTS] = {
|
EventSwapPtr EventSwapVector[MAXEVENTS] = {
|
||||||
(EventSwapPtr) SErrorEvent,
|
(EventSwapPtr) SErrorEvent,
|
||||||
|
|
Loading…
Reference in New Issue