1 #include <precomp.h> 2 #include <process.h> 3 4 /* 5 * @implemented 6 */ _getpid(void)7 int _getpid (void) 8 { 9 return (int)GetCurrentProcessId(); 10 } 11 12