| CODENOTIFIER | HelpYou are not signed inSign in |
Project: Notepad++
Revision: 294
Author: harrybharry
Date: 17 Jul 2008 10:40:52
Changes:Fix bug when closing file using close button.
Add Scintilla vcproj file for VS 2003
| ... | ...@@ -1920,7 +1920,7 @@ | |
| 1920 | 1920 | int iView = isFromPrimary?MAIN_VIEW:SUB_VIEW; |
| 1921 | 1921 | if (buf->isDirty()) { //activate and use fileClose() (for save and abort) |
| 1922 | 1922 | activateBuffer(bufferToClose, iView); |
| 1923 | fileClose(); | |
| 1923 | fileClose(bufferToClose, iView); | |
| 1924 | 1924 | break; |
| 1925 | 1925 | } |
| 1926 | 1926 | int open = 1; |
| ... | ...@@ -0,0 +1,582 @@ | |
| 1 | <?xml version="1.0" encoding="Windows-1252"?> | |
| 2 | <VisualStudioProject | |
| 3 | ProjectType="Visual C++" | |
| 4 | Version="7.10" | |
| 5 | Name="SciLexer.7" | |
| 6 | ProjectGUID="{55121E73-EAE3-438B-A537-BABBCA29B084}" | |
| 7 | Keyword="Win32Proj"> | |
| 8 | <Platforms> | |
| 9 | <Platform | |
| 10 | Name="Win32"/> | |
| 11 | </Platforms> | |
| 12 | <Configurations> | |
| 13 | <Configuration | |
| 14 | Name="Debug|Win32" | |
| 15 | OutputDirectory="..\bin" | |
| 16 | IntermediateDirectory="Debug" | |
| 17 | ConfigurationType="2" | |
| 18 | CharacterSet="2"> | |
| 19 | <Tool | |
| 20 | Name="VCCLCompilerTool" | |
| 21 | Optimization="0" | |
| 22 | AdditionalIncludeDirectories="..\include;..\src" | |
| 23 | PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;SCILEXER7_EXPORTS;SCI_LEXER" | |
| 24 | MinimalRebuild="TRUE" | |
| 25 | BasicRuntimeChecks="3" | |
| 26 | RuntimeLibrary="1" | |
| 27 | UsePrecompiledHeader="0" | |
| 28 | WarningLevel="3" | |
| 29 | Detect64BitPortabilityProblems="TRUE" | |
| 30 | DebugInformationFormat="4"/> | |
| 31 | <Tool | |
| 32 | Name="VCCustomBuildTool"/> | |
| 33 | <Tool | |
| 34 | Name="VCLinkerTool" | |
| 35 | AdditionalDependencies="Imm32.lib" | |
| 36 | OutputFile="$(OutDir)/SciLexer.dll" | |
| 37 | LinkIncremental="2" | |
| 38 | ModuleDefinitionFile="..\win32\Scintilla.def" | |
| 39 | GenerateDebugInformation="TRUE" | |
| 40 | ProgramDatabaseFile="$(OutDir)/SciLexer.7.pdb" | |
| 41 | SubSystem="2" | |
| 42 | ImportLibrary="$(OutDir)/SciLexer.7.lib" | |
| 43 | TargetMachine="1"/> | |
| 44 | <Tool | |
| 45 | Name="VCMIDLTool"/> | |
| 46 | <Tool | |
| 47 | Name="VCPostBuildEventTool"/> | |
| 48 | <Tool | |
| 49 | Name="VCPreBuildEventTool"/> | |
| 50 | <Tool | |
| 51 | Name="VCPreLinkEventTool"/> | |
| 52 | <Tool | |
| 53 | Name="VCResourceCompilerTool"/> | |
| 54 | <Tool | |
| 55 | Name="VCWebServiceProxyGeneratorTool"/> | |
| 56 | <Tool | |
| 57 | Name="VCXMLDataGeneratorTool"/> | |
| 58 | <Tool | |
| 59 | Name="VCWebDeploymentTool"/> | |
| 60 | <Tool | |
| 61 | Name="VCManagedWrapperGeneratorTool"/> | |
| 62 | <Tool | |
| 63 | Name="VCAuxiliaryManagedWrapperGeneratorTool"/> | |
| 64 | </Configuration> | |
| 65 | <Configuration | |
| 66 | Name="Release|Win32" | |
| 67 | OutputDirectory="..\bin" | |
| 68 | IntermediateDirectory="Release" | |
| 69 | ConfigurationType="2" | |
| 70 | CharacterSet="2"> | |
| 71 | <Tool | |
| 72 | Name="VCCLCompilerTool" | |
| 73 | AdditionalIncludeDirectories="..\include;..\src" | |
| 74 | PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;SCILEXER7_EXPORTS;SCI_LEXER" | |
| 75 | RuntimeLibrary="0" | |
| 76 | UsePrecompiledHeader="0" | |
| 77 | WarningLevel="3" | |
| 78 | Detect64BitPortabilityProblems="TRUE" | |
| 79 | DebugInformationFormat="3"/> | |
| 80 | <Tool | |
| 81 | Name="VCCustomBuildTool"/> | |
| 82 | <Tool | |
| 83 | Name="VCLinkerTool" | |
| 84 | AdditionalDependencies="Imm32.lib" | |
| 85 | OutputFile="$(OutDir)/SciLexer.dll" | |
| 86 | LinkIncremental="1" | |
| 87 | ModuleDefinitionFile="..\win32\Scintilla.def" | |
| 88 | GenerateDebugInformation="TRUE" | |
| 89 | SubSystem="2" | |
| 90 | OptimizeReferences="2" | |
| 91 | EnableCOMDATFolding="2" | |
| 92 | ImportLibrary="$(OutDir)/SciLexer.7.lib" | |
| 93 | TargetMachine="1"/> | |
| 94 | <Tool | |
| 95 | Name="VCMIDLTool"/> | |
| 96 | <Tool | |
| 97 | Name="VCPostBuildEventTool"/> | |
| 98 | <Tool | |
| 99 | Name="VCPreBuildEventTool"/> | |
| 100 | <Tool | |
| 101 | Name="VCPreLinkEventTool"/> | |
| 102 | <Tool | |
| 103 | Name="VCResourceCompilerTool"/> | |
| 104 | <Tool | |
| 105 | Name="VCWebServiceProxyGeneratorTool"/> | |
| 106 | <Tool | |
| 107 | Name="VCXMLDataGeneratorTool"/> | |
| 108 | <Tool | |
| 109 | Name="VCWebDeploymentTool"/> | |
| 110 | <Tool | |
| 111 | Name="VCManagedWrapperGeneratorTool"/> | |
| 112 | <Tool | |
| 113 | Name="VCAuxiliaryManagedWrapperGeneratorTool"/> | |
| 114 | </Configuration> | |
| 115 | </Configurations> | |
| 116 | <References> | |
| 117 | </References> | |
| 118 | <Files> | |
| 119 | <Filter | |
| 120 | Name="Source Files" | |
| 121 | Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx" | |
| 122 | UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"> | |
| 123 | <File | |
| 124 | RelativePath="..\src\AutoComplete.cxx"> | |
| 125 | </File> | |
| 126 | <File | |
| 127 | RelativePath="..\src\CallTip.cxx"> | |
| 128 | </File> | |
| 129 | <File | |
| 130 | RelativePath="..\src\CellBuffer.cxx"> | |
| 131 | </File> | |
| 132 | <File | |
| 133 | RelativePath="..\src\CharClassify.cxx"> | |
| 134 | </File> | |
| 135 | <File | |
| 136 | RelativePath="..\src\ContractionState.cxx"> | |
| 137 | </File> | |
| 138 | <File | |
| 139 | RelativePath="..\src\Decoration.cxx"> | |
| 140 | </File> | |
| 141 | <File | |
| 142 | RelativePath="..\src\Document.cxx"> | |
| 143 | </File> | |
| 144 | <File | |
| 145 | RelativePath="..\src\DocumentAccessor.cxx"> | |
| 146 | </File> | |
| 147 | <File | |
| 148 | RelativePath="..\src\Editor.cxx"> | |
| 149 | </File> | |
| 150 | <File | |
| 151 | RelativePath="..\src\ExternalLexer.cxx"> | |
| 152 | </File> | |
| 153 | <File | |
| 154 | RelativePath="..\src\Indicator.cxx"> | |
| 155 | </File> | |
| 156 | <File | |
| 157 | RelativePath="..\src\KeyMap.cxx"> | |
| 158 | </File> | |
| 159 | <File | |
| 160 | RelativePath="..\src\KeyWords.cxx"> | |
| 161 | </File> | |
| 162 | <File | |
| 163 | RelativePath="..\src\LineMarker.cxx"> | |
| 164 | </File> | |
| 165 | <File | |
| 166 | RelativePath="..\src\PositionCache.cxx"> | |
| 167 | </File> | |
| 168 | <File | |
| 169 | RelativePath="..\src\PropSet.cxx"> | |
| 170 | </File> | |
| 171 | <File | |
| 172 | RelativePath="..\src\RESearch.cxx"> | |
| 173 | </File> | |
| 174 | <File | |
| 175 | RelativePath="..\src\RunStyles.cxx"> | |
| 176 | </File> | |
| 177 | <File | |
| 178 | RelativePath="..\src\ScintillaBase.cxx"> | |
| 179 | </File> | |
| 180 | <File | |
| 181 | RelativePath="..\src\Style.cxx"> | |
| 182 | </File> | |
| 183 | <File | |
| 184 | RelativePath="..\src\StyleContext.cxx"> | |
| 185 | </File> | |
| 186 | <File | |
| 187 | RelativePath="..\src\UniConversion.cxx"> | |
| 188 | </File> | |
| 189 | <File | |
| 190 | RelativePath="..\src\ViewStyle.cxx"> | |
| 191 | </File> | |
| 192 | <File | |
| 193 | RelativePath="..\src\WindowAccessor.cxx"> | |
| 194 | </File> | |
| 195 | <File | |
| 196 | RelativePath="..\src\XPM.cxx"> | |
| 197 | </File> | |
| 198 | <Filter | |
| 199 | Name="win32" | |
| 200 | Filter=""> | |
| 201 | <File | |
| 202 | RelativePath="..\win32\PlatWin.cxx"> | |
| 203 | </File> | |
| 204 | <File | |
| 205 | RelativePath="..\win32\ScintillaWin.cxx"> | |
| 206 | </File> | |
| 207 | </Filter> | |
| 208 | <Filter | |
| 209 | Name="Lexer" | |
| 210 | Filter=""> | |
| 211 | <File | |
| 212 | RelativePath="..\src\LexAbaqus.cxx"> | |
| 213 | </File> | |
| 214 | <File | |
| 215 | RelativePath="..\src\LexAda.cxx"> | |
| 216 | </File> | |
| 217 | <File | |
| 218 | RelativePath="..\src\LexAPDL.cxx"> | |
| 219 | </File> | |
| 220 | <File | |
| 221 | RelativePath="..\src\LexAsm.cxx"> | |
| 222 | </File> | |
| 223 | <File | |
| 224 | RelativePath="..\src\LexAsn1.cxx"> | |
| 225 | </File> | |
| 226 | <File | |
| 227 | RelativePath="..\src\LexASY.cxx"> | |
| 228 | </File> | |
| 229 | <File | |
| 230 | RelativePath="..\src\LexAU3.cxx"> | |
| 231 | </File> | |
| 232 | <File | |
| 233 | RelativePath="..\src\LexAVE.cxx"> | |
| 234 | </File> | |
| 235 | <File | |
| 236 | RelativePath="..\src\LexBaan.cxx"> | |
| 237 | </File> | |
| 238 | <File | |
| 239 | RelativePath="..\src\LexBash.cxx"> | |
| 240 | </File> | |
| 241 | <File | |
| 242 | RelativePath="..\src\LexBasic.cxx"> | |
| 243 | </File> | |
| 244 | <File | |
| 245 | RelativePath="..\src\LexBullant.cxx"> | |
| 246 | </File> | |
| 247 | <File | |
| 248 | RelativePath="..\src\LexCaml.cxx"> | |
| 249 | </File> | |
| 250 | <File | |
| 251 | RelativePath="..\src\LexCLW.cxx"> | |
| 252 | </File> | |
| 253 | <File | |
| 254 | RelativePath="..\src\LexCmake.cxx"> | |
| 255 | </File> | |
| 256 | <File | |
| 257 | RelativePath="..\src\LexConf.cxx"> | |
| 258 | </File> | |
| 259 | <File | |
| 260 | RelativePath="..\src\LexCPP.cxx"> | |
| 261 | </File> | |
| 262 | <File | |
| 263 | RelativePath="..\src\LexCrontab.cxx"> | |
| 264 | </File> | |
| 265 | <File | |
| 266 | RelativePath="..\src\LexCsound.cxx"> | |
| 267 | </File> | |
| 268 | <File | |
| 269 | RelativePath="..\src\LexCSS.cxx"> | |
| 270 | </File> | |
| 271 | <File | |
| 272 | RelativePath="..\src\LexD.cxx"> | |
| 273 | </File> | |
| 274 | <File | |
| 275 | RelativePath="..\src\LexEiffel.cxx"> | |
| 276 | </File> | |
| 277 | <File | |
| 278 | RelativePath="..\src\LexErlang.cxx"> | |
| 279 | </File> | |
| 280 | <File | |
| 281 | RelativePath="..\src\LexEScript.cxx"> | |
| 282 | </File> | |
| 283 | <File | |
| 284 | RelativePath="..\src\LexFlagship.cxx"> | |
| 285 | </File> | |
| 286 | <File | |
| 287 | RelativePath="..\src\LexForth.cxx"> | |
| 288 | </File> | |
| 289 | <File | |
| 290 | RelativePath="..\src\LexFortran.cxx"> | |
| 291 | </File> | |
| 292 | <File | |
| 293 | RelativePath="..\src\LexGAP.cxx"> | |
| 294 | </File> | |
| 295 | <File | |
| 296 | RelativePath="..\src\LexGui4Cli.cxx"> | |
| 297 | </File> | |
| 298 | <File | |
| 299 | RelativePath="..\src\LexHaskell.cxx"> | |
| 300 | </File> | |
| 301 | <File | |
| 302 | RelativePath="..\src\LexHTML.cxx"> | |
| 303 | </File> | |
| 304 | <File | |
| 305 | RelativePath="..\src\LexInno.cxx"> | |
| 306 | </File> | |
| 307 | <File | |
| 308 | RelativePath="..\src\LexKix.cxx"> | |
| 309 | </File> | |
| 310 | <File | |
| 311 | RelativePath="..\src\LexLisp.cxx"> | |
| 312 | </File> | |
| 313 | <File | |
| 314 | RelativePath="..\src\LexLout.cxx"> | |
| 315 | </File> | |
| 316 | <File | |
| 317 | RelativePath="..\src\LexLua.cxx"> | |
| 318 | </File> | |
| 319 | <File | |
| 320 | RelativePath="..\src\LexMagik.cxx"> | |
| 321 | </File> | |
| 322 | <File | |
| 323 | RelativePath="..\src\LexMatlab.cxx"> | |
| 324 | </File> | |
| 325 | <File | |
| 326 | RelativePath="..\src\LexMetapost.cxx"> | |
| 327 | </File> | |
| 328 | <File | |
| 329 | RelativePath="..\src\LexMMIXAL.cxx"> | |
| 330 | </File> | |
| 331 | <File | |
| 332 | RelativePath="..\src\LexMPT.cxx"> | |
| 333 | </File> | |
| 334 | <File | |
| 335 | RelativePath="..\src\LexMSSQL.cxx"> | |
| 336 | </File> | |
| 337 | <File | |
| 338 | RelativePath="..\src\LexNsis.cxx"> | |
| 339 | </File> | |
| 340 | <File | |
| 341 | RelativePath="..\src\LexObjC.cxx"> | |
| 342 | </File> | |
| 343 | <File | |
| 344 | RelativePath="..\src\LexOpal.cxx"> | |
| 345 | </File> | |
| 346 | <File | |
| 347 | RelativePath="..\src\LexOthers.cxx"> | |
| 348 | </File> | |
| 349 | <File | |
| 350 | RelativePath="..\src\LexPascal.cxx"> | |
| 351 | </File> | |
| 352 | <File | |
| 353 | RelativePath="..\src\LexPB.cxx"> | |
| 354 | </File> | |
| 355 | <File | |
| 356 | RelativePath="..\src\LexPerl.cxx"> | |
| 357 | </File> | |
| 358 | <File | |
| 359 | RelativePath="..\src\LexPLM.cxx"> | |
| 360 | </File> | |
| 361 | <File | |
| 362 | RelativePath="..\src\LexPOV.cxx"> | |
| 363 | </File> | |
| 364 | <File | |
| 365 | RelativePath="..\src\LexPowerShell.cxx"> | |
| 366 | </File> | |
| 367 | <File | |
| 368 | RelativePath="..\src\LexProgress.cxx"> | |
| 369 | </File> | |
| 370 | <File | |
| 371 | RelativePath="..\src\LexPS.cxx"> | |
| 372 | </File> | |
| 373 | <File | |
| 374 | RelativePath="..\src\LexPython.cxx"> | |
| 375 | </File> | |
| 376 | <File | |
| 377 | RelativePath="..\src\LexR.cxx"> | |
| 378 | </File> | |
| 379 | <File | |
| 380 | RelativePath="..\src\LexRebol.cxx"> | |
| 381 | </File> | |
| 382 | <File | |
| 383 | RelativePath="..\src\LexRuby.cxx"> | |
| 384 | </File> | |
| 385 | <File | |
| 386 | RelativePath="..\src\LexScriptol.cxx"> | |
| 387 | </File> | |
| 388 | <File | |
| 389 | RelativePath="..\src\LexSearchResult.cxx"> | |
| 390 | </File> | |
| 391 | <File | |
| 392 | RelativePath="..\src\LexSmalltalk.cxx"> | |
| 393 | </File> | |
| 394 | <File | |
| 395 | RelativePath="..\src\LexSpecman.cxx"> | |
| 396 | </File> | |
| 397 | <File | |
| 398 | RelativePath="..\src\LexSpice.cxx"> | |
| 399 | </File> | |
| 400 | <File | |
| 401 | RelativePath="..\src\LexSQL.cxx"> | |
| 402 | </File> | |
| 403 | <File | |
| 404 | RelativePath="..\src\LexTADS3.cxx"> | |
| 405 | </File> | |
| 406 | <File | |
| 407 | RelativePath="..\src\LexTCL.cxx"> | |
| 408 | </File> | |
| 409 | <File | |
| 410 | RelativePath="..\src\LexTeX.cxx"> | |
| 411 | </File> | |
| 412 | <File | |
| 413 | RelativePath="..\src\LexUser.cxx"> | |
| 414 | </File> | |
| 415 | <File | |
| 416 | RelativePath="..\src\LexVB.cxx"> | |
| 417 | </File> | |
| 418 | <File | |
| 419 | RelativePath="..\src\LexVerilog.cxx"> | |
| 420 | </File> | |
| 421 | <File | |
| 422 | RelativePath="..\src\LexVHDL.cxx"> | |
| 423 | </File> | |
| 424 | <File | |
| 425 | RelativePath="..\src\LexYAML.cxx"> | |
| 426 | </File> | |
| 427 | </Filter> | |
| 428 | </Filter> | |
| 429 | <Filter | |
| 430 | Name="Header Files" | |
| 431 | Filter="h;hpp;hxx;hm;inl;inc;xsd" | |
| 432 | UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"> | |
| 433 | <File | |
| 434 | RelativePath="..\src\AutoComplete.h"> | |
| 435 | </File> | |
| 436 | <File | |
| 437 | RelativePath="..\src\CallTip.h"> | |
| 438 | </File> | |
| 439 | <File | |
| 440 | RelativePath="..\src\CellBuffer.h"> | |
| 441 | </File> | |
| 442 | <File | |
| 443 | RelativePath="..\src\CharacterSet.h"> | |
| 444 | </File> | |
| 445 | <File | |
| 446 | RelativePath="..\src\CharClassify.h"> | |
| 447 | </File> | |
| 448 | <File | |
| 449 | RelativePath="..\src\ContractionState.h"> | |
| 450 | </File> | |
| 451 | <File | |
| 452 | RelativePath="..\src\Decoration.h"> | |
| 453 | </File> | |
| 454 | <File | |
| 455 | RelativePath="..\src\Document.h"> | |
| 456 | </File> | |
| 457 | <File | |
| 458 | RelativePath="..\src\DocumentAccessor.h"> | |
| 459 | </File> | |
| 460 | <File | |
| 461 | RelativePath="..\src\Editor.h"> | |
| 462 | </File> | |
| 463 | <File | |
| 464 | RelativePath="..\src\ExternalLexer.h"> | |
| 465 | </File> | |
| 466 | <File | |
| 467 | RelativePath="..\src\Indicator.h"> | |
| 468 | </File> | |
| 469 | <File | |
| 470 | RelativePath="..\src\KeyMap.h"> | |
| 471 | </File> | |
| 472 | <File | |
| 473 | RelativePath="..\src\LineMarker.h"> | |
| 474 | </File> | |
| 475 | <File | |
| 476 | RelativePath="..\src\Partitioning.h"> | |
| 477 | </File> | |
| 478 | <File | |
| 479 | RelativePath="..\src\PositionCache.h"> | |
| 480 | </File> | |
| 481 | <File | |
| 482 | RelativePath="..\src\RESearch.h"> | |
| 483 | </File> | |
| 484 | <File | |
| 485 | RelativePath="..\src\RunStyles.h"> | |
| 486 | </File> | |
| 487 | <File | |
| 488 | RelativePath="..\src\ScintillaBase.h"> | |
| 489 | </File> | |
| 490 | <File | |
| 491 | RelativePath="..\src\SplitVector.h"> | |
| 492 | </File> | |
| 493 | <File | |
| 494 | RelativePath="..\src\Style.h"> | |
| 495 | </File> | |
| 496 | <File | |
| 497 | RelativePath="..\src\StyleContext.h"> | |
| 498 | </File> | |
| 499 | <File | |
| 500 | RelativePath="..\src\SVector.h"> | |
| 501 | </File> | |
| 502 | <File | |
| 503 | RelativePath="..\src\UniConversion.h"> | |
| 504 | </File> | |
| 505 | <File | |
| 506 | RelativePath="..\src\ViewStyle.h"> | |
| 507 | </File> | |
| 508 | <File | |
| 509 | RelativePath="..\src\XPM.h"> | |
| 510 | </File> | |
| 511 | <Filter | |
| 512 | Name="Include" | |
| 513 | Filter=""> | |
| 514 | <File | |
| 515 | RelativePath="..\include\Accessor.h"> | |
| 516 | </File> | |
| 517 | <File | |
| 518 | RelativePath="..\include\KeyWords.h"> | |
| 519 | </File> | |
| 520 | <File | |
| 521 | RelativePath="..\include\Platform.h"> | |
| 522 | </File> | |
| 523 | <File | |
| 524 | RelativePath="..\include\PropSet.h"> | |
| 525 | </File> | |
| 526 | <File | |
| 527 | RelativePath="..\include\SciLexer.h"> | |
| 528 | </File> | |
| 529 | <File | |
| 530 | RelativePath="..\include\Scintilla.h"> | |
| 531 | </File> | |
| 532 | <File | |
| 533 | RelativePath="..\include\ScintillaWidget.h"> | |
| 534 | </File> | |
| 535 | <File | |
| 536 | RelativePath="..\include\SString.h"> | |
| 537 | </File> | |
| 538 | <File | |
| 539 | RelativePath="..\include\WindowAccessor.h"> | |
| 540 | </File> | |
| 541 | </Filter> | |
| 542 | <Filter | |
| 543 | Name="win32" | |
| 544 | Filter=""> | |
| 545 | <File | |
| 546 | RelativePath="..\win32\PlatformRes.h"> | |
| 547 | </File> | |
| 548 | </Filter> | |
| 549 | </Filter> | |
| 550 | <Filter | |
| 551 | Name="Resource Files" | |
| 552 | Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx" | |
| 553 | UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"> | |
| 554 | <File | |
| 555 | RelativePath="..\include\Face.py"> | |
| 556 | </File> | |
| 557 | <File | |
| 558 | RelativePath="..\include\HFacer.py"> | |
| 559 | </File> | |
| 560 | <File | |
| 561 | RelativePath="..\src\LexGen.py"> | |
| 562 | </File> | |
| 563 | <File | |
| 564 | RelativePath="..\win32\Margin.cur"> | |
| 565 | </File> | |
| 566 | <File | |
| 567 | RelativePath="..\win32\Scintilla.def"> | |
| 568 | </File> | |
| 569 | <File | |
| 570 | RelativePath="..\include\Scintilla.iface"> | |
| 571 | </File> | |
| 572 | <File | |
| 573 | RelativePath="..\win32\ScintRes.rc"> | |
| 574 | </File> | |
| 575 | <File | |
| 576 | RelativePath="..\src\SciTE.properties"> | |
| 577 | </File> | |
| 578 | </Filter> | |
| 579 | </Files> | |
| 580 | <Globals> | |
| 581 | </Globals> | |
| 582 | </VisualStudioProject> |