59 lines
		
	
	
		
			929 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			929 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
/*++
 | 
						|
 | 
						|
Copyright (c) 2001, Microsoft Corporation
 | 
						|
 | 
						|
Module Name:
 | 
						|
 | 
						|
    msctfime.rc
 | 
						|
 | 
						|
Abstract:
 | 
						|
 | 
						|
    This file implements the windows resources.
 | 
						|
 | 
						|
Author:
 | 
						|
 | 
						|
Revision History:
 | 
						|
 | 
						|
Notes:
 | 
						|
 | 
						|
--*/
 | 
						|
 | 
						|
#ifdef RC_INVOKED
 | 
						|
#ifndef _INC_WINDOWS
 | 
						|
#define _INC_WINDOWS
 | 
						|
#include "winres.h"
 | 
						|
#endif
 | 
						|
#endif
 | 
						|
 | 
						|
 | 
						|
#include "msctfime.rcv"
 | 
						|
#include "resource.h"
 | 
						|
#include "cuires.h"
 | 
						|
 | 
						|
 | 
						|
/////////////////////////////////////////////////////////////////////////////
 | 
						|
//
 | 
						|
// ICON
 | 
						|
//
 | 
						|
 | 
						|
IDIC_IME_ICON       ICON         msctfime.ico
 | 
						|
IDIC_ENTER_ICON     ICON         enter.ico
 | 
						|
 | 
						|
 | 
						|
/////////////////////////////////////////////////////////////////////////////
 | 
						|
//
 | 
						|
// STRING
 | 
						|
//
 | 
						|
 | 
						|
STRINGTABLE DISCARDABLE
 | 
						|
BEGIN
 | 
						|
    IDS_ENTER_BTN_TEXT            "Enter"
 | 
						|
    IDS_ENTER_BTN_TOOLTIP         "Finalize the string"
 | 
						|
    IDS_FUNCPRV_CONVERSION        "Conversion"
 | 
						|
END
 | 
						|
 | 
						|
//
 | 
						|
// include string table for CUILIB.LIB
 | 
						|
//
 | 
						|
#include "cuires.rc"
 |