Add missing symbols.

This commit is contained in:
Michael R Sweet 2021-07-26 11:56:59 -04:00
parent dd81069b1c
commit 94c09a1af4
No known key found for this signature in database
GPG Key ID: BE67C75EC81F3244
2 changed files with 18 additions and 1 deletions

View File

@ -143,7 +143,14 @@ pdfio1.def: $(LIBOBJS) Makefile
echo "EXPORTS" >>$@ echo "EXPORTS" >>$@
(nm $(LIBOBJS) 2>/dev/null | grep "T _" | awk '{print $$3}' | \ (nm $(LIBOBJS) 2>/dev/null | grep "T _" | awk '{print $$3}' | \
grep -v '^_ttf' | grep -v '^__' | sed -e '1,$$s/^_//'; \ grep -v '^_ttf' | grep -v '^__' | sed -e '1,$$s/^_//'; \
echo _pdfioTokenInit; echo _pdfioValueRead) | sort >>$@ echo pdfioAdobeRGBGamma; echo pdfioAdobeRGBMatrix; \
echo pdfioAdobeRGBWhitePoint; \
echo pdfioDisplayP3Gamma; echo pdfioDisplayP3Matrix; \
echo pdfioDisplayP3WhitePoint; \
echo pdfioSRGBGamma; echo pdfioSRGBMatrix; \
echo pdfioSRGBWhitePoint; \
echo _pdfioTokenInit; \
echo _pdfioValueDebug; echo _pdfioValueRead) | sort >>$@
# pdfio test program # pdfio test program

View File

@ -2,7 +2,11 @@ LIBRARY pdfio1
VERSION 1.0 VERSION 1.0
EXPORTS EXPORTS
_pdfioTokenInit _pdfioTokenInit
_pdfioValueDebug
_pdfioValueRead _pdfioValueRead
pdfioAdobeRGBGamma
pdfioAdobeRGBMatrix
pdfioAdobeRGBWhitePoint
pdfioArrayAppendArray pdfioArrayAppendArray
pdfioArrayAppendBinary pdfioArrayAppendBinary
pdfioArrayAppendBoolean pdfioArrayAppendBoolean
@ -106,6 +110,9 @@ pdfioDictSetObj
pdfioDictSetRect pdfioDictSetRect
pdfioDictSetString pdfioDictSetString
pdfioDictSetStringf pdfioDictSetStringf
pdfioDisplayP3Gamma
pdfioDisplayP3Matrix
pdfioDisplayP3WhitePoint
pdfioFileClose pdfioFileClose
pdfioFileCreate pdfioFileCreate
pdfioFileCreateArrayObj pdfioFileCreateArrayObj
@ -156,6 +163,9 @@ pdfioPageCopy
pdfioPageDictAddColorSpace pdfioPageDictAddColorSpace
pdfioPageDictAddFont pdfioPageDictAddFont
pdfioPageDictAddImage pdfioPageDictAddImage
pdfioSRGBGamma
pdfioSRGBMatrix
pdfioSRGBWhitePoint
pdfioStreamClose pdfioStreamClose
pdfioStreamConsume pdfioStreamConsume
pdfioStreamGetToken pdfioStreamGetToken