added updated windows version

This commit is contained in:
lostjared
2018-09-25 17:31:49 -07:00
parent e700a81897
commit 1c6e000880
75 changed files with 20733 additions and 14 deletions

View File

@@ -0,0 +1,19 @@
#include<iostream>
#if defined(__linux__) || defined(__APPLE__)
#define EXPORT_FUNC
#define CDECL
#else
#define EXPORT_FUNC __declspec(dllexport)
#define CDECL __cdecl
#endif
extern "C" EXPORT_FUNC void CDECL pixel(int x, int y, unsigned char *rgb) {
rgb[0] = rgb[1] = rgb[2] = 0;
}
extern "C" EXPORT_FUNC void CDECL complete() {
}