mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-04-28 21:07:59 +03:00
14 lines
195 B
C++
14 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
|