office-gobmx/sw/sdi/swpatch.txt
Kurt Zenker 1514489b3b INTEGRATION: CWS mingwport06 (1.1.1.1.2374); FILE MERGED
2007/08/24 13:25:58 vg 1.1.1.1.2374.1: #i75499# pragma is for MSVC
2007-09-06 12:59:33 +00:00

21 lines
385 B
Text

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