dispatch.c (c2c66aff) | dispatch.c (d506c2af) |
---|---|
1/** 2 * Dispatch API functions 3 * 4 * Copyright 2000 Francois Jacques, Macadamian Technologies Inc. 5 * 6 * This library is free software; you can redistribute it and/or 7 * modify it under the terms of the GNU Lesser General Public 8 * License as published by the Free Software Foundation; either --- 5 unchanged lines hidden (view full) --- 14 * Lesser General Public License for more details. 15 * 16 * You should have received a copy of the GNU Lesser General Public 17 * License along with this library; if not, write to the Free Software 18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA 19 * 20 */ 21 | 1/** 2 * Dispatch API functions 3 * 4 * Copyright 2000 Francois Jacques, Macadamian Technologies Inc. 5 * 6 * This library is free software; you can redistribute it and/or 7 * modify it under the terms of the GNU Lesser General Public 8 * License as published by the Free Software Foundation; either --- 5 unchanged lines hidden (view full) --- 14 * Lesser General Public License for more details. 15 * 16 * You should have received a copy of the GNU Lesser General Public 17 * License along with this library; if not, write to the Free Software 18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA 19 * 20 */ 21 |
22#include "precomp.h" | 22#include "config.h" |
23 | 23 |
24#include <stdlib.h> 25#include <string.h> 26#include <stdarg.h> 27#include <stdio.h> 28#include <ctype.h> 29 30#define COBJMACROS 31 32#include "windef.h" 33#include "winbase.h" 34#include "objbase.h" 35#include "oleauto.h" 36#include "winerror.h" 37 38#include "wine/debug.h" 39 |
|
24WINE_DEFAULT_DEBUG_CHANNEL(ole); 25 26/****************************************************************************** 27 * DispInvoke (OLEAUT32.30) 28 * 29 * Call an object method using the information from its type library. 30 * 31 * RETURNS --- 417 unchanged lines hidden --- | 40WINE_DEFAULT_DEBUG_CHANNEL(ole); 41 42/****************************************************************************** 43 * DispInvoke (OLEAUT32.30) 44 * 45 * Call an object method using the information from its type library. 46 * 47 * RETURNS --- 417 unchanged lines hidden --- |