Changeset 7508 for trunk/src/shlwapi


Ignore:
Timestamp:
Nov 30, 2001, 8:02:33 PM (24 years ago)
Author:
sandervl
Message:

removed TRACE/WARN macro redefinition

Location:
trunk/src/shlwapi
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/shlwapi/ordinal.c

    r7502 r7508  
    3232extern HMODULE SHLWAPI_hmpr = 0;
    3333extern HMODULE SHLWAPI_hmlang = 0;
    34 #undef FIXME
    35 #ifdef DEBUG
    36 // PH 2001-11-30
    37 // this macro definition causes the control leave the scope of a
    38 // non-curly-braced preceeding if statement. Therefore,
    39 //   if (p!=NULL)
    40 //      TRACE("p->a=%d", p->a)
    41 // crashes.
    42 //
    43 // !!! ENSURE TRACES AND FIXMES WITH PRECEEDING IF STATEMENT
    44 // !!! ARE PUT INTO CURLY BRACES
    45 #define FIXME WriteLog("FIXME %s", __FUNCTION__); WriteLog
    46 #else
    47 #define FIXME 1 ? (void)0 : (void)((int (*)(char *, ...)) NULL)
    48 #endif
    4934#else
    5035extern HINSTANCE shlwapi_hInstance;
  • trunk/src/shlwapi/path.c

    r7502 r7508  
    2828#include "debugtools.h"
    2929
    30 
    31 #ifdef __WIN32OS2__
    32 #undef FIXME
    33 #ifdef DEBUG
    34 // PH 2001-11-30
    35 // this macro definition causes the control leave the scope of a
    36 // non-curly-braced preceeding if statement. Therefore,
    37 //   if (p!=NULL)
    38 //      TRACE("p->a=%d", p->a)
    39 // crashes.
    40 //
    41 // !!! ENSURE TRACES AND FIXMES WITH PRECEEDING IF STATEMENT
    42 // !!! ARE PUT INTO CURLY BRACES
    43 #define FIXME WriteLog("FIXME %s", __FUNCTION__); WriteLog
    44 #else
    45 #define FIXME 1 ? (void)0 : (void)((int (*)(char *, ...)) NULL)
    46 #endif
    47 #endif
    4830
    4931DEFAULT_DEBUG_CHANNEL(shell);
  • trunk/src/shlwapi/reg.c

    r7502 r7508  
    1818#include "shlwapi_odin.h"
    1919
    20 #undef FIXME
    21 #ifdef DEBUG
    22 // PH 2001-11-30
    23 // this macro definition causes the control leave the scope of a
    24 // non-curly-braced preceeding if statement. Therefore,
    25 //   if (p!=NULL)
    26 //      TRACE("p->a=%d", p->a)
    27 // crashes.
    28 //
    29 // !!! ENSURE TRACES AND FIXMES WITH PRECEEDING IF STATEMENT
    30 // !!! ARE PUT INTO CURLY BRACES
    31 #define FIXME WriteLog("FIXME %s", __FUNCTION__); WriteLog
    32 #else
    33 #define FIXME 1 ? (void)0 : (void)((int (*)(char *, ...)) NULL)
    34 #endif
    3520#endif
    3621
  • trunk/src/shlwapi/string.c

    r7502 r7508  
    2828#include "wine/unicode.h"
    2929#include "debugtools.h"
    30 
    31 #ifdef __WIN32OS2__
    32 #undef FIXME
    33 #ifdef DEBUG
    34 // PH 2001-11-30
    35 // this macro definition causes the control leave the scope of a
    36 // non-curly-braced preceeding if statement. Therefore,
    37 //   if (p!=NULL)
    38 //      TRACE("p->a=%d", p->a)
    39 // crashes.
    40 //
    41 // !!! ENSURE TRACES AND FIXMES WITH PRECEEDING IF STATEMENT
    42 // !!! ARE PUT INTO CURLY BRACES
    43 #define FIXME WriteLog("FIXME %s", __FUNCTION__); WriteLog
    44 #else
    45 #define FIXME 1 ? (void)0 : (void)((int (*)(char *, ...)) NULL)
    46 #endif
    47 #endif
    4830
    4931DEFAULT_DEBUG_CHANNEL(shell);
  • trunk/src/shlwapi/url.c

    r7502 r7508  
    1111#include "shlwapi.h"
    1212#include "debugtools.h"
    13 
    14 #ifdef __WIN32OS2__
    15 #undef FIXME
    16 #ifdef DEBUG
    17 // PH 2001-11-30
    18 // this macro definition causes the control leave the scope of a
    19 // non-curly-braced preceeding if statement. Therefore,
    20 //   if (p!=NULL)
    21 //      TRACE("p->a=%d", p->a)
    22 // crashes.
    23 //
    24 // !!! ENSURE TRACES AND FIXMES WITH PRECEEDING IF STATEMENT
    25 // !!! ARE PUT INTO CURLY BRACES
    26 #define FIXME WriteLog("FIXME %s", __FUNCTION__); WriteLog
    27 #else
    28 #define FIXME 1 ? (void)0 : (void)((int (*)(char *, ...)) NULL)
    29 #endif
    30 #endif
    3113
    3214DEFAULT_DEBUG_CHANNEL(shell);
     
    197179
    198180    if(dwFlags & ~URL_ESCAPE_SPACES_ONLY)
    199     {
    200       FIXME("Unimplemented flags: %08lx\n", dwFlags);
    201     }
     181        FIXME("Unimplemented flags: %08lx\n", dwFlags);
    202182
    203183    for(src = pszUrl; *src; src++) {
Note: See TracChangeset for help on using the changeset viewer.