Ultimately, I want to determine if my program works on a computer or laptop. I would like to do this with JNA and msn PowrProf lib, GetPwrCapabilities function using the LidPresent flag.
Part of the structure SYSTEM_POWER_CAPABILITIES(which is the argument to the method GetPwrCapabilities())
BYTE spare2[3];
BYTE spare3[8];
BATTERY_REPORTING_SCALE BatteryScale[3];
SYSTEM_POWER_STATE AcOnLineWake;
Listing SYSTEM_POWER_STATE:
typedef enum _SYSTEM_POWER_STATE {
PowerSystemUnspecified = 0,
PowerSystemWorking = 1,
PowerSystemSleeping1 = 2,
PowerSystemSleeping2 = 3,
PowerSystemSleeping3 = 4,
PowerSystemHibernate = 5,
PowerSystemShutdown = 6,
PowerSystemMaximum = 7
} SYSTEM_POWER_STATE, *PSYSTEM_POWER_STATE;
The listing has been described here on SO, but I'm not sure if I am doing it right because I get this error:
"main" java.lang.IllegalArgumentException: JNAPlayground $PowrProf $SYSTEM_POWER_CAPABILITIES, "AcOnLineWake", JNAPlayground $PowrProf $SYSTEM_POWER_STATE: "JNAPlayground $PowrProf $SYSTEM_POWER_STATE" : "JNAPlayground $PowrProf $SYSTEM_POWER_STATE"
:
-
- ( )
-
Java- :
public interface PowrProf extends StdCallLibrary
{
PowrProf INSTANCE = (PowrProf) Native.loadLibrary(
"C:\\WINDOWS\\system32\\PowrProf.dll", PowrProf.class);
public static interface SYSTEM_POWER_STATE
{
public static final int owerSystemUnspecified = 0;
public static final int PowerSystemWorking = 1;
public static final int PowerSystemSleeping1 = 2;
public static final int PowerSystemSleeping2 = 3;
public static final int PowerSystemSleeping3 = 4;
public static final int PowerSystemHibernate = 5;
public static final int PowerSystemShutdown = 6;
public static final int PowerSystemMaximum = 7;
}
public static class BATTERY_REPORTING_SCALE extends Structure
{
public long Granularity;
public long Capacity;
}
public static class SYSTEM_POWER_CAPABILITIES extends Structure
{
public boolean PowerButtonPresent;
public boolean SleepButtonPresent;
public boolean LidPresent;
public boolean SystemS1;
public boolean SystemS2;
public boolean SystemS3;
public boolean SystemS4;
public boolean SystemS5;
public boolean HiberFilePresent;
public boolean FullWake;
public boolean VideoDimPresent;
public boolean ApmPresent;
public boolean UpsPresent;
public boolean ThermalControl;
public boolean ProcessorThrottle;
public int ProcessorMinThrottle;
public int ProcessorMaxThrottle;
public boolean FastSystemS4;
public int spare2[] = new int[3];
public boolean DiskSpinDown;
public int spare3[] = new int[8];
public boolean SystemBatteriesPresent;
public boolean BatteriesAreShortTerm;
public BATTERY_REPORTING_SCALE BatteryScale[] = new BATTERY_REPORTING_SCALE[3];
public SYSTEM_POWER_STATE AcOnLineWake;
public SYSTEM_POWER_STATE SoftLidWake;
public SYSTEM_POWER_STATE RtcWake;
public SYSTEM_POWER_STATE MinDeviceWakeState;
public SYSTEM_POWER_STATE DefaultLowLatencyWake;
}
void GetPwrCapabilities( SYSTEM_POWER_CAPABILITIES result );
}
,
Erik