blob: 989495e7ec6e2705be0dbfee320be0045c338e05 [file] [log] [blame]
/********************************************************************************
* Copyright (c) 2020 Equo
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Guillermo Zunino, Equo - initial implementation
********************************************************************************/
package org.eclipse.swt.internal.chromium.lib;
import org.eclipse.swt.internal.*;
///
/// Implement this structure to receive string values asynchronously.
///
public class cef_string_visitor_t {
///
/// Base structure.
///
public cef_base_ref_counted_t base;
///
/// Method that will be executed.
///
/** @field cast=(void*) */
public long visit;
/** @field flags=no_gen */
public long ptr;
/** @field flags=no_gen */
public Callback visit_cb;
/** @field flags=no_gen */
public int refs;
public static final int sizeof = ChromiumLib.cef_string_visitor_t_sizeof();
}