<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[char ** - Was ist das für eine Definition ?]]></title><description><![CDATA[<p>Hallo</p>
<p>ich muss eine Funktion aus einer DLL-Datei aufrufen.</p>
<p>Die Funktion ist so definiert:</p>
<p>int TM_DLL_EXP CreateTKey<br />
(<br />
const char* name,<br />
const char* email,<br />
const char* producerId,<br />
char** privateKey,<br />
char** publicKey,<br />
);</p>
<p>Kann mir jemand sagen wie ich die Variablen privateKey und publicKey<br />
definieren muss damit ich die Funktion erfolgreich ausführen kann.</p>
<p>Ich habe das ganze so definiert:</p>
<p>char **privatekey=NULL;<br />
char **publickey=NULL;</p>
<p>CreateTKey ( <a href="mailto:%22Test%22,%22test@test.de" rel="nofollow">&quot;Test&quot;,&quot;test@test.de</a>&quot;,&quot;1234&quot;,privateKey,publicKey);</p>
<p>klappt aber nicht beim aufrufen der Funktion stürtz mein Programm ab.</p>
<p>mfg<br />
bidego</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/133407/char-was-ist-das-für-eine-definition</link><generator>RSS for Node</generator><lastBuildDate>Thu, 27 Aug 2026 21:55:23 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/133407.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 17 Jan 2006 14:44:13 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to char ** - Was ist das für eine Definition ? on Tue, 17 Jan 2006 14:44:13 GMT]]></title><description><![CDATA[<p>Hallo</p>
<p>ich muss eine Funktion aus einer DLL-Datei aufrufen.</p>
<p>Die Funktion ist so definiert:</p>
<p>int TM_DLL_EXP CreateTKey<br />
(<br />
const char* name,<br />
const char* email,<br />
const char* producerId,<br />
char** privateKey,<br />
char** publicKey,<br />
);</p>
<p>Kann mir jemand sagen wie ich die Variablen privateKey und publicKey<br />
definieren muss damit ich die Funktion erfolgreich ausführen kann.</p>
<p>Ich habe das ganze so definiert:</p>
<p>char **privatekey=NULL;<br />
char **publickey=NULL;</p>
<p>CreateTKey ( <a href="mailto:%22Test%22,%22test@test.de" rel="nofollow">&quot;Test&quot;,&quot;test@test.de</a>&quot;,&quot;1234&quot;,privateKey,publicKey);</p>
<p>klappt aber nicht beim aufrufen der Funktion stürtz mein Programm ab.</p>
<p>mfg<br />
bidego</p>
]]></description><link>https://www.c-plusplus.net/forum/post/968973</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/968973</guid><dc:creator><![CDATA[bidego]]></dc:creator><pubDate>Tue, 17 Jan 2006 14:44:13 GMT</pubDate></item><item><title><![CDATA[Reply to char ** - Was ist das für eine Definition ? on Tue, 17 Jan 2006 14:50:04 GMT]]></title><description><![CDATA[<p>etwa so</p>
<pre><code>char *privatekey; 
char *publickey; 
CreateTKey ( &quot;Test&quot;,&quot;test@test.de&quot;,&quot;1234&quot;,&amp;privateKey,&amp;publicKey);
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/968982</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/968982</guid><dc:creator><![CDATA[net 0]]></dc:creator><pubDate>Tue, 17 Jan 2006 14:50:04 GMT</pubDate></item><item><title><![CDATA[Reply to char ** - Was ist das für eine Definition ? on Tue, 17 Jan 2006 15:12:20 GMT]]></title><description><![CDATA[<p>Gibt es noch andere möglichkeiten ?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/969014</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/969014</guid><dc:creator><![CDATA[bidego]]></dc:creator><pubDate>Tue, 17 Jan 2006 15:12:20 GMT</pubDate></item><item><title><![CDATA[Reply to char ** - Was ist das für eine Definition ? on Tue, 17 Jan 2006 15:13:10 GMT]]></title><description><![CDATA[<p>Hallo</p>
<p>bidego schrieb:</p>
<blockquote>
<p>Gibt es noch andere möglichkeiten ?</p>
</blockquote>
<p>Warum? Gib es ein Problem mit der Lösung von &quot;net&quot;.</p>
<p>chrische</p>
]]></description><link>https://www.c-plusplus.net/forum/post/969016</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/969016</guid><dc:creator><![CDATA[[[global:guest]]]]></dc:creator><pubDate>Tue, 17 Jan 2006 15:13:10 GMT</pubDate></item><item><title><![CDATA[Reply to char ** - Was ist das für eine Definition ? on Tue, 17 Jan 2006 15:17:28 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>Mein Programm stürzt bei dem Aufruf immer noch ab.<br />
Egal welche Version ich benutzte.</p>
<p>Muss in der Version von net noch speicher für<br />
die Variable reserviert werden ?</p>
<p>Was bedeutet char ** eigentlich genau.</p>
<p>mfg<br />
bidego</p>
]]></description><link>https://www.c-plusplus.net/forum/post/969021</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/969021</guid><dc:creator><![CDATA[bidego]]></dc:creator><pubDate>Tue, 17 Jan 2006 15:17:28 GMT</pubDate></item><item><title><![CDATA[Reply to char ** - Was ist das für eine Definition ? on Tue, 17 Jan 2006 15:19:44 GMT]]></title><description><![CDATA[<p>Hallo</p>
<p>bidego schrieb:</p>
<blockquote>
<p>Hallo,</p>
<p>Was bedeutet char ** eigentlich genau.</p>
<p>mfg<br />
bidego</p>
</blockquote>
<p>Ein Zeiger auf einen Zeiger auf ein char.</p>
<p>chrische</p>
]]></description><link>https://www.c-plusplus.net/forum/post/969024</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/969024</guid><dc:creator><![CDATA[[[global:guest]]]]></dc:creator><pubDate>Tue, 17 Jan 2006 15:19:44 GMT</pubDate></item><item><title><![CDATA[Reply to char ** - Was ist das für eine Definition ? on Tue, 17 Jan 2006 15:31:46 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>bidego schrieb:</p>
<blockquote>
<p>Was bedeutet char ** eigentlich genau.</p>
</blockquote>
<p>für gewöhnlich bezeichnet man so eine char-Matrix als Stringtabelle, genauso wie der argv bei main:</p>
<pre><code class="language-cpp">#include &lt;iostream&gt;

int main(int argc, char **argv) {
  for (int i=0;i&lt;argc;++i)
    std::cout&lt;&lt;argv[i]&lt;&lt;'\n';

  return 0;
};
</code></pre>
<p>Mfg</p>
<p>GPC</p>
]]></description><link>https://www.c-plusplus.net/forum/post/969036</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/969036</guid><dc:creator><![CDATA[GPC]]></dc:creator><pubDate>Tue, 17 Jan 2006 15:31:46 GMT</pubDate></item><item><title><![CDATA[Reply to char ** - Was ist das für eine Definition ? on Tue, 17 Jan 2006 16:48:18 GMT]]></title><description><![CDATA[<p>dann musste wohl die doku von der funktion lesen oder, wenn laut doku alles richtig ist, im debugger singlesteppen wo's kracht...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/969109</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/969109</guid><dc:creator><![CDATA[net 0]]></dc:creator><pubDate>Tue, 17 Jan 2006 16:48:18 GMT</pubDate></item></channel></rss>