summaryrefslogtreecommitdiff
path: root/mk/symbian/mod.cpp
blob: 0ccbe2d5b287d77a5719ae039d05bbf3e48e0584 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/**
 * @file mod.cpp  Module wrapper for Symbian OS
 *
 * Copyright (C) 2010 Creytiv.com
 */
#include <e32def.h>
#include <e32std.h>
#include <re_types.h>
#include <re_mod.h>

extern "C" {
	extern const struct mod_export exports;
}


EXPORT_C void *NewModule()
{
	return (void *)&exports;
}