mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 04:11:30 +00:00
15 lines
363 B
Plaintext
15 lines
363 B
Plaintext
|
//
|
||
|
// Copyright (C) Microsoft. All rights reserved.
|
||
|
//
|
||
|
#include <windows.h>
|
||
|
|
||
|
#include <ntverp.h>
|
||
|
|
||
|
#define VER_FILETYPE VFT_DRV
|
||
|
#define VER_FILESUBTYPE VFT2_DRV_SYSTEM
|
||
|
#define VER_FILEDESCRIPTION_STR "Fast FAT File System Driver"
|
||
|
#define VER_INTERNALNAME_STR "fastfat.sys"
|
||
|
#define VER_ORIGINALFILENAME_STR "FastFAT.Sys"
|
||
|
|
||
|
#include "common.ver"
|