ale to mi sie przsowa w poziomie a ja chce w pionie poza tym seekp();
niezabardzo chce dzialac:
--------------------Configuration: bba - Win32 Debug--------------------
Compiling...
main.cpp
c:\myprojects\bba\tools.h(15) : error C2039: 'seekp' : is not a member of 'ifstream'
c:\program files\microsoft visual studio\vc98\include\fstream.h(98) : see declaration of 'ifstream'
Error executing cl.exe.
bba.exe - 1 error(s), 0 warning(s)
MOj kod:
#include <iostream.h>
#include <fstream.h>
#include <istream.h>
#include <stdio.h>
#include <string>
void wowloader()
{
char name[20];
char addres[50];
char ses[50];
ifstream plik;
plik.open("config.cfg");
plik.get(addres,50);
plik.seekg(1,ios::beg);
plik.get(ses,50);
plik.close();
MessageBox(NULL, name, "World Of Warcraft Username:", MB_OK);
WinExec(addres,SW_SHOWNORMAL);
}