How to make use of an API
-
Hi, Can some one please let me know how can I use an API in my application. Thanks: Rakesh
Rakesh
Hello, Means you want to inport API in our c# aplication??? Than use DllImport attribute DllImport("TestLib.dll")] public static extern void DisplayHelloFromDLL (); nishu
-
Hi, Can some one please let me know how can I use an API in my application. Thanks: Rakesh
Rakesh
What API? If it's WinAPI, you may want to take a look at this site: http://www.pinvoke.net/ regards
-
What API? If it's WinAPI, you may want to take a look at this site: http://www.pinvoke.net/ regards
I am looking to work with LCS APIs like RTC Client API. I am unable to find this RTC Client API. Can you help me in this regard? Actually the situation is like this: I have some users in my Active Directory and I want to develop some client application which will display all the users in the Active directory using the Live Communication Server APIs like RTC Client API. Thanks: Rakesh
Rakesh
-
Hello, Means you want to inport API in our c# aplication??? Than use DllImport attribute DllImport("TestLib.dll")] public static extern void DisplayHelloFromDLL (); nishu
I am looking to work with LCS APIs like RTC Client API. I am unable to find this RTC Client API. Can you help me in this regard? Actually the situation is like this: I have some users in my Active Directory and I want to develop some client application which will display all the users in the Active directory using the Live Communication Server APIs like RTC Client API.
Rakesh
-
What API? If it's WinAPI, you may want to take a look at this site: http://www.pinvoke.net/ regards
[DllImport("kernel32")] public static extern long WinExec(string ipCmdLine, int nCmdShow); in any method of yours long sonuc = WinExec("C:\\Program Files\\Winamp\\Winamp.exe", 3); /* nCmdShow=9 for windows open in orginial size =3 open full screen =6 open in minimize*/
-
[DllImport("kernel32")] public static extern long WinExec(string ipCmdLine, int nCmdShow); in any method of yours long sonuc = WinExec("C:\\Program Files\\Winamp\\Winamp.exe", 3); /* nCmdShow=9 for windows open in orginial size =3 open full screen =6 open in minimize*/
-
Hi, Can some one please let me know how can I use an API in my application. Thanks: Rakesh
Rakesh
if you have C/C++ signatures to call the API by there's a tool available called "pinvoke wizard" that will generate the pinvoke signatures for use in .net. If you don't have any API documentation first and foremost, it sucks to be you! All I can suggest in that case is to visit the c++ forums and ask for help in reverse engineering the API from the dll files.
-- Rules of thumb should not be taken for the whole hand.
-
I am looking to work with LCS APIs like RTC Client API. I am unable to find this RTC Client API. Can you help me in this regard? Actually the situation is like this: I have some users in my Active Directory and I want to develop some client application which will display all the users in the Active directory using the Live Communication Server APIs like RTC Client API. Thanks: Rakesh
Rakesh
rockyl wrote:
I am looking to work with LCS APIs like RTC Client API. I am unable to find this RTC Client API. Can you help me in this regard?
Have you looked here: MSDN2: RTC Client API[^]
--EricDV Sig--------- Some problems are so complex that you have to be highly intelligent and well informed just to be undecided about them. - Laurence J. Peters
-
Hi, Can some one please let me know how can I use an API in my application. Thanks: Rakesh
Rakesh
*edit* nevermind, looks like others answered your question
Tech, life, family, faith: Give me a visit. I'm currently blogging about: Guess who's having a birthday? (It's not Jesus) The apostle Paul, modernly speaking: Epistles of Paul Judah Himango