mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 17:16:12 +00:00
065da8f734
Three directories pull the NSS libraries together into a three shared libaries: nss, ssl, and smime. Symbols need to be exported by the DLL from the imported libraries are defined in XXX/XXXsym.c Library linkage is controlled by XXX/config.mk
9 lines
159 B
C
9 lines
159 B
C
extern void SEC_PKCS7DecodeItem();
|
|
extern void SEC_PKCS7DestroyContentInfo();
|
|
|
|
smime_CMDExports() {
|
|
SEC_PKCS7DecodeItem();
|
|
SEC_PKCS7DestroyContentInfo();
|
|
}
|
|
|