mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
Adjust for Visual Studio 2005:
- use secure CRT functions where available - use COUNTOF instead of hard coded buffer sizes - project files in new format for manifest integration svn path=/trunk/; revision=19750
This commit is contained in:
parent
2b3e3984b1
commit
e87cd46903
29 changed files with 4427 additions and 134 deletions
|
@ -184,7 +184,7 @@ void FindProgramDlg::collect_programs_callback(Entry* entry, void* param)
|
|||
WIN32_FIND_DATA wfd;
|
||||
TCHAR path[MAX_PATH];
|
||||
|
||||
hr = pShellLink->GetPath(path, MAX_PATH-1, &wfd, SLGP_UNCPRIORITY);
|
||||
hr = pShellLink->GetPath(path, COUNTOF(path)-1, &wfd, SLGP_UNCPRIORITY);
|
||||
|
||||
if (SUCCEEDED(hr)) {
|
||||
TCHAR entry_path[MAX_PATH];
|
||||
|
|
|
@ -165,3 +165,4 @@ If you search for more information, look into the Subversion repository.
|
|||
09.10.2005 m. fuchs Fix for Bugzilla Entry 330: Correctly handle WM_COMMAND messages in web windows without web control
|
||||
m. fuchs replace "search computer" start menu entry by a "not yet implemented" message
|
||||
01.11.2005 m. fuchs String::str(), String::toLower() to allow conventient and WINE compatible string conversions
|
||||
29.11.2005 m. fuchs Adjustments for Visual Studio 2005: use new secure CT functions, COUNTOF for buffer sizes
|
||||
|
|
|
@ -1,19 +1,24 @@
|
|||
//Microsoft Developer Studio generated resource script.
|
||||
//
|
||||
#include "resource.h"
|
||||
|
||||
#define APSTUDIO_READONLY_SYMBOLS
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Generated from the TEXTINCLUDE 2 resource.
|
||||
//
|
||||
#include <windows.h>
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
#undef APSTUDIO_READONLY_SYMBOLS
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Hungarian (HU.) resources by Robert Horvath - talley at cubeclub.hu
|
||||
// Hungarian (unknown sub-lang: 0x0) resources
|
||||
|
||||
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
|
||||
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_HUN)
|
||||
#ifdef _WIN32
|
||||
LANGUAGE LANG_HUNGARIAN, SUBLANG_NEUTRAL
|
||||
#pragma code_page(1252)
|
||||
LANGUAGE LANG_HUNGARIAN, 0x0
|
||||
#pragma code_page(1250)
|
||||
#endif //_WIN32
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
@ -25,26 +30,26 @@ IDM_MDIFRAME MENU DISCARDABLE
|
|||
BEGIN
|
||||
POPUP "&File"
|
||||
BEGIN
|
||||
MENUITEM "&Futtatás...", ID_EXECUTE
|
||||
MENUITEM "&Futtatás...", ID_EXECUTE
|
||||
MENUITEM SEPARATOR
|
||||
MENUITEM "&Kilépés", ID_FILE_EXIT
|
||||
MENUITEM "&Kilépés", ID_FILE_EXIT
|
||||
END
|
||||
POPUP "&Nézet"
|
||||
BEGIN
|
||||
MENUITEM "&Eszköztár", ID_VIEW_TOOL_BAR
|
||||
MENUITEM "&Eszköztár", ID_VIEW_TOOL_BAR
|
||||
MENUITEM "&Extra Bar", ID_VIEW_EXTRA_BAR
|
||||
MENUITEM "&Drivebar", ID_VIEW_DRIVE_BAR, CHECKED
|
||||
MENUITEM "S&ide Bar", ID_VIEW_SIDE_BAR
|
||||
MENUITEM "&Állapot sor", ID_VIEW_STATUSBAR
|
||||
MENUITEM "&Állapot sor", ID_VIEW_STATUSBAR
|
||||
MENUITEM SEPARATOR
|
||||
MENUITEM "&Frissít\tF5", ID_REFRESH
|
||||
MENUITEM "T&eljes képernyõ\tCtrl+Shift+S", ID_VIEW_FULLSCREEN
|
||||
MENUITEM "T&eljes képernyõ\tCtrl+Shift+S", ID_VIEW_FULLSCREEN
|
||||
MENUITEM "SDI", ID_VIEW_SDI
|
||||
END
|
||||
POPUP "&Ablak"
|
||||
BEGIN
|
||||
MENUITEM "Új &Ablak", ID_WINDOW_NEW
|
||||
MENUITEM "Lépcsõzetes\tShift+F5", ID_WINDOW_CASCADE
|
||||
MENUITEM "Új &Ablak", ID_WINDOW_NEW
|
||||
MENUITEM "Lépcsõzetes\tShift+F5", ID_WINDOW_CASCADE
|
||||
MENUITEM "Tile &Horizontally", ID_WINDOW_TILE_HORZ
|
||||
MENUITEM "Tile &Vertically\tShift+F4", ID_WINDOW_TILE_VERT
|
||||
MENUITEM "Arrange Automatically", ID_WINDOW_AUTOSORT
|
||||
|
@ -52,13 +57,13 @@ BEGIN
|
|||
END
|
||||
POPUP "&Eszközök"
|
||||
BEGIN
|
||||
MENUITEM "&Beállítások", ID_TOOLS_OPTIONS
|
||||
MENUITEM "&Beállítások", ID_TOOLS_OPTIONS
|
||||
END
|
||||
POPUP "&Súgó"
|
||||
POPUP "&Súgóó"
|
||||
BEGIN
|
||||
MENUITEM "Explorer &GYIK...", ID_EXPLORER_FAQ
|
||||
MENUITEM "Explorer &névjegye...", ID_ABOUT_EXPLORER
|
||||
MENUITEM "Az &OS névjegye...", ID_ABOUT_WINDOWS
|
||||
MENUITEM "Explorer &GYIK...", ID_EXPLORER_FAQ
|
||||
MENUITEM "Explorer &névjegye...", ID_ABOUT_EXPLORER
|
||||
MENUITEM "Az &OS névjegye...", ID_ABOUT_WINDOWS
|
||||
END
|
||||
END
|
||||
|
||||
|
@ -66,10 +71,10 @@ IDM_DESKTOPBAR MENU DISCARDABLE
|
|||
BEGIN
|
||||
POPUP ""
|
||||
BEGIN
|
||||
MENUITEM "&Beállítások...", ID_DESKTOPBAR_SETTINGS
|
||||
MENUITEM "&Feladatkezelõ...", ID_TASKMGR
|
||||
MENUITEM "&Beállítások...", ID_DESKTOPBAR_SETTINGS
|
||||
MENUITEM "&Feladatkezelõ...", ID_TASKMGR
|
||||
MENUITEM SEPARATOR
|
||||
MENUITEM "&Explorer névjegye...", ID_ABOUT_EXPLORER
|
||||
MENUITEM "&Explorer névjegye...", ID_ABOUT_EXPLORER
|
||||
END
|
||||
END
|
||||
|
||||
|
@ -78,7 +83,7 @@ BEGIN
|
|||
POPUP ""
|
||||
BEGIN
|
||||
MENUITEM "Hangerõ beállítások", ID_TRAY_VOLUME
|
||||
MENUITEM "Hangrendszer tulajdonságai", ID_VOLUME_PROPERTIES
|
||||
MENUITEM "Hangrendszer tulajdonságai", ID_VOLUME_PROPERTIES
|
||||
END
|
||||
END
|
||||
|
||||
|
@ -86,12 +91,12 @@ IDM_NOTIFYAREA MENU DISCARDABLE
|
|||
BEGIN
|
||||
POPUP ""
|
||||
BEGIN
|
||||
MENUITEM "&Rejtett ikonok megjelenítése", ID_SHOW_HIDDEN_ICONS
|
||||
MENUITEM "&Rejtett ikonok megjelenítése", ID_SHOW_HIDDEN_ICONS
|
||||
MENUITEM "Show Icon &Button", ID_SHOW_ICON_BUTTON
|
||||
MENUITEM "&Configure Notifications...", ID_CONFIG_NOTIFYAREA
|
||||
MENUITEM "Dátum és idõ beállításai...", ID_CONFIG_TIME
|
||||
MENUITEM "Dátum és idõ beállításai...", ID_CONFIG_TIME
|
||||
MENUITEM SEPARATOR
|
||||
MENUITEM "&Explorer névjegye...", ID_ABOUT_EXPLORER
|
||||
MENUITEM "&Explorer névjegye...", ID_ABOUT_EXPLORER
|
||||
END
|
||||
END
|
||||
|
||||
|
@ -99,29 +104,29 @@ IDM_SDIFRAME MENU DISCARDABLE
|
|||
BEGIN
|
||||
POPUP "&File"
|
||||
BEGIN
|
||||
MENUITEM "&Futtatás...", ID_EXECUTE
|
||||
MENUITEM "&Futtatás...", ID_EXECUTE
|
||||
MENUITEM SEPARATOR
|
||||
MENUITEM "&Bezárás", ID_FILE_EXIT
|
||||
MENUITEM "&Bezárás", ID_FILE_EXIT
|
||||
END
|
||||
POPUP "&Nézet"
|
||||
BEGIN
|
||||
MENUITEM "&Eszköztár", ID_VIEW_TOOL_BAR
|
||||
MENUITEM "&Eszköztár", ID_VIEW_TOOL_BAR
|
||||
MENUITEM "S&ide Bar", ID_VIEW_SIDE_BAR, GRAYED
|
||||
MENUITEM "&Állapot sor", ID_VIEW_STATUSBAR
|
||||
MENUITEM "&Állapot sor", ID_VIEW_STATUSBAR
|
||||
MENUITEM SEPARATOR
|
||||
MENUITEM "&Frissítés\tF5", ID_REFRESH
|
||||
MENUITEM "T&eljes képernyõ\tCtrl+Shift+S", ID_VIEW_FULLSCREEN
|
||||
MENUITEM "&Frissítés\tF5", ID_REFRESH
|
||||
MENUITEM "T&eljes képernyõ\tCtrl+Shift+S", ID_VIEW_FULLSCREEN
|
||||
MENUITEM "&MDI", ID_VIEW_MDI
|
||||
END
|
||||
POPUP "&Eszközök"
|
||||
BEGIN
|
||||
MENUITEM "&Beállítások", ID_TOOLS_OPTIONS
|
||||
MENUITEM "&Beállítások", ID_TOOLS_OPTIONS
|
||||
END
|
||||
POPUP "&Súgó"
|
||||
POPUP "&Súgóó"
|
||||
BEGIN
|
||||
MENUITEM "Explorer &GYIK...", ID_EXPLORER_FAQ
|
||||
MENUITEM "&Az Explorer névjegye...", ID_ABOUT_EXPLORER
|
||||
MENUITEM "Az &OS névjegye...", ID_ABOUT_WINDOWS
|
||||
MENUITEM "Explorer &GYIK...", ID_EXPLORER_FAQ
|
||||
MENUITEM "&Az Explorer névjegye...", ID_ABOUT_EXPLORER
|
||||
MENUITEM "Az &OS névjegye...", ID_ABOUT_WINDOWS
|
||||
END
|
||||
END
|
||||
|
||||
|
@ -377,12 +382,17 @@ BEGIN
|
|||
IDS_TASKBAR "Taskbar"
|
||||
END
|
||||
|
||||
#endif // Hungarian (HU.) resources
|
||||
#endif // Hungarian (unknown sub-lang: 0x0) resources
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
|
||||
#ifndef APSTUDIO_INVOKED
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Generated from the TEXTINCLUDE 3 resource.
|
||||
//
|
||||
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
#endif // not APSTUDIO_INVOKED
|
||||
|
|
|
@ -901,7 +901,7 @@ int WINAPI _tWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPTSTR lpCmdL
|
|||
// install ROS Explorer into the registry
|
||||
TCHAR path[MAX_PATH];
|
||||
|
||||
int l = GetModuleFileName(0, path, MAX_PATH);
|
||||
int l = GetModuleFileName(0, path, COUNTOF(path));
|
||||
if (l) {
|
||||
HKEY hkey;
|
||||
|
||||
|
|
|
@ -22,7 +22,6 @@ CFG=explorer - Win32 WineDll
|
|||
!MESSAGE "explorer - Win32 Debug Release" (based on "Win32 (x86) Console Application")
|
||||
!MESSAGE "explorer - Win32 Unicode Release" (based on "Win32 (x86) Console Application")
|
||||
!MESSAGE "explorer - Win32 Unicode Debug" (based on "Win32 (x86) Console Application")
|
||||
!MESSAGE "explorer - Win32 _NO_COMUTIL" (based on "Win32 (x86) Console Application")
|
||||
!MESSAGE "explorer - Win32" (based on "Win32 (x86) Console Application")
|
||||
!MESSAGE "explorer - Win32 WineRelease" (based on "Win32 (x86) Console Application")
|
||||
!MESSAGE "explorer - Win32 WineDll" (based on "Win32 (x86) Console Application")
|
||||
|
@ -128,7 +127,7 @@ LINK32=link.exe
|
|||
# ADD BASE CPP /nologo /W3 /GX /O2 /D "NDEBUG" /D "WIN32" /D "UNICODE" /D "_ROS_" /YX /FD /c
|
||||
# ADD CPP /nologo /MD /W3 /GR /GX /O2 /D "NDEBUG" /D "UNICODE" /D "WIN32" /D _WIN32_IE=0x0600 /D _WIN32_WINNT=0x0501 /Yu"precomp.h" /FD /c
|
||||
# ADD BASE RSC /l 0x407 /d "NDEBUG"
|
||||
# ADD RSC /l 0x407 /d "NDEBUG"
|
||||
# ADD RSC /l 0x407 /d "NDEBUG" /d "UNICODE"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
|
@ -154,7 +153,7 @@ LINK32=link.exe
|
|||
# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "_DEBUG" /D "WIN32" /D "UNICODE" /D "_ROS_" /FR /YX /FD /GZ /c
|
||||
# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /ZI /Od /D "_DEBUG" /D "UNICODE" /D "WIN32" /D _WIN32_IE=0x0600 /D _WIN32_WINNT=0x0501 /FR /Yu"precomp.h" /FD /GZ /c
|
||||
# ADD BASE RSC /l 0x407 /d "_DEBUG"
|
||||
# ADD RSC /l 0x407 /d "_DEBUG"
|
||||
# ADD RSC /l 0x407 /d "_DEBUG" /d "UNICODE"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
|
@ -163,33 +162,6 @@ LINK32=link.exe
|
|||
# ADD LINK32 shell32.lib comctl32.lib gdi32.lib user32.lib advapi32.lib ole32.lib delayimp.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept /libpath:"Debug" /delayload:oleaut32.dll /delayload:wsock32.dll
|
||||
# SUBTRACT LINK32 /pdb:none
|
||||
|
||||
!ELSEIF "$(CFG)" == "explorer - Win32 _NO_COMUTIL"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 1
|
||||
# PROP BASE Output_Dir "explorer___Win32__NO_COMUTIL"
|
||||
# PROP BASE Intermediate_Dir "explorer___Win32__NO_COMUTIL"
|
||||
# PROP BASE Ignore_Export_Lib 0
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 1
|
||||
# PROP Output_Dir "_NO_COMUTIL"
|
||||
# PROP Intermediate_Dir "_NO_COMUTIL"
|
||||
# PROP Ignore_Export_Lib 0
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "_DEBUG" /D "WIN32" /D "_ROS_" /D _WIN32_IE=0x0501 /D _WIN32_WINNT=0x0501 /FR /YX /FD /GZ /c
|
||||
# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /ZI /Od /D "_DEBUG" /D "_NO_COMUTIL" /D "WIN32" /D _WIN32_IE=0x0600 /D _WIN32_WINNT=0x0501 /FR /Yu"precomp.h" /FD /GZ /c
|
||||
# ADD BASE RSC /l 0x407 /d "_DEBUG"
|
||||
# ADD RSC /l 0x407 /d "_DEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 user32.lib gdi32.lib advapi32.lib comctl32.lib shell32.lib ole32.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept
|
||||
# SUBTRACT BASE LINK32 /pdb:none
|
||||
# ADD LINK32 shell32.lib comctl32.lib gdi32.lib user32.lib advapi32.lib ole32.lib delayimp.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept /delayload:oleaut32.dll /delayload:wsock32.dll
|
||||
# SUBTRACT LINK32 /pdb:none
|
||||
|
||||
!ELSEIF "$(CFG)" == "explorer - Win32"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
|
@ -280,7 +252,6 @@ LINK32=link.exe
|
|||
# Name "explorer - Win32 Debug Release"
|
||||
# Name "explorer - Win32 Unicode Release"
|
||||
# Name "explorer - Win32 Unicode Debug"
|
||||
# Name "explorer - Win32 _NO_COMUTIL"
|
||||
# Name "explorer - Win32"
|
||||
# Name "explorer - Win32 WineRelease"
|
||||
# Name "explorer - Win32 WineDll"
|
||||
|
@ -426,6 +397,11 @@ SOURCE=".\explorer-fr.rc"
|
|||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=".\explorer-hu.rc"
|
||||
# PROP Exclude_From_Build 1
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=".\explorer-jp.rc"
|
||||
# PROP Exclude_From_Build 1
|
||||
# End Source File
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
name="ReactOS.Explorer"
|
||||
type="win32"
|
||||
/>
|
||||
<description>ROS Excplorer</description>
|
||||
<description>ROS Explorer</description>
|
||||
<dependency>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity
|
||||
|
|
79
reactos/subsys/system/explorer/explorer.sln
Normal file
79
reactos/subsys/system/explorer/explorer.sln
Normal file
|
@ -0,0 +1,79 @@
|
|||
|
||||
Microsoft Visual Studio Solution File, Format Version 9.00
|
||||
# Visual C++ Express 2005
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "explorer", "explorer.vcproj", "{BFBAE588-8C68-4303-9BF6-C830087D8F25}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{F28B575D-7DBA-44DE-AAEF-FA0D065E5162} = {F28B575D-7DBA-44DE-AAEF-FA0D065E5162}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "make_explorer", "make_explorer.vcproj", "{E132A04B-8BC6-4D18-81F2-F0156B809871}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "notifyhook", "notifyhook\notifyhook.vcproj", "{F28B575D-7DBA-44DE-AAEF-FA0D065E5162}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
bjam|Win32 = bjam|Win32
|
||||
Debug Release|Win32 = Debug Release|Win32
|
||||
Debug|Win32 = Debug|Win32
|
||||
doxy docu|Win32 = doxy docu|Win32
|
||||
Release|Win32 = Release|Win32
|
||||
Unicode Debug|Win32 = Unicode Debug|Win32
|
||||
Unicode Release|Win32 = Unicode Release|Win32
|
||||
WineDll|Win32 = WineDll|Win32
|
||||
WineRelease|Win32 = WineRelease|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{BFBAE588-8C68-4303-9BF6-C830087D8F25}.bjam|Win32.ActiveCfg = WineDll|Win32
|
||||
{BFBAE588-8C68-4303-9BF6-C830087D8F25}.bjam|Win32.Build.0 = WineDll|Win32
|
||||
{BFBAE588-8C68-4303-9BF6-C830087D8F25}.Debug Release|Win32.ActiveCfg = Debug|Win32
|
||||
{BFBAE588-8C68-4303-9BF6-C830087D8F25}.Debug Release|Win32.Build.0 = Debug|Win32
|
||||
{BFBAE588-8C68-4303-9BF6-C830087D8F25}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{BFBAE588-8C68-4303-9BF6-C830087D8F25}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{BFBAE588-8C68-4303-9BF6-C830087D8F25}.doxy docu|Win32.ActiveCfg = Debug|Win32
|
||||
{BFBAE588-8C68-4303-9BF6-C830087D8F25}.doxy docu|Win32.Build.0 = Debug|Win32
|
||||
{BFBAE588-8C68-4303-9BF6-C830087D8F25}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{BFBAE588-8C68-4303-9BF6-C830087D8F25}.Release|Win32.Build.0 = Release|Win32
|
||||
{BFBAE588-8C68-4303-9BF6-C830087D8F25}.Unicode Debug|Win32.ActiveCfg = Unicode Debug|Win32
|
||||
{BFBAE588-8C68-4303-9BF6-C830087D8F25}.Unicode Debug|Win32.Build.0 = Unicode Debug|Win32
|
||||
{BFBAE588-8C68-4303-9BF6-C830087D8F25}.Unicode Release|Win32.ActiveCfg = Unicode Release|Win32
|
||||
{BFBAE588-8C68-4303-9BF6-C830087D8F25}.Unicode Release|Win32.Build.0 = Unicode Release|Win32
|
||||
{BFBAE588-8C68-4303-9BF6-C830087D8F25}.WineDll|Win32.ActiveCfg = WineDll|Win32
|
||||
{BFBAE588-8C68-4303-9BF6-C830087D8F25}.WineDll|Win32.Build.0 = WineDll|Win32
|
||||
{BFBAE588-8C68-4303-9BF6-C830087D8F25}.WineRelease|Win32.ActiveCfg = WineRelease|Win32
|
||||
{BFBAE588-8C68-4303-9BF6-C830087D8F25}.WineRelease|Win32.Build.0 = WineRelease|Win32
|
||||
{E132A04B-8BC6-4D18-81F2-F0156B809871}.bjam|Win32.ActiveCfg = bjam|Win32
|
||||
{E132A04B-8BC6-4D18-81F2-F0156B809871}.bjam|Win32.Build.0 = bjam|Win32
|
||||
{E132A04B-8BC6-4D18-81F2-F0156B809871}.Debug Release|Win32.ActiveCfg = Debug|Win32
|
||||
{E132A04B-8BC6-4D18-81F2-F0156B809871}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{E132A04B-8BC6-4D18-81F2-F0156B809871}.doxy docu|Win32.ActiveCfg = doxy docu|Win32
|
||||
{E132A04B-8BC6-4D18-81F2-F0156B809871}.doxy docu|Win32.Build.0 = doxy docu|Win32
|
||||
{E132A04B-8BC6-4D18-81F2-F0156B809871}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{E132A04B-8BC6-4D18-81F2-F0156B809871}.Unicode Debug|Win32.ActiveCfg = Unicode Debug|Win32
|
||||
{E132A04B-8BC6-4D18-81F2-F0156B809871}.Unicode Release|Win32.ActiveCfg = Unicode Release|Win32
|
||||
{E132A04B-8BC6-4D18-81F2-F0156B809871}.WineDll|Win32.ActiveCfg = Debug|Win32
|
||||
{E132A04B-8BC6-4D18-81F2-F0156B809871}.WineDll|Win32.Build.0 = Debug|Win32
|
||||
{E132A04B-8BC6-4D18-81F2-F0156B809871}.WineRelease|Win32.ActiveCfg = Release|Win32
|
||||
{E132A04B-8BC6-4D18-81F2-F0156B809871}.WineRelease|Win32.Build.0 = Release|Win32
|
||||
{F28B575D-7DBA-44DE-AAEF-FA0D065E5162}.bjam|Win32.ActiveCfg = Debug|Win32
|
||||
{F28B575D-7DBA-44DE-AAEF-FA0D065E5162}.bjam|Win32.Build.0 = Debug|Win32
|
||||
{F28B575D-7DBA-44DE-AAEF-FA0D065E5162}.Debug Release|Win32.ActiveCfg = Debug|Win32
|
||||
{F28B575D-7DBA-44DE-AAEF-FA0D065E5162}.Debug Release|Win32.Build.0 = Debug|Win32
|
||||
{F28B575D-7DBA-44DE-AAEF-FA0D065E5162}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{F28B575D-7DBA-44DE-AAEF-FA0D065E5162}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{F28B575D-7DBA-44DE-AAEF-FA0D065E5162}.doxy docu|Win32.ActiveCfg = Debug|Win32
|
||||
{F28B575D-7DBA-44DE-AAEF-FA0D065E5162}.doxy docu|Win32.Build.0 = Debug|Win32
|
||||
{F28B575D-7DBA-44DE-AAEF-FA0D065E5162}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{F28B575D-7DBA-44DE-AAEF-FA0D065E5162}.Release|Win32.Build.0 = Release|Win32
|
||||
{F28B575D-7DBA-44DE-AAEF-FA0D065E5162}.Unicode Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{F28B575D-7DBA-44DE-AAEF-FA0D065E5162}.Unicode Debug|Win32.Build.0 = Debug|Win32
|
||||
{F28B575D-7DBA-44DE-AAEF-FA0D065E5162}.Unicode Release|Win32.ActiveCfg = Release|Win32
|
||||
{F28B575D-7DBA-44DE-AAEF-FA0D065E5162}.Unicode Release|Win32.Build.0 = Release|Win32
|
||||
{F28B575D-7DBA-44DE-AAEF-FA0D065E5162}.WineDll|Win32.ActiveCfg = Debug|Win32
|
||||
{F28B575D-7DBA-44DE-AAEF-FA0D065E5162}.WineDll|Win32.Build.0 = Debug|Win32
|
||||
{F28B575D-7DBA-44DE-AAEF-FA0D065E5162}.WineRelease|Win32.ActiveCfg = Release|Win32
|
||||
{F28B575D-7DBA-44DE-AAEF-FA0D065E5162}.WineRelease|Win32.Build.0 = Release|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
EndGlobal
|
3756
reactos/subsys/system/explorer/explorer.vcproj
Normal file
3756
reactos/subsys/system/explorer/explorer.vcproj
Normal file
File diff suppressed because it is too large
Load diff
|
@ -102,7 +102,9 @@ BEGIN
|
|||
"#endif\r\n"
|
||||
"END\r\n"
|
||||
"#endif\r\n"
|
||||
"#ifndef _DEBUG\r\n"
|
||||
"CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST DISCARDABLE PURE ""explorer.exe.manifest""\r\n"
|
||||
"#endif\r\n"
|
||||
"\r\n"
|
||||
"#include ""explorer-en.rc""\r\n"
|
||||
"#include ""explorer-de.rc""\r\n"
|
||||
|
@ -186,7 +188,9 @@ IDS_EXPLORER_VERSION_STR "ROS Explorer Ansi%0s"
|
|||
#endif
|
||||
END
|
||||
#endif
|
||||
#ifndef _DEBUG
|
||||
CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST DISCARDABLE PURE "explorer.exe.manifest"
|
||||
#endif
|
||||
|
||||
#include "explorer-en.rc"
|
||||
#include "explorer-de.rc"
|
||||
|
|
|
@ -92,6 +92,8 @@
|
|||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "utility/utility.h" // for strcpy_s()
|
||||
|
||||
/************************************************************************
|
||||
*
|
||||
* external low-level support routines
|
||||
|
@ -897,7 +899,7 @@ handle_exception (int exceptionVector)
|
|||
break;
|
||||
case 'G': /* set the value of the CPU registers - return OK */
|
||||
hex2mem (ptr, (char *) registers, NUMREGBYTES, 0);
|
||||
strcpy (remcomOutBuffer, "OK");
|
||||
strcpy_s(remcomOutBuffer, BUFMAX, "OK");
|
||||
break;
|
||||
case 'P': /* set the value of a single CPU register - return OK */
|
||||
{
|
||||
|
@ -907,11 +909,11 @@ handle_exception (int exceptionVector)
|
|||
if (regno >= 0 && regno < NUMREGS)
|
||||
{
|
||||
hex2mem (ptr, (char *) ®isters[regno], 4, 0);
|
||||
strcpy (remcomOutBuffer, "OK");
|
||||
strcpy_s(remcomOutBuffer, BUFMAX, "OK");
|
||||
break;
|
||||
}
|
||||
|
||||
strcpy (remcomOutBuffer, "E01");
|
||||
strcpy_s(remcomOutBuffer, BUFMAX, "E01");
|
||||
break;
|
||||
}
|
||||
|
||||
|
@ -927,14 +929,14 @@ handle_exception (int exceptionVector)
|
|||
mem2hex ((char *) addr, remcomOutBuffer, length, 1);
|
||||
if (mem_err)
|
||||
{
|
||||
strcpy (remcomOutBuffer, "E03");
|
||||
strcpy_s(remcomOutBuffer, BUFMAX, "E03");
|
||||
debug_error ("memory fault");
|
||||
}
|
||||
}
|
||||
|
||||
if (ptr)
|
||||
{
|
||||
strcpy (remcomOutBuffer, "E01");
|
||||
strcpy_s(remcomOutBuffer, BUFMAX, "E01");
|
||||
}
|
||||
break;
|
||||
|
||||
|
@ -951,19 +953,19 @@ handle_exception (int exceptionVector)
|
|||
|
||||
if (mem_err)
|
||||
{
|
||||
strcpy (remcomOutBuffer, "E03");
|
||||
strcpy_s(remcomOutBuffer, BUFMAX, "E03");
|
||||
debug_error ("memory fault");
|
||||
}
|
||||
else
|
||||
{
|
||||
strcpy (remcomOutBuffer, "OK");
|
||||
strcpy_s(remcomOutBuffer, BUFMAX, "OK");
|
||||
}
|
||||
|
||||
ptr = 0;
|
||||
}
|
||||
if (ptr)
|
||||
{
|
||||
strcpy (remcomOutBuffer, "E02");
|
||||
strcpy_s(remcomOutBuffer, BUFMAX, "E02");
|
||||
}
|
||||
break;
|
||||
|
||||
|
|
186
reactos/subsys/system/explorer/make_explorer.vcproj
Normal file
186
reactos/subsys/system/explorer/make_explorer.vcproj
Normal file
|
@ -0,0 +1,186 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="8,00"
|
||||
Name="make_explorer"
|
||||
ProjectGUID="{E132A04B-8BC6-4D18-81F2-F0156B809871}"
|
||||
Keyword="MakeFileProj"
|
||||
>
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"
|
||||
/>
|
||||
</Platforms>
|
||||
<ToolFiles>
|
||||
</ToolFiles>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Unicode Release|Win32"
|
||||
OutputDirectory=".\URelease"
|
||||
IntermediateDirectory=".\URelease"
|
||||
ConfigurationType="0"
|
||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
>
|
||||
<Tool
|
||||
Name="VCNMakeTool"
|
||||
BuildCommandLine="msdevfilt -gcc make -f Makefile.PCH UNICODE=1"
|
||||
ReBuildCommandLine="msdevfilt -gcc make -f Makefile.PCH UNICODE=1 clean all"
|
||||
CleanCommandLine=""
|
||||
Output="explorer.exe"
|
||||
PreprocessorDefinitions=""
|
||||
IncludeSearchPath=""
|
||||
ForcedIncludes=""
|
||||
AssemblySearchPath=""
|
||||
ForcedUsingAssemblies=""
|
||||
CompileAsManaged=""
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="bjam|Win32"
|
||||
OutputDirectory=".\Debug"
|
||||
IntermediateDirectory=".\Debug"
|
||||
ConfigurationType="0"
|
||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
>
|
||||
<Tool
|
||||
Name="VCNMakeTool"
|
||||
BuildCommandLine="msdevfilt -gcc -pipe "perl d:\tools\gSTLFilt.pl" bjam"
|
||||
ReBuildCommandLine="msdevfilt -gcc -pipe "perl d:\tools\gSTLFilt.pl" bjam clean&bjam release"
|
||||
CleanCommandLine=""
|
||||
Output="explorer.exe"
|
||||
PreprocessorDefinitions=""
|
||||
IncludeSearchPath=""
|
||||
ForcedIncludes=""
|
||||
AssemblySearchPath=""
|
||||
ForcedUsingAssemblies=""
|
||||
CompileAsManaged=""
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory=".\Release"
|
||||
IntermediateDirectory=".\Release"
|
||||
ConfigurationType="0"
|
||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
>
|
||||
<Tool
|
||||
Name="VCNMakeTool"
|
||||
BuildCommandLine="msdevfilt -gcc -pipe "perl d:\tools\gSTLFilt.pl" make -f Makefile.PCH UNICODE=0"
|
||||
ReBuildCommandLine="msdevfilt -gcc -pipe "perl d:\tools\gSTLFilt.pl" make -f Makefile.PCH UNICODE=0 clean all"
|
||||
CleanCommandLine=""
|
||||
Output="explorer.exe"
|
||||
PreprocessorDefinitions=""
|
||||
IncludeSearchPath=""
|
||||
ForcedIncludes=""
|
||||
AssemblySearchPath=""
|
||||
ForcedUsingAssemblies=""
|
||||
CompileAsManaged=""
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="doxy docu|Win32"
|
||||
OutputDirectory=".\Debug"
|
||||
IntermediateDirectory=".\Debug"
|
||||
ConfigurationType="0"
|
||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
>
|
||||
<Tool
|
||||
Name="VCNMakeTool"
|
||||
BuildCommandLine="msdevfilt -java make docu"
|
||||
ReBuildCommandLine="msdevfilt -java make docu full-docu"
|
||||
CleanCommandLine=""
|
||||
Output="explorer.exe"
|
||||
PreprocessorDefinitions=""
|
||||
IncludeSearchPath=""
|
||||
ForcedIncludes=""
|
||||
AssemblySearchPath=""
|
||||
ForcedUsingAssemblies=""
|
||||
CompileAsManaged=""
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Unicode Debug|Win32"
|
||||
OutputDirectory=".\UDebug"
|
||||
IntermediateDirectory=".\UDebug"
|
||||
ConfigurationType="0"
|
||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
>
|
||||
<Tool
|
||||
Name="VCNMakeTool"
|
||||
BuildCommandLine="msdevfilt -gcc -pipe "perl d:\tools\gSTLFilt.pl" make -f Makefile.MinGW UNICODE=1 DEBUG=1"
|
||||
ReBuildCommandLine="msdevfilt -gcc -pipe "perl d:\tools\gSTLFilt.pl" make -f Makefile.MinGW UNICODE=1 DEBUG=1 clean all"
|
||||
CleanCommandLine=""
|
||||
Output="explorer.exe"
|
||||
PreprocessorDefinitions=""
|
||||
IncludeSearchPath=""
|
||||
ForcedIncludes=""
|
||||
AssemblySearchPath=""
|
||||
ForcedUsingAssemblies=""
|
||||
CompileAsManaged=""
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory=".\Debug"
|
||||
IntermediateDirectory=".\Debug"
|
||||
ConfigurationType="0"
|
||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
>
|
||||
<Tool
|
||||
Name="VCNMakeTool"
|
||||
BuildCommandLine="msdevfilt -gcc -pipe "perl d:\tools\gSTLFilt.pl" make -f Makefile.PCH UNICODE=0 DEBUG=1"
|
||||
ReBuildCommandLine="msdevfilt -gcc -pipe "perl d:\tools\gSTLFilt.pl" make -f Makefile.PCH UNICODE=0 DEBUG=1 clean all"
|
||||
CleanCommandLine=""
|
||||
Output="explorer.exe"
|
||||
PreprocessorDefinitions=""
|
||||
IncludeSearchPath=""
|
||||
ForcedIncludes=""
|
||||
AssemblySearchPath=""
|
||||
ForcedUsingAssemblies=""
|
||||
CompileAsManaged=""
|
||||
/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<File
|
||||
RelativePath="msdevfilt -gcc -pipe "perl d:\tools\gSTLFilt.pl" make -f Makefile.MinGW UNICODE=0 DEBUG=1"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="Jamfile"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="Makefile"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="Makefile.MinGW"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="Makefile.PCH"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="Makefile.Wine"
|
||||
>
|
||||
</File>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
|
@ -65,7 +65,7 @@ LRESULT CALLBACK NotifyHookProc(int code, WPARAM wparam, LPARAM lparam)
|
|||
COPYDATASTRUCT data;
|
||||
|
||||
cds._hwnd = pmsg->hwnd;
|
||||
cds._len = GetWindowModuleFileNameA(pmsg->hwnd, cds._path, MAX_PATH);
|
||||
cds._len = GetWindowModuleFileNameA(pmsg->hwnd, cds._path, COUNTOF(cds._path));
|
||||
|
||||
data.dwData = WM_GETMODULEPATH;
|
||||
data.cbData = sizeof(cds);
|
||||
|
|
237
reactos/subsys/system/explorer/notifyhook/notifyhook.vcproj
Normal file
237
reactos/subsys/system/explorer/notifyhook/notifyhook.vcproj
Normal file
|
@ -0,0 +1,237 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="8,00"
|
||||
Name="notifyhook"
|
||||
ProjectGUID="{F28B575D-7DBA-44DE-AAEF-FA0D065E5162}"
|
||||
>
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"
|
||||
/>
|
||||
</Platforms>
|
||||
<ToolFiles>
|
||||
</ToolFiles>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory=".\..\Release"
|
||||
IntermediateDirectory=".\Release"
|
||||
ConfigurationType="2"
|
||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="NDEBUG"
|
||||
MkTypLibCompatible="true"
|
||||
SuppressStartupBanner="true"
|
||||
TargetEnvironment="1"
|
||||
TypeLibraryName=".\..\Release/notifyhook.tlb"
|
||||
HeaderFileName=""
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="2"
|
||||
InlineFunctionExpansion="1"
|
||||
PreprocessorDefinitions="NDEBUG;WIN32;_NOTIFYHOOK_IMPL"
|
||||
StringPooling="true"
|
||||
RuntimeLibrary="0"
|
||||
EnableFunctionLevelLinking="true"
|
||||
PrecompiledHeaderFile=".\Release/notifyhook.pch"
|
||||
AssemblerListingLocation=".\Release/"
|
||||
ObjectFile=".\Release/"
|
||||
ProgramDataBaseFileName=".\Release/"
|
||||
WarningLevel="3"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManagedResourceCompilerTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
PreprocessorDefinitions="NDEBUG"
|
||||
Culture="1031"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalDependencies="user32.lib"
|
||||
OutputFile=".\..\Release/notifyhook.dll"
|
||||
LinkIncremental="1"
|
||||
SuppressStartupBanner="true"
|
||||
ProgramDatabaseFile=".\..\Release/notifyhook.pdb"
|
||||
SubSystem="2"
|
||||
ImportLibrary=".\..\Release/notifyhook.lib"
|
||||
TargetMachine="1"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCALinkTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManifestTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXDCMakeTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
SuppressStartupBanner="true"
|
||||
OutputFile=".\..\Release/notifyhook.bsc"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCFxCopTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCAppVerifierTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory=".\..\Debug"
|
||||
IntermediateDirectory=".\Debug"
|
||||
ConfigurationType="2"
|
||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="_DEBUG"
|
||||
MkTypLibCompatible="true"
|
||||
SuppressStartupBanner="true"
|
||||
TargetEnvironment="1"
|
||||
TypeLibraryName=".\..\Debug/notifyhook.tlb"
|
||||
HeaderFileName=""
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
PreprocessorDefinitions="_DEBUG;WIN32;_NOTIFYHOOK_IMPL"
|
||||
MinimalRebuild="true"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="1"
|
||||
PrecompiledHeaderFile=".\Debug/notifyhook.pch"
|
||||
AssemblerListingLocation=".\Debug/"
|
||||
ObjectFile=".\Debug/"
|
||||
ProgramDataBaseFileName=".\Debug/"
|
||||
BrowseInformation="1"
|
||||
WarningLevel="3"
|
||||
SuppressStartupBanner="true"
|
||||
DebugInformationFormat="4"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManagedResourceCompilerTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
PreprocessorDefinitions="_DEBUG"
|
||||
Culture="1031"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalDependencies="user32.lib"
|
||||
OutputFile=".\..\Debug/notifyhook.dll"
|
||||
LinkIncremental="2"
|
||||
SuppressStartupBanner="true"
|
||||
GenerateDebugInformation="true"
|
||||
ProgramDatabaseFile=".\..\Debug/notifyhook.pdb"
|
||||
SubSystem="2"
|
||||
ImportLibrary=".\..\Debug/notifyhook.lib"
|
||||
TargetMachine="1"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCALinkTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManifestTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXDCMakeTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
SuppressStartupBanner="true"
|
||||
OutputFile=".\..\Debug/notifyhook.bsc"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCFxCopTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCAppVerifierTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<File
|
||||
RelativePath="notifyhook.c"
|
||||
>
|
||||
<FileConfiguration
|
||||
Name="Release|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
PreprocessorDefinitions=""
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Debug|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
PreprocessorDefinitions=""
|
||||
/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="notifyhook.h"
|
||||
>
|
||||
</File>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
|
@ -1,6 +1,6 @@
|
|||
//{{NO_DEPENDENCIES}}
|
||||
// Microsoft Developer Studio generated include file.
|
||||
// Used by explorer_intres.rc
|
||||
// Used by explorer-hu.rc
|
||||
//
|
||||
#define IDS_TITLE 1
|
||||
#define MANIFEST_RESOURCE_ID 1
|
||||
|
|
|
@ -83,10 +83,12 @@ void FATDirectory::read_directory(int scan_flags)
|
|||
|
||||
TCHAR buffer[MAX_PATH];
|
||||
|
||||
_tcscpy(buffer, (LPCTSTR)_path);
|
||||
_tcscpy_s(buffer, COUNTOF(buffer), (LPCTSTR)_path);
|
||||
LPTSTR pname = buffer + _tcslen(buffer);
|
||||
int plen = COUNTOF(buffer) - _tcslen(buffer);
|
||||
|
||||
*pname++ = '\\';
|
||||
--plen;
|
||||
|
||||
for(Kette*p=_alloc; p; p=p->Vorw) {
|
||||
memset(&w32fd, 0, sizeof(WIN32_FIND_DATA));
|
||||
|
@ -167,7 +169,7 @@ void FATDirectory::read_directory(int scan_flags)
|
|||
Entry* entry;
|
||||
|
||||
if (w32fd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
|
||||
_tcscpy(pname, w32fd.cFileName);
|
||||
_tcscpy_s(pname, plen, w32fd.cFileName);
|
||||
entry = new FATDirectory(_drive, this, buffer, e.fclus);
|
||||
} else
|
||||
entry = new FATEntry(this, e.fclus);
|
||||
|
|
|
@ -106,7 +106,7 @@ INT_PTR CALLBACK ExecuteDialog::WndProc(HWND hwnd, UINT nmsg, WPARAM wparam, LPA
|
|||
int id = (int)wparam;
|
||||
|
||||
if (id == IDOK) {
|
||||
GetWindowText(GetDlgItem(hwnd, 201), dlg->cmd, MAX_PATH);
|
||||
GetWindowText(GetDlgItem(hwnd, 201), dlg->cmd, COUNTOF(dlg->cmd));
|
||||
dlg->cmdshow = Button_GetState(GetDlgItem(hwnd,214))&BST_CHECKED?
|
||||
SW_SHOWMINIMIZED: SW_SHOWNORMAL;
|
||||
EndDialog(hwnd, id);
|
||||
|
@ -168,7 +168,7 @@ FileChildWindow::FileChildWindow(HWND hwnd, const FileChildWndInfo& info)
|
|||
_root._drive_type = DRIVE_UNKNOWN;
|
||||
_root._sort_order = SORT_NAME;
|
||||
|
||||
_tsplitpath(info._path, drv, NULL, NULL, NULL);
|
||||
_tsplitpath_s(info._path, drv, COUNTOF(drv), NULL, 0, NULL, 0, NULL, 0);
|
||||
lstrcat(drv, TEXT("\\"));
|
||||
lstrcpy(_root._volname, TEXT("NT Object Namespace"));
|
||||
lstrcpy(_root._fs, TEXT("NTOBJ"));
|
||||
|
@ -181,7 +181,7 @@ FileChildWindow::FileChildWindow(HWND hwnd, const FileChildWndInfo& info)
|
|||
_root._drive_type = DRIVE_UNKNOWN;
|
||||
_root._sort_order = SORT_NONE;
|
||||
|
||||
_tsplitpath(info._path, drv, NULL, NULL, NULL);
|
||||
_tsplitpath_s(info._path, drv, COUNTOF(drv), NULL, 0, NULL, 0, NULL, 0);
|
||||
lstrcat(drv, TEXT("\\"));
|
||||
lstrcpy(_root._volname, TEXT("Registry"));
|
||||
lstrcpy(_root._fs, TEXT("Registry"));
|
||||
|
@ -194,7 +194,7 @@ FileChildWindow::FileChildWindow(HWND hwnd, const FileChildWndInfo& info)
|
|||
_root._drive_type = DRIVE_UNKNOWN;
|
||||
_root._sort_order = SORT_NONE;
|
||||
|
||||
_tsplitpath(info._path, drv, NULL, NULL, NULL);
|
||||
_tsplitpath_s(info._path, drv, COUNTOF(drv), NULL, 0, NULL, 0, NULL, 0);
|
||||
lstrcat(drv, TEXT("\\"));
|
||||
lstrcpy(_root._volname, TEXT("FAT XXX")); //@@
|
||||
lstrcpy(_root._fs, TEXT("FAT"));
|
||||
|
@ -211,9 +211,9 @@ FileChildWindow::FileChildWindow(HWND hwnd, const FileChildWndInfo& info)
|
|||
_root._drive_type = GetDriveType(info._path);
|
||||
_root._sort_order = SORT_NAME;
|
||||
|
||||
_tsplitpath(info._path, drv, NULL, NULL, NULL);
|
||||
_tsplitpath_s(info._path, drv, COUNTOF(drv), NULL, 0, NULL, 0, NULL, 0);
|
||||
lstrcat(drv, TEXT("\\"));
|
||||
GetVolumeInformation(drv, _root._volname, _MAX_FNAME, 0, 0, &_root._fs_flags, _root._fs, _MAX_DIR);
|
||||
GetVolumeInformation(drv, _root._volname, _MAX_FNAME, 0, 0, &_root._fs_flags, _root._fs, COUNTOF(_root._fs));
|
||||
lstrcpy(_root._path, drv);
|
||||
_root._entry = new WinDirectory(_root._path);
|
||||
entry = _root.read_tree(info._path+_tcslen(_root._path));
|
||||
|
|
|
@ -1021,7 +1021,7 @@ int MDIMainFrame::Command(int id, int code)
|
|||
if (activate_drive_window(root))
|
||||
return 0;
|
||||
|
||||
_tsplitpath(root, drv, 0, 0, 0);
|
||||
_tsplitpath_s(root, drv, COUNTOF(drv), 0, 0, 0, 0, 0, 0);
|
||||
|
||||
if (!SetCurrentDirectory(drv)) {
|
||||
display_error(_hwnd, GetLastError());
|
||||
|
@ -1073,7 +1073,7 @@ int MDIMainFrame::Command(int id, int code)
|
|||
TCHAR path[MAX_PATH];
|
||||
FileChildWindow* child;
|
||||
|
||||
getcwd(path, MAX_PATH);
|
||||
getcwd(path, COUNTOF(path));
|
||||
|
||||
if (activate_child_window(TEXT("unixfs")))
|
||||
break;
|
||||
|
@ -1251,14 +1251,14 @@ bool MDIMainFrame::activate_drive_window(LPCTSTR path)
|
|||
TCHAR drv1[_MAX_DRIVE], drv2[_MAX_DRIVE];
|
||||
HWND child_wnd;
|
||||
|
||||
_tsplitpath(path, drv1, 0, 0, 0);
|
||||
_tsplitpath_s(path, drv1, COUNTOF(drv1), 0, 0, 0, 0, 0, 0);
|
||||
|
||||
// search for a already open window for the same drive
|
||||
for(child_wnd=::GetNextWindow(_hmdiclient,GW_CHILD); child_wnd; child_wnd=::GetNextWindow(child_wnd, GW_HWNDNEXT)) {
|
||||
FileChildWindow* child = (FileChildWindow*) SendMessage(child_wnd, PM_GET_FILEWND_PTR, 0, 0);
|
||||
|
||||
if (child) {
|
||||
_tsplitpath(child->get_root()._path, drv2, 0, 0, 0);
|
||||
_tsplitpath_s(child->get_root()._path, drv2, COUNTOF(drv2), 0, 0, 0, 0, 0, 0);
|
||||
|
||||
if (!lstrcmpi(drv2, drv1)) {
|
||||
SendMessage(_hmdiclient, WM_MDIACTIVATE, (WPARAM)child_wnd, 0);
|
||||
|
|
|
@ -237,9 +237,9 @@ void NtObjDirectory::read_directory(int scan_flags)
|
|||
} else {
|
||||
info->type.string_ptr = TEXT("");
|
||||
}
|
||||
lstrcpynW(p, info->name.string_ptr, _MAX_PATH);
|
||||
lstrcpynW(p, info->name.string_ptr, COUNTOF(buffer));
|
||||
#else
|
||||
WideCharToMultiByte(CP_ACP, 0, info->name.string_ptr, info->name.string_len, p, MAX_PATH, 0, 0);
|
||||
WideCharToMultiByte(CP_ACP, 0, info->name.string_ptr, info->name.string_len, p, COUNTOF(buffer), 0, 0);
|
||||
#endif
|
||||
|
||||
lstrcpyn(w32fd.cFileName, p, sizeof(w32fd.cFileName) / sizeof(0[w32fd.cFileName]));
|
||||
|
@ -310,7 +310,7 @@ void NtObjDirectory::read_directory(int scan_flags)
|
|||
int len = link.string_len/sizeof(WCHAR);
|
||||
entry->_content = (LPTSTR) malloc((len+1)*sizeof(TCHAR));
|
||||
#ifdef UNICODE
|
||||
wcsncpy(entry->_content, link, len);
|
||||
wcsncpy_s(entry->_content, len+1, link, len);
|
||||
#else
|
||||
U2nA(link, entry->_content, len);
|
||||
#endif
|
||||
|
|
|
@ -501,7 +501,7 @@ void Pane::draw_item(LPDRAWITEMSTRUCT dis, Entry* entry, int calcWidthCol)
|
|||
if (visible_cols & COL_SIZE) {
|
||||
ULONGLONG size = ((ULONGLONG)entry->_data.nFileSizeHigh << 32) | entry->_data.nFileSizeLow;
|
||||
|
||||
_stprintf(buffer, TEXT("%") LONGLONGARG TEXT("d"), size);
|
||||
_stprintf_s1(buffer, BUFFER_LEN, TEXT("%") LONGLONGARG TEXT("d"), size);
|
||||
|
||||
if (calcWidthCol == -1)
|
||||
_out_wrkr.output_number(dis, _positions, col, buffer);
|
||||
|
@ -539,7 +539,7 @@ void Pane::draw_item(LPDRAWITEMSTRUCT dis, Entry* entry, int calcWidthCol)
|
|||
ULONGLONG index = ((ULONGLONG)entry->_bhfi.nFileIndexHigh << 32) | entry->_bhfi.nFileIndexLow;
|
||||
|
||||
if (visible_cols & COL_INDEX) {
|
||||
_stprintf(buffer, TEXT("%") LONGLONGARG TEXT("X"), index);
|
||||
_stprintf_s1(buffer, BUFFER_LEN, TEXT("%") LONGLONGARG TEXT("X"), index);
|
||||
|
||||
if (calcWidthCol == -1)
|
||||
_out_wrkr.output_text(dis, _positions, col, buffer, DT_RIGHT);
|
||||
|
|
|
@ -40,14 +40,15 @@ void RegDirectory::read_directory(int scan_flags)
|
|||
|
||||
TCHAR buffer[MAX_PATH];
|
||||
|
||||
_tcscpy(buffer, (LPCTSTR)_path);
|
||||
_tcscpy_s(buffer, COUNTOF(buffer), (LPCTSTR)_path);
|
||||
LPTSTR pname = buffer + _tcslen(buffer);
|
||||
int plen = MAX_PATH - _tcslen(buffer);
|
||||
|
||||
HKEY hkey;
|
||||
|
||||
if (!RegOpenKeyEx(_hKeyRoot, *buffer=='\\'?buffer+1:buffer, 0, STANDARD_RIGHTS_READ|KEY_QUERY_VALUE|KEY_ENUMERATE_SUB_KEYS, &hkey)) {
|
||||
if (pname[-1] != '\\')
|
||||
*pname++ = '\\';
|
||||
*pname++ = '\\', plen--;
|
||||
|
||||
TCHAR name[MAX_PATH], class_name[MAX_PATH];
|
||||
WIN32_FIND_DATA w32fd;
|
||||
|
@ -64,9 +65,9 @@ void RegDirectory::read_directory(int scan_flags)
|
|||
break;
|
||||
|
||||
w32fd.dwFileAttributes |= FILE_ATTRIBUTE_DIRECTORY;
|
||||
_tcsncpy(w32fd.cFileName, name, name_len);
|
||||
_tcsncpy_s(w32fd.cFileName, COUNTOF(w32fd.cFileName), name, name_len);
|
||||
|
||||
_tcscpy(pname, name);
|
||||
_tcscpy_s(pname, plen, name);
|
||||
entry = new RegDirectory(this, buffer, _hKeyRoot);
|
||||
|
||||
memcpy(&entry->_data, &w32fd, sizeof(WIN32_FIND_DATA));
|
||||
|
@ -152,7 +153,7 @@ void RegDirectory::read_directory(int scan_flags)
|
|||
entry->_content = _tcsdup(value);
|
||||
else if (type == REG_DWORD) {
|
||||
TCHAR b[32];
|
||||
_stprintf(b, TEXT("%ld"), *(DWORD*)&value);
|
||||
_stprintf_s1(b, COUNTOF(b), TEXT("%ld"), *(DWORD*)&value);
|
||||
entry->_content = _tcsdup(b);
|
||||
}
|
||||
}
|
||||
|
@ -253,49 +254,49 @@ void RegistryRoot::read_directory(int scan_flags)
|
|||
_data.dwFileAttributes |= FILE_ATTRIBUTE_DIRECTORY;
|
||||
|
||||
entry = new RegDirectory(this, TEXT("\\"), HKEY_CURRENT_USER);
|
||||
_tcscpy(entry->_data.cFileName, TEXT("HKEY_CURRENT_USER"));
|
||||
_tcscpy_s(entry->_data.cFileName, COUNTOF(entry->_data.cFileName), TEXT("HKEY_CURRENT_USER"));
|
||||
entry->_level = level;
|
||||
|
||||
first_entry = entry;
|
||||
last = entry;
|
||||
|
||||
entry = new RegDirectory(this, TEXT("\\"), HKEY_LOCAL_MACHINE);
|
||||
_tcscpy(entry->_data.cFileName, TEXT("HKEY_LOCAL_MACHINE"));
|
||||
_tcscpy_s(entry->_data.cFileName, COUNTOF(entry->_data.cFileName), TEXT("HKEY_LOCAL_MACHINE"));
|
||||
entry->_level = level;
|
||||
|
||||
last->_next = entry;
|
||||
last = entry;
|
||||
|
||||
entry = new RegDirectory(this, TEXT("\\"), HKEY_CLASSES_ROOT);
|
||||
_tcscpy(entry->_data.cFileName, TEXT("HKEY_CLASSES_ROOT"));
|
||||
_tcscpy_s(entry->_data.cFileName, COUNTOF(entry->_data.cFileName), TEXT("HKEY_CLASSES_ROOT"));
|
||||
entry->_level = level;
|
||||
|
||||
last->_next = entry;
|
||||
last = entry;
|
||||
|
||||
entry = new RegDirectory(this, TEXT("\\"), HKEY_USERS);
|
||||
_tcscpy(entry->_data.cFileName, TEXT("HKEY_USERS"));
|
||||
_tcscpy_s(entry->_data.cFileName, COUNTOF(entry->_data.cFileName), TEXT("HKEY_USERS"));
|
||||
entry->_level = level;
|
||||
|
||||
last->_next = entry;
|
||||
last = entry;
|
||||
/*
|
||||
entry = new RegDirectory(this, TEXT("\\"), HKEY_PERFORMANCE_DATA);
|
||||
_tcscpy(entry->_data.cFileName, TEXT("HKEY_PERFORMANCE_DATA"));
|
||||
_tcscpy_s(entry->_data.cFileName, COUNTOF(entry->_data.cFileName), TEXT("HKEY_PERFORMANCE_DATA"));
|
||||
entry->_level = level;
|
||||
|
||||
last->_next = entry;
|
||||
last = entry;
|
||||
*/
|
||||
entry = new RegDirectory(this, TEXT("\\"), HKEY_CURRENT_CONFIG);
|
||||
_tcscpy(entry->_data.cFileName, TEXT("HKEY_CURRENT_CONFIG"));
|
||||
_tcscpy_s(entry->_data.cFileName, COUNTOF(entry->_data.cFileName), TEXT("HKEY_CURRENT_CONFIG"));
|
||||
entry->_level = level;
|
||||
|
||||
last->_next = entry;
|
||||
last = entry;
|
||||
/*
|
||||
entry = new RegDirectory(this, TEXT("\\"), HKEY_DYN_DATA);
|
||||
_tcscpy(entry->_data.cFileName, TEXT("HKEY_DYN_DATA"));
|
||||
_tcscpy_s(entry->_data.cFileName, COUNTOF(entry->_data.cFileName), TEXT("HKEY_DYN_DATA"));
|
||||
entry->_level = level;
|
||||
|
||||
last->_next = entry;
|
||||
|
|
|
@ -61,7 +61,7 @@ bool ShellDirectory::fill_w32fdata_shell(LPCITEMIDLIST pidl, SFGAOF attribs, WIN
|
|||
if (path) {
|
||||
// fill with drive names "C:", ...
|
||||
assert(_tcslen(path) < GlobalSize(medium.UNION_MEMBER(hGlobal)));
|
||||
_tcscpy(pw32fdata->cFileName, path);
|
||||
_tcscpy_s(pw32fdata->cFileName, COUNTOF(pw32fdata->cFileName), path);
|
||||
|
||||
UINT sem_org = SetErrorMode(SEM_FAILCRITICALERRORS);
|
||||
|
||||
|
@ -135,7 +135,7 @@ bool ShellEntry::get_path(PTSTR path, size_t path_count) const
|
|||
/*
|
||||
path[0] = TEXT('\0');
|
||||
|
||||
if (FAILED(path_from_pidl(get_parent_folder(), &*_pidl, path, MAX_PATH)))
|
||||
if (FAILED(path_from_pidl(get_parent_folder(), &*_pidl, path, path_count)))
|
||||
return false;
|
||||
*/
|
||||
FileSysShellPath fs_path(create_absolute_pidl());
|
||||
|
@ -410,9 +410,9 @@ void ShellDirectory::read_directory(int scan_flags)
|
|||
if (bhfi_valid)
|
||||
memcpy(&entry->_bhfi, &bhfi, sizeof(BY_HANDLE_FILE_INFORMATION));
|
||||
|
||||
if (SUCCEEDED(name_from_pidl(_folder, pidls[n], name, MAX_PATH, SHGDN_INFOLDER|0x2000/*0x2000=SHGDN_INCLUDE_NONFILESYS*/))) {
|
||||
if (SUCCEEDED(name_from_pidl(_folder, pidls[n], name, COUNTOF(name), SHGDN_INFOLDER|0x2000/*0x2000=SHGDN_INCLUDE_NONFILESYS*/))) {
|
||||
if (!entry->_data.cFileName[0])
|
||||
_tcscpy(entry->_data.cFileName, name);
|
||||
_tcscpy_s(entry->_data.cFileName, COUNTOF(entry->_data.cFileName), name);
|
||||
else if (_tcscmp(entry->_display_name, name))
|
||||
entry->_display_name = _tcsdup(name); // store display name separate from file name; sort display by file name
|
||||
}
|
||||
|
|
|
@ -407,7 +407,7 @@ void BookmarkList::import_IE_favorites(ShellDirectory& dir, HWND hwnd)
|
|||
bookmark._name = DecodeXMLString(name);
|
||||
|
||||
entry->get_path(path, COUNTOF(path));
|
||||
_tsplitpath(path, NULL, NULL, NULL, ext);
|
||||
_tsplitpath_s(path, NULL, 0, NULL, 0, NULL, 0, ext, COUNTOF(ext));
|
||||
|
||||
if (!_tcsicmp(ext, TEXT(".url"))) {
|
||||
bookmark.read_url(path);
|
||||
|
|
|
@ -100,7 +100,7 @@ void QuickLaunchBar::AddShortcuts()
|
|||
|
||||
SpecialFolderFSPath app_data(CSIDL_APPDATA, _hwnd); ///@todo perhaps also look into CSIDL_COMMON_APPDATA ?
|
||||
|
||||
_stprintf(path, TEXT("%s\\")QUICKLAUNCH_FOLDER, (LPCTSTR)app_data);
|
||||
_stprintf_s1(path, COUNTOF(path), TEXT("%s\\")QUICKLAUNCH_FOLDER, (LPCTSTR)app_data);
|
||||
|
||||
RecursiveCreateDirectory(path);
|
||||
_dir = new ShellDirectory(GetDesktopFolder(), path, _hwnd);
|
||||
|
|
|
@ -248,10 +248,10 @@ void StartMenu::AddShellEntries(const ShellDirectory& dir, int max, const String
|
|||
TCHAR dir_path[MAX_PATH];
|
||||
|
||||
if (!ignore.empty()) {
|
||||
_tsplitpath(ignore, ignore_path, ignore_dir, ignore_name, ignore_ext);
|
||||
_tsplitpath_s(ignore, ignore_path, COUNTOF(ignore_path), ignore_dir, COUNTOF(ignore_dir), ignore_name, COUNTOF(ignore_name), ignore_ext, COUNTOF(ignore_ext));
|
||||
|
||||
_tcscat(ignore_path, ignore_dir);
|
||||
_tcscat(ignore_name, ignore_ext);
|
||||
_tcscat_s(ignore_path, COUNTOF(ignore_path), ignore_dir);
|
||||
_tcscat_s(ignore_name, COUNTOF(ignore_path), ignore_ext);
|
||||
|
||||
dir.get_path(dir_path, COUNTOF(dir_path));
|
||||
|
||||
|
|
|
@ -54,7 +54,7 @@ bool NotifyHook::ModulePathCopyData(LPARAM lparam, HWND* phwnd, String& path)
|
|||
{
|
||||
char buffer[MAX_PATH];
|
||||
|
||||
int l = GetWindowModulePathCopyData(lparam, phwnd, buffer, MAX_PATH);
|
||||
int l = GetWindowModulePathCopyData(lparam, phwnd, buffer, COUNTOF(buffer));
|
||||
|
||||
if (l) {
|
||||
path.assign(buffer, l);
|
||||
|
@ -190,7 +190,7 @@ bool NotifyInfo::modify(NOTIFYICONDATA* pnid)
|
|||
|
||||
// avoid to send WM_GETTEXT messages to the own process
|
||||
if (pid != GetCurrentProcessId())
|
||||
if (GetWindowText(_hWnd, title, MAX_PATH)) {
|
||||
if (GetWindowText(_hWnd, title, COUNTOF(title))) {
|
||||
if (_windowTitle != title) {
|
||||
_windowTitle = title;
|
||||
changes = true;
|
||||
|
@ -1282,10 +1282,10 @@ HWND ClockWindow::Create(HWND hwndParent)
|
|||
FontSelection font(canvas, GetStockFont(DEFAULT_GUI_FONT));
|
||||
|
||||
RECT rect = {0, 0, 0, 0};
|
||||
TCHAR buffer[16];
|
||||
TCHAR buffer[8];
|
||||
|
||||
if (!GetTimeFormat(LOCALE_USER_DEFAULT, TIME_NOSECONDS, NULL, NULL, buffer, sizeof(buffer)/sizeof(TCHAR)))
|
||||
_tcscpy(buffer, TEXT("00:00"));
|
||||
_tcscpy_s(buffer, COUNTOF(buffer), TEXT("00:00"));
|
||||
|
||||
DrawText(canvas, buffer, -1, &rect, DT_SINGLELINE|DT_NOPREFIX|DT_CALCRECT);
|
||||
int clockwindowWidth = rect.right-rect.left + 4;
|
||||
|
@ -1324,7 +1324,7 @@ int ClockWindow::Notify(int id, NMHDR* pnmh)
|
|||
GetLocalTime(&systime);
|
||||
|
||||
if (GetDateFormat(LOCALE_USER_DEFAULT, DATE_LONGDATE, &systime, NULL, buffer, 64))
|
||||
_tcscpy(pdi->szText, buffer);
|
||||
_tcscpy_s(pdi->szText, COUNTOF(pdi->szText), buffer);
|
||||
else
|
||||
pdi->szText[0] = '\0';
|
||||
}
|
||||
|
@ -1344,7 +1344,7 @@ bool ClockWindow::FormatTime()
|
|||
|
||||
if (GetTimeFormat(LOCALE_USER_DEFAULT, TIME_NOSECONDS, NULL, NULL, buffer, sizeof(buffer)/sizeof(TCHAR)))
|
||||
if (_tcscmp(buffer, _time)) {
|
||||
_tcscpy(_time, buffer);
|
||||
_tcscpy_s(_time, COUNTOF(_time), buffer);
|
||||
return true; // The text to display has changed.
|
||||
}
|
||||
|
||||
|
|
|
@ -70,12 +70,15 @@ LPWSTR wcscpyn(LPWSTR dest, LPCWSTR source, size_t count)
|
|||
String COMException::toString() const
|
||||
{
|
||||
TCHAR msg[4*BUFFER_LEN];
|
||||
int l = 4*BUFFER_LEN;
|
||||
LPTSTR p = msg;
|
||||
|
||||
p += _stprintf(p, TEXT("%s\nContext: %s"), super::ErrorMessage(), (LPCTSTR)_context.toString());
|
||||
int n = _stprintf_s2(p, l, TEXT("%s\nContext: %s"), super::ErrorMessage(), (LPCTSTR)_context.toString());
|
||||
p += n;
|
||||
l -= n;
|
||||
|
||||
if (_file)
|
||||
p += _stprintf(p, TEXT("\nLocation: %hs:%d"), _file, _line);
|
||||
p += _stprintf_s2(p, l, TEXT("\nLocation: %hs:%d"), _file, _line);
|
||||
|
||||
return msg;
|
||||
}
|
||||
|
@ -320,7 +323,7 @@ String ShellFolder::get_name(LPCITEMIDLIST pidl, SHGDNF flags) const
|
|||
HRESULT hr = ((IShellFolder*)*const_cast<ShellFolder*>(this))->GetDisplayNameOf(pidl, flags, &strret);
|
||||
|
||||
if (hr == S_OK)
|
||||
strret.GetString(pidl->mkid, buffer, MAX_PATH);
|
||||
strret.GetString(pidl->mkid, buffer, COUNTOF(buffer));
|
||||
else {
|
||||
CHECKERROR(hr);
|
||||
*buffer = TEXT('\0');
|
||||
|
|
|
@ -683,7 +683,7 @@ struct ShellPath : public SShellPtr<ITEMIDLIST>
|
|||
WCHAR b[MAX_PATH];
|
||||
|
||||
if (path) {
|
||||
MultiByteToWideChar(CP_ACP, 0, path, -1, b, MAX_PATH);
|
||||
MultiByteToWideChar(CP_ACP, 0, path, -1, b, COUNTOF(b));
|
||||
CHECKERROR(folder->ParseDisplayName(0, NULL, b, NULL, &_p, NULL));
|
||||
} else
|
||||
_p = NULL;
|
||||
|
@ -696,7 +696,7 @@ struct ShellPath : public SShellPtr<ITEMIDLIST>
|
|||
WCHAR b[MAX_PATH];
|
||||
|
||||
if (path) {
|
||||
MultiByteToWideChar(CP_ACP, 0, path, -1, b, MAX_PATH);
|
||||
MultiByteToWideChar(CP_ACP, 0, path, -1, b, COUNTOF(b));
|
||||
CHECKERROR(GetDesktopFolder()->ParseDisplayName(0, NULL, b, NULL, &_p, NULL));
|
||||
} else
|
||||
_p = NULL;
|
||||
|
|
|
@ -158,11 +158,20 @@ String Context::getStackTrace() const
|
|||
|
||||
BOOL time_to_filetime(const time_t* t, FILETIME* ftime)
|
||||
{
|
||||
#ifdef __STDC_WANT_SECURE_LIB__
|
||||
SYSTEMTIME stime;
|
||||
struct tm tm_;
|
||||
struct tm* tm = &tm_;
|
||||
|
||||
if (gmtime_s(tm, t) != 0)
|
||||
return FALSE;
|
||||
#else
|
||||
struct tm* tm = gmtime(t);
|
||||
SYSTEMTIME stime;
|
||||
|
||||
if (!tm)
|
||||
return FALSE;
|
||||
#endif
|
||||
|
||||
stime.wYear = tm->tm_year+1900;
|
||||
stime.wMonth = tm->tm_mon+1;
|
||||
|
@ -384,7 +393,7 @@ BOOL RecursiveCreateDirectory(LPCTSTR path_in)
|
|||
{
|
||||
TCHAR path[MAX_PATH], hole_path[MAX_PATH];
|
||||
|
||||
_tcscpy(hole_path, path_in);
|
||||
_tcscpy_s(hole_path, COUNTOF(hole_path), path_in);
|
||||
|
||||
int drv_len = 0;
|
||||
LPCTSTR d;
|
||||
|
@ -409,7 +418,7 @@ BOOL RecursiveCreateDirectory(LPCTSTR path_in)
|
|||
HANDLE hFind = FindFirstFile(hole_path, &w32fd);
|
||||
|
||||
if (hFind == INVALID_HANDLE_VALUE) {
|
||||
_tcsncpy(path, hole_path, drv_len);
|
||||
_tcsncpy_s(path, COUNTOF(path), hole_path, drv_len);
|
||||
int i = drv_len;
|
||||
|
||||
for(p=dir; *p=='/'||*p=='\\'; p++)
|
||||
|
@ -504,15 +513,15 @@ bool SplitFileSysURL(LPCTSTR url, String& dir_out, String& fname_out)
|
|||
TCHAR path[_MAX_PATH];
|
||||
|
||||
// convert slashes to back slashes
|
||||
GetFullPathName(url, _MAX_PATH, path, NULL);
|
||||
GetFullPathName(url, COUNTOF(path), path, NULL);
|
||||
|
||||
if (GetFileAttributes(path) & FILE_ATTRIBUTE_DIRECTORY)
|
||||
fname_out.erase();
|
||||
else {
|
||||
TCHAR drv[_MAX_DRIVE], dir[_MAX_DIR], fname[_MAX_FNAME], ext[_MAX_EXT];
|
||||
|
||||
_tsplitpath(path, drv, dir, fname, ext);
|
||||
_stprintf(path, TEXT("%s%s"), drv, dir);
|
||||
_tsplitpath_s(path, drv, COUNTOF(drv), dir, COUNTOF(dir), fname, COUNTOF(fname), ext, COUNTOF(ext));
|
||||
_stprintf_s2(path, COUNTOF(path), TEXT("%s%s"), drv, dir);
|
||||
|
||||
fname_out.printf(TEXT("%s%s"), fname, ext);
|
||||
}
|
||||
|
|
|
@ -166,6 +166,31 @@ BOOL exists_path(LPCTSTR path);
|
|||
#endif
|
||||
|
||||
|
||||
#ifdef __STDC_WANT_SECURE_LIB__ // for VS 2005: _MSC_VER>=1400
|
||||
|
||||
#undef _vsntprintf
|
||||
#define _vsntprintf(b, s, f, l) _vsntprintf_s(b, s, s, f, l)
|
||||
|
||||
#undef _sntprintf
|
||||
#define _sntprintf(b, s, f, l) _sntprintf_s(b, s, s, f, l)
|
||||
|
||||
#define _stprintf_s1 _stprintf_s
|
||||
#define _stprintf_s2 _stprintf_s
|
||||
|
||||
#else // __STDC_WANT_SECURE_LIB__
|
||||
|
||||
#define strcpy_s(d, l, s) strcpy(d, s)
|
||||
#define _tcscpy_s(d, l, s) _tcscpy(d, s)
|
||||
#define _tcscat_s(d, l, s) _tcscat(d, s)
|
||||
#define wcsncpy_s(d, l, s, n) wcsncpy(d, s, n)
|
||||
#define _tcsncpy_s(d, l, s, n) _tcsncpy(d, s, n)
|
||||
#define _stprintf_s1(b, l, f, p1) _stprintf(b, f, p1)
|
||||
#define _stprintf_s2(b, l, f, p1,p2) _stprintf(b, f, p1,p2)
|
||||
#define _tsplitpath_s(f, d,dl, p,pl, n,nl, e,el) _tsplitpath(f, d, p, n, e)
|
||||
|
||||
#endif // __STDC_WANT_SECURE_LIB__
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
||||
#ifdef _MSC_VER
|
||||
|
@ -185,9 +210,11 @@ using namespace std;
|
|||
#include <vector>
|
||||
|
||||
|
||||
/* not necessary with correct include file order for comdef.h (path "...\Program Files\Microsoft SDK\include" first)
|
||||
#if _MSC_VER>=1300 // VS.Net
|
||||
#define _NO_COMUTIL //@@
|
||||
#define _NO_COMUTIL
|
||||
#endif
|
||||
*/
|
||||
|
||||
#if defined(_MSC_VER) && !defined(_NO_COMUTIL)
|
||||
|
||||
|
|
Loading…
Reference in a new issue