/* Derived from source code of TrueCrypt 7.1a, which is Copyright (c) 2008-2012 TrueCrypt Developers Association and which is governed by the TrueCrypt License 3.0. Modifications and additions to the original source code (contained in this file) and all other portions of this file are Copyright (c) 2013-2016 IDRIX and are governed by the Apache License 2.0 the full text of which is contained in the file License.txt included in VeraCrypt binary and source code distribution packages. */ #ifndef TC_HEADER_Volume_VolumeSlot #define TC_HEADER_Volume_VolumeSlot #include "Platform/Platform.h" namespace VeraCrypt { typedef uint32 VolumeSlotNumber; } #endif // TC_HEADER_Volume_VolumeSlot type="text/css" />
VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Release/Setup Files/veracrypt.Inf
blob: e2e1691e894a9bb2716d5da616e3d49d272a04e0 (plain)
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
;;;
;;; VeraCrypt
;;;
;;;
;;; Copyright (c) 2018, IDRIX
;;;

[Version]
signature   = "$Windows NT$"
Class       = "Encryption"                              ;This is determined by the work this filter driver does
ClassGuid   = {a0a701c0-a511-42ff-aa6c-06dc0395576f}    ;This value is determined by the Class
Provider    = %ProviderString%
DriverVer   = 11/05/2019,1.24.8.1
CatalogFile = veracrypt.cat


[DestinationDirs]
DefaultDestDir          = 12
veracrypt.DriverFiles  = 12            ;%windir%\system32\drivers

;;
;; Default install sections
;;

[DefaultInstall]
OptionDesc          = %ServiceDescription%
CopyFiles           = veracrypt.DriverFiles
AddReg              = veracrypt.AddReg

[DefaultInstall.Services]
AddService          = veracrypt,,veracrypt.Service

;;
;; Default uninstall sections
;;

[DefaultUninstall]
DelFiles   = veracrypt.DriverFiles

[DefaultUninstall.Services]
DelService = veracrypt,0x200      ;Ensure service is stopped before deleting

;
; Services Section
;

[veracrypt.Service]
DisplayName      = %ServiceDescription%
Description      = %ServiceDescription%
ServiceBinary    = %12%\veracrypt.sys        ;%windir%\system32\drivers\
ServiceType      = 2                            ;SERVICE_FILE_SYSTEM_DRIVER
StartType        = 0                           ;SERVICE_BOOT_START
ErrorControl     = 1                            ;SERVICE_ERROR_NORMAL
LoadOrderGroup   = "Filter"

;
; Copy Files
;

[veracrypt.DriverFiles]
veracrypt.sys

[SourceDisksFiles]
veracrypt.sys = 1,,

[SourceDisksNames]
1 = %DiskId1%,,,

;
; Registry Entries
;

[veracrypt.AddReg]
HKLM, System\CurrentControlSet\Control\Class\{4d36e967-e325-11ce-bfc1-08002be10318}, UpperFilters, 0x00010008, veracrypt
HKLM, System\CurrentControlSet\Control\Class\{4d36e967-e325-11ce-bfc1-08002be10318}, UpperFilters, 0x00010008, PartMgr

;;
;; String Section
;;

[Strings]
ProviderString          = "IDRIX"
ServiceDescription      = "veracrypt"
DiskId1                 = "VeraCrypt Device Installation Disk"