Search:

Type: Posts; User: dynomyte

Search: Search took 0.01 seconds.

  1. Thread: WinMain help!

    by dynomyte
    Replies
    1
    Views
    1,102

    WinMain help!

    I have this code:

    int main( int argc, char **argv )
    {
    DWORD readerThreadId;
    HANDLE rc;
    int opt;
    const char *baudStr = NULL;
    const char *portStr =...
  2. Replies
    9
    Views
    1,503

    also there is thsi call struct termios ...

    also there is thsi call


    struct termios attr;


    and it uses the tcgetattr command and that is unique to termios
  3. Replies
    4
    Views
    1,200

    function using "define"

    So I am trying to make a program work and this is in one of the h files.



    #define LogDebug( fmt, args... ) do { if ( gDebug ) { Log( fmt, ## args ); }} while (0)


    and it is giving me...
  4. Replies
    9
    Views
    1,503

    yeah i have declared the paud rate variable as...

    yeah i have declared the paud rate variable as unsigned but the baud table is giving me lots of problems.



    gBaudTable[] =
    {
    { B50, 50 },
    { B75, 75 },
    { B110, ...
  5. Replies
    9
    Views
    1,503

    i have taken care of a few things but i am very...

    i have taken care of a few things but i am very very stuck on termios.h. i dont know what win32 library i could us to get the equivalent commands.
  6. Replies
    9
    Views
    1,503

    Yes, it is a kernal mode driver with a GUI wrap. ...

    Yes, it is a kernal mode driver with a GUI wrap. the GUI works fine, but I need to remove all of the UNIX commands. the stuff that is giving me the most problems is in the unix standard libraries...
  7. Replies
    9
    Views
    1,503

    cygwin vs win32 help

    ok so i am working on a firmware updater. It is already written but it uses cygwin to make some unix commands/labraries available. My problem is that the cygwin stuff is crashing when I try to...
Results 1 to 7 of 7