<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Managed AdHoc API? intel laptop gaming tdk... in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/Managed-AdHoc-API-intel-laptop-gaming-tdk/m-p/876001#M8942</link>
    <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;BR /&gt;I asked around and haven't yet found anyone who has done a .Net binding on top of the C++ api. I'll let you know if I find something out.</description>
    <pubDate>Mon, 23 Mar 2009 16:13:50 GMT</pubDate>
    <dc:creator>James_M_Intel1</dc:creator>
    <dc:date>2009-03-23T16:13:50Z</dc:date>
    <item>
      <title>Managed AdHoc API? intel laptop gaming tdk...</title>
      <link>https://community.intel.com/t5/Software-Archive/Managed-AdHoc-API-intel-laptop-gaming-tdk/m-p/875998#M8939</link>
      <description>Good morning,&lt;BR /&gt;&lt;BR /&gt;I've used the Intel Laptop Gaming TDK for some c++ little test application...but know I need to use .net framework.&lt;BR /&gt;I Know that there isn't a managed version of the library...&lt;BR /&gt;&lt;BR /&gt;I would try to make a c++/cli wrapper to use some of the adhoc api capabilities into the managed world...&lt;BR /&gt;&lt;BR /&gt;How I can make this wrapper?..I've tried to compile a simple wrapper wich only include the AdHoc.h but I got a lot of error..(I've also add "AdHocAPI.lib" into the additional dependencies)&lt;BR /&gt;&lt;BR /&gt;Can you point me out into the right direction?&lt;BR /&gt;&lt;BR /&gt;Thanks</description>
      <pubDate>Sat, 21 Mar 2009 00:11:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Managed-AdHoc-API-intel-laptop-gaming-tdk/m-p/875998#M8939</guid>
      <dc:creator>serfio</dc:creator>
      <dc:date>2009-03-21T00:11:47Z</dc:date>
    </item>
    <item>
      <title>Re: Managed AdHoc API? intel laptop gaming tdk...</title>
      <link>https://community.intel.com/t5/Software-Archive/Managed-AdHoc-API-intel-laptop-gaming-tdk/m-p/875999#M8940</link>
      <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;BR /&gt;How are you wrapping the API? Using PInvoke?</description>
      <pubDate>Sun, 22 Mar 2009 03:58:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Managed-AdHoc-API-intel-laptop-gaming-tdk/m-p/875999#M8940</guid>
      <dc:creator>James_M_Intel1</dc:creator>
      <dc:date>2009-03-22T03:58:07Z</dc:date>
    </item>
    <item>
      <title>Re: Managed AdHoc API? intel laptop gaming tdk...</title>
      <link>https://community.intel.com/t5/Software-Archive/Managed-AdHoc-API-intel-laptop-gaming-tdk/m-p/876000#M8941</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/335167"&gt;Lester Memmott (Intel)&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt; &lt;BR /&gt;How are you wrapping the API? Using PInvoke?&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;I'm trying to code a simple c++/cli wrapper using C++ interop.&lt;BR /&gt;&lt;BR /&gt;With VS2005 "new project&amp;gt; VisualC++&amp;gt; CLR&amp;gt; Class Library"&lt;BR /&gt;&lt;BR /&gt;I'm writing something like this: &lt;BR /&gt;&lt;BR /&gt;#pragma once&lt;BR /&gt;#include "AdHoc.h"&lt;BR /&gt;&lt;BR /&gt;using namespace System;&lt;BR /&gt; &lt;BR /&gt; namespace myWrapper {&lt;BR /&gt; public ref class myAdHocWrapper&lt;BR /&gt; {&lt;BR /&gt; public:			&lt;BR /&gt; myAdHocWrapper(void){&lt;BR /&gt; //initialize private AdHoc pointer&lt;BR /&gt; };&lt;BR /&gt; private:&lt;BR /&gt; //pointer to the native adHoc object -- AdHoc *nativeAdHocPointer;&lt;BR /&gt; };&lt;BR /&gt; }&lt;BR /&gt;&lt;BR /&gt;I've also add AdHocAPI.lib into properties page (myWrapper properties&amp;gt; Linker&amp;gt; Input&amp;gt; Additional dependencies).&lt;BR /&gt;&lt;BR /&gt;building the code above give me a lot of error into the following file: l2cmn.h, ifdef.h, devpkey.h&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 23 Mar 2009 11:32:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Managed-AdHoc-API-intel-laptop-gaming-tdk/m-p/876000#M8941</guid>
      <dc:creator>serfio</dc:creator>
      <dc:date>2009-03-23T11:32:01Z</dc:date>
    </item>
    <item>
      <title>Re: Managed AdHoc API? intel laptop gaming tdk...</title>
      <link>https://community.intel.com/t5/Software-Archive/Managed-AdHoc-API-intel-laptop-gaming-tdk/m-p/876001#M8942</link>
      <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;BR /&gt;I asked around and haven't yet found anyone who has done a .Net binding on top of the C++ api. I'll let you know if I find something out.</description>
      <pubDate>Mon, 23 Mar 2009 16:13:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Managed-AdHoc-API-intel-laptop-gaming-tdk/m-p/876001#M8942</guid>
      <dc:creator>James_M_Intel1</dc:creator>
      <dc:date>2009-03-23T16:13:50Z</dc:date>
    </item>
    <item>
      <title>Re: Managed AdHoc API? intel laptop gaming tdk...</title>
      <link>https://community.intel.com/t5/Software-Archive/Managed-AdHoc-API-intel-laptop-gaming-tdk/m-p/876002#M8943</link>
      <description>&lt;DIV style="margin:0px;"&gt;FYI, I did find out that there is no .net API supported and no plans to implement a .net API at this time. Hopefully someone else who reads this post may have more information for you.&lt;/DIV&gt;
&lt;BR /&gt;</description>
      <pubDate>Mon, 23 Mar 2009 17:24:11 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Managed-AdHoc-API-intel-laptop-gaming-tdk/m-p/876002#M8943</guid>
      <dc:creator>James_M_Intel1</dc:creator>
      <dc:date>2009-03-23T17:24:11Z</dc:date>
    </item>
    <item>
      <title>Re: Managed AdHoc API? intel laptop gaming tdk...</title>
      <link>https://community.intel.com/t5/Software-Archive/Managed-AdHoc-API-intel-laptop-gaming-tdk/m-p/876003#M8944</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/335167"&gt;Lester Memmott (Intel)&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;
&lt;DIV style="margin:0px;"&gt;FYI, I did find out that there is no .net API supported and no plans to implement a .net API at this time. &lt;BR /&gt;&lt;/DIV&gt;
&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
unfortunatly I know this...&lt;BR /&gt;&lt;BR /&gt;I hope someone can help me to code a .net wrapper for the AdHoc API.&lt;BR /&gt;I really need the AdHoc API capabilities...I haven't found any other library to manage adhoc network out there.&lt;BR /&gt;&lt;BR /&gt;If someone knows a .nety library to manage adhoc network let me know..&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;</description>
      <pubDate>Tue, 24 Mar 2009 11:04:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Managed-AdHoc-API-intel-laptop-gaming-tdk/m-p/876003#M8944</guid>
      <dc:creator>serfio</dc:creator>
      <dc:date>2009-03-24T11:04:03Z</dc:date>
    </item>
  </channel>
</rss>

