Komischer Fehler der nur sporratisch auftritt

Thopeto

Erfahrenes Mitglied
Komischer Fehler der nur sporratisch auftritt\EDIT

Hallo

Ich habe hier einen Fehler, der mich doch eine ganze weile beschäftigt. Dieser Fehler taucht mal hier mal da auf, unabhängig vom Betriebssystem. Das ist die Funktion, um die es geht:

Code:
#ifndef __AFXWIN_H__
 	#error include 'stdafx.h' before including this file for PCH
 #endif
 
 #include "resource.h"		// Hauptsymbole
 
 #define THOPETO_API __declspec(dllexport)
 
 typedef struct API_Module
 {
 	CString strName;
 	CString strDescription;
 	CString strCopyright;
 	CString strWebsite;
 
 	CString	strText;
 	int		iLetters;
 	int		iLines;
 } APIMODULE;
 
 extern "C" THOPETO_API API_Module apiMain(void);
 /////////////////////////////////////////////////////////////////////////////
 // CShoutBoxApp
 // Siehe ShoutBox.cpp für die Implementierung dieser Klasse
 //
 
 class CShoutBoxApp : public CWinApp
 {
 public:
 	CShoutBoxApp();
 ...

und dann weiter
Code:
 THOPETO_API API_Module apiMain(void)
 {
 	AFX_MANAGE_STATE(AfxGetStaticModuleState());
  
 	API_Module Module;
 	Module.strName = "ShoutBox";
 	Module.strDescription = "Eine einfache Shoutbox";
 	Module.strCopyright = "Thopeto 2005";
 	Module.strWebsite = "http://www.thopeto.de/module/";
 	Module.strText = "Das ist der source";
 
 	return Module;
 }

ist das so okay?! Wäre für jede Hilfe dankbar

gruß
Thorsten
 
Zuletzt bearbeitet:
Zurück