Major progress to getting colorchord on Windows TCC

Give it a shot. colorchord2/windows/compile.bat.  I am having issues
getting sound in.
This commit is contained in:
CNLohr 2017-09-11 02:56:50 -04:00
parent ed9ac870c0
commit 4f983efbfe
31 changed files with 4581 additions and 63 deletions

View file

@ -41,6 +41,6 @@ struct DriverInstances * SetupOutDriver( );
void RegOutDriver( const char * ron, struct DriverInstances * (*Init)( ) );
#define REGISTER_OUT_DRIVER( name ) \
EXECUTE_AT_BOOT( r##name, RegOutDriver( #name, name ) );
void REGISTER##name() __attribute__((constructor)) { RegOutDriver( #name, name ); }
#endif