mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
313 B
21 lines
313 B
#ifndef _VERSION_H
|
|
#define _VERSION_H
|
|
|
|
#include "windows.h"
|
|
#include "attr.h"
|
|
|
|
PSTR
|
|
QueryVersionEntry(
|
|
IN OUT PVERSION_STRUCT pVer,
|
|
IN PSTR pszField);
|
|
|
|
BOOL
|
|
InitVersionStruct(
|
|
IN OUT PVERSION_STRUCT pVer);
|
|
|
|
VOID
|
|
DeleteVersionStruct(
|
|
IN PVERSION_STRUCT pVer);
|
|
|
|
|
|
#endif // _VERSION_H
|