static int
tclGdDestroyCmd(Tcl_Interp * interp, int argc, Tcl_Obj * CONST objv[])
{
+ (void)interp;
+ (void)argc;
+
gdImagePtr im;
/* Get the image pointer and destroy it */
static int
tclGdColorNewCmd(Tcl_Interp * interp, gdImagePtr im, int argc, const int args[])
{
+ (void)argc;
+
int color;
color = gdImageColorAllocate(im, args[0], args[1], args[2]);
static int
tclGdColorExactCmd(Tcl_Interp * interp, gdImagePtr im, int argc, const int args[])
{
+ (void)argc;
+
int color;
color = gdImageColorExact(im, args[0], args[1], args[2]);
static int
tclGdColorClosestCmd(Tcl_Interp * interp, gdImagePtr im, int argc, const int args[])
{
+ (void)argc;
+
int color;
color = gdImageColorClosest(im, args[0], args[1], args[2]);
static int
tclGdColorResolveCmd(Tcl_Interp * interp, gdImagePtr im, int argc, const int args[])
{
+ (void)argc;
+
int color;
color = gdImageColorResolve(im, args[0], args[1], args[2]);
static int
tclGdColorFreeCmd(Tcl_Interp * interp, gdImagePtr im, int argc, const int args[])
{
+ (void)interp;
+ (void)argc;
+
gdImageColorDeallocate(im, args[0]);
return TCL_OK;
}
static int
tclGdBrushCmd(Tcl_Interp * interp, int argc, Tcl_Obj * CONST objv[])
{
+ (void)interp;
+ (void)argc;
+
gdImagePtr im, imbrush;
/* Get the image pointers. */
static int
tclGdTileCmd(Tcl_Interp * interp, int argc, Tcl_Obj * CONST objv[])
{
+ (void)interp;
+ (void)argc;
+
gdImagePtr im, tile;
/* Get the image pointers. */
static int
tclGdSetCmd(Tcl_Interp * interp, int argc, Tcl_Obj * CONST objv[])
{
+ (void)argc;
+
gdImagePtr im;
int color, x, y;
static int
tclGdLineCmd(Tcl_Interp * interp, int argc, Tcl_Obj * CONST objv[])
{
+ (void)argc;
+
gdImagePtr im;
int color, x1, y1, x2, y2;
static int
tclGdRectCmd(Tcl_Interp * interp, int argc, Tcl_Obj * CONST objv[])
{
+ (void)argc;
+
gdImagePtr im;
int color, x1, y1, x2, y2;
const char *cmd;
static int
tclGdArcCmd(Tcl_Interp * interp, int argc, Tcl_Obj * CONST objv[])
{
+ (void)argc;
+
gdImagePtr im;
int color, cx, cy, width, height, start, end;
const char *cmd;
static int
tclGdGetCmd(Tcl_Interp * interp, int argc, Tcl_Obj * CONST objv[])
{
+ (void)argc;
+
gdImagePtr im;
int color, x, y;
static int
tclGdWriteBufCmd(Tcl_Interp * interp, int argc, Tcl_Obj * CONST objv[])
{
+ (void)argc;
+
gdImagePtr im;
Tcl_Obj *output;
/* char *cmd; */