summaryrefslogtreecommitdiff
path: root/src/usvfsconnector.cpp
diff options
context:
space:
mode:
authorTannin <sherb@gmx.net>2016-02-09 20:02:58 +0100
committerTannin <sherb@gmx.net>2016-02-09 20:02:58 +0100
commit8a9a1680b0b2ba1505636ab17f498d8ce6e02c2d (patch)
tree18d78fd8a58d5e23e7cd6ef4e1768ea1a46d4d94 /src/usvfsconnector.cpp
parent1439347defff52a6cc1f75a61bbfafedd6c23b35 (diff)
code formatting (clang_format)
Diffstat (limited to 'src/usvfsconnector.cpp')
-rw-r--r--src/usvfsconnector.cpp39
1 files changed, 23 insertions, 16 deletions
diff --git a/src/usvfsconnector.cpp b/src/usvfsconnector.cpp
index 380abe01..c56482f4 100644
--- a/src/usvfsconnector.cpp
+++ b/src/usvfsconnector.cpp
@@ -17,7 +17,6 @@ You should have received a copy of the GNU General Public License
along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>.
*/
-
#include "usvfsconnector.h"
#include "settings.h"
#include <memory>
@@ -26,41 +25,49 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>.
#include <QDateTime>
#include <QCoreApplication>
-
static const char SHMID[] = "mod_organizer_instance";
-
/*
-extern "C" DLLEXPORT BOOL WINAPI VirtualLinkFile(LPCWSTR source, LPCWSTR destination, BOOL failIfExists);
-extern "C" DLLEXPORT BOOL WINAPI VirtualLinkDirectoryStatic(LPCWSTR source, LPCWSTR destination, unsigned int flags);
-extern "C" DLLEXPORT BOOL WINAPI ConnectVFS(const usvfs::Parameters *parameters);
+extern "C" DLLEXPORT BOOL WINAPI VirtualLinkFile(LPCWSTR source, LPCWSTR
+destination, BOOL failIfExists);
+extern "C" DLLEXPORT BOOL WINAPI VirtualLinkDirectoryStatic(LPCWSTR source,
+LPCWSTR destination, unsigned int flags);
+extern "C" DLLEXPORT BOOL WINAPI ConnectVFS(const usvfs::Parameters
+*parameters);
extern "C" DLLEXPORT void WINAPI DisconnectVFS();
extern "C" DLLEXPORT void WINAPI GetCurrentVFSName(char *buffer, size_t size);
extern "C" DLLEXPORT BOOL WINAPI CreateProcessHooked(LPCWSTR lpApplicationName
, LPWSTR lpCommandLine
- , LPSECURITY_ATTRIBUTES lpProcessAttributes
- , LPSECURITY_ATTRIBUTES lpThreadAttributes
+ , LPSECURITY_ATTRIBUTES
+lpProcessAttributes
+ , LPSECURITY_ATTRIBUTES
+lpThreadAttributes
, BOOL bInheritHandles
, DWORD dwCreationFlags
, LPVOID lpEnvironment
- , LPCWSTR lpCurrentDirectory
- , LPSTARTUPINFOW lpStartupInfo
- , LPPROCESS_INFORMATION lpProcessInformation
+ , LPCWSTR
+lpCurrentDirectory
+ , LPSTARTUPINFOW
+lpStartupInfo
+ , LPPROCESS_INFORMATION
+lpProcessInformation
);
extern "C" DLLEXPORT void __cdecl InitLogging(bool toLocal = false);
-extern "C" DLLEXPORT void __cdecl InitHooks(LPVOID userData, size_t userDataSize);
+extern "C" DLLEXPORT void __cdecl InitHooks(LPVOID userData, size_t
+userDataSize);
*/
-
LogWorker::LogWorker()
: m_Buffer(1024, '\0')
, m_QuitRequested(false)
, m_LogFile(qApp->property("dataPath").toString()
- + QString("/logs/usvfs-%1.log").arg(
- QDateTime::currentDateTimeUtc().toString("yyyy-MM-dd_hh-mm-ss")))
+ + QString("/logs/usvfs-%1.log")
+ .arg(QDateTime::currentDateTimeUtc().toString(
+ "yyyy-MM-dd_hh-mm-ss")))
{
m_LogFile.open(QIODevice::WriteOnly);
- qDebug("usvfs log messages are written to %s", qPrintable(m_LogFile.fileName()));
+ qDebug("usvfs log messages are written to %s",
+ qPrintable(m_LogFile.fileName()));
}
LogWorker::~LogWorker()