A clear and concise description of what the bug is.
A clear and concise description of what you expected to happen.
What is the impact of this bug on the user, how critical is to fix? P0, P1 .. P4
| #include <windows.h> | |
| #define ID_EDITBOX 1001 | |
| #define ID_BUTTON_OK 1002 | |
| void DrawCustomButton(LPDRAWITEMSTRUCT lpDrawItem) { | |
| COLORREF bgColor = RGB(255, 165, 0); // orange | |
| COLORREF textColor = RGB(128, 128, 128); // grey |
| /** | |
| * This is an executable C program that tries to capture major Hinduism deities in | |
| * less than 100 lines of code. I tried to make the code as artistic as possible while | |
| * maintaining C compilability. Please contact [email protected] for any | |
| * corrections or grievances. | |
| */ | |
| #include <stdio.h> | |
| #include <stdlib.h> |
| %.hex: %.asm | |
| avra -fI $< | |
| rm *.eep.hex *.obj *.cof | |
| all: $(patsubst %.asm,%.hex,$(wildcard *.asm)) | |
| upload: ${program}.hex | |
| avrdude -c arduino -p m328p -P /dev/arduino-uno -b 115200 -U flash:w:$< | |
| monitor: |