Source code of Windows XP (NT5)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
#include <windows.h> #include <ntverp.h>
#define VER_FILETYPE VFT_DLL #define VER_FILESUBTYPE VFT2_UNKNOWN #define VER_FILEDESCRIPTION_STR "OpenGL Utility Library DLL" #define VER_INTERNALNAME_STR "glu32\0"
#include "common.ver" #include "glstring.h"
STRINGTABLE PRELOAD DISCARDABLE BEGIN STR_GLU_NO_ERROR "no error" STR_GLU_INVALID_ENUM "invalid enumerant" STR_GLU_INVALID_VAL "invalid value" STR_GLU_INVALID_OP "invalid operation" STR_GLU_STACK_OVER "stack overflow" STR_GLU_STACK_UNDER "stack underflow" STR_GLU_OUT_OF_MEM "out of memory" STR_TESS_BEGIN_POLY "missing gluTessBeginPolygon" STR_TESS_BEGIN_CONTOUR "missing gluTessBeginContour" STR_TESS_END_POLY "missing gluTessEndPolygon" STR_TESS_END_CONTOUR "missing gluTessEndContour" STR_TESS_COORD_TOO_LARGE "tesselation coordinate too large" STR_TESS_NEED_COMBINE_CALLBACK "need combine callback"
STR_NURB_00 " " STR_NURB_01 "spline order un-supported" STR_NURB_02 "too few knots" STR_NURB_03 "valid knot range is empty" STR_NURB_04 "decreasing knot sequence knot" STR_NURB_05 "knot multiplicity greater than order of spline" STR_NURB_06 "endcurve() must follow bgncurve()" STR_NURB_07 "bgncurve() must precede endcurve()" STR_NURB_08 "missing or extra geometric data" STR_NURB_09 "can't draw pwlcurves" STR_NURB_10 "missing or extra domain data" STR_NURB_11 "missing or extra domain data" STR_NURB_12 "endtrim() must precede endsurface()" STR_NURB_13 "bgnsurface() must precede endsurface()" STR_NURB_14 "curve of improper type passed as trim curve" STR_NURB_15 "bgnsurface() must precede bgntrim()" STR_NURB_16 "endtrim() must follow bgntrim()" STR_NURB_17 "bgntrim() must precede endtrim()" STR_NURB_18 "invalid or missing trim curve" STR_NURB_19 "bgntrim() must precede pwlcurve()" STR_NURB_20 "pwlcurve referenced twice" STR_NURB_21 "pwlcurve and nurbscurve mixed" STR_NURB_22 "improper usage of trim data type" STR_NURB_23 "nurbscurve referenced twice" STR_NURB_24 "nurbscurve and pwlcurve mixed" STR_NURB_25 "nurbssurface referenced twice" STR_NURB_26 "invalid property" STR_NURB_27 "endsurface() must follow bgnsurface()" STR_NURB_28 "intersecting or misoriented trim curves" STR_NURB_29 "intersecting trim curves" STR_NURB_30 "UNUSED" STR_NURB_31 "unconnected trim curves" STR_NURB_32 "unknown knot error" STR_NURB_33 "negative vertex count encountered" STR_NURB_34 "negative byte-stride encounteed" STR_NURB_35 "unknown type descriptor" STR_NURB_36 "null control point reference" STR_NURB_37 "duplicate point on pwlcurve" END
|