[RAPPS] Add support for a rapps db with the file:/// scheme

This makes it easier to test locally
This commit is contained in:
Mark Jansen 2020-09-06 23:13:21 +02:00
parent a7c1f9a014
commit 4f25a47677
No known key found for this signature in database
GPG key ID: B39240EE84BEAE8B
3 changed files with 40 additions and 9 deletions

View file

@ -58,3 +58,9 @@ INT GetSystemColorDepth();
void UnixTimeToFileTime(DWORD dwUnixTime, LPFILETIME pFileTime);
BOOL SearchPatternMatch(LPCWSTR szHaystack, LPCWSTR szNeedle);
template<class T>
class CLocalPtr : public CHeapPtr<T, CLocalAllocator>
{
};