mirror of
https://github.com/Brychan22/Simple-DHCP-Server.git
synced 2025-02-13 08:18:56 +13:00
12 lines
189 B
C
12 lines
189 B
C
|
#pragma once
|
||
|
#include <Windows.h>
|
||
|
#include <sysinfoapi.h>
|
||
|
class Arduino
|
||
|
{
|
||
|
public:
|
||
|
static unsigned int millis() {
|
||
|
return (unsigned int)(GetTickCount64() % 0xFFFFFFFF);
|
||
|
}
|
||
|
};
|
||
|
|