connectivity/com.nokia.carbide.remoteConnections.discovery.pccs/src/com/nokia/carbide/remoteconnections/discovery/pccs/pccsnative/CONAPI_MEDIA.java
changeset 868 089762ea5b6d
child 941 e90e6ea44529
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/connectivity/com.nokia.carbide.remoteConnections.discovery.pccs/src/com/nokia/carbide/remoteconnections/discovery/pccs/pccsnative/CONAPI_MEDIA.java	Mon Feb 01 15:42:48 2010 -0600
@@ -0,0 +1,80 @@
+/*
+* Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of the License "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description: 
+*
+*/
+package com.nokia.carbide.remoteconnections.discovery.pccs.pccsnative;
+
+import com.sun.jna.Structure;
+
+/**
+ * This file was originally autogenerated by <a href="http://jnaerator.googlecode.com/">JNAerator</a>,<br>
+ * but then modified for Carbide.
+ */
+public class CONAPI_MEDIA extends Structure {
+	/// Must be sizeof(CONAPI_MEDIA)
+	public int dwSize;
+	/// Media type
+	public int dwMedia;
+	/**
+	 * Media name<br>
+	 * C type : WCHAR*
+	 */
+	public com.sun.jna.ptr.ShortByReference pstrDescription;
+	/// Media state. CONAPI_MEDIA_ACTIVE or CONAPI_MEDIA_NOT_ACTIVE
+	public int dwState;
+	/// Media options
+	public int dwOptions;
+	/// Media specific data
+	public int dwMediaData;
+	/**
+	 * Media ID string<br>
+	 * C type : WCHAR*
+	 */
+	public com.sun.jna.ptr.ShortByReference pstrID;
+	public CONAPI_MEDIA() {
+		super();
+	}
+	/**
+	 * @param dwSize Must be sizeof(CONAPI_MEDIA)<br>
+	 * @param dwMedia Media type<br>
+	 * @param pstrDescription Media name<br>
+	 * C type : WCHAR*<br>
+	 * @param dwState Media state. CONAPI_MEDIA_ACTIVE or CONAPI_MEDIA_NOT_ACTIVE<br>
+	 * @param dwOptions Media options<br>
+	 * @param dwMediaData Media specific data<br>
+	 * @param pstrID Media ID string<br>
+	 * C type : WCHAR*
+	 */
+	public CONAPI_MEDIA(int dwSize, int dwMedia, com.sun.jna.ptr.ShortByReference pstrDescription, int dwState, int dwOptions, int dwMediaData, com.sun.jna.ptr.ShortByReference pstrID) {
+		super();
+		this.dwSize = dwSize;
+		this.dwMedia = dwMedia;
+		this.pstrDescription = pstrDescription;
+		this.dwState = dwState;
+		this.dwOptions = dwOptions;
+		this.dwMediaData = dwMediaData;
+		this.pstrID = pstrID;
+	}
+	protected ByReference newByReference() { return new ByReference(); }
+	protected ByValue newByValue() { return new ByValue(); }
+	protected CONAPI_MEDIA newInstance() { return new CONAPI_MEDIA(); }
+	public static CONAPI_MEDIA[] newArray(int arrayLength) {
+		return null;
+//			return com.ochafik.lang.jnaerator.runtime.Structure.newArray(CONAPI_MEDIA.class, arrayLength);
+	}
+	public static class ByReference extends CONAPI_MEDIA implements com.sun.jna.Structure.ByReference {}
+	public static class ByValue extends CONAPI_MEDIA implements com.sun.jna.Structure.ByValue {}
+
+}