~ubuntu-branches/ubuntu/trusty/manaplus/trusty

« back to all changes in this revision

Viewing changes to src/utils/physfscheckutils.h

  • Committer: Package Import Robot
  • Author(s): Patrick Matthäi
  • Date: 2013-10-07 10:26:14 UTC
  • mfrom: (1.1.11)
  • Revision ID: package-import@ubuntu.com-20131007102614-tg2zjdz8vmtl6n7i
Tags: 1.3.9.29-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *  The ManaPlus Client
 
3
 *  Copyright (C) 2013  The ManaPlus Developers
 
4
 *
 
5
 *  This file is part of The ManaPlus Client.
 
6
 *
 
7
 *  This program is free software; you can redistribute it and/or modify
 
8
 *  it under the terms of the GNU General Public License as published by
 
9
 *  the Free Software Foundation; either version 2 of the License, or
 
10
 *  any later version.
 
11
 *
 
12
 *  This program is distributed in the hope that it will be useful,
 
13
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
 *  GNU General Public License for more details.
 
16
 *
 
17
 *  You should have received a copy of the GNU General Public License
 
18
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
19
 */
 
20
 
 
21
#ifndef UTILS_PHYSFSCHECKUTILS_H
 
22
#define UTILS_PHYSFSCHECKUTILS_H
 
23
 
 
24
#include "localconsts.h"
 
25
#ifdef DEBUG_PHYSFS
 
26
 
 
27
#include <SDL.h>
 
28
 
 
29
SDL_RWops *FakePHYSFSRWOPS_openRead(const char *const name,
 
30
                                    const char *const file,
 
31
                                    const unsigned line);
 
32
 
 
33
void FakePhysFSClose(SDL_RWops *const rwops);
 
34
 
 
35
void reportPhysfsLeaks();
 
36
 
 
37
#endif  // DEBUG_PHYSFS
 
38
#endif  // UTILS_PHYSFSCHECKUTILS_H