eSpeak NG is an open source speech synthesizer that supports more than hundred languages and accents.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

sample.rc 1.3KB

1234567891011121314151617181920212223242526272829303132
  1. /////////////////////////////////////////////////////////////////////////////
  2. // Name: samples/samples.rc
  3. // Purpose: a standard Win32 .rc file for the wxWindows samples
  4. // Author: Vadim Zeitlin
  5. // Modified by:
  6. // Created: 04.08.03
  7. // RCS-ID: $Id: sample.rc,v 1.2 2003/08/14 14:08:53 VS Exp $
  8. // Copyright: (c) 2003 Vadim Zeitlin <[email protected]>
  9. // Licence: wxWindows licence
  10. /////////////////////////////////////////////////////////////////////////////
  11. // this minimal resource file is all what is needed for most of the wxWindows
  12. // samples
  13. // note that the icon used by the Explorer (i.e. the programs icon) is the
  14. // first icon in the executable and the icons are sorted both by their order
  15. // (Win9x) and by alphabetically (!) (NT), so put this icon first and give it
  16. // a name starting with "a"
  17. aaaaaaaa ICON "sample.ico"
  18. // this icon is used with wxFrame::SetIcon()
  19. sample ICON "sample.ico"
  20. // set this to 1 if you don't want to use manifest resource (manifest resource
  21. // is needed to enable visual styles on Windows XP - see docs/msw/winxp.txt
  22. // for more information)
  23. #define wxUSE_NO_MANIFEST 0
  24. // this is not always needed but doesn't hurt (except making the executable
  25. // very slightly larger): this file contains the standard icons, cursors, ...
  26. #include "wx/msw/wx.rc"