win32.* should not be in ESP32 folder

This commit is contained in:
folkert van heusden 2024-04-27 23:37:03 +02:00
parent 17843cf783
commit 48e88b49d9
Signed by untrusted user who does not match committer: folkert
GPG key ID: 6B6455EDFEED3BD1
4 changed files with 4 additions and 2 deletions

View file

@ -1 +0,0 @@
../win32.cpp

View file

@ -1 +0,0 @@
../win32.h

View file

@ -15,7 +15,9 @@
#include "error.h"
#include "log.h"
#include "utils.h"
#if defined(_WIN32)
#include "win32.h"
#endif
static const char *logfile = strdup("/tmp/kek.log");

View file

@ -19,7 +19,9 @@
#include <vector>
#include <sys/time.h>
#if defined(_WIN32)
#include "win32.h"
#endif
void setBit(uint16_t & v, const int bit, const bool vb)