#include <windows.h>
#include <cstddef>
#include <iostream>
using
namespace
std;
#define DLLEXPORT __declspec(dllexport) WINAPI
extern
"C"
void
DLLEXPORT dllbyte(
const
BYTE
a) {
cout << a <<
","
<< (
int
)a << endl;
}
extern
"C"
void
DLLEXPORT dllchar(
const
char
b) {
cout << b << endl;
}