📄 arrow.c
字号:
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -