diff -r a39c7d184f5d -r e3fac3e42c4a connectivity/com.nokia.carbide.remoteConnections.discovery.pccs/src/com/nokia/carbide/remoteconnections/discovery/pccs/pccsnative/ConnAPILibrary.java --- a/connectivity/com.nokia.carbide.remoteConnections.discovery.pccs/src/com/nokia/carbide/remoteconnections/discovery/pccs/pccsnative/ConnAPILibrary.java Tue Feb 23 14:37:14 2010 -0600 +++ b/connectivity/com.nokia.carbide.remoteConnections.discovery.pccs/src/com/nokia/carbide/remoteconnections/discovery/pccs/pccsnative/ConnAPILibrary.java Wed Feb 24 10:30:17 2010 -0600 @@ -25,10 +25,11 @@ import com.nokia.carbide.remoteconnections.discovery.pccs.Activator; import com.nokia.carbide.remoteconnections.discovery.pccs.Messages; -//import com.nokia.carbide.remoteconnections.discovery.pccs.pccsnative.CONAPI_MEDIA.ByReference; import com.sun.jna.Native; +import com.sun.jna.Pointer; import com.sun.jna.WString; import com.sun.jna.ptr.IntByReference; +import com.sun.jna.ptr.PointerByReference; public class ConnAPILibrary implements IConnAPILibrary { @@ -134,13 +135,27 @@ // TODO Auto-generated method stub return 0; } + public int CONAMMFreeMediaStructures(int dwCountOfMedia, Pointer pMedia) { + // TODO Auto-generated method stub + return 0; + } + public int CONAMMGetMedia(APIHANDLE hMCHandle, IntBuffer pdwCountOfMedia, CONAPI_MEDIA.ByReference[] ppMedia) { // TODO Auto-generated method stub return 0; } - + public int CONAMMGetMedia(APIHANDLE hMCHandle, IntBuffer pdwCountOfMedia, + CONAPI_MEDIA.ByReference ppMedia) { + // TODO Auto-generated method stub + return 0; + } + public int CONAMMGetMedia(APIHANDLE hMCHandle, IntBuffer pdwCountOfMedia, + PointerByReference ppMedia) { + // TODO Auto-generated method stub + return 0; + } public int CONAMMSetMedia(APIHANDLE hMCHandle, CONAPI_MEDIA[] pMedia) { // TODO Auto-generated method stub return 0; @@ -272,4 +287,10 @@ return 0; } + public int CONAMMSetMedia(APIHANDLE hMCHandle, Pointer pMedia) { + // TODO Auto-generated method stub + return 0; + } + + }