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

📄 fill.c

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

/*
 * @unimplemented
 */
GpStatus WINGDIPAPI
GdipFillRectangle(GpGraphics *graphics,
  GpBrush *brush,
  REAL x,
  REAL y,
  REAL width,
  REAL height)
{
  return NotImplemented;
}

/*
 * @unimplemented
 */
GpStatus WINGDIPAPI
GdipFillRectangleI(GpGraphics *graphics,
  GpBrush *brush,
  INT x,
  INT y,
  INT width,
  INT height)
{
  return NotImplemented;
}

/*
 * @unimplemented
 */
GpStatus WINGDIPAPI
GdipFillRectangles(GpGraphics *graphics,
  GpBrush *brush,
  GDIPCONST GpRectF *rects,
  INT count)
{
  return NotImplemented;
}

/*
 * @unimplemented
 */
GpStatus WINGDIPAPI
GdipFillRectanglesI(GpGraphics *graphics,
  GpBrush *brush,
  GDIPCONST GpRect *rects,
  INT count)
{
  return NotImplemented;
}

/*
 * @unimplemented
 */
GpStatus WINGDIPAPI
GdipFillPolygon(GpGraphics *graphics,
  GpBrush *brush,
  GDIPCONST GpPointF *points,
  INT count,
  GpFillMode fillMode)
{
  return NotImplemented;
}

/*
 * @unimplemented
 */
GpStatus WINGDIPAPI
GdipFillPolygonI(GpGraphics *graphics,
  GpBrush *brush,
  GDIPCONST GpPoint *points,
  INT count,
  GpFillMode fillMode)
{
  return NotImplemented;
}

/*
 * @unimplemented
 */
GpStatus WINGDIPAPI
GdipFillPolygon2(GpGraphics *graphics,
  GpBrush *brush,
  GDIPCONST GpPointF *points,
  INT count)
{
  return NotImplemented;
}

/*
 * @unimplemented
 */
GpStatus WINGDIPAPI
GdipFillPolygon2I(GpGraphics *graphics,
  GpBrush *brush,
  GDIPCONST GpPoint *points,
  INT count)
{
  return NotImplemented;
}

/*
 * @unimplemented
 */
GpStatus WINGDIPAPI
GdipFillEllipse(GpGraphics *graphics,
  GpBrush *brush,
  REAL x,
  REAL y,
  REAL width,
  REAL height)
{
  return NotImplemented;
}

/*
 * @unimplemented
 */
GpStatus WINGDIPAPI
GdipFillEllipseI(GpGraphics *graphics,
  GpBrush *brush,
  INT x,
  INT y,
  INT width,
  INT height)
{
  return NotImplemented;
}

/*
 * @unimplemented
 */
GpStatus WINGDIPAPI
GdipFillPie(GpGraphics *graphics,
  GpBrush *brush,
  REAL x,
  REAL y,
  REAL width,
  REAL height,
  REAL startAngle,
  REAL sweepAngle)
{
  return NotImplemented;
}

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

/*
 * @unimplemented
 */
GpStatus WINGDIPAPI
GdipFillPath(GpGraphics *graphics,
  GpBrush *brush,
  GpPath *path)
{
  return NotImplemented;
}

/*
 * @unimplemented
 */
GpStatus WINGDIPAPI
GdipFillClosedCurve(GpGraphics *graphics,
  GpBrush *brush,
  GDIPCONST GpPointF *points,
  INT count)
{
  return NotImplemented;
}

/*
 * @unimplemented
 */
GpStatus WINGDIPAPI
GdipFillClosedCurveI(GpGraphics *graphics,
  GpBrush *brush,
  GDIPCONST GpPoint *points,
  INT count)
{
  return NotImplemented;
}

/*
 * @unimplemented
 */
GpStatus WINGDIPAPI
GdipFillClosedCurve2I(GpGraphics *graphics,
  GpBrush *brush,
  GDIPCONST GpPoint *points,
  INT count,
  REAL tension,
  GpFillMode fillMode)
{
  return NotImplemented;
}

/*
 * @unimplemented
 */
GpStatus WINGDIPAPI
GdipFillRegion(GpGraphics *graphics,
  GpBrush *brush,
  GpRegion *region)
{
  return NotImplemented;
}


/*
 * @unimplemented
 */
GpStatus WINGDIPAPI
GdipCreateSolidFill(ARGB color,
  GpSolidFill **brush)
{
  return NotImplemented;
}

/*
 * @unimplemented
 */
GpStatus WINGDIPAPI
GdipSetSolidFillColor(GpSolidFill *brush,
  ARGB color)
{
  return NotImplemented;
}

/*
 * @unimplemented
 */
GpStatus WINGDIPAPI
GdipGetSolidFillColor(GpSolidFill *brush,
  ARGB *color)
{
  return NotImplemented;
}

⌨️ 快捷键说明

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