Hello there, i just have a quick question. Im trying to parse large files 4gb+ and ive run into a serious problem with seekg, trying to start the pointer at 5,000,000,000 isnt working and it gives me a compiler warning....
warning C4305: 'argument' : truncation from '__int64' to 'long'
How can i ...
Search found 22 matches
- Fri Sep 14, 2007 4:27 am
- Forum: Beginners Help
- Topic: seekg and large numbers
- Replies: 7
- Views: 884
- Sun Apr 29, 2007 9:58 pm
- Forum: Beginners Help
- Topic: memory problem?
- Replies: 5
- Views: 649
- Sun Apr 29, 2007 9:06 am
- Forum: Beginners Help
- Topic: Quick question
- Replies: 3
- Views: 314
- Sat Apr 28, 2007 1:37 am
- Forum: Beginners Help
- Topic: texture ugly
- Replies: 4
- Views: 682
- Thu Apr 26, 2007 3:02 am
- Forum: Beginners Help
- Topic: Quick question
- Replies: 3
- Views: 314
Quick question
Hi there,
i was going over some code examples of a characterclass and saw this
class CharacterClass
{
public:
boolean isMagicUser() const;
};
what exactly is that and shouldnt it be...
class CharacterClass
{
public:
bool isMagicUser() { return m_bMagicUser; }
private:
bool m ...
i was going over some code examples of a characterclass and saw this
class CharacterClass
{
public:
boolean isMagicUser() const;
};
what exactly is that and shouldnt it be...
class CharacterClass
{
public:
bool isMagicUser() { return m_bMagicUser; }
private:
bool m ...
- Wed Apr 25, 2007 3:51 am
- Forum: Beginners Help
- Topic: GUI editor ?
- Replies: 9
- Views: 720
- Sat Apr 21, 2007 8:42 pm
- Forum: Beginners Help
- Topic: GUI editor ?
- Replies: 9
- Views: 720
- Sat Apr 21, 2007 3:15 am
- Forum: Beginners Help
- Topic: GUI editor ?
- Replies: 9
- Views: 720
- Fri Apr 20, 2007 4:55 am
- Forum: Beginners Help
- Topic: GUI editor ?
- Replies: 9
- Views: 720
- Fri Apr 20, 2007 12:36 am
- Forum: Beginners Help
- Topic: GUI editor ?
- Replies: 9
- Views: 720
- Thu Apr 19, 2007 10:48 pm
- Forum: Beginners Help
- Topic: GUI editor ?
- Replies: 9
- Views: 720
GUI editor ?
OK, so ive seen this in the wiki but yet this header does not exist in the 1.3 SDK and makes absolutely no mention of a third party kit. So what gives?
- Fri Feb 09, 2007 1:16 pm
- Forum: Beginners Help
- Topic: Array question (cpp)
- Replies: 4
- Views: 452
- Fri Feb 09, 2007 3:42 am
- Forum: Beginners Help
- Topic: Array question (cpp)
- Replies: 4
- Views: 452
Array question (cpp)
Hi there,
Is it possible to use a char * as an index for an array? For example:
I used to do this with PHP, but c++ just isn't having this!
Is it possible to use a char * as an index for an array? For example:
Code: Select all
int array["test"] = 5- Tue Jan 30, 2007 10:58 pm
- Forum: Beginners Help
- Topic: General sockets question
- Replies: 2
- Views: 388
- Tue Jan 30, 2007 9:35 pm
- Forum: Beginners Help
- Topic: General sockets question
- Replies: 2
- Views: 388
General sockets question
Hi there,
In my game i have some basic network code with sockets, but i have come across a small issue. My understanding of how a program retreives data from a socket is that it will simply sit on a function such as this:
//get a message sent to the socket
bytes = recv(sck_HL,buffer,1023,0 ...
In my game i have some basic network code with sockets, but i have come across a small issue. My understanding of how a program retreives data from a socket is that it will simply sit on a function such as this:
//get a message sent to the socket
bytes = recv(sck_HL,buffer,1023,0 ...