Vga_Demo.h 637 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. #pragma once
  2. #include "CcosThread.h"
  3. //
  4. //class UI_Thread : public Ccos_Thread
  5. //{
  6. //
  7. //public:
  8. // UI_Thread();
  9. // ~UI_Thread();
  10. //
  11. // virtual bool Exec();
  12. // virtual bool OnEndThread();
  13. // virtual bool OnStartThread();
  14. //
  15. //
  16. //};
  17. //
  18. //class Vga_Demo : public Ccos_Thread
  19. //{
  20. // char m_strDemoImgPath[256];
  21. // int Imagewidth;
  22. // int Imageheight;
  23. // int ImageBit;
  24. // WORD *pImageBuff[4];
  25. //
  26. //public:
  27. // Vga_Demo();
  28. // ~Vga_Demo();
  29. //
  30. // bool LoadImageFile();
  31. // void UnLoadImageFile();
  32. // void InitImageBuff(int width, int height);
  33. //
  34. // virtual bool Exec();
  35. // virtual bool OnEndThread();
  36. // virtual bool OnStartThread();
  37. //
  38. //
  39. //};