• 大小: 5KB
    文件类型: .rar
    金币: 2
    下载: 1 次
    发布日期: 2021-08-15
  • 语言: C/C++
  • 标签: c++  

资源简介

C++写的超简单的MP3音频播放程序 MP3音频播放程序,估计找不到比这个再简单的程序了,本人刚学C,只能写出这么样的,我感觉对我的菜鸟同行有不小帮助,确实太简单了,不用担心你会看不懂。不涉及VC的知识。

资源截图

代码片段和文件信息

/*----------------------------------------
   BTNLOOK.C -- Button Look Program
                (c) Charles Petzold 1998
  ----------------------------------------*/

#include 
#include 

void PopFileInitialize (HWND) ;
BOOL PopFileOpenDlg    (HWND PTSTR PTSTR) ;
void paly_mp3(char *dress);
void pause_mp3();
void reset_mp3();

struct
{
     int     istyle ;
     TCHAR * szText ;
}
button[] =
{
     BS_PUSHBUTTON   TEXT (“打开“)
     BS_PUSHBUTTON   TEXT (“播放“)
     BS_PUSHBUTTON   TEXT (“暂停“) 
 BS_PUSHBUTTON   TEXT (“重置“)
     BS_PUSHBUTTON   TEXT (“退出“)
} ;

#define NUM (sizeof button / sizeof button[0])
TCHAR szAppName[] = TEXT (“BtnLook“) ;

LRESULT CALLBACK WndProc (HWND UINT WPARAM LPARAM) ;

int WINAPI WinMain (HINSTANCE hInstance HINSTANCE hPrevInstance
                    PSTR szCmdLine int iCmdShow)
{
     HWND         hwnd ;
     MSG          msg ;
     WNDCLASS     wndclass ;
     
     wndclass.style         = CS_HREDRAW | CS_VREDRAW ;
     wndclass.lpfnWndProc   = WndProc ;
     wndclass.cbClsExtra    = 0 ;
     wndclass.cbWndExtra    = 0 ;
     wndclass.hInstance     = hInstance ;
     wndclass.hIcon         = LoadIcon (NULL IDI_APPLICATION) ;
     wndclass.hCursor       = LoadCursor (NULL IDC_ARROW) ;
     wndclass.hbrBackground = (HBRUSH) GetStockobject (WHITE_BRUSH) ;
     wndclass.lpszMenuName  = NULL ;
     wndclass.lpszClassName = szAppName ;
     
     if (!RegisterClass (&wndclass))
     {
          MessageBox (NULL TEXT (“This program requires Windows NT!“)
                      szAppName MB_IConerror) ;
          return 0 ;
     }
     
     hwnd = CreateWindow (szAppName TEXT (“播放音频程序“)
                          WS_OVERLAPPEDWINDOW
                          200 200
                          290 170
                          NULL NULL hInstance NULL) ;
     
     ShowWindow (hwnd iCmdShow) ;
     UpdateWindow (hwnd) ;
     
     while (GetMessage (&msg NULL 0 0))
     {
          TranslateMessage (&msg) ;
          DispatchMessage (&msg) ;
     }
     return msg.wParam ;
}

LRESULT CALLBACK WndProc (HWND hwnd UINT message WPARAM wParam LPARAM lParam)
{
     static HWND  hwndButton[NUM] ;
 static RECT rect;
     static HDC hdc ;
 static TCHAR szBuffer[50];
 static TCHAR szTop[] = TEXT(“选择的歌曲是:“);
 static TCHAR szFileName[MAX_PATH] sztitleName[MAX_PATH] ;
     static int cxChar cyChar ;
 static PAINTSTRUCT  ps ;
 static int i;

     switch (message)
     {
     case WM_CREATE :
  cxChar = LOWORD (GetDialogbaseUnits ()) ;
          cyChar = HIWORD (GetDialogbaseUnits ()) ;
          
          for (i = 0 ; i < NUM ; i++)
               hwndButton[i] = CreateWindow ( TEXT(“button“) 
                                   button[i].szText
                                   WS_CHILD | WS_VISIBLE | button[i].istyle
                                   cyChar * (1 + 3 

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

----------- ---------  ---------- -----  ----

                12900                    7


评论

共有 条评论