repo.or.cz
/
ruby-svn.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* transcode_data.h (rb_transcoder_stateful_type_t): defined.
[ruby-svn.git]
/
wince
/
wincemain.c
blob
5122b57d02ee1b1511cf31bcfc27a069aa7e1ed3
1
#include <windows.h>
2
#include <stdio.h>
3
#include
"wince.h"
4
5
extern
int
main
(
int
,
char
**);
6
7
8
int
WINAPI
9
WinMain
(
HINSTANCE current
,
HINSTANCE prev
,
LPWSTR wcmd
,
int
showcmd
)
10
{
11
/* wchar_t -> char */
12
wce_SetCommandLine
(
wcmd
);
13
14
wce_SetCurrentDir
();
15
16
/* main. */
17
return
main
(
0
,
NULL
);
18
}