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.
16 lines
620 B
16 lines
620 B
#pragma once
|
|
// ---------------------------------------------------------------------------
|
|
// EXPORTS.H
|
|
// ---------------------------------------------------------------------------
|
|
// Copyright (c) 1999 Microsoft Corporation
|
|
//
|
|
// Ordinals and prototypes for NONAME exports
|
|
//
|
|
// ---------------------------------------------------------------------------
|
|
|
|
// Exported from mail dlls for object registration
|
|
#define DLLEXPORT_REGCLASSOBJS 3
|
|
#define DLLEXPORT_UNREGCLASSOBJS 4
|
|
|
|
typedef HRESULT (STDMETHODCALLTYPE *PFNREGCLASSOBJS)(void);
|
|
typedef HRESULT (STDMETHODCALLTYPE *PFNUNREGCLASSOBJS)(void);
|