Source code of Windows XP (NT5)
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.
 
 
 
 
 
 

56 lines
672 B

/*
Copyright (c) 1997-1999 Microsoft Corporation
Module Name:
sdpver.h
Abstract:
Author:
*/
#ifndef __SDP_VERSION__
#define __SDP_VERSION__
#include "sdpcommo.h"
#include "sdpval.h"
#include "sdpfld.h"
const ULONG CURRENT_SDP_VERSION = 0;
class _DllDecl SDP_VERSION : public SDP_VALUE
{
public:
SDP_VERSION();
inline USHORT GetVersionValue() const;
private:
SDP_USHORT m_Version;
virtual BOOL InternalParseLine(
IN OUT CHAR *&Line
);
virtual void InternalReset();
};
inline USHORT
SDP_VERSION::GetVersionValue(
) const
{
return m_Version.GetValue();
}
#endif // __SDP_VERSION__