Search:

Type: Posts; User: nicolas

Search: Search took 0.01 seconds.

  1. Thread: Timer in Win32

    by nicolas
    Replies
    5
    Views
    3,932

    > Why not take the time from the system just...

    > Why not take the time from the system just before the application begins making a move, again when it has a finished, and subtract the difference.

    Good idea, but still the need the timer,...
  2. Thread: Timer in Win32

    by nicolas
    Replies
    5
    Views
    3,932

    Timer in Win32

    Hello, there. I am building an application (a board game, like chess) using the Win32 API and have some problems using the timer.

    The problem is that, as I read, timer messages are not...
  3. Thread: Timing in C

    by nicolas
    Replies
    3
    Views
    1,592

    Timing in C

    I am working on a project in C, where I have to build a game that loses after some amount of time. Is there a way to do that?

    Thanks a lot.
  4. Thread: free (p)

    by nicolas
    Replies
    2
    Views
    941

    free (p)

    When you declare a *p, assign memory to it

    p = (char*)malloc(5*sizeof(char));

    and then release it

    free (p);

    itīs recommended to do the following:
  5. Replies
    3
    Views
    1,506

    Moving cursor without pressing enter

    Is there a function (like getch) which I can use, so when I move the cursor, like -> (to move right) an action occurs without pressing the enter key? Thanks!
  6. Replies
    2
    Views
    1,911

    Memory management in C

    Hey everybody. Just found this forum and even before posting this topic, Iīve already answered some questions I had!

    Anyway, anybody knows how memory is managed in the C language? For example, how...
Results 1 to 6 of 6