diff --git a/PlaygroundApp/App1/App1/App1.vcxproj b/PlaygroundApp/App1/App1/App1.vcxproj index e6e1d5e..d0928fd 100644 --- a/PlaygroundApp/App1/App1/App1.vcxproj +++ b/PlaygroundApp/App1/App1/App1.vcxproj @@ -83,8 +83,8 @@ %(AdditionalOptions) /bigobj - Comdlg32.lib;%(AdditionalDependencies) - Comdlg32.dll;%(DelayLoadDLLs) + Comdlg32.lib;winsqlite3.lib;%(AdditionalDependencies) + Comdlg32.dll;winsqlite3.dll;%(DelayLoadDLLs) diff --git a/PlaygroundApp/App1/App1/TestSqliteDatabase.cpp b/PlaygroundApp/App1/App1/TestSqliteDatabase.cpp new file mode 100644 index 0000000..a34d730 --- /dev/null +++ b/PlaygroundApp/App1/App1/TestSqliteDatabase.cpp @@ -0,0 +1,10 @@ +#include "pch.h" +#include "TestSqliteDatabase.h" + +namespace Playground +{ + bool TestSqliteDatabase::Connect() + { + + } +} diff --git a/PlaygroundApp/App1/App1/TestSqliteDatabase.h b/PlaygroundApp/App1/App1/TestSqliteDatabase.h new file mode 100644 index 0000000..91ea8d2 --- /dev/null +++ b/PlaygroundApp/App1/App1/TestSqliteDatabase.h @@ -0,0 +1,16 @@ +#pragma once + +#include "DebugLog.h" + +namespace Playground +{ + struct TestSqliteDatabase + { + TestSqliteDatabase() = default; + + bool Connect(); + + private: + std::unique_ptr m_db; + }; +}