Package com.ms.com Previous
Previous
Contents
Contents
Index
Index
Next
Next

Class ComContext

Fields

public class ComContext {
  // Fields
  public static final int INPROC_SERVER = 0x01;
  public static final int INPROC_HANDLER = 0x02;
  public static final int LOCAL_SERVER = 0x04;
  public static final int INPROC_SERVER16 = 0x08;
  public static final int REMOTE_SERVER = 0x10;
  public static final int INPROC_HANDLER16 = 0x20;
  public static final int INPROC_SERVERX86 = 0x40;
  public static final int INPROC_HANDLERX86 = 0x80;
}

The ComContext class defines constants for use with the ILicenseMgr interface.


Fields

Each of the following constants specifies a context that a Component Object Module (COM) class is run in.

INPROC_SERVER = 0x01;
Server DLL (runs in same process as caller)
INPROC_HANDLER = 0x02;
Handler DLL (runs in same process as caller)
LOCAL_SERVER = 0x04;
Server EXE (runs on same machine, different process)
INPROC_SERVER16 = 0x08;
16-bit server DLL (runs in same process as caller)
REMOTE_SERVER = 0x10;
Remote server EXE (runs on different computer)
INPROC_HANDLER16 = 0x20;
16-bit handler DLL (runs in same process as caller)
INPROC_SERVERX86 = 0x40;
Wx86 server DLL (runs in same process as caller)
INPROC_HANDLERX86 = 0x80;
Wx86 handler DLL (runs in same process as caller)


Top© 1997 Microsoft Corporation. All rights reserved. Legal Notices.