Changeset 55 in dev for ProjectEditor
- Timestamp:
- Feb 13, 2007, 3:14:57 AM (18 years ago)
- Location:
- ProjectEditor
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
ProjectEditor/Common.h
r43 r55 603 603 #define PJ_OP_STRICT 0x00010000 604 604 #define PJ_OP_RC_MANIFEST 0x00020000 605 #define PJ_OP_UNICODE 0x00040000 605 606 struct PROJECTINFO{ 606 607 DWORD dwModuleType; -
ProjectEditor/DialogBoxes.cpp
r22 r55 328 328 if(SendDlgItemMessage(hwnd,IDC_STRICT,BM_GETCHECK,0,0)) 329 329 NewProjectInfo.dwOption|=PJ_OP_STRICT; 330 if(SendDlgItemMessage(hwnd,IDC_UNICODE,BM_GETCHECK,0,0)) 331 NewProjectInfo.dwOption|=PJ_OP_UNICODE; 330 332 if(SendDlgItemMessage(hwnd,IDC_API_COMMCTRL,BM_GETCHECK,0,0)) 331 333 NewProjectInfo.dwOption|=PJ_OP_COMMCTRL; … … 797 799 SendDlgItemMessage(hwnd,IDC_STRICT,BM_SETCHECK,BST_CHECKED,0); 798 800 801 //Unicode 802 if(temp_dwPjOption&PJ_OP_UNICODE) 803 SendDlgItemMessage(hwnd,IDC_UNICODE,BM_SETCHECK,BST_CHECKED,0); 804 799 805 break; 800 806 case WM_NOTIFY: … … 808 814 temp_dwPjOption|=PJ_OP_STRICT; 809 815 else temp_dwPjOption&=~PJ_OP_STRICT; 816 817 //Unicode 818 if(SendDlgItemMessage(hwnd,IDC_UNICODE,BM_GETCHECK,0,0)) 819 temp_dwPjOption|=PJ_OP_UNICODE; 820 else temp_dwPjOption&=~PJ_OP_UNICODE; 810 821 811 822 if(nmhdr->code==PSN_APPLY) SaveSetting_DlgPjOption(); -
ProjectEditor/ProjectEditor.cpp
r37 r55 1995 1995 if(ProjectInfo.dwModuleType==MT_DLL) lstrcat(temporary," /dll"); 1996 1996 1997 //Unicodeオプション 1998 if(ProjectInfo.dwOption==PJ_OP_UNICODE) lstrcat(temporary," /unicode"); 1999 1997 2000 //ブレークポイントをセーブ 1998 2001 ProjectInfo.pobj_DBBreakPoint->SaveToTempFile(); … … 2046 2049 //DLLオプション 2047 2050 if(ProjectInfo.dwModuleType==MT_DLL) lstrcat(temporary," /dll"); 2051 2052 //Unicodeオプション 2053 if(ProjectInfo.dwOption==PJ_OP_UNICODE) lstrcat(temporary," /unicode"); 2048 2054 } 2049 2055 else{ … … 2129 2135 //DLLオプション 2130 2136 if(ProjectInfo.dwModuleType==MT_DLL) lstrcat(temporary," /dll"); 2137 2138 //Unicodeオプション 2139 if(ProjectInfo.dwOption==PJ_OP_UNICODE) lstrcat(temporary," /unicode"); 2131 2140 } 2132 2141 else{
Note:
See TracChangeset
for help on using the changeset viewer.