Show
Ignore:
Timestamp:
11/15/10 20:40:42 (3 years ago)
Author:
saturday06
Message:

as

Location:
lang/objective-cplusplus/i3/trunk/tmp/dwmedit
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • lang/objective-cplusplus/i3/trunk/tmp/dwmedit/Makefile

    r38652 r38676  
    11DWMEdit.exe: DWMEdit.cc BlurEditController.cc 
    2         g++ $< -o $@ -Wall -Wextra -Wno-missing-field-initializers -O3 -mwindows -DUNICODE -D_UNICODE -lcomctl32 -g BlurEditController.cc 
     2        g++ $< -o $@ -Wall -Wextra -Wno-missing-field-initializers -O3 -mwindows -DUNICODE -D_UNICODE -lcomctl32 -g BlurEditController.cc -DDWMEDIT_TEST 
    33 
    44clean: 
  • lang/objective-cplusplus/i3/trunk/tmp/dwmedit/WindowsVersionHelp.h

    r38656 r38676  
    33#include <windows.h> 
    44 
    5 #ifdef _MSC_VER 
    6 #define HAVE_UXTHEME_H 1 
    7 #define HAVE_DWMAPI_H 1 
    8 #define HAVE_DBGHELP_H 1 
    9 #define HAVE_HPAINTBUFFER 1 
     5#ifdef DWMEDIT_TEST 
     6#  ifdef _MSC_VER 
     7#    define HAVE_UXTHEME_H 1 
     8#    define HAVE_DWMAPI_H 1 
     9#    define HAVE_DBGHELP_H 1 
     10#    define HAVE_HPAINTBUFFER 1 
     11#  endif 
     12#else 
     13#  ifndef MIL_CONFIG_H_INCLUDED 
     14#    error config.h 
     15#  endif 
    1016#endif 
    1117 
     
    2531 
    2632#ifdef HAVE_UXTHEME_H 
    27 #  include <uxtheme.h> 
     33#include <uxtheme.h> 
    2834#else 
    2935namespace windows_version_help { 
     
    146152}; 
    147153 
     154extern WindowsVersionHelpDLL dll; 
     155 
    148156} 
    149157