-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapplication.hpp
More file actions
37 lines (29 loc) · 732 Bytes
/
application.hpp
File metadata and controls
37 lines (29 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#ifndef application
#define application
#include<Windows.h>
#include<windowsx.h>
#include"auxiliaries.hpp"
#include"matrixes.hpp"
#include<string>
#include<vector>
using namespace std;
//NR ID
#define ID_COMBOBOX1 301
#define ID_COMBOBOX2 302
#define ID_COMBOBOX3 303
#define ID_COMBOBOX4 304
#define ID_COMBOBOX5 305
#define ID_BUTTON1 401
#define ID_CHECKBOX1 501
//STAŁE:
const LPSTR ClassName = (LPSTR)"Matrix";
const int MAXSIZE = 1000;
//FUKNCJE:
HWND WindowMatrix(HINSTANCE hInstance);
void OnClose(HWND);
void OnDestroy(HWND);
void SetComboBox(HWND);
void SetComboOperation(HWND);
matrix* GetTextMatrix(char[MAXSIZE], int, int, HWND);
matrix* GetComboOperation(HWND, matrix &, matrix &); //, matrix, matrix
#endif