Lines Matching refs:dsp
16 - The MSVC .dsp file for the extension. The .c source file names
85 dsp = win32api.GetProfileVal(moduleName, "dsp", "", mapFileName)
86 if dsp=="":
90 dsp = win32api.ExpandEnvironmentStrings(dsp)
91 # If the path to the .DSP file is not absolute, assume it is relative
93 if not os.path.isabs(dsp):
94 dsp = os.path.join( os.path.split(mapFileName)[0], dsp)
96 sourceFiles = parse_dsp(dsp)
101 # Put the path to the DSP into the environment so entries can reference it.
102 os.environ['dsp_path'] = os.path.split(dsp)[0]
125 # Given an MSVC DSP file, locate C source files it uses
127 def parse_dsp(dsp):
128 # print "Processing", dsp
131 dsp_path, dsp_name = os.path.split(dsp)
133 lines = open(dsp, "r").readlines()
135 sys.stderr.write("%s: %s\n" % (dsp, msg))