Zitat von
napsterxx:
Nein, geht immernoch nicht.
Folgendes Beispiel funktioniert bei mir recht gut, vieleicht bringt dich das weiter, ansonsten wüst ich jetzt auch keine Lösung.
Code:
#include <iostream>
using namespace std;
void test(char **ppData) {
cout << **(&ppData) << endl;
}
int main() {
char buff[] = "Hallo Welt";
char *pBuff = &buff[0];
test(&pBuff);
system("PAUSE");
}
b.z.w. mit Stream schreiben:
Code:
void test(char **ppData) {
fstream file("test.txt", ios::out);
file << **(&ppData);
file.close();
}