1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-07 09:49:30 +03:00

testprogs: print printprocessor info levels in EnumPrintProcessors() spoolss tests.

Guenther
This commit is contained in:
Günther Deschner
2010-02-09 15:54:25 +01:00
parent 5db64e88c7
commit dcad5447cf
2 changed files with 35 additions and 0 deletions

View File

@ -637,6 +637,37 @@ void print_printprocessor_info_1(PPRINTPROCESSOR_INFO_1 info)
return;
}
void print_printprocessor_info_bylevel(DWORD level, LPBYTE buffer, DWORD count)
{
DWORD i;
PPRINTPROCESSOR_INFO_1 buffer1 = NULL;
if (!buffer) {
return;
}
switch (level) {
case 1:
buffer1 = (PPRINTPROCESSOR_INFO_1)buffer;
break;
default:
break;
}
printf("Print Processor Info Level %d:\n", level);
switch (level) {
case 1:
for (i=0; i<count; i++) {
print_printprocessor_info_1(&buffer1[i]);
printf("\n");
}
break;
default:
break;
}
}
void print_driver_info_1(PDRIVER_INFO_1 info)
{
printf("\tDriver Name\t= %s\n\n", info->pName);

View File

@ -415,6 +415,10 @@ static BOOL test_EnumPrintProcessors(struct torture_context *tctx,
}
}
if (tctx->print) {
print_printprocessor_info_bylevel(levels[i], buffer, returned);
}
free(buffer);
buffer = NULL;
}