Changeset 2524 for trunk/include


Ignore:
Timestamp:
Jan 27, 2000, 12:17:52 AM (26 years ago)
Author:
sandervl
Message:

header changes

Location:
trunk/include
Files:
1 deleted
11 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/pefile.h

    r1007 r2524  
    1 /* $Id: pefile.h,v 1.3 1999-09-22 09:46:18 sandervl Exp $ */
     1/* $Id: pefile.h,v 1.4 2000-01-26 23:17:47 sandervl Exp $ */
    22
    33/*
     
    1414#include <peexe.h>
    1515#include <stdlib.h> //min & max
    16 
    17 #define LOWORD(a)   (a & 0xFFFF)
    1816
    1917#define IDS_ERRBADFILENAME  1000
  • trunk/include/win/authors.h

    r2498 r2524  
    1 /* $Id: authors.h,v 1.7 2000-01-22 10:30:30 sandervl Exp $ */
     1/* $Id: authors.h,v 1.8 2000-01-26 23:17:48 sandervl Exp $ */
    22#ifndef __WINE_AUTHORS_H
    33#define __WINE_AUTHORS_H
     
    1212    "Peter Fitzsimmons",
    1313    "Adrian Gschwend",
     14    "Jeroen van den Horn",
    1415    "Patrick Haller",
    1516    "Achim Hasenmueller",
  • trunk/include/win/mmsystem.h

    r2453 r2524  
    1 /* $Id: mmsystem.h,v 1.4 2000-01-15 22:01:09 sandervl Exp $ */
     1/* $Id: mmsystem.h,v 1.5 2000-01-26 23:17:48 sandervl Exp $ */
    22/*
    33 * MMSYSTEM - Multimedia Wine Extension ... :-)
     
    17811781#define MCIERR_FILE_WRITE               (MCIERR_BASE + 93)
    17821782
     1783#define MCIERR_NO_IDENTITY              (MCIERR_BASE + 94)
     1784
    17831785#define MCIERR_CUSTOM_DRIVER_BASE       (MCIERR_BASE + 256)
    17841786
  • trunk/include/win/shellapi.h

    r1546 r2524  
    1 /* $Id: shellapi.h,v 1.7 1999-11-02 19:06:42 sandervl Exp $ */
     1/* $Id: shellapi.h,v 1.8 2000-01-26 23:17:49 sandervl Exp $ */
    22
    33#ifndef _WINE_SHELLAPI_H
     
    129129} SHFILEINFOW;
    130130
     131DECL_WINELIB_TYPE_AW(SHFILEINFO)
     132
    131133DWORD   WINAPI SHGetFileInfoA(LPCSTR,DWORD,SHFILEINFOA*,UINT,UINT);
    132134DWORD   WINAPI SHGetFileInfoW(LPCWSTR,DWORD,SHFILEINFOW*,UINT,UINT);
    133 
     135#define SHGetFileInfo WINELIB_NAME_AW(SHGetFileInfo)
    134136
    135137/******************************************
  • trunk/include/win/winbase.h

    r2170 r2524  
    1 /* $Id: winbase.h,v 1.9 1999-12-21 00:29:30 sandervl Exp $ */
     1/* $Id: winbase.h,v 1.10 2000-01-26 23:17:49 sandervl Exp $ */
    22
    33#ifndef __WINE_WINBASE_H
     
    160160#define TF_FORCEDRIVE           0x80
    161161
     162
     163#define DRIVE_UNKNOWN              0
     164#define DRIVE_NO_ROOT_DIR          1
    162165#define DRIVE_CANNOTDETERMINE      0
    163166#define DRIVE_DOESNOTEXIST         1
  • trunk/include/win/windef.h

    r1923 r2524  
    1 /* $Id: windef.h,v 1.18 1999-12-01 18:36:47 sandervl Exp $ */
     1/* $Id: windef.h,v 1.19 2000-01-26 23:17:49 sandervl Exp $ */
    22
    33/*
     
    141141#endif
    142142
     143#if (__IBMC__ < 400) && (__IBMCPP__ < 360)
    143144#ifndef __declspec
    144145  #define __declspec(x)
     
    152153  #define dllexport
    153154#endif
     155#endif // (__IBMC__ < 400) && (__IBMCPP__ < 360)
    154156
    155157#ifndef CONST
  • trunk/include/win/windowsx.h

    r1118 r2524  
    1 /* $Id: windowsx.h,v 1.6 1999-10-04 09:55:51 sandervl Exp $ */
     1/* $Id: windowsx.h,v 1.7 2000-01-26 23:17:50 sandervl Exp $ */
    22
    33/* Copyright (C) 1999 Corel Corporation (Paul Quinn) */
     
    934934    (void)(fn)((hwnd), WM_COMMNOTIFY, (WPARAM)(cid), MAKELPARAM((flags), 0))
    935935#endif
     936
     937/* void Cls_OnContextMenu(HWND hwnd, HWND hwndContext, UINT xPos, UINT yPos) */
     938#define HANDLE_WM_CONTEXTMENU(hwnd, wParam, lParam, fn) \
     939    ((fn)((hwnd), (HWND)(wParam), (UINT)LOWORD(lParam), (UINT)HIWORD(lParam)), 0L)
     940#define FORWARD_WM_CONTEXTMENU(hwnd, hwndContext, xPos, yPos, fn) \
     941    (void)(fn)((hwnd), WM_CONTEXTMENU, (WPARAM)(HWND)(hwndContext), MAKELPARAM((UINT)(xPos), (UINT)(yPos)))
    936942
    937943/****** COMBOBOX control message APIs *****************************************/
  • trunk/include/win/wingdi.h

    r1702 r2524  
    1 /* $Id: wingdi.h,v 1.8 1999-11-11 13:15:21 sandervl Exp $ */
     1/* $Id: wingdi.h,v 1.9 2000-01-26 23:17:51 sandervl Exp $ */
    22
    33#ifndef __WINE_WINGDI_H
     
    13011301#define NUMRESERVED       106
    13021302#define COLORRES          108
     1303
     1304#define PHYSICALWIDTH     110
     1305#define PHYSICALHEIGHT    111
     1306#define PHYSICALOFFSETX   112
     1307#define PHYSICALOFFSETY   113
     1308#define SCALINGFACTORX    114
     1309#define SCALINGFACTORY    115
    13031310
    13041311/* TECHNOLOGY */
  • trunk/include/win/winsock.h

    r1316 r2524  
    1 /* $Id: winsock.h,v 1.2 1999-10-16 11:03:19 sandervl Exp $ */
     1/* $Id: winsock.h,v 1.3 2000-01-26 23:17:52 sandervl Exp $ */
    22
    33/* WINSOCK.H--definitions to be used with the WINSOCK.DLL
     
    550550  unsigned      flags;
    551551  ws_select_op* psop;
    552 } ws_socket;
     552} _ws_socket;
    553553
    554554#define WS_MAX_SOCKETS_PER_PROCESS      16
  • trunk/include/win/winuser.h

    r2443 r2524  
    1 /* $Id: winuser.h,v 1.29 2000-01-15 14:16:32 cbratschi Exp $ */
     1/* $Id: winuser.h,v 1.30 2000-01-26 23:17:52 sandervl Exp $ */
    22
    33#ifndef __INCLUDE_WINUSER_H
     
    11051105#define MSGF_NEXTWINDOW     6
    11061106#define MSGF_MAINLOOP       8
     1107#define MSGF_MAX            8
    11071108#define MSGF_USER        4096
    11081109
     
    36943695INT       WINAPIV wsnprintfW(LPWSTR,UINT,LPCWSTR,...);
    36953696#define     wsnprintf WINELIB_NAME_AW(wsnprintf)
    3696 INT       WINAPIV wsprintfA(LPSTR,LPCSTR,va_list);
    3697 INT       WINAPIV wsprintfW(LPWSTR,LPCWSTR,va_list);
     3697INT       WINAPIV wsprintfA(LPSTR,LPCSTR,...);
     3698INT       WINAPIV wsprintfW(LPWSTR,LPCWSTR,...);
    36983699#define     wsprintf WINELIB_NAME_AW(wsprintf)
    3699 INT       WINAPI wvsnprintfA(LPSTR,UINT,LPCSTR,va_list);
    3700 INT       WINAPI wvsnprintfW(LPWSTR,UINT,LPCWSTR,va_list);
     3700INT       WINAPI wvsnprintfA(LPSTR,UINT,LPCSTR,...);
     3701INT       WINAPI wvsnprintfW(LPWSTR,UINT,LPCWSTR,...);
    37013702#define     wvsnprintf WINELIB_NAME_AW(wvsnprintf)
    3702 INT       WINAPI wvsprintfA(LPSTR,LPCSTR,va_list);
    3703 INT       WINAPI wvsprintfW(LPWSTR,LPCWSTR,va_list);
     3703INT       WINAPI wvsprintfA(LPSTR,LPCSTR,...);
     3704INT       WINAPI wvsprintfW(LPWSTR,LPCWSTR,...);
    37043705#define     wvsprintf WINELIB_NAME_AW(wvsprintf)
    37053706
  • trunk/include/winimagepeldr.h

    r2219 r2524  
    1 /* $Id: winimagepeldr.h,v 1.10 1999-12-27 21:21:33 sandervl Exp $ */
     1/* $Id: winimagepeldr.h,v 1.11 2000-01-26 23:17:47 sandervl Exp $ */
    22
    33/*
     
    2727//SvL: Amount of memory the peldr dll reserves for win32 exes without fixups
    2828//(most of them need to be loaded at 4 MB; except MS Office apps of course)
    29 #define PELDR_RESERVEDMEMSIZE   16*1024*1024
     29#define PELDR_RESERVEDMEMSIZE   32*1024*1024
    3030
    3131#define ERROR_INTERNAL          1
Note: See TracChangeset for help on using the changeset viewer.