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.
25 lines
548 B
25 lines
548 B
//=================================================================
|
|
|
|
//
|
|
|
|
// usebinding.cpp -- Generic association class
|
|
|
|
//
|
|
|
|
// Copyright (c) 2000-2001 Microsoft Corporation, All Rights Reserved
|
|
//
|
|
//=================================================================
|
|
|
|
#include "precomp.h"
|
|
#include <Binding.h>
|
|
|
|
CBinding MyActiveRoute(
|
|
L"Win32_ActiveRoute",
|
|
L"root\\cimv2",
|
|
L"Win32_IP4RouteTable",
|
|
L"Win32_IP4PersistedRouteTable",
|
|
L"SystemElement",
|
|
L"SameElement",
|
|
L"Destination",
|
|
L"Destination"
|
|
);
|