openmw/components/sqlite3/types.hpp

16 lines
215 B
C++
Raw Normal View History

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