⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 draw.c

📁 winNT技术操作系统,国外开放的原代码和LIUX一样
💻 C
字号:
#include <windows.h>
#include <gdiplusprivate.h>
#include <debug.h>

/*
 * @unimplemented
 */
GpStatus WINGDIPAPI
GdipDrawLine(GpGraphics *graphics,
  GpPen *pen,
  REAL x1,
  REAL y1,
  REAL x2,
  REAL y2)
{
  return NotImplemented;
}

/*
 * @unimplemented
 */
GpStatus WINGDIPAPI
GdipDrawLineI(GpGraphics *graphics,
  GpPen *pen,
  INT x1,
  INT y1,
  INT x2,
  INT y2)
{
  return NotImplemented;
}

/*
 * @unimplemented
 */
GpStatus WINGDIPAPI
GdipDrawLines(GpGraphics *graphics,
  GpPen *pen,
  GDIPCONST GpPointF *points,
  INT count)
{
  return NotImplemented;
}

/*
 * @unimplemented
 */
GpStatus WINGDIPAPI
GdipDrawLinesI(GpGraphics *graphics,
  GpPen *pen,
  GDIPCONST GpPoint *points,
  INT count)
{
  return NotImplemented;
}

/*
 * @unimplemented
 */
GpStatus WINGDIPAPI
GdipDrawArc(GpGraphics *graphics,
  GpPen *pen,
  REAL x,
  REAL y,
  REAL width,
  REAL height,
  REAL startAngle,
  REAL sweepAngle)
{
  return NotImplemented;
}

/*
 * @unimplemented
 */
GpStatus WINGDIPAPI
GdipDrawArcI(GpGraphics *graphics,
  GpPen *pen,
  INT x,
  INT y,
  INT width,
  INT height,
  REAL startAngle,
  REAL sweepAngle)
{
  return NotImplemented;
}

/*
 * @unimplemented
 */
GpStatus WINGDIPAPI
GdipDrawBezier(GpGraphics *graphics,
  GpPen *pen,
  REAL x1,
  REAL y1,
  REAL x2,
  REAL y2,
  REAL x3,
  REAL y3,
  REAL x4,
  REAL y4)
{
  return NotImplemented;
}

/*
 * @unimplemented
 */
GpStatus WINGDIPAPI
GdipDrawBezierI(GpGraphics *graphics,
  GpPen *pen,
  INT x1,
  INT y1,
  INT x2,
  INT y2,
  INT x3,
  INT y3,
  INT x4,
  INT y4)
{
  return NotImplemented;
}

/*
 * @unimplemented
 */
GpStatus WINGDIPAPI
GdipDrawBeziers(GpGraphics *graphics,
  GpPen *pen,
  GDIPCONST GpPointF *points,
  INT count)
{
  return NotImplemented;
}

/*
 * @unimplemented
 */
GpStatus WINGDIPAPI
GdipDrawBeziersI(GpGraphics *graphics,
  GpPen *pen,
  GDIPCONST GpPoint *points,
  INT count)
{
  return NotImplemented;
}

/*
 * @unimplemented
 */
GpStatus WINGDIPAPI
GdipDrawRectangle(GpGraphics *graphics,
  GpPen *pen,
  REAL x,
  REAL y,
  REAL width,
  REAL height)
{
  return NotImplemented;
}

/*
 * @unimplemented
 */
GpStatus WINGDIPAPI
GdipDrawRectangleI(GpGraphics *graphics,
  GpPen *pen,
  INT x,
  INT y,
  INT width,
  INT height)
{
  return NotImplemented;
}

/*
 * @unimplemented
 */
GpStatus WINGDIPAPI
GdipDrawRectangles(GpGraphics *graphics,
  GpPen *pen,
  GDIPCONST GpRectF *rects,
  INT count)
{
  return NotImplemented;
}

/*
 * @unimplemented
 */
GpStatus WINGDIPAPI
GdipDrawRectanglesI(GpGraphics *graphics,
  GpPen *pen,
  GDIPCONST GpRect *rects,
  INT count)
{
  return NotImplemented;
}

/*
 * @unimplemented
 */
GpStatus WINGDIPAPI
GdipDrawEllipse(GpGraphics *graphics,
  GpPen *pen,
  REAL x,
  REAL y,
  REAL width,
  REAL height)
{
  return NotImplemented;
}

/*
 * @unimplemented
 */
GpStatus WINGDIPAPI
GdipDrawEllipseI(GpGraphics *graphics,
  GpPen *pen,
  INT x,
  INT y,
  INT width,
  INT height)
{
  return NotImplemented;
}

/*
 * @unimplemented
 */
GpStatus WINGDIPAPI
GdipDrawPie(GpGraphics *graphics,
  GpPen *pen,
  REAL x,
  REAL y,
  REAL width,
  REAL height,
  REAL startAngle,
  REAL sweepAngle)
{
  return NotImplemented;
}

/*
 * @unimplemented
 */
GpStatus WINGDIPAPI
GdipDrawPieI(GpGraphics *graphics,
  GpPen *pen,
  INT x,
  INT y,
  INT width,
  INT height,
  REAL startAngle,
  REAL sweepAngle)
{
  return NotImplemented;
}

/*
 * @unimplemented
 */
GpStatus WINGDIPAPI
GdipDrawPolygon(GpGraphics *graphics,
  GpPen *pen,
  GDIPCONST GpPointF *points,
  INT count)
{
  return NotImplemented;
}

/*
 * @unimplemented
 */
GpStatus WINGDIPAPI
GdipDrawPolygonI(GpGraphics *graphics,
  GpPen *pen,
  GDIPCONST GpPoint *points,
  INT count)
{
  return NotImplemented;
}

/*
 * @unimplemented
 */
GpStatus WINGDIPAPI
GdipDrawPath(GpGraphics *graphics,
  GpPen *pen,
  GpPath *path)
{
  return NotImplemented;
}

/*
 * @unimplemented
 */
GpStatus WINGDIPAPI
GdipDrawCurve(GpGraphics *graphics,
  GpPen *pen,
  GDIPCONST GpPointF *points,
  INT count)
{
  return NotImplemented;
}

/*
 * @unimplemented
 */
GpStatus WINGDIPAPI
GdipDrawCurveI(GpGraphics *graphics,
  GpPen *pen,
  GDIPCONST GpPoint *points,
  INT count)
{
  return NotImplemented;
}

GpStatus WINGDIPAPI GdipDrawCurve2(GpGraphics *graphics,
  GpPen *pen,
  GDIPCONST GpPointF *points,
  INT count,
  REAL tension)
{
  return NotImplemented;
}

/*
 * @unimplemented
 */
GpStatus WINGDIPAPI
GdipDrawCurve2I(GpGraphics *graphics,
  GpPen *pen,
  GDIPCONST GpPoint *points,
  INT count,
  REAL tension)
{
  return NotImplemented;
}

/*
 * @unimplemented
 */
GpStatus WINGDIPAPI
GdipDrawCurve3(GpGraphics *graphics,
  GpPen *pen,
  GDIPCONST GpPointF *points,
  INT count,
  INT offset,
  INT numberOfSegments,
  REAL tension)
{
  return NotImplemented;
}

/*
 * @unimplemented
 */
GpStatus WINGDIPAPI
GdipDrawCurve3I(GpGraphics *graphics,
  GpPen *pen,
  GDIPCONST GpPoint *points,
  INT count,
  INT offset,
  INT numberOfSegments,
  REAL tension)
{
  return NotImplemented;
}

/*
 * @unimplemented
 */
GpStatus WINGDIPAPI
GdipDrawClosedCurve(GpGraphics *graphics,
  GpPen *pen,
  GDIPCONST GpPointF *points,
  INT count)
{
  return NotImplemented;
}

/*
 * @unimplemented
 */
GpStatus WINGDIPAPI
GdipDrawClosedCurveI(GpGraphics *graphics,
  GpPen *pen,
  GDIPCONST GpPoint *points,
  INT count)
{
  return NotImplemented;
}

/*
 * @unimplemented
 */
GpStatus WINGDIPAPI
GdipDrawClosedCurve2(GpGraphics *graphics,
  GpPen *pen,
  GDIPCONST GpPointF *points,
  INT count,
  REAL tension)
{
  return NotImplemented;
}

/*
 * @unimplemented
 */
GpStatus WINGDIPAPI
GdipDrawClosedCurve2I(GpGraphics *graphics,
  GpPen *pen,
  GDIPCONST GpPoint *points,
  INT count,
  REAL tension)
{
  return NotImplemented;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -