Search:

Type: Posts; User: evo_x

Search: Search took 0.00 seconds.

  1. return values from function with variable number of arguments [SOLVED]

    Hi,

    Tried it. And it works brilliantly. Looks so simple, so why couldn't I figure it myself. :rolleyes:

    I also used 's' etcetera instead of the ascii value. My presumption was incorrect that...
  2. I have made some progress. This is the current...

    I have made some progress. This is the current state of my function:


    bool SQL_ResultWithValues(SQL_Output *SQL_Statement, const char *Typelist, ...)
    {
    int cType, Column;
    char ...
  3. Hi Salem, I figured out the part about passing...

    Hi Salem,

    I figured out the part about passing only pointer type arguments.

    It is the the dereferencing that is baffling me. Just using a cast doesn't seem to do the trick.


    char* TempChar;...
  4. Exactly

    Exactly
  5. Thread: maqking games

    by evo_x
    Replies
    3
    Views
    923

    Check out: http://irrlicht.sourceforge.net

    Check out:

    http://irrlicht.sourceforge.net
  6. return values from function with variable number of arguments

    Hi all,

    In C/C++ it is possible to create a function that takes a variable number of arguments using the va_list type found in stdarg.h. These arguments can be used as input for the function.
    ...
Results 1 to 6 of 6