-
Notifications
You must be signed in to change notification settings - Fork 1
/
mtm.cpp
26 lines (22 loc) · 830 Bytes
/
mtm.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/******************************************************************************
*
*
*
******************************************************************************/
#include <iostream>
#include "stuff.h"
#include "mtm.h"
/*****************************************************************************
*
* API FUNCTIONS
*
******************************************************************************/
void MTM_CALL do_great_things(transformation_t* inarray1, int size1,
transformation_t* inarray2, int size2)
{
std::cout << "hello from dll:\n"
<< "array1 @ " << inarray1 << " of size " << size1 << '\n'
<< "array2 @ " << inarray2 << " of size " << size2 << '\n'
<< "stuff : " << stuff(size1 + size2) << '\n'
<< std::flush;
}