blob: a96761a72b80d578c5068aea686566f2e2b6f902 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/** \file
* \brief Dummy WMF
*
* See Copyright Notice in cd.h
*/
#include <stdlib.h>
#include "cd.h"
#include "cdwmf.h"
cdContext* cdContextWMF(void)
{
return NULL;
}
|