Subversion Repositories spk

Rev

Rev 1 | Rev 242 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1 Rev 191
Line 2... Line 2...
2
// or project specific include files that are used frequently, but
2
// or project specific include files that are used frequently, but
3
// are changed infrequently
3
// are changed infrequently
4
#pragma once
4
#pragma once
5
 
5
 
6
#include <CyString.h>
6
#include <CyString.h>
-
 
7
#include <Utils/WString.h>
7
#include "../../common/InputBox.h"
8
#include "../../common/InputBox.h"
8
 
9
 
9
using namespace System;
10
using namespace System;
10
using namespace System::Runtime::InteropServices;
11
using namespace System::Runtime::InteropServices;
11
 
12
 
Line 20... Line 21...
20
}
21
}
21
 
22
 
22
inline System::String ^SystemStringFromCyString ( CyString str )
23
inline System::String ^SystemStringFromCyString ( CyString str )
23
{
24
{
24
	System::String ^Str = gcnew System::String(str.c_str());
25
	System::String ^Str = gcnew System::String(str.c_str());
-
 
26
	return Str;
-
 
27
}
-
 
28
 
-
 
29
inline System::String^ _US(const Utils::WString& str)
-
 
30
{
-
 
31
	System::String^ Str = gcnew System::String(str.c_str());
25
	return Str;
32
	return Str;
26
}
33
}