mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-12 19:38:51 +00:00
trunk contents moved to root
This commit is contained in:
22
src/com/sun/jna/platform/win32/Psapi.java
Normal file
22
src/com/sun/jna/platform/win32/Psapi.java
Normal file
@@ -0,0 +1,22 @@
|
||||
/*
|
||||
* To change this template, choose Tools | Templates
|
||||
* and open the template in the editor.
|
||||
*/
|
||||
package com.sun.jna.platform.win32;
|
||||
|
||||
import com.sun.jna.Native;
|
||||
import com.sun.jna.platform.win32.WinNT.HANDLE;
|
||||
import com.sun.jna.win32.StdCallLibrary;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author petrik
|
||||
*/
|
||||
public interface Psapi extends StdCallLibrary {
|
||||
|
||||
Psapi INSTANCE = (Psapi) Native.loadLibrary("Psapi", Psapi.class);
|
||||
//For some Windows 7 Versions and older down to XP
|
||||
//boolean EnumProcesses(int[] ProcessIDsOut, int size, int[] BytesReturned);
|
||||
|
||||
int GetProcessImageFileNameW(HANDLE Process, char[] outputname, int lenght);
|
||||
}
|
||||
Reference in New Issue
Block a user