ANISTR.C
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. #include <windows.h>
  2. //BUGBUG - eventually load these out of the resource file
  3. LPTSTR gpszImagEdit    = "imagedit %1";
  4. #ifdef DBCS // Load string dynamically
  5. LPTSTR gpszAniFilter;
  6. #else
  7. LPTSTR gpszAniFilter   = "Animated Cursor*.aniAll Files*.*";
  8. #endif
  9. LPTSTR gpszCUR         = "cur";
  10. LPTSTR gpszANI         = "ani";
  11. #ifdef DBCS // Load string dynamically
  12. LPTSTR gpszUnknownError;
  13. LPTSTR gpszCurFilter;
  14. LPTSTR gpszUntitled;
  15. LPTSTR gpszImport;
  16. #else
  17. LPTSTR gpszUnknownError = "Unknown Error";
  18. LPTSTR gpszCurFilter   = "Cursor files*.curIcon files*.icoAll Files*.*";
  19. LPTSTR gpszUntitled    = "(Untitled)";
  20. LPTSTR gpszImport      = "Import Frame";
  21. #endif