ParanoidPanda

somethings.h

Jan 8th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. #ifndef SOMETHINGS_H_INCLUDED
  2. #define SOMETHINGS_H_INCLUDED
  3.  
  4. #include "somethings.h"
  5. #include <limits.h>
  6. #include <stdlib.h>
  7. #include <stdio.h>
  8. #include <windows.h>
  9.  
  10. //HWND hWnd = FindWindowA("ConsoleWindowClass", NULL);
  11. //HDC hdc = GetDC(FindWindowA("ConsoleWindowClass", NULL));
  12.  
  13. struct sDots
  14. {
  15. int x;
  16. int y;
  17. };
  18.  
  19. void menu();
  20. void deleteDot();
  21. void addDot();
  22. void showDots();
  23. void startAlgo();
  24. void loadThis();
  25. void drawLine(int x1, int y1, int x2, int y2);
  26. void drawDot(int x, int y);
  27. void drawThis(int c);
  28. int orientation(struct sDots a, struct sDots b, struct sDots c);
  29. #endif SOMETHINGS_H_INCLUDED
Add Comment
Please, Sign In to add comment