Search:

Type: Posts; User: RITZ

Search: Search took 0.00 seconds.

  1. Replies
    6
    Views
    1,119

    Ok, I thought you could still access members. You...

    Ok, I thought you could still access members. You can use any potential member you want with templates after all and you won't get an error until the code is generated.

    The worst is when headers...
  2. Replies
    6
    Views
    1,119

    What's wrong with that? I can't call a member...

    What's wrong with that? I can't call a member function?
  3. Replies
    6
    Views
    1,119

    This I know. I'm not declaring any instance of...

    This I know. I'm not declaring any instance of the class.
  4. Replies
    6
    Views
    1,119

    Forward declaration owned my ass apparently...

    I have a head ache. -.-


    class ENTITY;
    class UNIVERSE
    {
    public:
    void insert_entity(ENTITY *entity)
    {
    m_entities.push_back(entity);
  5. Thread: MSVC 2k3 7.1 bug?

    by RITZ
    Replies
    3
    Views
    1,759

    Hey Darryl. Who says it's a header? :P I am using...

    Hey Darryl. Who says it's a header? :P I am using std::list;

    .... This is the dumbest thing I've done in a long time. Thanks Daved, I'm sure that is the problem.
  6. Thread: MSVC 2k3 7.1 bug?

    by RITZ
    Replies
    3
    Views
    1,759

    MSVC 2k3 7.1 bug?

    class ENTITY
    {
    public:
    ..........
    static list<ENTITY*> m_universe; // All existing entities.

    ENTITY(unsigned int speed, double mass, double lift, double friction)
    {
    // Physical...
  7. Replies
    8
    Views
    1,536

    Broken API? O.o It isn't my socket...

    Broken API? O.o It isn't my socket...
  8. Replies
    8
    Views
    1,536

    I can't do that. It is a socket that I have no...

    I can't do that. It is a socket that I have no control over and I can't just close it.
  9. Replies
    8
    Views
    1,536

    Ok, then does anyone, have any suggestion on how...

    Ok, then does anyone, have any suggestion on how to cancel a blocking call on a socket or thread?

    Thanks
  10. Replies
    8
    Views
    1,536

    WSPCancelBlockingCall

    The documentation on this function says it cancels any blocking Winsock call in the current thread. How is it possible to call WSPCancelBlockingCall from the same thread if there is a blocking call...
Results 1 to 10 of 10