Examples of OleFunctionDescription


Examples of org.eclipse.swt.ole.win32.OleFunctionDescription

    }
    System.out.println();

    System.out.println("Methods:");

    OleFunctionDescription funcDesc;
    for (int i = 0; (funcDesc = oleAutomation.getFunctionDescription(i)) != null; i++) {
      System.out.print(funcDesc.name);
      System.out.print("(");
      for (int j = 0; j < funcDesc.args.length; j++) {
        OleParameterDescription parmDesc = funcDesc.args[j];
View Full Code Here

Examples of org.eclipse.swt.ole.win32.OleFunctionDescription

  private static class CMN_dumpOleInterfaceDefinitions extends ControlCommandMessage {
    private void dumpOleInterfaceDefinitions(StringBuilder sb, OleAutomation automation, int index) {
      List<OleFunctionDescription> functionList = new ArrayList<OleFunctionDescription>();
      for(int i=0; ; i++) {
        OleFunctionDescription functionDescription = automation.getFunctionDescription(i);
        if(functionDescription == null) {
          break;
        }
        functionList.add(functionDescription);
      }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.