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.
31 lines
757 B
31 lines
757 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1997.
|
|
//
|
|
// File: C O N N U T I L . H
|
|
//
|
|
// Contents:
|
|
//
|
|
// Notes:
|
|
//
|
|
// Author: tongl 29 April 1999
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
EXTERN_C
|
|
HRESULT APIENTRY HrLaunchConnection(const GUID& guidId);
|
|
|
|
HIMAGELIST WINAPI ImageList_LoadImageAndMirror(
|
|
HINSTANCE hi,
|
|
LPCTSTR lpbmp,
|
|
int cx,
|
|
int cGrow,
|
|
COLORREF crMask,
|
|
UINT uType,
|
|
UINT uFlags);
|
|
|
|
#define ImageList_LoadBitmapAndMirror(hi, lpbmp, cx, cGrow, crMask) \
|
|
ImageList_LoadImageAndMirror(hi, lpbmp, cx, cGrow, crMask, IMAGE_BITMAP, 0)
|