Klasse Ddeml.MONHSZSTRUCT

java.lang.Object
com.sun.jna.Structure
com.sun.jna.platform.win32.Ddeml.MONHSZSTRUCT
Umschließende Schnittstelle:
Ddeml

@FieldOrder({"cb","fsAction","dwTime","hsz","hTask","str"}) public static class Ddeml.MONHSZSTRUCT extends Structure
Contains information about a Dynamic Data Exchange (DDE) string handle. A DDE monitoring application can use this structure when monitoring the activity of the string manager component of the DDE Management Library.
  • Felddetails

    • cb

      public int cb
      The structure's size, in bytes.
    • fsAction

      public int fsAction
      The action being performed on the string identified by the hsz member.
      ValueMeaning
      MH_CLEANUP (4) An application is freeing its DDE resources, causing the system to delete string handles the application had created. (The application called the Ddeml.DdeUninitialize(int) function.)
      MH_CREATE (1) An application is creating a string handle. (The application called the Ddeml.DdeCreateStringHandle(int, java.lang.String, int) function.)
      MH_DELETE (3) An application is deleting a string handle. (The application called the Ddeml.DdeFreeStringHandle(int, com.sun.jna.platform.win32.Ddeml.HSZ) function.)
      MH_KEEP (2) An application is increasing the usage count of a string handle. (The application called the Ddeml.DdeKeepStringHandle(int, com.sun.jna.platform.win32.Ddeml.HSZ) function.)
    • dwTime

      public int dwTime
      The Windows time at which the action specified by the fsAction member takes place. Windows time is the number of milliseconds that have elapsed since the system was booted.
    • hsz

      public Ddeml.HSZ hsz
      A handle to the string. Because string handles are local to the process, this member is a global atom.
    • hTask

      public WinNT.HANDLE hTask
      A handle to the task (application instance) performing the action on the string handle.
    • str

      public byte[] str
      String identified by the hsz member.
  • Konstruktordetails

    • MONHSZSTRUCT

      public MONHSZSTRUCT()
  • Methodendetails

    • write

      public void write()
      Beschreibung aus Klasse kopiert: Structure
      Writes the fields of the struct to native memory
      Setzt außer Kraft:
      write in Klasse Structure
    • read

      public void read()
      Beschreibung aus Klasse kopiert: Structure
      Reads the fields of the struct from native memory
      Setzt außer Kraft:
      read in Klasse Structure
    • getStr

      public String getStr()