Keyboard settings Blank screen issue fixed
[framework/uifw/ise-default.git] / mcf / utils / win32 / mcfutils-win32.cpp
1 /*
2  * Copyright 2012  Samsung Electronics Co., Ltd
3  *
4  * Licensed under the Flora License, Version 1.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.tizenopensource.org/license
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 \r
18 #include <stdarg.h>\r
19 \r
20 #include "mcfutils.h"\r
21 #include "mcfdebug.h"\r
22 \r
23 using namespace mcf;\r
24 \r
25 mcfboolean\r
26 CMCFUtilsImplWin32::get_screen_resolution(mcfint *x, mcfint *y)\r
27 {\r
28         MCF_DEBUG();\r
29         return TRUE;\r
30 }\r
31 \r
32 mcfint CMCFUtilsImplWin32::log(const mcfchar *fmt, ...)\r
33 {\r
34         MCF_DEBUG();\r
35         va_list argptr;\r
36         mcfint ret = 0;\r
37 \r
38         va_start(argptr, fmt);\r
39         printf(fmt, argptr);\r
40         va_end(argptr);\r
41 \r
42         return ret;\r
43 }\r