office-gobmx/desktop/win32/source/applauncher/launcher.hxx
Rüdiger Timm 492bada060 INTEGRATION: CWS oasissysint (1.1.2); FILE ADDED
2004/08/27 16:09:26 hro 1.1.2.1: #i28298# New application launcher binaries
2004-09-09 08:16:53 +00:00

21 lines
421 B
C++

#pragma once
#ifndef __cplusplus
#error Need C++ to compile
#endif
#ifndef _INC_TCHAR
# ifdef UNICODE
# define _UNICODE
# endif
# include <tchar.h>
#endif
#ifdef UNICODE
# define GetArgv( pArgc ) CommandLineToArgvW( GetCommandLine(), pArgc )
#else
# define GetArgv( pArgc ) (*pArgc = __argc, __argv)
#endif
#define OFFICE_IMAGE_NAME _T("soffice")
extern _TCHAR APPLICATION_SWITCH[];