All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jnr.posix.WindowsChildRecord Maven / Gradle / Ivy

There is a newer version: 0.3.1
Show newest version
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package jnr.posix;

import jnr.ffi.Struct.Pointer;

/**
 *
 * @author enebo
 */
public class WindowsChildRecord {
    private Pointer process;
    int pid;

    public WindowsChildRecord(Pointer process, int pid) {
        this.process = process;
        this.pid = pid;
    }
    
    public Pointer getProcess() {
        return process;
    }
    
    public int getPid() {
        return pid;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy