mirror of
				https://github.com/notepad-plus-plus/notepad-plus-plus.git
				synced 2025-10-31 03:24:04 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			484 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			484 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| // Scintilla source code edit control
 | |
| /** @file ScintillaWin.h
 | |
|  ** Define functions from ScintillaWin.cxx that can be called from ScintillaDLL.cxx.
 | |
|  **/
 | |
| // Copyright 1998-2018 by Neil Hodgson <neilh@scintilla.org>
 | |
| // The License.txt file describes the conditions under which this software may be distributed.
 | |
| 
 | |
| class ScintillaWin;
 | |
| 
 | |
| namespace Scintilla {
 | |
| 
 | |
| int ResourcesRelease(bool fromDllMain);
 | |
| sptr_t DirectFunction(ScintillaWin *sci, UINT iMessage, uptr_t wParam, sptr_t lParam);
 | |
| 
 | |
| }
 |