14 lines
284 B
C++
14 lines
284 B
C++
#pragma once
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
|
|
#ifdef _WIN32
|
|
#define GLSL_BASIC_EXPORT __declspec(dllexport)
|
|
#else
|
|
#define GLSL_BASIC_EXPORT
|
|
#endif
|
|
|
|
GLSL_BASIC_EXPORT void glsl_basic();
|
|
GLSL_BASIC_EXPORT void glsl_basic_print_vector(const std::vector<std::string> &strings);
|