1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
// NSCmpts.idl : IDL source for NSCmpts.dll
//
// This file will be processed by the MIDL tool to
// produce the type library (NSCmpts.tlb) and marshalling code.
import "oaidl.idl";
import "ocidl.idl";
import "../interfaces/cmptifaces.idl";
[
uuid(34F11693-F275-11d2-A589-0020182B97FC),
version(2.5),
helpstring("NightSec Components 2.5")
]
library NightSecCmpts
{
importlib("stdole32.tlb");
[
uuid(34F11694-F275-11d2-A589-0020182B97FC),
helpstring("Empties the recycle bin and Norton Protected Files")
]
coclass EmptyRecycleBin
{
interface ISecureShutdownWin;
};
[
uuid(34F11695-F275-11d2-A589-0020182B97FC),
helpstring("Clears the temp folder")
]
coclass EmptyTempFolder
{
interface ISecureShutdownWin;
};
[
uuid(34F11696-F275-11d2-A589-0020182B97FC),
helpstring("Delete swap file command")
]
coclass DeleteSwapFile
{
interface ISecureShutdownDOS;
};
[
uuid(34F11697-F275-11d2-A589-0020182B97FC),
helpstring("Command for running scandisk")
]
coclass RunScanDisk
{
interface ISecureShutdownDOS;
};
[
uuid(34F11698-F275-11d2-A589-0020182B97FC),
helpstring("Command for Wiping free space on hard disk(s)")
]
coclass WipefreeSpace
{
interface ISecureShutdownDOS;
};
[
uuid(2E47D920-3D64-11D3-BF0A-0020182B97FC),
helpstring("Backs up the users files")
]
coclass Backup
{
[default] interface ISecureShutdownWin;
};
[
uuid(E85A26C1-946D-11D3-BFC4-0020182B97FC),
helpstring("BackupSourceProp Class")
]
coclass BackupSourceProp
{
interface IUnknown;
};
[
uuid(E85A26C2-946D-11D3-BFC4-0020182B97FC),
helpstring("BackupDestProp Class")
]
coclass BackupDestProp
{
interface IUnknown;
};
[
uuid(E85A26C3-946D-11D3-BFC4-0020182B97FC),
helpstring("BackupAdvancedProp Class")
]
coclass BackupAdvancedProp
{
interface IUnknown;
};
[
uuid(22AD5F42-A7F1-11D3-82E3-0020182B97FC),
helpstring("Encrypts the user's files")
]
coclass Encrypt
{
[default] interface ISecureShutdownWin;
};
[
uuid(B4981E50-A882-11D3-82E4-0020182B97FC),
helpstring("EncryptSourceProp Class")
]
coclass EncryptSourceProp
{
interface IUnknown;
};
[
uuid(93425F13-BC15-11D3-82FF-005056D45AB0),
helpstring("EncryptAdvancedProp Class")
]
coclass EncryptAdvancedProp
{
interface IUnknown;
};
};
|