openmw/components/sqlite3/types.hpp
jvoisin c7a3f43915 Minor header cleanup
This has been done via CLion's "unused include directive",
set to "detect completely unused".
2023-04-30 16:26:03 +02:00

13 lines
195 B
C++

#ifndef OPENMW_COMPONENTS_SQLITE3_TYPES_H
#define OPENMW_COMPONENTS_SQLITE3_TYPES_H
namespace Sqlite3
{
struct ConstBlob
{
const char* mData;
int mSize;
};
}
#endif