Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. KeavDog

    using a cirular index

    Use the modulus operator to reset the index to 0 once it gets to 8. This should cycle your index from 0 to 7. index = ( ( index++ ) % 8 ) ;
  2. KeavDog

    CreateThread problem...

    Just a suggestion: I would use _beginthreadx rather than CreateThread as CreateThread can lead to sync problems if you are calling any standard c lib rtl functions. Thanks, John
  3. KeavDog

    Structure of Floating Point numbers

    Microsoft uses IEEE floating formats. See http://support.microsoft.com/default.aspx?scid=kb;en-us;Q36068
  4. KeavDog

    integration and differentiation

    You may want to look at: QUADPACK --- subroutine package for the numerical computation of definite one-dimensional integrals. http://www.netlib.org/quadpack/ Differential and integral equations (I) ODEPACK --- a systemztized collection of ODE solvers http://www.netlib.org/odepack/
  5. KeavDog

    Class

    Look at CPoint
  6. KeavDog

    Ethernet cards

    You can try int result = GetSystemMetrics( SM_NETWORK ) ; if( 0 == result ) { // No network }
  7. KeavDog

    Is there a maximum number of Processes that can run?

    Memory is one limit for sure. If you can, adjust your stack size for your. I've also run into problems when the Handle count grows. Check for handle leaks.
  8. KeavDog

    streaming voice

    I just started looking into this myself. You may want to look into SIP, JAIN, and RTP protocols. I believe SIP can conference so that might address your multiple IP issues.
  9. KeavDog

    PreCompiled Header - Header Directive missing problem

    You can also mark particular files as 'not using precompiled headers'. This comes in handy when using 3rd party tools like oci.h.

Part and Inventory Search

Back
Top