Ignore:
Timestamp:
Apr 19, 2000, 4:46:07 PM (25 years ago)
Author:
sandervl
Message:

update with latest wine code

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/wrc/newstruc.c

    r882 r3426  
    1313#include <string.h>
    1414#include <assert.h>
    15 #include <string.h>
    1615
    1716#include "wrc.h"
     
    280279}
    281280
    282 style_pair_t *new_style_pair(int style, int exstyle)
     281style_pair_t *new_style_pair(style_t *style, style_t *exstyle)
    283282{
    284283        style_pair_t *sp = (style_pair_t *)xmalloc(sizeof(style_pair_t));
     
    287286        return sp;
    288287}
     288
     289style_t *new_style(DWORD or_mask, DWORD and_mask)
     290{
     291        style_t *st = (style_t *)xmalloc(sizeof(style_t));
     292        st->or_mask = or_mask;
     293        st->and_mask = and_mask;
     294        return st;
     295}
Note: See TracChangeset for help on using the changeset viewer.