Search:

Type: Posts; User: maththeorylvr

Page 1 of 3 1 2 3

Search: Search took 0.01 seconds.

  1. Replies
    7
    Views
    1,699

    im doing it in Java, but thought it might be...

    im doing it in Java, but thought it might be generalizable from C to Java, and languages in general.
  2. Replies
    7
    Views
    1,699

    its not 350 conditional statements, just lines,...

    its not 350 conditional statements, just lines, and this is a hypothetical example, to try and see what you would do in extreme cases. I guess the overhead of allocating a function on the stack isnt...
  3. Replies
    7
    Views
    1,699

    Reasons for keeping functions small

    Does the amount of work performed to place a function on the stack change significantly as the size of the function increases? I'm interested in reasons other than appearance and organization, more...
  4. Replies
    1
    Views
    1,491

    Video Capture/Frame Extraction apis?

    Hi. Is there an API for working with videos down to the individual frames, that exists for win32?
  5. Replies
    3
    Views
    1,953

    General Malloc question

    If you allocated memory throughout a program, but didn't deallocate it during the program, will the pages used on the heap during the program be free once the program is terminated? How does the...
  6. Figured it out. In the ilink32.config file, i...

    Figured it out. In the ilink32.config file, i hadd a space between the -L and "C\Borland\...\lib"
    It turns out that a space messes it up.
  7. Replies
    5
    Views
    2,229

    thanks for the link. I could find no good...

    thanks for the link. I could find no good documentation for how to install and run it on windows 2000. Does anyone ni here know how? GNU makes their tools unnecessarily difficult to setup.
  8. Replies
    5
    Views
    2,229

    Looking for Good Memory-Leak Finder

    I'm running the borland compiler. Any free memory leak finding utilities out there?
  9. Error when compiling C files, on Borland

    can anyone explain this:

    C:\C Files\BACKUP>bcc32 -w- demo2.c
    Borland C++ 5.5.1 for Win32 Copyright (c) 1993, 2000 Borland
    demo2.c:
    Turbo Incremental Link 5.00 Copyright (c) 1997, 2000 Borland...
  10. Replies
    3
    Views
    3,109

    64-BIT unsigned integers - Borland 5.5

    Hi. Does anyone know what support there is in Borland for 64-bit numbers? Thanks for any assistance.
  11. Intercepting Data Bound for Local Application from Remote Server

    Hi, im an online gamer and I want to filter out certain things from the game chat room before they show up on my screen, like certain explicit text and the like. Is it possible using the Windows API...
  12. What if the socket is created by a Java applet...

    What if the socket is created by a Java applet running in a web browser?
  13. Writing to an Output Socket in use by another program

    Hi, is there any way possible for one program to send data through a socket being used by another program?
  14. the docs arent helpful at all, if anyone here has...

    the docs arent helpful at all, if anyone here has experience with pcap, please let me know how you load the lib files
  15. How to Load .lib files with lcc-32 compiler

    Hello, does anyone know how to load .lib files?

    I keep getting undefined reference errors.
    pktsnf.obj .text: undefined reference to '_pcap_findalldevs'
    pktsnf.obj .text: undefined reference to...
  16. Help Loading DLL File/pthreads for Win-32

    Hi, can anyone assist me with loading DLL files for Win32, pthread.h?

    Here is my error:
    C:\C Files>lcclnk proxy1.obj -map pthreadGC2.dll -map pthreadVC2.dll -map pthreadGCE2.dll -map...
  17. Replies
    6
    Views
    2,765

    Recommended C Compilers for Windows

    LCC doesnt handle 8-byte int types very well, and cygwin just gives me a bunch of undefined references when the file is listed explicity in their include libraries. Is this problem unique to me or...
  18. If anyone has ever used gcc and winsock2, can you...

    If anyone has ever used gcc and winsock2, can you help me with this situation? What is going on with this, gcc gives very little documentation on winsock2 stuff. FYI the functions are definited in...
  19. Cygwin/gcc Incompatibility With Winsock2.h

    I'm running the latest cygwin release on Windows 2000 and am getting ridiculous errors, which make absolutely no sense to me, as I'm including the header files that the installation provided. Whats...
  20. Looks like it could just be compiler issues, so I...

    Looks like it could just be compiler issues, so I switched to GCC Instead. Not sure if this should go here, or networking, but my winsock2 functions arent being referenced? properly. Not sure how to...
  21. for (i = begin_index; i < begin_index + 8; i++) {...

    for (i = begin_index; i < begin_index + 8; i++) {
    x = (uint64_t) str[i];
    printf("%d,", x);
    (x >= 0) ? x : x + 256;
    for (j = 0; j < y; j++) x = x << 8;
    tile_seed = tile_seed | x;
    y--;
    }
  22. i tried that approach but the screwy lcc compiler...

    i tried that approach but the screwy lcc compiler wouldnt work right
  23. hmm, can you give me hints, like header files, to...

    hmm, can you give me hints, like header files, to look into? Thanks.
  24. Converting an 8-Byte Array into a Long Representation

    Is there a way to convert 8-bytes stored in an array into long representation?
  25. Replies
    4
    Views
    2,227

    Winsock, Or Winsock2

    Hello. How do you detect when the remote end of a connection has disconnected? I get alot of timeouts, but that doesnt tell me that ive disconnected absolutely. Any suggestions? Is there anything...
Results 1 to 25 of 54
Page 1 of 3 1 2 3