mirror of
https://github.com/netchx/netch.git
synced 2026-03-18 18:13:21 +08:00
11 lines
205 B
C
11 lines
205 B
C
#pragma once
|
|
#ifndef UTILS_H
|
|
#define UTILS_H
|
|
#include <Windows.h>
|
|
|
|
DWORD GetCPUCount();
|
|
USHORT IPv4Checksum(PBYTE buffer, ULONG64 size);
|
|
USHORT ICMPChecksum(PBYTE buffer, ULONG64 size);
|
|
|
|
#endif
|