MCPcopy Create free account
hub / github.com/Alan-CRL/Inkeys / IPptCOMServer

Interface IPptCOMServer

PptCOM/PptCOM.cs:46–68  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

44
45namespace 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)]

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected