Unneeded header removed

git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@2381 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
avolkov
2006-06-06 22:57:34 +00:00
parent 442b3cfba1
commit 66a5535ffc
3 changed files with 0 additions and 46 deletions
-4
View File
@@ -3500,10 +3500,6 @@ SOURCE=..\sc2code\dummy.c
# End Source File # End Source File
# Begin Source File # Begin Source File
SOURCE=..\sc2code\dummy.h
# End Source File
# Begin Source File
SOURCE=..\sc2code\element.h SOURCE=..\sc2code\element.h
# End Source File # End Source File
# Begin Source File # Begin Source File
-9
View File
@@ -21,8 +21,6 @@
* much. * much.
*/ */
#include "dummy.h"
#include "coderes.h" #include "coderes.h"
#include "globdata.h" #include "globdata.h"
#include "races.h" #include "races.h"
@@ -39,13 +37,6 @@ typedef struct
RACE_DESC data _ALIGNED_ANY; RACE_DESC data _ALIGNED_ANY;
} CODERES_STRUCT; } CODERES_STRUCT;
MEM_HANDLE
LoadVidInstance (DWORD res)
{
(void) res; /* Satisfying compiler (unused parameter) */
return (0);
}
MEM_HANDLE MEM_HANDLE
LoadCodeResFile (PSTR pStr) LoadCodeResFile (PSTR pStr)
{ {
-33
View File
@@ -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 */