cfad47cfa3/tads2/bifgdum.c
Commiter: Nikos Chantziaras
Author: Nikos Chantziaras
Revision: cfad47cfa3
File Size: 891 Bytes
(June 01, 2009 20:54 UTC) Almost 3 years ago
Initial commit.
/*
* Copyright (c) 1993, 2002 Michael J. Roberts. All Rights Reserved.
*
* Please see the accompanying license file, LICENSE.TXT, for information
* on using and copying this software.
*/
/*
Name
bifgdum.c - stubs for built-in TADS/Graphic functions
Function
provides dummy entrypoints for built-in functions specific to TADS/Graphic
Notes
None
Modified
01/11/93 MJRoberts - creation
*/
#include "os.h"
#include "bif.h"
void bifgrp(bifcxdef *ctx, int argc) {}
void bifgsp(bifcxdef *ctx, int argc) {}
void bifgsh(bifcxdef *ctx, int argc) {}
void bifgin(bifcxdef *ctx, int argc) {}
void bifgco(bifcxdef *ctx, int argc) {}
void bifgov(bifcxdef *ctx, int argc) {}
void bifgmd(bifcxdef *ctx, int argc) {}
void bifgmu(bifcxdef *ctx, int argc) {}
void bifgpa(bifcxdef *ctx, int argc) {}
void bifgef(bifcxdef *ctx, int argc) {}
void bifgsn(bifcxdef *ctx, int argc) {} |