openmw/components/sqlite3/types.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
195 B
C++
Raw Permalink Normal View History

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