Leaked source code of windows server 2003
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.

27 lines
463 B

  1. #ifndef __GDIPSCSAVE_H
  2. #define __GDIPSCSAVE_H
  3. #include <windows.h>
  4. #include <objbase.h>
  5. #include <scrnsave.h>
  6. #include "resource.h"
  7. #include <gdiplus.h>
  8. #include <shlobj.h>
  9. using namespace Gdiplus;
  10. WCHAR szAppName[APPNAMEBUFFERLEN];
  11. #define SPEED_MIN 0
  12. #define SPEED_MAX 100
  13. #define SPEED_DEF 50
  14. #define TILESIZE_MIN 0
  15. #define TILESIZE_MAX 4
  16. #define TILESIZE_DEF 2
  17. VOID DrawLifeIteration(HDC hdc);
  18. VOID InitLifeMatrix();
  19. #endif