September 2nd, 2010 01:33 PM
Hello, I've got a question about the IOCP Thread pooling.
How do I create such pools?
Do I need to create some threads (I know about the 2*CPU rule) with the same function?
Anyone care to...
March 29th, 2010 09:42 AM
YES! I GOT IT. THANKS ALOT olivthill2! It was indeed the EditProc. I tries to call OldProc, but Oldproc is not a WindowProc =P. THANKS!
March 29th, 2010 09:40 AM
Well, I put a small line like "Cout << "function: DIRECTX()\n";" after each function and it stopped working after saying "Directx:", the line before the constructor is called...
March 29th, 2010 07:54 AM
Yes i already know that. But there it wouldn't be possible for the constructor to crash without doing anything yet.
March 29th, 2010 04:26 AM
Hmm, that might be really good possible. Thanks alot, ill try it out when I'm at home!
But how? Because the constructor seems to crash before even doing anything o_O. It crashes before setting...
March 28th, 2010 11:14 AM
Well hello,
I created myself a game. I runs alright with Debugger, but without debugger, it crashes immediately.
I tried to find the error, with cout. After each function or something I type a...
March 28th, 2010 09:58 AM
Give me a second, ill try to fix it myself first then explain it to you.
Well, the output at me is
o_o.
March 28th, 2010 09:55 AM
Lol? What the hell is the question? What do you want to know? Post code nao. There is no such thing as "It was there but now it is gone".
March 28th, 2010 09:45 AM
Well hello,
I created myself a game. I runs alright with Debugger, but without debugger, it crashes immediately.
I tried to find the error, with cout. After each function or something I type a...
March 28th, 2010 09:35 AM
strtok can be used to split strings, if that is what you want o_O.
March 28th, 2010 09:33 AM
You have a vector containing only std::strings and you asked to get every std::string out of strvec here
for each(std::string str in strvec)
std::cout << str << ',';
That is what you are...
March 28th, 2010 09:31 AM
#include <windows.h>
#include <stdio.h>
#include <iostream.h>
int main() {
string StringToRead;
char Playername[80], ip[80];
StringToRead = "Playername 127.0.0.1";
March 28th, 2010 09:11 AM
Well hello,
I created myself a game. I runs alright with Debugger, but without debugger, it crashes immediately.
I tried to find the error, with cout. After each function or something I type a...
March 15th, 2010 12:34 PM
Screenshot.
Hello, I have a problem already for like a week and I seriously can't get out of it. Take a look at the screen shot.
The server sends a packet to the client to spawn an NPC. If you...