diff options
author | Vladimir | 2011-06-05 15:01:01 +0400 |
---|---|---|
committer | Alyssa Milburn | 2011-06-15 17:29:39 +0200 |
commit | 1f063c947b34ba9e56fabcbdf838094da80b3727 (patch) | |
tree | 900c57cc7e73c073485c2ed3c725bff28ee0c542 /engines | |
parent | 181428e65e0039179b08986c4026ab6ba54cd01c (diff) | |
download | scummvm-rg350-1f063c947b34ba9e56fabcbdf838094da80b3727.tar.gz scummvm-rg350-1f063c947b34ba9e56fabcbdf838094da80b3727.tar.bz2 scummvm-rg350-1f063c947b34ba9e56fabcbdf838094da80b3727.zip |
DREAMWEB: added stubs
Diffstat (limited to 'engines')
-rw-r--r-- | engines/dreamweb/dreamweb.cpp | 236 |
1 files changed, 236 insertions, 0 deletions
diff --git a/engines/dreamweb/dreamweb.cpp b/engines/dreamweb/dreamweb.cpp index 594357203f..9e04147d40 100644 --- a/engines/dreamweb/dreamweb.cpp +++ b/engines/dreamweb/dreamweb.cpp @@ -133,3 +133,239 @@ Common::Error DreamWebEngine::run() { } } // End of namespace DreamWeb + + +namespace dreamgen { +void randomnumber(Context &context) { + ::error("randomnumber"); +} + +void quickquit(Context &context) { + ::error("quickquit"); +} + +void quickquit2(Context &context) { + ::error("quickquit2"); +} + +void keyboardread(Context &context) { + ::error("keyboardread"); +} + +void resetkeyboard(Context &context) { + ::error("resetkeyboard"); +} + +void setkeyboardint(Context &context) { + ::error("setkeyboardint"); +} + +void readfromfile(Context &context) { + ::error("readfromfile"); +} + +void closefile(Context &context) { + ::error("closefile"); +} + +void openforsave(Context &context) { + ::error("openforsave"); +} + +void openfilenocheck(Context &context) { + ::error("openfilenocheck"); +} + +void openfile(Context &context) { + ::error("openfile"); +} + +void createfile(Context &context) { + ::error("createfile"); +} + +void dontloadseg(Context &context) { + ::error("dontloadseg"); +} + +void mousecall(Context &context) { + ::error("mousecall"); +} + +void setmouse(Context &context) { + ::error("setmouse"); +} + +void gettime(Context &context) { + ::error("gettime"); +} + +void allocatemem(Context &context) { + ::error("allocatemem"); +} + +void deallocatemem(Context &context) { + ::error("deallocatemem"); +} + +void removeemm(Context &context) { + ::error("removeemm"); +} + +void setupemm(Context &context) { + ::error("setupemm"); +} + +void pitinterupt(Context &context) { + ::error("pitinterupt"); +} + +void getridofpit(Context &context) { + ::error("getridofpit"); +} + +void setuppit(Context &context) { + ::error("setuppit"); +} + +void startdmablock(Context &context) { + ::error("startdmablock"); +} + +void dmaend(Context &context) { + ::error("dmaend"); +} + +void restoreems(Context &context) { + ::error("restoreems"); +} + +void saveems(Context &context) { + ::error("saveems"); +} + +void bothchannels(Context &context) { + ::error("bothchannels"); +} + +void channel1only(Context &context) { + ::error("channel1only"); +} + +void channel0only(Context &context) { + ::error("channel0only"); +} + +void out22c(Context &context) { + ::error("out22c"); +} + +void soundend(Context &context) { + ::error("soundend"); +} + +void interupttest(Context &context) { + ::error("interupttest"); +} + +void disablesoundint(Context &context) { + ::error("disablesoundint"); +} + +void enablesoundint(Context &context) { + ::error("enablesoundint"); +} + +void checksoundint(Context &context) { + ::error("checksoundint"); +} + +void setsoundoff(Context &context) { + ::error("setsoundoff"); +} + +void soundstartup(Context &context) { + ::error("soundstartup"); +} + +void loadsecondsample(Context &context) { + ::error("loadsecondsample"); +} + +void loadsample(Context &context) { + ::error("loadsample"); +} + +void loadspeech(Context &context) { + ::error("loadspeech"); +} + +void scanfornames(Context &context) { + ::error("scanfornames"); +} + +void saveseg(Context &context) { + ::error("saveseg"); +} + +void loadseg(Context &context) { + ::error("loadseg"); +} + +void loadposition(Context &context) { + ::error("loadposition"); +} + +void saveposition(Context &context) { + ::error("saveposition"); +} + +void error(Context &context) { + ::error("error"); +} + +void generalerror(Context &context) { + ::error("generalerror"); +} + +void dosreturn(Context &context) { + ::error("dosreturn"); +} + +void set16colpalette(Context &context) { + ::error("set16colpalette"); +} + +void mode640x480(Context &context) { + ::error("mode640x480"); +} + +void showgroup(Context &context) { + ::error("showgroup"); +} + +void fadedos(Context &context) { + ::error("fadedos"); +} + +void doshake(Context &context) { + ::error("doshake"); +} + +void vsync(Context &context) { + ::error("vsync"); +} + +void setmode(Context &context) { + ::error("setmode"); +} + +void readoneblock(Context &context) { + ::error("readoneblock"); +} + +void showpcx(Context &context) { + ::error("showpcx"); +} + +} /*namespace dreamgen */ |