mirror of
https://github.com/reactos/reactos.git
synced 2025-05-08 03:07:05 +00:00
[SPEC2DEF] Implement support for private exports
This commit is contained in:
parent
00cfa8aac2
commit
0b0bb1a93b
1 changed files with 7 additions and 0 deletions
|
@ -730,6 +730,13 @@ OutputLine_def_GCC(FILE *fileDest, EXPORT *pexp)
|
||||||
int
|
int
|
||||||
OutputLine_def(FILE *fileDest, EXPORT *pexp)
|
OutputLine_def(FILE *fileDest, EXPORT *pexp)
|
||||||
{
|
{
|
||||||
|
/* Don't add private exports to the import lib */
|
||||||
|
if (gbImportLib && (pexp->uFlags & FL_PRIVATE))
|
||||||
|
{
|
||||||
|
DbgPrint("OutputLine_def: skipping private export '%.*s'...\n", pexp->strName.len, pexp->strName.buf);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
DbgPrint("OutputLine_def: '%.*s'...\n", pexp->strName.len, pexp->strName.buf);
|
DbgPrint("OutputLine_def: '%.*s'...\n", pexp->strName.len, pexp->strName.buf);
|
||||||
fprintf(fileDest, " ");
|
fprintf(fileDest, " ");
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue