Codebase list libnice / 38a014ea-7b3f-4a80-be69-b0247fcf207d/main nice / gen-def.py
38a014ea-7b3f-4a80-be69-b0247fcf207d/main

Tree @38a014ea-7b3f-4a80-be69-b0247fcf207d/main (Download .tar.gz)

gen-def.py @38a014ea-7b3f-4a80-be69-b0247fcf207d/mainraw · history · blame

#!/usr/bin/env python3
#
# gen-def.py LIBNICE.SYM
import os
import sys

try:
    sym_file = sys.argv[1]
except:
    print('Usage: gen-def.py SYM-FILE')
    exit(-1)

f = open(os.path.join(sym_file), 'r')

print('EXPORTS')
for line in f:
    print('    ' + line.strip())

f.close()