xref: /trunk/main/sw/sdi/swpatch.txt (revision cdf0e10c)
1swinter.h:
2
3unsigned char SYSCALL SwDocumentGetIsPrinting( C_Object ObjHdl );
4
5
6swinter.c:
7
8unsigned char SYSCALL SwDocumentGetIsPrinting( C_Object ObjHdl )
9{
10    if( SvIPCIsConnected() )
11    {
12        return (unsigned char) pIPCCallFunction( SvIPCGetClient(), 136598,
13             ObjHdl , 1, NULL );
14    }
15    return 0;
16}
17
18#ifdef _MSC_VER
19#pragma code_seg("swinter2","CODE")
20#endif
21
22