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

net.east301.keyring.osx.CoreFoundationLibrary Maven / Gradle / Ivy

The newest version!
/**
 * @author  $Author: east301 $
 * @date    $Date: 2012/10/21 11:18:21 $
 * @version $Revision: fb93b8608b64 $
 */

package net.east301.keyring.osx;

import com.sun.jna.Library;
import com.sun.jna.Pointer;

/**
 * OS X CoreFoundation library
 */
interface CoreFoundationLibrary extends Library {

    public long CFStringGetLength(              // CFIndex
            Pointer theString);                 // CFStringRef

    public char CFStringGetCharacterAtIndex(    // UniChar
            Pointer theString,                  // CFStringRef
            long idx);                          // CFIndex

    public void CFRelease(                      // void
            Pointer cf);                        // CFTypeRef

} // interface CoreFoundationLibrary




© 2015 - 2024 Weber Informatics LLC | Privacy Policy