Changeset 280 for trunk/include/win/wine


Ignore:
Timestamp:
Jul 7, 1999, 9:57:37 AM (26 years ago)
Author:
phaller
Message:

Fix: various fixes for DDRAW + DSOUND

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/win/wine/dd_obj_base.h

    r213 r280  
    1 /* $Id: dd_obj_base.h,v 1.1 1999-06-26 11:43:12 achimha Exp $ */
     1/* $Id: dd_obj_base.h,v 1.2 1999-07-07 07:57:37 phaller Exp $ */
    22/*
    33 * This file defines the macros and types necessary to define COM interfaces,
     
    313313    ret (CALLBACK *##xfn)(ICOM_INTERFACE* me);
    314314
    315 #define ICOM_METHOD1(ret,xfn,ta,na) \
     315#define ICOM_METHOD1(ret,xfn,ta,a) \
    316316    ret (CALLBACK *##xfn)(ICOM_INTERFACE* me,ta a);
    317317
    318 #define ICOM_METHOD2(ret,xfn,ta,na,tb,nb) \
     318#define ICOM_METHOD2(ret,xfn,ta,a,tb,b) \
    319319    ret (CALLBACK *##xfn)(ICOM_INTERFACE* me,ta a,tb b);
    320320
    321 #define ICOM_METHOD3(ret,xfn,ta,na,tb,nb,tc,nc) \
     321#define ICOM_METHOD3(ret,xfn,ta,a,tb,b,tc,c) \
    322322    ret (CALLBACK *##xfn)(ICOM_INTERFACE* me,ta a,tb b,tc c);
    323323
    324 #define ICOM_METHOD4(ret,xfn,ta,na,tb,nb,tc,nc,td,nd) \
     324#define ICOM_METHOD4(ret,xfn,ta,a,tb,b,tc,c,td,d) \
    325325    ret (CALLBACK *##xfn)(ICOM_INTERFACE* me,ta a,tb b,tc c,td d);
    326326
    327 #define ICOM_METHOD5(ret,xfn,ta,na,tb,nb,tc,nc,td,nd,te,ne) \
     327#define ICOM_METHOD5(ret,xfn,ta,a,tb,b,tc,c,td,d,te,e) \
    328328    ret (CALLBACK *##xfn)(ICOM_INTERFACE* me,ta a,tb b,tc c,td d,te e);
    329329
Note: See TracChangeset for help on using the changeset viewer.