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

com.sun.jna.platform.win32.ObjBase Maven / Gradle / Ivy

There is a newer version: 5.17.0
Show newest version


/*
 * Copyright 2010 Digital Rapids Corp.
 */


/* Copyright (c) 2010 Timothy Wall, All Rights Reserved
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 */
package com.sun.jna.platform.win32;


import com.sun.jna.platform.win32.WTypes;


/**
 * Definitions from ObjBase.h
 * @author scott.palmer
 */
public interface ObjBase {


    /** The clsctx inproc. */
    int CLSCTX_INPROC = (WTypes.CLSCTX_INPROC_SERVER | WTypes.CLSCTX_INPROC_HANDLER);
    
    // With DCOM, CLSCTX_REMOTE_SERVER should be included
    /** The clsctx all. */
    int CLSCTX_ALL = (WTypes.CLSCTX_INPROC_SERVER
                      | WTypes.CLSCTX_INPROC_HANDLER
                      | WTypes.CLSCTX_LOCAL_SERVER
                      | WTypes.CLSCTX_REMOTE_SERVER);


    /** The clsctx server. */
    int CLSCTX_SERVER = (WTypes.CLSCTX_INPROC_SERVER
                         | WTypes.CLSCTX_LOCAL_SERVER
                         | WTypes.CLSCTX_REMOTE_SERVER);
}

 
 












© 2015 - 2025 Weber Informatics LLC | Privacy Policy