Current News
Archived News
Search News
Discussion Forum


Old Forum
Install Programs More Downloads...
Troubleshooting
Source Code
Format Specs.
Misc. Information
Non-SF Stuff
Links




CommitLineData
7df24e1f 1/*
2
4f5a1ae2 3 ShadowFlare MPQ Static Library. (c) ShadowFlare Software 2002-2010
7df24e1f 4 License information for this code is in license.txt
5
6*/
7
8#ifndef SHADOWFLARE_MPQ_LIB_INCLUDED
9#define SHADOWFLARE_MPQ_LIB_INCLUDED
10
11#ifndef SFMPQ_STATIC
12#define SFMPQ_STATIC
13#endif
14
15#include "SFmpqapi.h"
16
17#ifdef __cplusplus
18extern "C" {
19#endif
20
21// These no longer need to be called. They are only provided for
22// compatibility with older versions of this static library
23void LoadSFMpq();
24void FreeSFMpq();
25
26#ifdef __cplusplus
27}; // extern "C"
28#endif
29
30#endif
31