Subversion Repositories filter_foundry

Rev

Rev 489 | Rev 499 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 489 Rev 492
Line 20... Line 20...
20
#include "dbg.h"
20
#include "dbg.h"
21
#include "str.h"
21
#include "str.h"
22
 
22
 
23
void dbg(TCHAR *s){
23
void dbg(TCHAR *s){
24
    #ifdef DEBUG
24
    #ifdef DEBUG
25
        MessageBox(NULL,s,TEXT("plugin debug"),0);
25
        MessageBox(NULL,s,TEXT("plugin debug"),0); // TODO (Not so important): TRANSLATE
26
    #else
26
    #else
27
    UNREFERENCED_PARAMETER(s);
27
    UNREFERENCED_PARAMETER(s);
28
        #endif
28
        #endif
29
}
29
}