rename Win32Bindings to Win32

This commit is contained in:
Doug MacEachern 2005-06-26 00:42:47 +00:00
parent c4a20457de
commit 67494670b6
6 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,6 @@
package net.hyperic.sigar.win32;
public class EventLog extends Win32Bindings {
public class EventLog extends Win32 {
int eventLogHandle = 0; // holds the event log HANDLE

View File

@ -3,7 +3,7 @@ package net.hyperic.sigar.win32;
import java.util.Collection;
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_HTTP_BASE = 2000;

View File

@ -3,7 +3,7 @@ package net.hyperic.sigar.win32;
import java.util.ArrayList;
import java.util.List;
public class Pdh extends Win32Bindings {
public class Pdh extends Win32 {
private long query = -1l; // Handle to the query
private String hostname = null;

View File

@ -3,7 +3,7 @@ package net.hyperic.sigar.win32;
import java.util.Collection;
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_CURRENT_USER = 0x80000001;

View File

@ -2,7 +2,7 @@ package net.hyperic.sigar.win32;
import java.util.List;
public class Service extends Win32Bindings {
public class Service extends Win32 {
// Service State
public static final int SERVICE_STOPPED = 0x00000001;
public static final int SERVICE_START_PENDING = 0x00000002;

View File

@ -3,7 +3,7 @@ package net.hyperic.sigar.win32;
import net.hyperic.sigar.Sigar;
import net.hyperic.sigar.SigarException;
abstract class Win32Bindings {
abstract class Win32 {
static {
try {