In OS X 10.9 and below, we can get the process serial number of the current running process with:
ProcessSerialNumber pen;
GetCurrentProcess( &psn );
However, GetCurrentProcess() is now deprecated and I'm unsure how to find a process' serial number with NSRunningApplication.
to get ProcessSerialNumber you can use:
ProcessSerialNumber psn;
psn.highLongOfPSN = 0;
psn.lowLongOfPSN = kCurrentProcess;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With