arrow.c
来自「一个类似windows」· C语言 代码 · 共 91 行
C
91 行
#include <windows.h>
#include <gdiplusprivate.h>
#include <debug.h>
/*
* @unimplemented
*/
GpStatus WINGDIPAPI
GdipCreateAdjustableArrowCap(REAL height,
REAL width,
BOOL isFilled,
GpAdjustableArrowCap **cap)
{
return NotImplemented;
}
/*
* @unimplemented
*/
GpStatus WINGDIPAPI
GdipSetAdjustableArrowCapHeight(GpAdjustableArrowCap* cap,
REAL height)
{
return NotImplemented;
}
/*
* @unimplemented
*/
GpStatus WINGDIPAPI
GdipGetAdjustableArrowCapHeight(GpAdjustableArrowCap* cap, REAL* height)
{
return NotImplemented;
}
/*
* @unimplemented
*/
GpStatus WINGDIPAPI
GdipSetAdjustableArrowCapWidth(GpAdjustableArrowCap* cap,
REAL width)
{
return NotImplemented;
}
/*
* @unimplemented
*/
GpStatus WINGDIPAPI GdipGetAdjustableArrowCapWidth(GpAdjustableArrowCap* cap,
REAL* width)
{
return NotImplemented;
}
/*
* @unimplemented
*/
GpStatus WINGDIPAPI GdipSetAdjustableArrowCapMiddleInset(GpAdjustableArrowCap* cap,
REAL middleInset)
{
return NotImplemented;
}
/*
* @unimplemented
*/
GpStatus WINGDIPAPI GdipGetAdjustableArrowCapMiddleInset(GpAdjustableArrowCap* cap,
REAL* middleInset)
{
return NotImplemented;
}
/*
* @unimplemented
*/
GpStatus WINGDIPAPI GdipSetAdjustableArrowCapFillState(GpAdjustableArrowCap* cap,
BOOL fillState)
{
return NotImplemented;
}
/*
* @unimplemented
*/
GpStatus WINGDIPAPI
GdipGetAdjustableArrowCapFillState(GpAdjustableArrowCap* cap,
BOOL* fillState)
{
return NotImplemented;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?