mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 20:23:01 +00:00
* Sync up to trunk HEAD (r62285). Branch guys deserve the significant speedups too ;)
svn path=/branches/shell-experiments/; revision=62286
This commit is contained in:
commit
ddb3d908c9
1259 changed files with 40366 additions and 5588 deletions
|
@ -1,19 +1,20 @@
|
|||
|
||||
add_definitions(-DDISABLE_HTMLHELP_SUPPORT=1)
|
||||
|
||||
add_executable(calc
|
||||
list(APPEND SOURCE
|
||||
about.c
|
||||
convert.c
|
||||
function.c
|
||||
rpn.c
|
||||
utl.c
|
||||
winmain.c
|
||||
resource.rc)
|
||||
calc.h)
|
||||
|
||||
add_executable(calc ${SOURCE} resource.rc)
|
||||
set_module_type(calc win32gui UNICODE)
|
||||
add_importlibs(calc advapi32 user32 gdi32 msvcrt kernel32)
|
||||
if(MSVC)
|
||||
add_importlibs(calc ntdll)
|
||||
endif()
|
||||
add_pch(calc calc.h)
|
||||
add_pch(calc calc.h SOURCE)
|
||||
add_cd_file(TARGET calc DESTINATION reactos/system32 FOR all)
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
#ifndef _CALC_H
|
||||
#define _CALC_H
|
||||
|
||||
#include <stdarg.h>
|
||||
#include <windef.h>
|
||||
#include <winuser.h>
|
||||
|
@ -225,3 +228,5 @@ INT_PTR CALLBACK AboutDlgProc(HWND hWnd, UINT msg, WPARAM wp, LPARAM lp);
|
|||
void ConvExecute(HWND hWnd);
|
||||
void ConvAdjust(HWND hWnd, int n_cat);
|
||||
void ConvInit(HWND hWnd);
|
||||
|
||||
#endif /* _CALC_H */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue