colorchord/colorchord2/windows/symbol_enumerator.h
CNLohr 4f983efbfe Major progress to getting colorchord on Windows TCC
Give it a shot. colorchord2/windows/compile.bat.  I am having issues
getting sound in.
2017-09-11 02:56:50 -04:00

13 lines
370 B
C

#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