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.
28 lines
678 B
28 lines
678 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1997.
|
|
//
|
|
// File: U P N P D E F S . H
|
|
//
|
|
// Contents: UPnP Common defines
|
|
//
|
|
// Notes:
|
|
//
|
|
// Author: jeffspr 8 Nov 1999
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
#ifndef _UPNPDEFS_H_
|
|
#define _UPNPDEFS_H_
|
|
|
|
// These are somewhat arbitrary, in that they just have to be less than 64K
|
|
// (for XML's sake, probably), but better to start low and grow if needed
|
|
//
|
|
#define MAX_UDN_SZ 256
|
|
#define MAX_USN_SZ (MAX_UDN_SZ + 32)
|
|
|
|
#endif // _UPNPDEFS_H_
|
|
|
|
|