Search results

  1. O

    C compiler not working

    You'll have to cc -o <progName> <source> for example: cc -o machin machin.c And then you'll get a "machin" that you can launch by typing ./machin<RETURN> This way, cc will try to recognize the file type you are compiling with its suffix: - file.c: C - file.cpp: C++ - file.m: ObjC But...
  2. O

    sample source for audio apps?

    You could have a look at <http://www.esiee.fr/~outtersg/>. It is a port of mpg123 to Mac OS X; it is a bit complicated, due to the mpg123's architecture, but you'll find in audio_macosx.c the basics (opening, playing and closing). In fact, for mpg123, I have to stop the main app before it...
  3. O

    Display Settings

    They are at /Users/<...>/Library/Preferences/ByHost/com.apple.windowserver.<...>.plist I want to change my refresh rate from 75 to 85 Hz, but the value refers to a mode and so I don't know where to find the right mode (I know my monitor can support 1024x768@85Hz, it worked under PB).
Back
Top