mirror of
https://github.com/reactos/reactos.git
synced 2024-11-11 17:21:17 +00:00
5eb25b5c24
svn path=/branches/audio-bringup/; revision=49478
11 lines
128 B
C
11 lines
128 B
C
#include <precomp.h>
|
|
#include <process.h>
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
int _getpid (void)
|
|
{
|
|
return (int)GetCurrentProcessId();
|
|
}
|
|
|