Very basic steam game coordinator emulation.

This commit is contained in:
Mr_Goldberg 2019-04-21 16:48:32 -04:00
parent 08a96883e7
commit e3ddc8d89f
No known key found for this signature in database
GPG key ID: 8597D87419DEF278
2 changed files with 50 additions and 4 deletions

View file

@ -47,6 +47,7 @@ EXTERN_C IMAGE_DOS_HEADER __ImageBase;
#define PRINT_DEBUG(a, ...) do {FILE *t = fopen("STEAM_LOG.txt", "a"); fprintf(t, "%u " a, GetCurrentThreadId(), __VA_ARGS__); fclose(t); WSASetLastError(0);} while (0)
#endif
#else
#include <arpa/inet.h>
#define PATH_SEPARATOR "/"
#ifndef EMU_RELEASE_BUILD
#define PRINT_DEBUG(...) {FILE *t = fopen("STEAM_LOG.txt", "a"); fprintf(t, __VA_ARGS__); fclose(t);}