git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@931 626c5289-ae23-0410-ae9c-e8d60b6d4f22
14 lines
186 B
C++
14 lines
186 B
C++
extern "C" {
|
|
#include "wad.h"
|
|
}
|
|
|
|
/* This is a sick hack to force initialization upon loading */
|
|
|
|
class StartDebug {
|
|
public:
|
|
StartDebug() {
|
|
wad_init();
|
|
}
|
|
};
|
|
|
|
static StartDebug s;
|