Discontinue PRODUCT_VERSION
Signed-off-by: Simon Rozman <simon@rozman.si>
This commit is contained in:
@@ -92,8 +92,12 @@ DWORD WINAPI EapPeerGetInfo(EAP_TYPE* pEapType, EAP_PEER_METHOD_ROUTINES* pEapPe
|
||||
if (pEapType->type != EAPMETHOD_TYPE)
|
||||
return dwResult = ERROR_NOT_SUPPORTED;
|
||||
|
||||
pEapPeerMethodRoutines->dwVersion = PRODUCT_VERSION;
|
||||
pEapPeerMethodRoutines->pEapType = NULL;
|
||||
pEapPeerMethodRoutines->dwVersion =
|
||||
((PRODUCT_VERSION_MAJ & 0xff) << 24) |
|
||||
((PRODUCT_VERSION_MIN & 0xff) << 16) |
|
||||
((PRODUCT_VERSION_REV & 0xff) << 8) |
|
||||
(PRODUCT_VERSION_BUILD & 0xff);
|
||||
pEapPeerMethodRoutines->pEapType = NULL;
|
||||
|
||||
pEapPeerMethodRoutines->EapPeerInitialize = EapPeerInitialize;
|
||||
pEapPeerMethodRoutines->EapPeerShutdown = EapPeerShutdown;
|
||||
|
||||
Submodule MSI/MSIBuild updated: 05edc2b598...2b76e6de79
@@ -16,12 +16,6 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
//
|
||||
// Product version as a single DWORD
|
||||
// Note: Used for version comparison within C/C++ code.
|
||||
//
|
||||
#define PRODUCT_VERSION 0x01030400
|
||||
|
||||
//
|
||||
// Product version by components
|
||||
// Note: Resource Compiler has limited preprocessing capability,
|
||||
|
||||
Reference in New Issue
Block a user