Subversion Repositories filter_foundry

Rev

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

Rev 259 Rev 444
Line 20... Line 20...
20
#include <windows.h>
20
#include <windows.h>
21
 
21
 
22
#include "dbg.h"
22
#include "dbg.h"
23
#include "str.h"
23
#include "str.h"
24
 
24
 
25
void dbg(const char *s){
25
void dbg(TCHAR *s){
26
        MessageBox(NULL,s,"plugin debug",0);
26
        MessageBox(NULL,s,TEXT("plugin debug"),0);
27
}
27
}
28
 
-
 
29
#define DebugStr dbg(INPLACEP2CSTR(s))
-
 
30
/*
-
 
31
void DebugStr(StringPtr s){
-
 
32
        dbg(myp2cstr(s));
-
 
33
        myc2pstr((char*)s);
-
 
34
}
-
 
35
*/
-