blob: 5c52bb3c130b5b0c439c3e554fa3d096e0fb1624 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
swinter.h:
unsigned char SYSCALL SwDocumentGetIsPrinting( C_Object ObjHdl );
swinter.c:
unsigned char SYSCALL SwDocumentGetIsPrinting( C_Object ObjHdl )
{
if( SvIPCIsConnected() )
{
return (unsigned char) pIPCCallFunction( SvIPCGetClient(), 136598,
ObjHdl , 1, NULL );
}
return 0;
}
#ifdef _MSC_VER
#pragma code_seg("swinter2","CODE")
#endif
|