diff --git a/sc2/src/msvc++/UrQuanMasters.dsp b/sc2/src/msvc++/UrQuanMasters.dsp index f8bd24394..2bc1335e3 100644 --- a/sc2/src/msvc++/UrQuanMasters.dsp +++ b/sc2/src/msvc++/UrQuanMasters.dsp @@ -3500,10 +3500,6 @@ SOURCE=..\sc2code\dummy.c # End Source File # Begin Source File -SOURCE=..\sc2code\dummy.h -# End Source File -# Begin Source File - SOURCE=..\sc2code\element.h # End Source File # Begin Source File diff --git a/sc2/src/sc2code/dummy.c b/sc2/src/sc2code/dummy.c index 126bfa931..fe4eeef00 100644 --- a/sc2/src/sc2code/dummy.c +++ b/sc2/src/sc2code/dummy.c @@ -21,8 +21,6 @@ * much. */ -#include "dummy.h" - #include "coderes.h" #include "globdata.h" #include "races.h" @@ -39,13 +37,6 @@ typedef struct RACE_DESC data _ALIGNED_ANY; } CODERES_STRUCT; -MEM_HANDLE -LoadVidInstance (DWORD res) -{ - (void) res; /* Satisfying compiler (unused parameter) */ - return (0); -} - MEM_HANDLE LoadCodeResFile (PSTR pStr) { diff --git a/sc2/src/sc2code/dummy.h b/sc2/src/sc2code/dummy.h deleted file mode 100644 index 6124b57c9..000000000 --- a/sc2/src/sc2code/dummy.h +++ /dev/null @@ -1,33 +0,0 @@ -/* - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - */ - -#ifndef _DUMMY_H -#define _DUMMY_H - -#include "libs/compiler.h" -#include "libs/gfxlib.h" - -extern MEM_HANDLE LoadVidInstance (DWORD res); -extern MEM_HANDLE LoadCodeResFile (PSTR pStr); - -extern DRAWABLE CreatePixmapRegion (FRAME Frame, PPOINT lpOrg, SIZE width, - SIZE height); - -extern void SetPrimNextLink (PPRIMITIVE pPrim, COUNT Link); -extern COUNT GetPrimNextLink (PPRIMITIVE pPrim); - -#endif /* DUMMY_H */ -