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.
37 lines
959 B
37 lines
959 B
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// Microsoft WMI OLE DB Provider
|
|
//
|
|
// (C) Copyright 1999 Microsoft Corporation. All Rights Reserved.
|
|
//
|
|
// datamap.h
|
|
////////////////////////////////////////////////////////////////////////////
|
|
#ifndef _DATAMAP_HEADER
|
|
#define _DATAMAP_HEADER
|
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
//
|
|
// DATAMAP.H
|
|
//
|
|
// Module:
|
|
// Purpose:
|
|
//
|
|
// Copyright (c)1999 Microsoft Corporation, All Rights Reserved
|
|
//
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
// Typedefs ------------------------------------------------------------------
|
|
typedef VOID** LPLPVOID;
|
|
|
|
typedef long int SDWORD;
|
|
typedef short int SWORD;
|
|
typedef unsigned long int UDWORD;
|
|
typedef unsigned short int UWORD;
|
|
typedef signed long SLONG;
|
|
typedef unsigned long ULONG;
|
|
typedef unsigned short USHORT;
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|