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

PF: header updates

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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;
Note: See TracChangeset for help on using the changeset viewer.