repo.or.cz
/
ooovba.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Update ooo320-m1
[ooovba.git]
/
desktop
/
win32
/
source
/
applauncher
/
launcher.hxx
blob
b1b4033b2747c37602836730db51ae90eca6fa61
1
#pragma once
2
#ifndef __cplusplus
3
#error Need C++ to compile
4
#endif
5
6
#ifndef _INC_TCHAR
7
# ifdef UNICODE
8
# define _UNICODE
9
# endif
10
# include <tchar.h>
11
#endif
12
13
#ifdef UNICODE
14
# define GetArgv( pArgc ) CommandLineToArgvW( GetCommandLine(), pArgc )
15
#else
16
# define GetArgv( pArgc ) (*pArgc = __argc, __argv)
17
#endif
18
19
#define OFFICE_IMAGE_NAME _T(
"soffice"
)
20
21
extern
_TCHAR APPLICATION_SWITCH
[];