Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #ifndef SOMETHINGS_H_INCLUDED
- #define SOMETHINGS_H_INCLUDED
- #include "somethings.h"
- #include <limits.h>
- #include <stdlib.h>
- #include <stdio.h>
- #include <windows.h>
- //HWND hWnd = FindWindowA("ConsoleWindowClass", NULL);
- //HDC hdc = GetDC(FindWindowA("ConsoleWindowClass", NULL));
- struct sDots
- {
- int x;
- int y;
- };
- void menu();
- void deleteDot();
- void addDot();
- void showDots();
- void startAlgo();
- void loadThis();
- void drawLine(int x1, int y1, int x2, int y2);
- void drawDot(int x, int y);
- void drawThis(int c);
- int orientation(struct sDots a, struct sDots b, struct sDots c);
- #endif SOMETHINGS_H_INCLUDED
Add Comment
Please, Sign In to add comment