14 lines
157 B
C++
14 lines
157 B
C++
#pragma once
|
|
#ifndef _NB_PROCESSES
|
|
#define _NB_PROCESSES
|
|
|
|
#include <cstdint>
|
|
|
|
namespace nb {
|
|
|
|
uint64_t GetPID();
|
|
|
|
} // namespace nb
|
|
|
|
|
|
#endif // _NB_PROCESSES
|