<function>
<fname>
v_create_XX
</fname>
<prototype>

#include	"v.h"

VOBJECT*
v_create_XX(
	VERROR *err,
	VWINDOW * win,
	...);

</prototype>
<explanation>
<pre>
	err	: G[^[ꍇ̃G[R[hi[ꏊ
	win	: IuWFNg𐶐EBhE
	...	: IuWFNgˑ̈
</pre>
^ꂽ̏ŁAEBhEɃIuWFNg𐶐B`B

</explanation>
<return>

AIuWFNg\́Bs0BerrɃG[R[hi[B

</return>
<details>

IuWFNgˑ͈ȉ̒ʂłB
<pre>
VOBJECT *
v_create_image(
	VERROR * err,
	VWINDOW * win,
	int	x,
	int	y,
	int	w,
	int	h);

	x,y	: C[W̍̍WiEBhEj
	w,h	: C[W̑傫Bw pixel c h pixel

VOBJECT *
v_create_text(VERROR * err,
	VWINDOW *	win,
	unsigned long   color,
	unsigned long   background,
	int             st_x,
	int             st_y,
	char *          fname,
	char *          data,
	int             length);

	color		: ̐F
	background	: ̔wiF
	st_x,st_y	: n߂X^[gW
	fname		: tHg
	data		: `敶
	length		: data̒

background > 0x1000000 łꍇAwiF͓B
</pre>
</details>
</function>

