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:
parent
ed9ac870c0
commit
4f983efbfe
31 changed files with 4581 additions and 63 deletions
12
colorchord2/windows/symbol_enumerator.h
Normal file
12
colorchord2/windows/symbol_enumerator.h
Normal file
|
@ -0,0 +1,12 @@
|
|||
#ifndef _SYMBOL_ENUMERATOR_H
|
||||
#define _SYMBOL_ENUMERATOR_H
|
||||
|
||||
//Enumerates all symbols in the currently loaded excutable.
|
||||
//Don't forget to compile with -rdynamic!
|
||||
|
||||
//Return 0 to continue search. 1 to stop.
|
||||
typedef int (*SymEnumeratorCallback)( const char * path, const char * name, void * location, long size );
|
||||
|
||||
int EnumerateSymbols( SymEnumeratorCallback cb );
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue