ReactOS 0.4.15-dev-5853-gcb454ef
sndrec32.cpp
Go to the documentation of this file.
1/* PROJECT: ReactOS sndrec32
2 * LICENSE: GPL - See COPYING in the top level directory
3 * FILE: base/applications/sndrec32/sndrec32.cpp
4 * PURPOSE: Sound recording
5 * PROGRAMMERS: Marco Pagliaricci (irc: rendar)
6 * Robert Naumann (gonzoMD)
7 */
8
9#include "stdafx.h"
10
11#include <commctrl.h>
12#include <commdlg.h>
13#include <winnls.h>
14
15#include "sndrec32.h"
16#include "shellapi.h"
17
18#ifndef _UNICODE
19#define gprintf _snprintf
20#else
21#define gprintf _snwprintf
22#endif
23
27
34
36
44
49
53
55
63
66
68
69snd::audio_membuffer *AUD_BUF;
70snd::audio_waveout *AUD_OUT;
71snd::audio_wavein *AUD_IN;
72
74
75NONCLIENTMETRICS s_info;
76
80
81int
84 HINSTANCE hPrevInstance,
85 LPTSTR lpCmdLine,
86 int nCmdShow)
87{
88 UNREFERENCED_PARAMETER(hPrevInstance);
89 UNREFERENCED_PARAMETER(lpCmdLine);
90
91 MSG msg;
92 HACCEL hAccelTable;
93
94 s_info.cbSize = sizeof( NONCLIENTMETRICS );
95
97
99 {
102 break;
103
104 default:
105 break;
106 }
107
109
114
119
120 /* Retrieving default system font, and others system informations */
121 SystemParametersInfo(SPI_GETNONCLIENTMETRICS,
122 sizeof(NONCLIENTMETRICS),
123 &s_info,
124 0);
125
126 /* Set font size */
127 s_info.lfMenuFont.lfHeight = 14;
128
129 /* Inits buttons bitmaps */
130
136
142
143 /* Inits audio devices and buffers */
144
145 snd::audio_membuffer AUD_buffer(snd::A44100_16BIT_STEREO);
146 snd::audio_waveout AUD_waveout(snd::A44100_16BIT_STEREO, AUD_buffer);
147 snd::audio_wavein AUD_wavein(snd::A44100_16BIT_STEREO, AUD_buffer);
148
149 AUD_buffer.play_finished = l_play_finished;
150 AUD_buffer.audio_arrival = l_audio_arrival;
151 AUD_buffer.buffer_resized = l_buffer_resized;
152
153 AUD_buffer.alloc_seconds(INITIAL_BUFREC_SECONDS);
154
155 AUD_IN = &AUD_wavein;
156 AUD_OUT = &AUD_waveout;
157 AUD_BUF = &AUD_buffer;
158
159 /* Inits slider default parameters */
160
161 slider_pos = 0;
162 slider_min = 0;
164
166 path_set = FALSE;
167 isnew = TRUE;
169
170 samples_max = AUD_buffer.total_samples();
171
172 s_recording = false;
173
174 /* Inits strings */
184
185 /* Registers sndrec32 window class */
188
189 if (!InitInstance(hInstance, nCmdShow))
190 {
191 MessageBox(0, TEXT("CreateWindow() Error!"), TEXT("ERROR"), MB_ICONERROR);
192 return FALSE;
193 }
194
195 /* Loads key accelerators */
197
198 /* Starts main loop */
199 while (GetMessage(&msg, NULL, 0, 0))
200 {
201 if (!TranslateAccelerator(main_win, hAccelTable, &msg))
202 {
205 }
206 }
207
208 if (wout_first)
209 {
210 AUD_waveout.close();
211 }
212
213 if (win_first)
214 {
215 AUD_wavein.close();
216 }
217
218 AUD_buffer.clear();
219
220 return (int)msg.wParam;
221}
222
223ATOM
225{
226 WNDCLASSEX wcex;
227
228 wcex.cbSize = sizeof(WNDCLASSEX);
229
230 wcex.style = CS_HREDRAW | CS_VREDRAW;
231 wcex.lpfnWndProc = WndProc;
232 wcex.cbClsExtra = 0;
233 wcex.cbWndExtra = 0;
234 wcex.hInstance = hInstance;
241
242 return RegisterClassEx(&wcex);
243}
244
245BOOL
247{
248 HWND hWnd;
249
251
253 szTitle,
259 NULL,
260 NULL,
261 hInstance,
262 NULL);
263 if (!hWnd)
264 {
265 return FALSE;
266 }
267
268 ShowWindow(hWnd, nCmdShow);
270
271 main_win = hWnd;
272
273 return TRUE;
274}
275
276ATOM
278{
279 WNDCLASSEX wcex;
280
281 wcex.cbSize = sizeof(WNDCLASSEX);
282
283 wcex.style = CS_HREDRAW | CS_VREDRAW;
285 wcex.cbClsExtra = 0;
286 wcex.cbWndExtra = 0;
287 wcex.hInstance = hInstance;
288 wcex.hIcon = 0;
291 wcex.lpszMenuName = 0;
292 wcex.lpszClassName = TEXT("sndrec32_wave");
293 wcex.hIconSm = 0;
294
295 return RegisterClassEx(&wcex);
296}
297
298BOOL
301 int nCmdShow)
302{
303 HWND hWnd;
304
306
308 TEXT("sndrec32_wave"),
309 TEXT(""),
311 WAVEBAR_X,
312 WAVEBAR_Y,
315 f,
316 (HMENU)8,
317 hInstance,
318 0);
319
320 if (!hWnd )
321 {
322 return FALSE;
323 }
324
325 ShowWindow(hWnd, nCmdShow);
327
328 wave_win = hWnd;
329
330 return TRUE;
331}
332
339{
340 PAINTSTRUCT ps;
341 HDC hdc;
342 HPEN pen;
343 HPEN oldpen;
344
345 unsigned int max_h = (cli.bottom / 2);
346 unsigned int samples;
347 unsigned int x, line_h;
348
349 switch (message)
350 {
351 case WM_CREATE:
353 break;
354
355 case WM_PAINT:
356 /* Initialize hdc objects */
357 hdc = BeginPaint(hWnd, &ps);
358 pen = (HPEN)CreatePen(PS_SOLID, 1, WAVEBAR_COLOR);
359 oldpen = (HPEN) SelectObject(hdc, (HBRUSH)pen);
360 if (AUD_OUT->current_status() == snd::WAVEOUT_PLAYING)
361 {
362 samples = AUD_OUT->tot_samples_buf();
363 for (unsigned int i = 0; i < WAVEBAR_CX; ++i)
364 {
365 x = (i * samples) / WAVEBAR_CX;
366 line_h = (AUD_OUT->nsample(x) * max_h) / AUD_OUT->samplevalue_max();
367 if (line_h)
368 {
369 MoveToEx(hdc, i, max_h, 0);
370 LineTo(hdc, i, max_h - (line_h * 2));
371 LineTo(hdc, i, max_h + (line_h * 2));
372 }
373 else
374 {
375 SetPixel(hdc, i, max_h, WAVEBAR_COLOR);
376 }
377 }
378 }
379 else if (AUD_IN->current_status() == snd::WAVEIN_RECORDING)
380 {
381 samples = AUD_IN->tot_samples_buf();
382 for (unsigned int i = 0; i < WAVEBAR_CX; ++i)
383 {
384 x = (i * samples) / WAVEBAR_CX;
385 line_h = (AUD_IN->nsample(x) * max_h) / AUD_IN->samplevalue_max();
386 if (line_h)
387 {
388 MoveToEx(hdc, i, max_h, 0);
389 LineTo(hdc, i, max_h - (line_h * 2));
390 LineTo(hdc, i, max_h + (line_h * 2));
391 }
392 else
393 {
394 SetPixel( hdc, i, max_h, WAVEBAR_COLOR );
395 }
396 }
397 }
398 else
399 {
400 /* In standby mode draw a simple line */
401 MoveToEx(hdc, 0, cli.bottom / 2, 0);
403 }
404
405 SelectObject(hdc, oldpen);
406 DeleteObject( pen );
407 EndPaint( hWnd, &ps );
408 break;
409
410 case WM_USER:
411 break;
412
413 default:
415 }
416
417 return 0;
418}
419
426{
427 int wmId;
428 TCHAR str_tmp[MAX_LOADSTRING];
429 PAINTSTRUCT ps;
430 HDC hdc;
431 HFONT font;
432 HFONT oldfont;
433 long long slid_samp = 0;
434 WCHAR szAppName[100];
435 HICON hIcon;
436
437 /* Checking for global pointers to buffer and io audio devices */
438 if ((!AUD_IN) || (!AUD_OUT) || (!AUD_BUF))
439 {
440 MessageBox(0, TEXT("Buffer Error"), 0, 0);
441 return 1;
442 }
443
444 switch (message)
445 {
446 case WM_CREATE:
447 /* Creating the wave bar */
449 {
450 MessageBox(0, TEXT("InitInstance_wave() Error!"), TEXT("ERROR"), MB_ICONERROR);
451 return FALSE;
452 }
453
454 /* Creating ALL the buttons */
455 for (int i = 0; i < 5; ++i)
456 {
457 buttons[i] = CreateWindow(TEXT("button"),
458 TEXT(""),
460 BUTTONS_CX + (i * (BUTTONS_W + ((i == 0) ? 0 : BUTTONS_SPACE))),
462 BUTTONS_W,
463 BUTTONS_H,
464 hWnd,
466 hInst,
467 0);
468 if (!buttons[i])
469 {
470 MessageBox(0, 0, TEXT("CreateWindow() Error!"), 0);
471 return FALSE;
472 }
473
474 /* Realize the button bmp image */
477 disable_but(i);
478 }
479
480 /* Creating the SLIDER window */
482 TEXT(""),
484 SLIDER_CX,
485 SLIDER_CY,
486 SLIDER_W,
487 SLIDER_H,
488 hWnd,
490 hInst,
491 0);
492 if (!slider)
493 {
494 MessageBox(0, 0, TEXT( "CreateWindow() Error!" ), 0);
495 return FALSE;
496 }
497
498 /* Sets slider limits */
501 (WPARAM)TRUE,
503
507 break;
508
509 /* Implements slider logic */
510 case WM_HSCROLL:
511 {
512 switch (LOWORD(wParam))
513 {
514 case SB_ENDSCROLL:
515 break;
516 case SB_PAGERIGHT:
517 case SB_PAGELEFT:
518 case TB_THUMBTRACK:
519 /* If the user touch the slider bar, set the
520 audio start position properly */
522 slid_samp = (__int64)slider_pos * (__int64)samples_max;
523 AUD_BUF->set_position(AUD_BUF->audinfo().bytes_in_samples((unsigned int)(slid_samp / (__int64)slider_max)));
525 break;
526 }
527 break;
528 }
529
530 case WM_COMMAND:
531 wmId = LOWORD(wParam);
532 if ((wmId >= 0) && (wmId < 5) && (butdisabled[wmId] != FALSE))
533 break;
534
535 switch (wmId)
536 {
537 case ID_FILE_NEW:
538 if (!isnew)
539 {
540 if (AUD_IN->current_status() == snd::WAVEIN_RECORDING)
541 AUD_IN->stop_recording();
542
543 if ((AUD_OUT->current_status() == snd::WAVEOUT_PLAYING) ||
544 (AUD_OUT->current_status() == snd::WAVEOUT_PAUSED))
545 AUD_OUT->stop();
546
547 AUD_BUF->reset();
548
554
555 samples_max = AUD_BUF->total_samples();
556 slider_pos = 0;
557
559
562
563 isnew = TRUE;
565
567
569
572 }
573 break;
574
575 case ID_FILE_OPEN:
576 ZeroMemory(&ofn, sizeof(ofn));
577
578 ofn.lStructSize = sizeof(ofn);
580 ofn.lpstrFilter = TEXT("Audio Files (*.wav)\0*.wav\0All Files (*.*)\0*.*\0");
584 ofn.lpstrDefExt = TEXT("wav");
585
586 if (GetOpenFileName(&ofn))
587 {
591
593 }
594
597 break;
598
599 case ID_ABOUT:
604 break;
605
606 case ID_FILE_SAVEAS:
607 ZeroMemory(&ofn, sizeof(ofn));
608
609 ofn.lStructSize = sizeof(ofn);
610 ofn.hwndOwner = hWnd ;
612 ofn.lpstrFilter = TEXT("Audio Files (*.wav)\0*.wav\0All Files (*.*)\0*.*\0");
615
616 ofn.lpstrDefExt = TEXT("wav");
617
618 if (GetSaveFileName (&ofn))
619 {
622 }
623 break;
624
625
627 ShellExecute(NULL, NULL, _T("rundll32.exe"), _T("shell32.dll,Control_RunDLL mmsys.cpl,ShowAudioPropertySheet"), NULL, SW_SHOWNORMAL);
628 break;
629
630 case ID_FILE_EXIT:
632 break;
633
634 /* Sndrec32 buttons routines */
635 case BUTSTART_ID:
636 AUD_BUF->set_position_start();
637 slider_pos = 0;
639 break;
640
641 case BUTEND_ID:
643 break;
644
645 case BUTPLAY_ID:
646 if (wout_first == false)
647 {
648 AUD_OUT->open();
649 wout_first = true;
650 }
651
652 AUD_OUT->play();
653
658
659 SetTimer(hWnd, 1, 250, 0);
661
662 break;
663
664 case BUTSTOP_ID:
665 if (s_recording)
666 {
668
669 AUD_IN->stop_recording();
670
671 /* Resetting slider position */
672 slider_pos = 0;
674
675 samples_max = AUD_BUF->samples_received();
676
678
683
686
688
689 AUD_BUF->truncate();
690
693
694 }
695 else
696 {
697 AUD_OUT->pause();
698
703
704 }
705
706 KillTimer(hWnd, 1);
708
710
711 break;
712
713 case BUTREC_ID:
714 if (win_first == false)
715 {
716 AUD_IN->open();
717 win_first = true;
718 }
719
721
722 samples_max = AUD_BUF->total_samples();
723
724 AUD_IN->start_recording();
725
727
732
733 isnew = FALSE;
734
736
737 SetTimer(hWnd, 1, 150, 0);
739
740 break;
741
742 default:
744 }
745 break;
746
747 case WM_TIMER:
748 switch (wParam)
749 {
750 case 1:
751 if (stopped_flag)
752 {
753 KillTimer(hWnd, 1);
755 slider_pos = 0;
758 }
759
762 break;
763
764 case WAVEBAR_TIMERID:
767 break;
768 }
769 break;
770
771 case WM_PAINT:
772 hdc = BeginPaint(hWnd, &ps);
773 font = CreateFontIndirect(&s_info.lfMenuFont);
774 oldfont = (HFONT) SelectObject(hdc, font);
776
777 if (AUD_IN->current_status() == snd::WAVEIN_RECORDING)
778 {
779 gprintf(str_tmp,
781 str_pos,
782 (float)((float)AUD_BUF->bytes_recorded() / (float)AUD_BUF->audinfo().byte_rate()));
783
784 }
785 else if (AUD_OUT->current_status() == snd::WAVEOUT_PLAYING)
786 {
787 gprintf(str_tmp,
789 str_pos,
790 (float)((float)AUD_BUF->bytes_played() / (float)AUD_BUF->audinfo().byte_rate()));
791 }
792 else
793 {
794 gprintf(str_tmp,
796 str_pos,
797 (float)((((float)slider_pos * (float)samples_max) / (float)slider_max) / (float)AUD_BUF->audinfo().sample_rate()));
798 }
799
801 STRPOS_X,
802 STRPOS_Y,
803 0,
804 0,
805 str_tmp,
806 _tcslen(str_tmp),
807 0);
808
809 if (display_dur)
810 {
811 gprintf(str_tmp,
813 str_dur,
814 AUD_BUF->fseconds_total());
815 }
816 else
817 {
818 gprintf(str_tmp,
820 str_dur,
821 AUD_BUF->fseconds_recorded());
822 }
823
825 STRDUR_X,
826 STRDUR_Y,
827 0,
828 0,
829 str_tmp,
830 _tcslen(str_tmp),
831 0);
832
833 gprintf(str_tmp,
835 str_buf,
836 (float)((float)AUD_BUF->mem_size() / 1024.0f));
837
839 STRBUF_X,
840 STRBUF_Y,
841 0,
842 0,
843 str_tmp,
844 _tcslen(str_tmp),
845 0);
846
847 gprintf(str_tmp,
849 str_fmt,
850 (float)((float)AUD_BUF->audinfo().sample_rate() / 1000.0f),
851 AUD_BUF->audinfo().bits(),
852 AUD_BUF->audinfo().channels() == 2 ? str_mono : str_stereo);
853
855 STRFMT_X,
856 STRFMT_Y,
857 0,
858 0,
859 str_tmp,
860 _tcslen(str_tmp),
861 0);
862
863 gprintf(str_tmp,
865 str_chan,
866 AUD_BUF->audinfo().channels() == 2 ? str_stereo : str_mono);
867
869 STRCHAN_X,
870 STRCHAN_Y,
871 0,
872 0,
873 str_tmp,
874 _tcslen(str_tmp),
875 0);
876
877 SelectObject(hdc, oldfont);
879 EndPaint(hWnd, &ps);
880 break;
881
882 case WM_DESTROY:
884 break;
885 default:
887 }
888
889 return 0;
890}
891
893{
894 stopped_flag = true;
895
900
902}
903
904void l_audio_arrival(unsigned int samples_arrival)
905{
906 slider_pos += (DWORD)((slider_max * samples_arrival) / samples_max);
907}
908
909void l_buffer_resized(unsigned int new_size)
910{
911}
912
914{
917}
918
920{
923}
924
926{
927 HANDLE file;
928
929 riff_hdr r;
930 wave_hdr w;
932
933 BOOL b;
934
935 DWORD bytes_recorded_in_wav = 0;
936 DWORD is_read = 0;
937
938 file = CreateFile(f,
940 0,
941 0,
944 0);
945 if (!file)
946 {
948 TEXT("Cannot open file. CreateFile() error."),
949 TEXT("ERROR"),
951
952 return FALSE;
953 }
954
955 b = ReadFile(file, (LPVOID)&r, sizeof(r), &is_read, 0);
956 if (!b)
957 {
959 TEXT("Cannot read RIFF header."),
960 TEXT("ERROR"),
962
964 return FALSE;
965 }
966
967 b = ReadFile(file, (LPVOID)&w, sizeof(w), &is_read, 0);
968 if (!b)
969 {
971 TEXT("Cannot read WAVE header."),
972 TEXT("ERROR"),
974
976 return FALSE;
977 }
978
979 b = ReadFile(file, (LPVOID)&d, sizeof(d), &is_read, 0);
980 if (!b)
981 {
983 TEXT("Cannot read WAVE subchunk."),
984 TEXT("ERROR"),
986
988 return FALSE;
989 }
990
991 bytes_recorded_in_wav = r.chunksize - 36;
992 if (bytes_recorded_in_wav == 0)
993 {
995 TEXT("Cannot read file. No audio data."),
996 TEXT("ERROR"),
998
1000 return FALSE;
1001 }
1002
1003 snd::audio_format openfmt(w.SampleRate, w.BitsPerSample, w.NumChannels);
1004
1005 AUD_BUF->clear();
1006 AUD_BUF->alloc_bytes(bytes_recorded_in_wav);
1007
1008 b = ReadFile(file,
1009 (LPVOID)AUD_BUF->audio_buffer(),
1010 bytes_recorded_in_wav,
1011 &is_read,
1012 0);
1013
1014 AUD_BUF->set_b_received(bytes_recorded_in_wav);
1015
1016 if ((!b) || (is_read != bytes_recorded_in_wav))
1017 {
1019 TEXT("Cannot read file. Error reading audio data."),
1020 TEXT("ERROR"),
1022
1024
1025 AUD_BUF->reset();
1026 return FALSE;
1027 }
1028
1030
1036
1037 samples_max = AUD_BUF->samples_received();
1038
1039 isnew = FALSE;
1040
1041 return TRUE;
1042}
1043
1044BOOL
1046{
1047 HANDLE file;
1048 DWORD written;
1049 BOOL is_writ;
1050 int i;
1051 riff_hdr r;
1052 wave_hdr w;
1053 data_chunk d;
1054
1056 if (!file)
1057 {
1059 TEXT("File already exist. Overwrite it?"),
1060 TEXT("Warning"),
1062
1063 if (i == IDYES)
1064 {
1066 if (!file)
1067 {
1069 TEXT("File Error, CreateFile() failed."),
1070 TEXT("ERROR"),
1072
1073 return FALSE;
1074 }
1075
1076 } else
1077 return FALSE;
1078 }
1079
1080 r.magic = 0x46464952;
1081 r.format = 0x45564157;
1082 r.chunksize = 36 + AUD_BUF->bytes_recorded();
1083
1084 w.Subchunkid = 0x20746d66;
1085 w.Subchunk1Size = 16;
1086 w.AudioFormat = 1;
1087 w.NumChannels = AUD_BUF->audinfo().channels();
1088 w.SampleRate = AUD_BUF->audinfo().sample_rate();
1089 w.ByteRate = AUD_BUF->audinfo().byte_rate();
1090 w.BlockAlign = AUD_BUF->audinfo().block_align();
1091 w.BitsPerSample = AUD_BUF->audinfo().bits();
1092
1093 d.subc = 0x61746164;
1094 d.subc_size = AUD_BUF->bytes_recorded();
1095
1096 /* Writing headers */
1097 is_writ = WriteFile(file, (LPCVOID)&r, sizeof(r), &written, 0);
1098 if (!is_writ)
1099 {
1101 TEXT("File Error, WriteFile() failed."),
1102 TEXT("ERROR"),
1104
1106 return FALSE;
1107 }
1108
1109 is_writ = WriteFile(file, (LPCVOID)&w, sizeof(w), &written, 0);
1110 if (!is_writ)
1111 {
1113 TEXT("File Error, WriteFile() failed."),
1114 TEXT("ERROR"),
1116
1118 return FALSE;
1119 }
1120
1121 is_writ = WriteFile(file, (LPCVOID)&d, sizeof(d), &written, 0);
1122 if (!is_writ)
1123 {
1125 TEXT("File Error, WriteFile() failed."),
1126 TEXT("ERROR"),
1128
1130 return FALSE;
1131 }
1132
1133 is_writ = WriteFile(file,
1134 (LPCVOID)AUD_BUF->audio_buffer(),
1135 AUD_BUF->bytes_recorded(),
1136 &written,
1137 0);
1138 if (!is_writ)
1139 {
1141 TEXT("File Error, WriteFile() failed."),
1142 TEXT("ERROR"),
1144
1146 return FALSE;
1147 }
1148
1150 return TRUE;
1151}
FORCEINLINE VOID SetPixel(_In_ ULONG Left, _In_ ULONG Top, _In_ UCHAR Color)
Definition: arm.h:50
#define msg(x)
Definition: auth_time.c:54
HWND hWnd
Definition: settings.c:17
#define IDS_APP_TITLE
Definition: resource.h:10
#define IDR_MENU1
Definition: resource.h:6
#define IDS_STRCHAN
Definition: resource.h:38
#define IDS_STRBUF
Definition: resource.h:33
#define IDI_SNDREC32
Definition: resource.h:11
#define IDC_REACTOS_SNDREC32
Definition: resource.h:13
#define IDI_REACTOS_SNDREC32
Definition: resource.h:9
#define IDS_STRSTEREO
Definition: resource.h:36
#define IDB_BITMAP2_END_DIS
Definition: resource.h:26
#define ID_FILE_EXIT
Definition: resource.h:46
#define IDS_STRFMT
Definition: resource.h:34
#define IDB_BITMAP2_PLAY_DIS
Definition: resource.h:27
#define IDS_STRMONO
Definition: resource.h:35
#define IDB_BITMAP2_STOP_DIS
Definition: resource.h:4
#define IDS_STRPOS
Definition: resource.h:31
#define IDB_BITMAP2_REC
Definition: resource.h:22
#define IDB_BITMAP2_END
Definition: resource.h:19
#define IDS_STRDUR
Definition: resource.h:32
#define ID_FILE_OPEN
Definition: resource.h:41
#define IDB_BITMAP2_START_DIS
Definition: resource.h:29
#define IDB_BITMAP2_STOP
Definition: resource.h:21
#define ID_FILE_SAVEAS
Definition: resource.h:43
#define ID_FILE_NEW
Definition: resource.h:40
#define ID_FILE_SAVE
Definition: resource.h:42
#define IDB_BITMAP2_START
Definition: resource.h:18
#define IDB_BITMAP2_PLAY
Definition: resource.h:20
#define ID_EDIT_AUDIOPROPS
Definition: resource.h:55
#define IDB_BITMAP2_REC_DIS
Definition: resource.h:28
#define __int64
Definition: basetyps.h:16
HINSTANCE hInstance
Definition: charmap.c:19
#define ID_ABOUT
Definition: charmap.c:17
WPARAM wParam
Definition: combotst.c:138
LPARAM lParam
Definition: combotst.c:139
VOID WINAPI InitCommonControls(void)
Definition: commctrl.c:863
#define OFN_OVERWRITEPROMPT
Definition: commdlg.h:116
#define GetSaveFileName
Definition: commdlg.h:666
#define OFN_EXPLORER
Definition: commdlg.h:104
#define OFN_HIDEREADONLY
Definition: commdlg.h:107
#define OFN_FILEMUSTEXIST
Definition: commdlg.h:106
#define GetOpenFileName
Definition: commdlg.h:665
WORD ATOM
Definition: dimm.idl:113
#define NULL
Definition: types.h:112
#define TRUE
Definition: types.h:120
#define FALSE
Definition: types.h:117
#define APIENTRY
Definition: api.h:79
#define CloseHandle
Definition: compat.h:739
#define OPEN_EXISTING
Definition: compat.h:775
#define ReadFile(a, b, c, d, e)
Definition: compat.h:742
#define GENERIC_READ
Definition: compat.h:135
#define MAX_PATH
Definition: compat.h:34
#define FILE_ATTRIBUTE_NORMAL
Definition: compat.h:137
#define CALLBACK
Definition: compat.h:35
BOOL WINAPI WriteFile(IN HANDLE hFile, IN LPCVOID lpBuffer, IN DWORD nNumberOfBytesToWrite OPTIONAL, OUT LPDWORD lpNumberOfBytesWritten, IN LPOVERLAPPED lpOverlapped OPTIONAL)
Definition: rw.c:24
#define UlongToPtr(u)
Definition: config.h:106
unsigned int BOOL
Definition: ntddk_ex.h:94
unsigned long DWORD
Definition: ntddk_ex.h:95
unsigned short WORD
Definition: ntddk_ex.h:93
#define MAX_LOADSTRING
Definition: fontview.h:3
pKey DeleteObject()
GLint GLint GLint GLint GLint x
Definition: gl.h:1548
GLdouble GLdouble GLdouble r
Definition: gl.h:2055
GLsizei samples
Definition: glext.h:7006
GLfloat f
Definition: glext.h:7540
GLboolean GLboolean GLboolean b
Definition: glext.h:6204
GLubyte GLubyte GLubyte GLubyte w
Definition: glext.h:6102
GLuint id
Definition: glext.h:5910
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat GLuint GLbitfield GLfloat GLint GLuint GLboolean GLenum GLfloat GLenum GLbitfield GLenum GLfloat GLfloat GLint GLint const GLfloat GLenum GLfloat GLfloat GLint GLint GLfloat GLfloat GLint GLint const GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat const GLdouble const GLfloat const GLdouble const GLfloat GLint i
Definition: glfuncs.h:248
#define _tWinMain
Definition: tchar.h:498
#define TEXT(s)
Definition: k32.h:26
#define d
Definition: ke_i.h:81
#define b
Definition: ke_i.h:79
LANGID WINAPI GetUserDefaultUILanguage(void)
Definition: lang.c:810
#define CREATE_ALWAYS
Definition: disk.h:72
#define CREATE_NEW
Definition: disk.h:69
HDC hdc
Definition: main.c:9
static HBITMAP
Definition: button.c:44
static HDC
Definition: imagelist.c:92
static HICON
Definition: imagelist.c:84
static DWORD *static HFONT(WINAPI *pCreateFontIndirectExA)(const ENUMLOGFONTEXDVA *)
static const CLSID *static CLSID *static const GUID VARIANT VARIANT *static IServiceProvider DWORD *static HMENU
Definition: ordinal.c:60
HICON hIcon
Definition: msconfig.c:44
Definition: mk_font.cpp:20
unsigned int UINT
Definition: ndis.h:50
#define DWORD
Definition: nt_native.h:44
#define GENERIC_WRITE
Definition: nt_native.h:90
#define UNREFERENCED_PARAMETER(P)
Definition: ntbasedef.h:317
#define LOWORD(l)
Definition: pedump.c:82
#define WS_CHILD
Definition: pedump.c:617
#define WS_CAPTION
Definition: pedump.c:624
#define WS_OVERLAPPED
Definition: pedump.c:615
#define WS_SYSMENU
Definition: pedump.c:629
#define WS_VISIBLE
Definition: pedump.c:620
#define WS_MINIMIZEBOX
Definition: pedump.c:631
#define TBM_GETPOS
Definition: commctrl.h:2031
#define TBS_HORZ
Definition: commctrl.h:2017
#define TBS_ENABLESELRANGE
Definition: commctrl.h:2024
#define TBM_SETRANGE
Definition: commctrl.h:2037
#define TB_THUMBTRACK
Definition: commctrl.h:2078
#define TBS_NOTICKS
Definition: commctrl.h:2023
#define TBM_SETPOS
Definition: commctrl.h:2036
#define TRACKBAR_CLASS
Definition: commctrl.h:2013
#define DefWindowProc
Definition: ros2win.h:31
#define MAKELANGID(p, s)
Definition: nls.h:15
#define LANG_HEBREW
Definition: nls.h:67
#define SUBLANG_DEFAULT
Definition: nls.h:168
BOOL WINAPI ShellAboutW(HWND hWnd, LPCWSTR szApp, LPCWSTR szOtherStuff, HICON hIcon)
#define ShellExecute
Definition: shellapi.h:690
BOOL InitInstance_wave(HWND, HINSTANCE, int)
Definition: sndrec32.cpp:299
TCHAR szTitle[MAX_LOADSTRING]
Definition: sndrec32.cpp:25
snd::audio_waveout * AUD_OUT
Definition: sndrec32.cpp:70
HWND main_win
Definition: sndrec32.cpp:37
BOOL write_wav(TCHAR *f)
Definition: sndrec32.cpp:1045
RECT text_rect
Definition: sndrec32.cpp:77
BOOL stopped_flag
Definition: sndrec32.cpp:46
TCHAR str_dur[MAX_LOADSTRING]
Definition: sndrec32.cpp:59
TCHAR str_fmt[MAX_LOADSTRING]
Definition: sndrec32.cpp:61
TCHAR str_buf[MAX_LOADSTRING]
Definition: sndrec32.cpp:60
RECT text2_rect
Definition: sndrec32.cpp:78
HINSTANCE hInst
Definition: sndrec32.cpp:24
TCHAR str_mono[10]
Definition: sndrec32.cpp:64
BOOL win_first
Definition: sndrec32.cpp:35
WORD slider_min
Definition: sndrec32.cpp:51
BOOL s_recording
Definition: sndrec32.cpp:73
HWND slider
Definition: sndrec32.cpp:39
BOOL InitInstance(HINSTANCE, int)
Definition: sndrec32.cpp:246
BOOL isnew
Definition: sndrec32.cpp:47
BOOL display_dur
Definition: sndrec32.cpp:48
snd::audio_wavein * AUD_IN
Definition: sndrec32.cpp:71
BOOL path_set
Definition: sndrec32.cpp:67
WORD slider_max
Definition: sndrec32.cpp:52
HBITMAP butbmps_dis[5]
Definition: sndrec32.cpp:42
VOID disable_but(DWORD id)
Definition: sndrec32.cpp:919
VOID enable_but(DWORD id)
Definition: sndrec32.cpp:913
snd::audio_membuffer * AUD_BUF
Definition: sndrec32.cpp:69
TCHAR str_pos[MAX_LOADSTRING]
Definition: sndrec32.cpp:58
NONCLIENTMETRICS s_info
Definition: sndrec32.cpp:75
TCHAR str_chan[MAX_LOADSTRING]
Definition: sndrec32.cpp:62
WNDPROC buttons_std_proc
Definition: sndrec32.cpp:43
LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM)
Definition: sndrec32.cpp:422
OPENFILENAME ofn
Definition: sndrec32.cpp:56
BOOL butdisabled[5]
Definition: sndrec32.cpp:45
ATOM MyRegisterClass_wave(HINSTANCE hInstance)
Definition: sndrec32.cpp:277
BOOL open_wav(TCHAR *f)
Definition: sndrec32.cpp:925
ATOM MyRegisterClass(HINSTANCE hInstance)
Definition: sndrec32.cpp:224
HWND buttons[5]
Definition: sndrec32.cpp:40
#define gprintf
Definition: sndrec32.cpp:19
TCHAR str_stereo[10]
Definition: sndrec32.cpp:65
RECT cli
Definition: sndrec32.cpp:79
TCHAR szWindowClass[MAX_LOADSTRING]
Definition: sndrec32.cpp:26
TCHAR file_path[MAX_PATH]
Definition: sndrec32.cpp:57
void l_buffer_resized(unsigned int new_size)
Definition: sndrec32.cpp:909
void l_play_finished(void)
Definition: sndrec32.cpp:892
DWORD slider_pos
Definition: sndrec32.cpp:50
BOOL wout_first
Definition: sndrec32.cpp:35
DWORD samples_max
Definition: sndrec32.cpp:54
HWND wave_win
Definition: sndrec32.cpp:38
void l_audio_arrival(unsigned int samples_arrival)
Definition: sndrec32.cpp:904
LRESULT CALLBACK WndProc_wave(HWND, UINT, WPARAM, LPARAM)
Definition: sndrec32.cpp:335
HBITMAP butbmps[5]
Definition: sndrec32.cpp:41
#define WAVEBAR_X
Definition: sndrec32.h:56
#define STRBUF_Y
Definition: sndrec32.h:48
#define MAINWINDOW_H
Definition: sndrec32.h:16
#define BUTTONS_W
Definition: sndrec32.h:31
#define WAVEBAR_CY
Definition: sndrec32.h:59
#define STRCHAN_Y
Definition: sndrec32.h:54
#define SLIDER_CY
Definition: sndrec32.h:37
#define SLIDER_CX
Definition: sndrec32.h:36
#define STRBUF_X
Definition: sndrec32.h:47
#define WAVEBAR_Y
Definition: sndrec32.h:57
#define REFRESHB_X
Definition: sndrec32.h:71
#define STRDUR_Y
Definition: sndrec32.h:45
#define WAVEBAR_TIMERID
Definition: sndrec32.h:61
#define STRFMT_Y
Definition: sndrec32.h:51
#define WAVEBAR_COLOR
Definition: sndrec32.h:64
#define BUTTONS_CY
Definition: sndrec32.h:32
#define STRFMT_X
Definition: sndrec32.h:50
#define BUTREC_ID
Definition: sndrec32.h:26
#define BUTTONS_CX
Definition: sndrec32.h:33
#define WAVEBAR_TIMERTIME
Definition: sndrec32.h:62
#define BUTTONS_SPACE
Definition: sndrec32.h:34
#define STRCHAN_X
Definition: sndrec32.h:53
#define INITIAL_BUFREC_SECONDS
Definition: sndrec32.h:20
#define STRPOS_X
Definition: sndrec32.h:41
#define SLIDER_W
Definition: sndrec32.h:39
#define SLIDER_ID
Definition: sndrec32.h:27
#define REFRESHA_Y
Definition: sndrec32.h:67
#define REFRESHA_CX
Definition: sndrec32.h:68
#define BUTPLAY_ID
Definition: sndrec32.h:24
#define STRPOS_Y
Definition: sndrec32.h:42
#define BUTSTOP_ID
Definition: sndrec32.h:25
#define MAINWINDOW_W
Definition: sndrec32.h:15
#define REFRESHB_CY
Definition: sndrec32.h:74
#define STRDUR_X
Definition: sndrec32.h:44
#define REFRESHA_CY
Definition: sndrec32.h:69
#define SLIDER_H
Definition: sndrec32.h:38
#define BUTTONS_H
Definition: sndrec32.h:30
#define BUTEND_ID
Definition: sndrec32.h:23
#define REFRESHB_Y
Definition: sndrec32.h:72
#define WAVEBAR_CX
Definition: sndrec32.h:58
#define REFRESHB_CX
Definition: sndrec32.h:73
#define BUTSTART_ID
Definition: sndrec32.h:22
#define REFRESHA_X
Definition: sndrec32.h:66
#define _countof(array)
Definition: sndvol32.h:68
TCHAR szAppName[128]
Definition: solitaire.cpp:17
int cbClsExtra
Definition: winuser.h:3194
HINSTANCE hInstance
Definition: winuser.h:3196
HCURSOR hCursor
Definition: winuser.h:3198
LPCSTR lpszMenuName
Definition: winuser.h:3200
HICON hIconSm
Definition: winuser.h:3202
UINT style
Definition: winuser.h:3192
int cbWndExtra
Definition: winuser.h:3195
UINT cbSize
Definition: winuser.h:3191
WNDPROC lpfnWndProc
Definition: winuser.h:3193
LPCSTR lpszClassName
Definition: winuser.h:3201
HICON hIcon
Definition: winuser.h:3197
HBRUSH hbrBackground
Definition: winuser.h:3199
Definition: fci.c:127
Definition: tftpd.h:60
LPCSTR lpstrDefExt
Definition: commdlg.h:345
HWND hwndOwner
Definition: commdlg.h:330
LPSTR lpstrFile
Definition: commdlg.h:336
DWORD Flags
Definition: commdlg.h:342
DWORD lStructSize
Definition: commdlg.h:329
LPCSTR lpstrFilter
Definition: commdlg.h:332
DWORD nMaxFile
Definition: commdlg.h:337
LONG right
Definition: windef.h:308
LONG bottom
Definition: windef.h:309
LONG top
Definition: windef.h:307
LONG left
Definition: windef.h:306
TW_UINT32 TW_UINT16 TW_UINT16 MSG
Definition: twain.h:1829
#define MAKELONG(a, b)
Definition: typedefs.h:249
#define _T(x)
Definition: vfdio.h:22
BOOL WINAPI SetProcessDefaultLayout(DWORD dwDefaultLayout)
Definition: window.c:1720
#define ZeroMemory
Definition: winbase.h:1670
#define CreateFile
Definition: winbase.h:3620
LONG_PTR LPARAM
Definition: windef.h:208
LONG_PTR LRESULT
Definition: windef.h:209
UINT_PTR WPARAM
Definition: windef.h:207
CONST void * LPCVOID
Definition: windef.h:191
HGDIOBJ WINAPI GetStockObject(_In_ int)
HGDIOBJ WINAPI SelectObject(_In_ HDC, _In_ HGDIOBJ)
Definition: dc.c:1539
BOOL WINAPI MoveToEx(_In_ HDC, _In_ int, _In_ int, _Out_opt_ LPPOINT)
#define TRANSPARENT
Definition: wingdi.h:950
#define LAYOUT_RTL
Definition: wingdi.h:1371
#define ExtTextOut
Definition: wingdi.h:4454
#define BLACK_BRUSH
Definition: wingdi.h:896
int WINAPI SetBkMode(_In_ HDC, _In_ int)
Definition: dc.c:1056
HPEN WINAPI CreatePen(_In_ int, _In_ int, _In_ COLORREF)
#define CreateFontIndirect
Definition: wingdi.h:4444
BOOL WINAPI LineTo(_In_ HDC, _In_ int, _In_ int)
#define PS_SOLID
Definition: wingdi.h:586
#define SW_SHOWNORMAL
Definition: winuser.h:764
#define WM_PAINT
Definition: winuser.h:1610
#define CS_VREDRAW
Definition: winuser.h:653
#define CreateWindowEx
Definition: winuser.h:5745
#define BS_BITMAP
Definition: winuser.h:258
#define WS_EX_STATICEDGE
Definition: winuser.h:403
#define IMAGE_BITMAP
Definition: winuser.h:211
#define WM_HSCROLL
Definition: winuser.h:1733
BOOL WINAPI TranslateMessage(_In_ const MSG *)
BOOL WINAPI ShowWindow(_In_ HWND, _In_ int)
#define WM_CREATE
Definition: winuser.h:1598
int WINAPI LoadStringW(_In_opt_ HINSTANCE hInstance, _In_ UINT uID, _Out_writes_to_(cchBufferMax, return+1) LPWSTR lpBuffer, _In_ int cchBufferMax)
#define SB_PAGERIGHT
Definition: winuser.h:571
__analysis_noreturn void WINAPI PostQuitMessage(_In_ int)
HBRUSH WINAPI GetSysColorBrush(_In_ int)
#define LoadBitmap
Definition: winuser.h:5801
#define WM_COMMAND
Definition: winuser.h:1730
#define CS_HREDRAW
Definition: winuser.h:648
#define IDC_ARROW
Definition: winuser.h:682
#define MB_YESNO
Definition: winuser.h:811
UINT_PTR WINAPI SetTimer(_In_opt_ HWND, _In_ UINT_PTR, _In_ UINT, _In_opt_ TIMERPROC)
#define CreateWindow
Definition: winuser.h:5744
#define MB_ICONERROR
Definition: winuser.h:781
#define BM_SETIMAGE
Definition: winuser.h:1912
#define GetMessage
Definition: winuser.h:5780
BOOL WINAPI GetClientRect(_In_ HWND, _Out_ LPRECT)
#define RegisterClassEx
Definition: winuser.h:5827
#define MF_ENABLED
Definition: winuser.h:128
#define WM_TIMER
Definition: winuser.h:1732
BOOL WINAPI EndPaint(_In_ HWND, _In_ const PAINTSTRUCT *)
#define LoadIcon
Definition: winuser.h:5803
BOOL WINAPI UpdateWindow(_In_ HWND)
#define SendMessage
Definition: winuser.h:5833
BOOL WINAPI EnableWindow(_In_ HWND, _In_ BOOL)
#define LoadCursor
Definition: winuser.h:5802
WNDCLASSEXA WNDCLASSEX
Definition: winuser.h:5709
#define MB_OK
Definition: winuser.h:784
#define CW_USEDEFAULT
Definition: winuser.h:225
#define LoadString
Definition: winuser.h:5809
HICON WINAPI LoadIconW(_In_opt_ HINSTANCE, _In_ LPCWSTR)
Definition: cursoricon.c:2044
#define MB_ICONQUESTION
Definition: winuser.h:783
#define MessageBox
Definition: winuser.h:5812
#define WM_USER
Definition: winuser.h:1885
#define SB_ENDSCROLL
Definition: winuser.h:574
#define WM_DESTROY
Definition: winuser.h:1599
#define DispatchMessage
Definition: winuser.h:5755
BOOL WINAPI InvalidateRect(_In_opt_ HWND, _In_opt_ LPCRECT, _In_ BOOL)
#define MAKEINTRESOURCEW(i)
Definition: winuser.h:582
LRESULT(CALLBACK * WNDPROC)(HWND, UINT, WPARAM, LPARAM)
Definition: winuser.h:2896
#define IDYES
Definition: winuser.h:829
HDC WINAPI BeginPaint(_In_ HWND, _Out_ LPPAINTSTRUCT)
BOOL WINAPI KillTimer(_In_opt_ HWND, _In_ UINT_PTR)
#define SystemParametersInfo
Definition: winuser.h:5848
#define TranslateAccelerator
Definition: winuser.h:5850
BOOL WINAPI DestroyWindow(_In_ HWND)
BOOL WINAPI EnableMenuItem(_In_ HMENU, _In_ UINT, _In_ UINT)
#define MAKEINTRESOURCE
Definition: winuser.h:591
#define LoadAccelerators
Definition: winuser.h:5800
HMENU WINAPI GetMenu(_In_ HWND)
#define COLOR_BTNFACE
Definition: winuser.h:922
#define SB_PAGELEFT
Definition: winuser.h:570
BOOL WINAPI DestroyIcon(_In_ HICON)
Definition: cursoricon.c:2022
#define MF_GRAYED
Definition: winuser.h:129
char TCHAR
Definition: xmlstorage.h:189
__wchar_t WCHAR
Definition: xmlstorage.h:180
CHAR * LPTSTR
Definition: xmlstorage.h:192
#define _tcslen
Definition: xmlstorage.h:198