008
16.10.2003, 14:30 Uhr
the.messias
|
ich denke mál, dass die in dem Paket von regex mit enthalten waren.... da hatte ich ha noch gar net drauf geachtet, dass da die Fehler sind...vielleicht sollte man da mal string.h includieren ...ich versuchs mal...geht auch nicht...hier ist mal das stück wo der fehler kommt:
C++: |
#if !defined(paconfig_h) // Guard multiple includes #define paconfig_h
#include <vcl\registry.hpp> // Registry support #include <stdlib.h> #include <string.h> <----hab ich hinzugefügt, aber hilft nicht #define STD_LANG_PEV "english" // PEV standard language
const int MIN_USER = 2; // Minimum user length const int MAX_USER = 20; // Maximum user length
const int MIN_PASSWORD = 2; // Minimum password length const int MAX_PASSWORD = 20; // Maximum password length
class PaUser // User class { public: enum Role { // Roles roleNone, roleUser, roleAdmin };
PaUser() // Constructor { memset(&data, 0, sizeof(data)); } PaUser(const AnsiString &name, const AnsiString &password, const Role role = roleNone) { memset(&data, 0, sizeof(data)); strcpy(data.Name, name.c_str()); <------F-E-H-L-E-R-
|
Bearbeitung von loddab: |
cpp-Tags gesetzt. Denk bitte selber dran
|
Dieser Post wurde am 16.10.2003 um 14:41 Uhr von Loddab editiert. |