ReactOS 0.4.15-dev-7918-g2a2556c
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
436 /* Checking for global pointers to buffer and io audio devices */
437 if ((!AUD_IN) || (!AUD_OUT) || (!AUD_BUF))
438 {
439 MessageBox(0, TEXT("Buffer Error"), 0, 0);
440 return 1;
441 }
442
443 switch (message)
444 {
445 case WM_CREATE:
446 /* Creating the wave bar */
448 {
449 MessageBox(0, TEXT("InitInstance_wave() Error!"), TEXT("ERROR"), MB_ICONERROR);
450 return FALSE;
451 }
452
453 /* Creating ALL the buttons */
454 for (int i = 0; i < 5; ++i)
455 {
456 buttons[i] = CreateWindow(TEXT("button"),
457 TEXT(""),
459 BUTTONS_CX + (i * (BUTTONS_W + ((i == 0) ? 0 : BUTTONS_SPACE))),
461 BUTTONS_W,
462 BUTTONS_H,
463 hWnd,
465 hInst,
466 0);
467 if (!buttons[i])
468 {
469 MessageBox(0, 0, TEXT("CreateWindow() Error!"), 0);
470 return FALSE;
471 }
472
473 /* Realize the button bmp image */
476 disable_but(i);
477 }
478
479 /* Creating the SLIDER window */
481 TEXT(""),
483 SLIDER_CX,
484 SLIDER_CY,
485 SLIDER_W,
486 SLIDER_H,
487 hWnd,
489 hInst,
490 0);
491 if (!slider)
492 {
493 MessageBox(0, 0, TEXT( "CreateWindow() Error!" ), 0);
494 return FALSE;
495 }
496
497 /* Sets slider limits */
500 (WPARAM)TRUE,
502
506 break;
507
508 /* Implements slider logic */
509 case WM_HSCROLL:
510 {
511 switch (LOWORD(wParam))
512 {
513 case SB_ENDSCROLL:
514 break;
515 case SB_PAGERIGHT:
516 case SB_PAGELEFT:
517 case TB_THUMBTRACK:
518 /* If the user touch the slider bar, set the
519 audio start position properly */
521 slid_samp = (__int64)slider_pos * (__int64)samples_max;
522 AUD_BUF->set_position(AUD_BUF->audinfo().bytes_in_samples((unsigned int)(slid_samp / (__int64)slider_max)));
524 break;
525 }
526 break;
527 }
528
529 case WM_COMMAND:
530 wmId = LOWORD(wParam);
531 if ((wmId >= 0) && (wmId < 5) && (butdisabled[wmId] != FALSE))
532 break;
533
534 switch (wmId)
535 {
536 case ID_FILE_NEW:
537 if (!isnew)
538 {
539 if (AUD_IN->current_status() == snd::WAVEIN_RECORDING)
540 AUD_IN->stop_recording();
541
542 if ((AUD_OUT->current_status() == snd::WAVEOUT_PLAYING) ||
543 (AUD_OUT->current_status() == snd::WAVEOUT_PAUSED))
544 AUD_OUT->stop();
545
546 AUD_BUF->reset();
547
553
554 samples_max = AUD_BUF->total_samples();
555 slider_pos = 0;
556
558
561
562 isnew = TRUE;
564
566
568
571 }
572 break;
573
574 case ID_FILE_OPEN:
575 ZeroMemory(&ofn, sizeof(ofn));
576
577 ofn.lStructSize = sizeof(ofn);
579 ofn.lpstrFilter = TEXT("Audio Files (*.wav)\0*.wav\0All Files (*.*)\0*.*\0");
583 ofn.lpstrDefExt = TEXT("wav");
584
585 if (GetOpenFileName(&ofn))
586 {
590
592 }
593
596 break;
597
598 case ID_ABOUT:
602 break;
603
604 case ID_FILE_SAVEAS:
605 ZeroMemory(&ofn, sizeof(ofn));
606
607 ofn.lStructSize = sizeof(ofn);
608 ofn.hwndOwner = hWnd ;
610 ofn.lpstrFilter = TEXT("Audio Files (*.wav)\0*.wav\0All Files (*.*)\0*.*\0");
613
614 ofn.lpstrDefExt = TEXT("wav");
615
616 if (GetSaveFileName (&ofn))
617 {
620 }
621 break;
622
623
625 ShellExecute(NULL, NULL, _T("rundll32.exe"), _T("shell32.dll,Control_RunDLL mmsys.cpl,ShowAudioPropertySheet"), NULL, SW_SHOWNORMAL);
626 break;
627
628 case ID_FILE_EXIT:
630 break;
631
632 /* Sndrec32 buttons routines */
633 case BUTSTART_ID:
634 AUD_BUF->set_position_start();
635 slider_pos = 0;
637 break;
638
639 case BUTEND_ID:
641 break;
642
643 case BUTPLAY_ID:
644 if (wout_first == false)
645 {
646 AUD_OUT->open();
647 wout_first = true;
648 }
649
650 AUD_OUT->play();
651
656
657 SetTimer(hWnd, 1, 250, 0);
659
660 break;
661
662 case BUTSTOP_ID:
663 if (s_recording)
664 {
666
667 AUD_IN->stop_recording();
668
669 /* Resetting slider position */
670 slider_pos = 0;
672
673 samples_max = AUD_BUF->samples_received();
674
676
681
684
686
687 AUD_BUF->truncate();
688
691
692 }
693 else
694 {
695 AUD_OUT->pause();
696
701
702 }
703
704 KillTimer(hWnd, 1);
706
708
709 break;
710
711 case BUTREC_ID:
712 if (win_first == false)
713 {
714 AUD_IN->open();
715 win_first = true;
716 }
717
719
720 samples_max = AUD_BUF->total_samples();
721
722 AUD_IN->start_recording();
723
725
730
731 isnew = FALSE;
732
734
735 SetTimer(hWnd, 1, 150, 0);
737
738 break;
739
740 default:
742 }
743 break;
744
745 case WM_TIMER:
746 switch (wParam)
747 {
748 case 1:
749 if (stopped_flag)
750 {
751 KillTimer(hWnd, 1);
753 slider_pos = 0;
756 }
757
760 break;
761
762 case WAVEBAR_TIMERID:
765 break;
766 }
767 break;
768
769 case WM_PAINT:
770 hdc = BeginPaint(hWnd, &ps);
771 font = CreateFontIndirect(&s_info.lfMenuFont);
772 oldfont = (HFONT) SelectObject(hdc, font);
774
775 if (AUD_IN->current_status() == snd::WAVEIN_RECORDING)
776 {
777 gprintf(str_tmp,
779 str_pos,
780 (float)((float)AUD_BUF->bytes_recorded() / (float)AUD_BUF->audinfo().byte_rate()));
781
782 }
783 else if (AUD_OUT->current_status() == snd::WAVEOUT_PLAYING)
784 {
785 gprintf(str_tmp,
787 str_pos,
788 (float)((float)AUD_BUF->bytes_played() / (float)AUD_BUF->audinfo().byte_rate()));
789 }
790 else
791 {
792 gprintf(str_tmp,
794 str_pos,
795 (float)((((float)slider_pos * (float)samples_max) / (float)slider_max) / (float)AUD_BUF->audinfo().sample_rate()));
796 }
797
799 STRPOS_X,
800 STRPOS_Y,
801 0,
802 0,
803 str_tmp,
804 _tcslen(str_tmp),
805 0);
806
807 if (display_dur)
808 {
809 gprintf(str_tmp,
811 str_dur,
812 AUD_BUF->fseconds_total());
813 }
814 else
815 {
816 gprintf(str_tmp,
818 str_dur,
819 AUD_BUF->fseconds_recorded());
820 }
821
823 STRDUR_X,
824 STRDUR_Y,
825 0,
826 0,
827 str_tmp,
828 _tcslen(str_tmp),
829 0);
830
831 gprintf(str_tmp,
833 str_buf,
834 (float)((float)AUD_BUF->mem_size() / 1024.0f));
835
837 STRBUF_X,
838 STRBUF_Y,
839 0,
840 0,
841 str_tmp,
842 _tcslen(str_tmp),
843 0);
844
845 gprintf(str_tmp,
847 str_fmt,
848 (float)((float)AUD_BUF->audinfo().sample_rate() / 1000.0f),
849 AUD_BUF->audinfo().bits(),
850 AUD_BUF->audinfo().channels() == 2 ? str_mono : str_stereo);
851
853 STRFMT_X,
854 STRFMT_Y,
855 0,
856 0,
857 str_tmp,
858 _tcslen(str_tmp),
859 0);
860
861 gprintf(str_tmp,
863 str_chan,
864 AUD_BUF->audinfo().channels() == 2 ? str_stereo : str_mono);
865
867 STRCHAN_X,
868 STRCHAN_Y,
869 0,
870 0,
871 str_tmp,
872 _tcslen(str_tmp),
873 0);
874
875 SelectObject(hdc, oldfont);
877 EndPaint(hWnd, &ps);
878 break;
879
880 case WM_DESTROY:
882 break;
883 default:
885 }
886
887 return 0;
888}
889
891{
892 stopped_flag = true;
893
898
900}
901
902void l_audio_arrival(unsigned int samples_arrival)
903{
904 slider_pos += (DWORD)((slider_max * samples_arrival) / samples_max);
905}
906
907void l_buffer_resized(unsigned int new_size)
908{
909}
910
912{
915}
916
918{
921}
922
924{
925 HANDLE file;
926
927 riff_hdr r;
928 wave_hdr w;
930
931 BOOL b;
932
933 DWORD bytes_recorded_in_wav = 0;
934 DWORD is_read = 0;
935
936 file = CreateFile(f,
938 0,
939 0,
942 0);
943 if (!file)
944 {
946 TEXT("Cannot open file. CreateFile() error."),
947 TEXT("ERROR"),
949
950 return FALSE;
951 }
952
953 b = ReadFile(file, (LPVOID)&r, sizeof(r), &is_read, 0);
954 if (!b)
955 {
957 TEXT("Cannot read RIFF header."),
958 TEXT("ERROR"),
960
962 return FALSE;
963 }
964
965 b = ReadFile(file, (LPVOID)&w, sizeof(w), &is_read, 0);
966 if (!b)
967 {
969 TEXT("Cannot read WAVE header."),
970 TEXT("ERROR"),
972
974 return FALSE;
975 }
976
977 b = ReadFile(file, (LPVOID)&d, sizeof(d), &is_read, 0);
978 if (!b)
979 {
981 TEXT("Cannot read WAVE subchunk."),
982 TEXT("ERROR"),
984
986 return FALSE;
987 }
988
989 bytes_recorded_in_wav = r.chunksize - 36;
990 if (bytes_recorded_in_wav == 0)
991 {
993 TEXT("Cannot read file. No audio data."),
994 TEXT("ERROR"),
996
998 return FALSE;
999 }
1000
1001 snd::audio_format openfmt(w.SampleRate, w.BitsPerSample, w.NumChannels);
1002
1003 AUD_BUF->clear();
1004 AUD_BUF->alloc_bytes(bytes_recorded_in_wav);
1005
1006 b = ReadFile(file,
1007 (LPVOID)AUD_BUF->audio_buffer(),
1008 bytes_recorded_in_wav,
1009 &is_read,
1010 0);
1011
1012 AUD_BUF->set_b_received(bytes_recorded_in_wav);
1013
1014 if ((!b) || (is_read != bytes_recorded_in_wav))
1015 {
1017 TEXT("Cannot read file. Error reading audio data."),
1018 TEXT("ERROR"),
1020
1022
1023 AUD_BUF->reset();
1024 return FALSE;
1025 }
1026
1028
1034
1035 samples_max = AUD_BUF->samples_received();
1036
1037 isnew = FALSE;
1038
1039 return TRUE;
1040}
1041
1042BOOL
1044{
1045 HANDLE file;
1046 DWORD written;
1047 BOOL is_writ;
1048 int i;
1049 riff_hdr r;
1050 wave_hdr w;
1051 data_chunk d;
1052
1054 if (!file)
1055 {
1057 TEXT("File already exist. Overwrite it?"),
1058 TEXT("Warning"),
1060
1061 if (i == IDYES)
1062 {
1064 if (!file)
1065 {
1067 TEXT("File Error, CreateFile() failed."),
1068 TEXT("ERROR"),
1070
1071 return FALSE;
1072 }
1073
1074 } else
1075 return FALSE;
1076 }
1077
1078 r.magic = 0x46464952;
1079 r.format = 0x45564157;
1080 r.chunksize = 36 + AUD_BUF->bytes_recorded();
1081
1082 w.Subchunkid = 0x20746d66;
1083 w.Subchunk1Size = 16;
1084 w.AudioFormat = 1;
1085 w.NumChannels = AUD_BUF->audinfo().channels();
1086 w.SampleRate = AUD_BUF->audinfo().sample_rate();
1087 w.ByteRate = AUD_BUF->audinfo().byte_rate();
1088 w.BlockAlign = AUD_BUF->audinfo().block_align();
1089 w.BitsPerSample = AUD_BUF->audinfo().bits();
1090
1091 d.subc = 0x61746164;
1092 d.subc_size = AUD_BUF->bytes_recorded();
1093
1094 /* Writing headers */
1095 is_writ = WriteFile(file, (LPCVOID)&r, sizeof(r), &written, 0);
1096 if (!is_writ)
1097 {
1099 TEXT("File Error, WriteFile() failed."),
1100 TEXT("ERROR"),
1102
1104 return FALSE;
1105 }
1106
1107 is_writ = WriteFile(file, (LPCVOID)&w, sizeof(w), &written, 0);
1108 if (!is_writ)
1109 {
1111 TEXT("File Error, WriteFile() failed."),
1112 TEXT("ERROR"),
1114
1116 return FALSE;
1117 }
1118
1119 is_writ = WriteFile(file, (LPCVOID)&d, sizeof(d), &written, 0);
1120 if (!is_writ)
1121 {
1123 TEXT("File Error, WriteFile() failed."),
1124 TEXT("ERROR"),
1126
1128 return FALSE;
1129 }
1130
1131 is_writ = WriteFile(file,
1132 (LPCVOID)AUD_BUF->audio_buffer(),
1133 AUD_BUF->bytes_recorded(),
1134 &written,
1135 0);
1136 if (!is_writ)
1137 {
1139 TEXT("File Error, WriteFile() failed."),
1140 TEXT("ERROR"),
1142
1144 return FALSE;
1145 }
1146
1148 return TRUE;
1149}
FORCEINLINE VOID SetPixel(_In_ ULONG Left, _In_ ULONG Top, _In_ UCHAR Color)
Definition: arm.h:55
#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:816
#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 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:63
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:693
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:1043
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:917
VOID enable_but(DWORD id)
Definition: sndrec32.cpp:911
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:923
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:907
void l_play_finished(void)
Definition: sndrec32.cpp:890
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:902
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:18
int cbClsExtra
Definition: winuser.h:3204
HINSTANCE hInstance
Definition: winuser.h:3206
HCURSOR hCursor
Definition: winuser.h:3208
LPCSTR lpszMenuName
Definition: winuser.h:3210
HICON hIconSm
Definition: winuser.h:3212
UINT style
Definition: winuser.h:3202
int cbWndExtra
Definition: winuser.h:3205
UINT cbSize
Definition: winuser.h:3201
WNDPROC lpfnWndProc
Definition: winuser.h:3203
LPCSTR lpszClassName
Definition: winuser.h:3211
HICON hIcon
Definition: winuser.h:3207
HBRUSH hbrBackground
Definition: winuser.h:3209
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:1719
#define ZeroMemory
Definition: winbase.h:1712
#define CreateFile
Definition: winbase.h:3749
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:770
#define WM_PAINT
Definition: winuser.h:1620
#define CS_VREDRAW
Definition: winuser.h:658
#define CreateWindowEx
Definition: winuser.h:5755
#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:1743
BOOL WINAPI TranslateMessage(_In_ const MSG *)
BOOL WINAPI ShowWindow(_In_ HWND, _In_ int)
#define WM_CREATE
Definition: winuser.h:1608
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:5811
#define WM_COMMAND
Definition: winuser.h:1740
#define CS_HREDRAW
Definition: winuser.h:653
#define IDC_ARROW
Definition: winuser.h:687
#define MB_YESNO
Definition: winuser.h:817
UINT_PTR WINAPI SetTimer(_In_opt_ HWND, _In_ UINT_PTR, _In_ UINT, _In_opt_ TIMERPROC)
#define CreateWindow
Definition: winuser.h:5754
#define MB_ICONERROR
Definition: winuser.h:787
#define BM_SETIMAGE
Definition: winuser.h:1922
#define GetMessage
Definition: winuser.h:5790
BOOL WINAPI GetClientRect(_In_ HWND, _Out_ LPRECT)
#define RegisterClassEx
Definition: winuser.h:5837
#define MF_ENABLED
Definition: winuser.h:128
#define WM_TIMER
Definition: winuser.h:1742
BOOL WINAPI EndPaint(_In_ HWND, _In_ const PAINTSTRUCT *)
#define LoadIcon
Definition: winuser.h:5813
BOOL WINAPI UpdateWindow(_In_ HWND)
#define SendMessage
Definition: winuser.h:5843
BOOL WINAPI EnableWindow(_In_ HWND, _In_ BOOL)
#define LoadCursor
Definition: winuser.h:5812
WNDCLASSEXA WNDCLASSEX
Definition: winuser.h:5719
#define MB_OK
Definition: winuser.h:790
#define CW_USEDEFAULT
Definition: winuser.h:225
#define LoadString
Definition: winuser.h:5819
#define MB_ICONQUESTION
Definition: winuser.h:789
#define MessageBox
Definition: winuser.h:5822
#define WM_USER
Definition: winuser.h:1895
#define SB_ENDSCROLL
Definition: winuser.h:574
#define WM_DESTROY
Definition: winuser.h:1609
#define DispatchMessage
Definition: winuser.h:5765
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:2906
#define IDYES
Definition: winuser.h:835
HDC WINAPI BeginPaint(_In_ HWND, _Out_ LPPAINTSTRUCT)
BOOL WINAPI KillTimer(_In_opt_ HWND, _In_ UINT_PTR)
#define SystemParametersInfo
Definition: winuser.h:5858
#define TranslateAccelerator
Definition: winuser.h:5860
BOOL WINAPI DestroyWindow(_In_ HWND)
BOOL WINAPI EnableMenuItem(_In_ HMENU, _In_ UINT, _In_ UINT)
#define MAKEINTRESOURCE
Definition: winuser.h:591
HICON WINAPI LoadIconW(_In_opt_ HINSTANCE hInstance, _In_ LPCWSTR lpIconName)
Definition: cursoricon.c:2075
#define LoadAccelerators
Definition: winuser.h:5810
HMENU WINAPI GetMenu(_In_ HWND)
#define COLOR_BTNFACE
Definition: winuser.h:928
#define SB_PAGELEFT
Definition: winuser.h:570
#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