1 // -*- Mode: C++; tab-width:2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2 // vi:tw=80:et:ts=2:sts=2
3 //
4 // -----------------------------------------------------------------------
5 //
6 // This file is part of RLVM, a RealLive virtual machine clone.
7 //
8 // -----------------------------------------------------------------------
9 //
10 // Copyright (C) 2013 Elliot Glaysher
11 //
12 // This program is free software; you can redistribute it and/or modify
13 // it under the terms of the GNU General Public License as published by
14 // the Free Software Foundation; either version 3 of the License, or
15 // (at your option) any later version.
16 //
17 // This program is distributed in the hope that it will be useful,
18 // but WITHOUT ANY WARRANTY; without even the implied warranty of
19 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 // GNU General Public License for more details.
21 //
22 // You should have received a copy of the GNU General Public License
23 // along with this program; if not, write to the Free Software
24 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25 // -----------------------------------------------------------------------
26 
27 #ifndef SRC_SYSTEMS_BASE_LITTLE_BUSTERS_PT00DLL_H_
28 #define SRC_SYSTEMS_BASE_LITTLE_BUSTERS_PT00DLL_H_
29 
30 #include <string>
31 
32 #include "machine/reallive_dll.h"
33 
34 // This file exists to suppress spew. Comment once at the beginning that the
35 // baseball DLL hasn't been reverse engineered and then ignore calls.
36 class LittleBustersPT00DLL : public RealLiveDLL {
37  public:
38   LittleBustersPT00DLL();
39   virtual ~LittleBustersPT00DLL();
40 
41   // Overridden from RealLiveDLL:
42   virtual int CallDLL(RLMachine& machine,
43                       int func,
44                       int arg1,
45                       int arg2,
46                       int arg3,
47                       int arg4) override;
48   virtual const std::string& GetDLLName() const override;
49 };
50 
51 #endif  // SRC_SYSTEMS_BASE_LITTLE_BUSTERS_PT00DLL_H_
52