mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
12 lines
128 B
C
12 lines
128 B
C
![]() |
#include <precomp.h>
|
||
|
#include <process.h>
|
||
|
|
||
|
/*
|
||
|
* @implemented
|
||
|
*/
|
||
|
int _getpid (void)
|
||
|
{
|
||
|
return (int)GetCurrentProcessId();
|
||
|
}
|
||
|
|