Changeset 9985 for trunk/include


Ignore:
Timestamp:
Apr 7, 2003, 8:40:07 PM (22 years ago)
Author:
sandervl
Message:

PF: header updates

Location:
trunk/include
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/FastInfoBlocks.h

    r9876 r9985  
    1 /* $Id: FastInfoBlocks.h,v 1.1 2003-02-28 10:28:09 sandervl Exp $
     1/* $Id: FastInfoBlocks.h,v 1.2 2003-04-07 18:40:06 sandervl Exp $
    22 *
    33 * Fast InfoBlock Access.
     
    9898
    9999
     100/**
     101 * System stuff
     102 */
     103#define fibGetMsCount()         (_gpfibGIS->SIS_MsCount)
    100104
    101105
  • trunk/include/odin.h

    r9735 r9985  
    7373/* ---------- GCC/EMX ---------- */
    7474#ifdef __GNUC__
    75   #if defined(__GNUC__) && (__GNUC__ <= 2) && (__GNUC_MINOR__ < 7)
    76     #error You need gcc >= 2.7 to build Odin32
     75  #if defined(__GNUC__) && (__GNUC__ <= 3) && (__GNUC_MINOR__ < 2)
     76    #error You need gcc >= 3.2 to build Odin32
    7777  #endif
    7878  #if !defined(__stdcall__)             /* this is also defined in windef.h if !defined(WIN32OS2) */
     
    8484  #define WIN32API  __stdcall
    8585  #define WINAPI    __stdcall
    86   #define SYSTEM   
     86  #define SYSTEM    CDECL
    8787  #define PASCAL    __stdcall
    8888  #define INLINE    __inline__
     
    9090  #define NONAMELESSUNION
    9191  #define NONAMELESSSTRUCT
     92  #undef  APIENTRY
     93  #define APIENTRY  CDECL
     94
    9295#else
    9396
  • trunk/include/win/debugtools.h

    r9707 r9985  
    66#include <odinwrap.h>
    77#include <odin.h>
     8#include <stdio.h>
    89
    910#ifndef __MISC_H__
     
    206207#endif
    207208
     209#ifdef __GNUC__
     210inline static const char *debugstr_guid( const GUID *id )
     211#else
    208212static char *debugstr_guid( const GUID *id )
     213#endif
    209214{
    210215    static char temp[64];
    211     char *str;
    212216
    213217    if (!id) return "(null)";
     
    230234#endif
    231235
     236#ifdef __GNUC__
     237inline static LPCSTR debugstr_an (LPCSTR src, int n)
     238#else
    232239static LPCSTR debugstr_an (LPCSTR src, int n)
     240#endif
    233241{
    234242  LPSTR dst;
     
    281289/* ---------------------------------------------------------------------- */
    282290
     291#ifdef __GNUC__
     292inline static LPCSTR debugstr_wn (LPCWSTR src, int n)
     293#else
    283294static LPCSTR debugstr_wn (LPCWSTR src, int n)
     295#endif
    284296{
    285297  LPSTR dst;
  • trunk/include/win/ntddk.h

    r9683 r9985  
    10431043NTSTATUS WINAPI RtlInitializeCriticalSection( RTL_CRITICAL_SECTION *crit );
    10441044NTSTATUS WINAPI RtlInitializeCriticalSectionAndSpinCount( RTL_CRITICAL_SECTION *crit, DWORD spincount );
     1045
     1046void     WINAPI RtlInitializeBitMap(PRTL_BITMAP,LPBYTE,ULONG);
     1047void     WINAPI RtlSetBits(PRTL_BITMAP,ULONG,ULONG);
     1048BOOLEAN  WINAPI RtlAreBitsSet(PCRTL_BITMAP,ULONG,ULONG);
     1049BOOLEAN  WINAPI RtlAreBitsClear(PCRTL_BITMAP,ULONG,ULONG);
     1050
    10451051NTSTATUS WINAPI RtlDeleteCriticalSection( RTL_CRITICAL_SECTION *crit );
    10461052NTSTATUS WINAPI RtlpWaitForCriticalSection( RTL_CRITICAL_SECTION *crit );
     
    10661072
    10671073DWORD WINAPI RtlAdjustPrivilege(DWORD x1,DWORD x2,DWORD x3,DWORD x4);
    1068 DWORD WINAPI RtlIntegerToChar(DWORD x1,DWORD x2,DWORD x3,DWORD x4);
     1074NTSTATUS  WINAPI RtlIntegerToChar(ULONG,ULONG,ULONG,PCHAR);
    10691075LPVOID WINAPI RtlNormalizeProcessParams(LPVOID x);
    10701076DWORD WINAPI RtlNtStatusToDosError(NTSTATUS status);
  • trunk/include/win/ntdef.h

    r56 r9985  
    1 /* $Id: ntdef.h,v 1.2 1999-06-08 15:49:37 phaller Exp $ */
    2 
    31#ifndef __WINE_NTDEF_H
    42#define __WINE_NTDEF_H
     
    3129typedef LONG NTSTATUS;
    3230typedef NTSTATUS *PNTSTATUS;
     31
     32typedef CONST char *PCSZ;
    3333
    3434typedef short CSHORT;
Note: See TracChangeset for help on using the changeset viewer.