| 44 | |
| 45 | namespace PptCOM |
| 46 | { |
| 47 | [ComVisible(true)] |
| 48 | [InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] |
| 49 | [Guid("65F6E9C1-63EC-4003-B89F-8F425A3C2FEA")] |
| 50 | public interface IPptCOMServer |
| 51 | { |
| 52 | // 初始化函数 |
| 53 | unsafe bool Initialization(int* TotalPage, int* CurrentPage, int* OffSignal); |
| 54 | string CheckCOM(); |
| 55 | |
| 56 | // 获取函数 |
| 57 | unsafe int PptComService(); |
| 58 | |
| 59 | // 信息获取函数 |
| 60 | string SlideNameIndex(); |
| 61 | IntPtr GetPptHwnd(); |
| 62 | |
| 63 | // 操控函数 |
| 64 | void NextSlideShow(bool check); |
| 65 | void PreviousSlideShow(); |
| 66 | void EndSlideShow(); |
| 67 | void ViewSlideShow(); |
| 68 | void ActivateSildeShowWindow(); |
| 69 | } |
| 70 | |
| 71 | [ComVisible(true)] |
nothing calls this directly
no outgoing calls
no test coverage detected