rename Win32Bindings to Win32
This commit is contained in:
parent
c4a20457de
commit
67494670b6
|
@ -1,6 +1,6 @@
|
||||||
package net.hyperic.sigar.win32;
|
package net.hyperic.sigar.win32;
|
||||||
|
|
||||||
public class EventLog extends Win32Bindings {
|
public class EventLog extends Win32 {
|
||||||
|
|
||||||
int eventLogHandle = 0; // holds the event log HANDLE
|
int eventLogHandle = 0; // holds the event log HANDLE
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@ package net.hyperic.sigar.win32;
|
||||||
import java.util.Collection;
|
import java.util.Collection;
|
||||||
import java.util.Vector;
|
import java.util.Vector;
|
||||||
|
|
||||||
public class MetaBase extends Win32Bindings
|
public class MetaBase extends Win32
|
||||||
{
|
{
|
||||||
private static int IIS_MD_SERVER_BASE = 1000;
|
private static int IIS_MD_SERVER_BASE = 1000;
|
||||||
private static int IIS_MD_HTTP_BASE = 2000;
|
private static int IIS_MD_HTTP_BASE = 2000;
|
||||||
|
|
|
@ -3,7 +3,7 @@ package net.hyperic.sigar.win32;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
public class Pdh extends Win32Bindings {
|
public class Pdh extends Win32 {
|
||||||
|
|
||||||
private long query = -1l; // Handle to the query
|
private long query = -1l; // Handle to the query
|
||||||
private String hostname = null;
|
private String hostname = null;
|
||||||
|
|
|
@ -3,7 +3,7 @@ package net.hyperic.sigar.win32;
|
||||||
import java.util.Collection;
|
import java.util.Collection;
|
||||||
import java.util.Vector;
|
import java.util.Vector;
|
||||||
|
|
||||||
public class RegistryKey extends Win32Bindings
|
public class RegistryKey extends Win32
|
||||||
{
|
{
|
||||||
private static final int HKEY_CLASSES_ROOT = 0x80000000;
|
private static final int HKEY_CLASSES_ROOT = 0x80000000;
|
||||||
private static final int HKEY_CURRENT_USER = 0x80000001;
|
private static final int HKEY_CURRENT_USER = 0x80000001;
|
||||||
|
|
|
@ -2,7 +2,7 @@ package net.hyperic.sigar.win32;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
public class Service extends Win32Bindings {
|
public class Service extends Win32 {
|
||||||
// Service State
|
// Service State
|
||||||
public static final int SERVICE_STOPPED = 0x00000001;
|
public static final int SERVICE_STOPPED = 0x00000001;
|
||||||
public static final int SERVICE_START_PENDING = 0x00000002;
|
public static final int SERVICE_START_PENDING = 0x00000002;
|
||||||
|
|
|
@ -3,7 +3,7 @@ package net.hyperic.sigar.win32;
|
||||||
import net.hyperic.sigar.Sigar;
|
import net.hyperic.sigar.Sigar;
|
||||||
import net.hyperic.sigar.SigarException;
|
import net.hyperic.sigar.SigarException;
|
||||||
|
|
||||||
abstract class Win32Bindings {
|
abstract class Win32 {
|
||||||
|
|
||||||
static {
|
static {
|
||||||
try {
|
try {
|
Loading…
Reference in New Issue