I am trying to develop a WinRT DLL which uses SQLite to write database.
But it seems like some win32 APIs in SQLite source code are not supported by metro, such as, LoadLibraryW, GetTempPathA.
Is there any way to compile SQLite source code or use SQLite with WinRT DLL?
LoadLibraryW,GetTempPathA,CreateFileA,CreateFileW,DeleteFileAand so on. The hardest one to port is probablyLoadLibraryW. – dalle Oct 14 '11 at 7:22