Location:
Search - LockResource
Search list
Description: This console application shows how to bake resources into console applications. The sample also demonstrates using FindResource(), LockResource(), FreeResource(), and SizeofResource() APIs to access the bytes in the image resources directly. The sample uses an ofstream and a stdio FILE to write the bytes of the resource out to new files.
Platform: |
Size: 579881 |
Author: 陈伟 |
Hits:
Description: 从资源文件中,载入音声,图片等,并播放声音,或者显示
HINSTANCE h=AfxGetInstanceHandle()
HRSRC hr=FindResource(h,\"IDW\",\"WAVE\")
HGLOBAL hg=LoadResource(h,hr)
LPSTR lp=(LPSTR)LockResource(hg)
sndPlaySound(lp,SND_MEMORY|SND_ASYNC)
FreeResource(hg)
return 0
Platform: |
Size: 309750 |
Author: Joey |
Hits:
Description: Rectangle GetDC SetROP2 ReleaseDC CreateRectRgn SelectClipRgn DeleteObject SelectObject CreatePen CreateSolidBrush SetTextColor SetBkColor SetRect LockResource UnlockResource GetCursor LoadCursor GetStockObject LineTo SetCursor ShowCursor DrawText LoadString MessageBox CreateFontIndirect GetTextMetrics ClientToScreen SetCursorPos GetMessageTime GetKeyState GetClientRect SetWindowPos BeginPaint EndPaint DefWindowProc
Platform: |
Size: 95919 |
Author: 安新军 |
Hits:
Description: This console application shows how to bake resources into console applications. The sample also demonstrates using FindResource(), LockResource(), FreeResource(), and SizeofResource() APIs to access the bytes in the image resources directly. The sample uses an ofstream and a stdio FILE to write the bytes of the resource out to new files.
Platform: |
Size: 579584 |
Author: 陈伟 |
Hits:
Description: 从资源文件中,载入音声,图片等,并播放声音,或者显示
HINSTANCE h=AfxGetInstanceHandle()
HRSRC hr=FindResource(h,"IDW","WAVE")
HGLOBAL hg=LoadResource(h,hr)
LPSTR lp=(LPSTR)LockResource(hg)
sndPlaySound(lp,SND_MEMORY|SND_ASYNC)
FreeResource(hg)
return 0 -From the resource document, loading voice, pictures, etc., and to play a sound, or show HINSTANCE h = AfxGetInstanceHandle () HRSRC hr = FindResource (h, IDW , WAVE ) HGLOBAL hg = LoadResource (h, hr) LPSTR lp = (LPSTR) LockResource (hg) sndPlaySound (lp, SND_MEMORY | SND_ASYNC) FreeResource (hg) return 0
Platform: |
Size: 309248 |
Author: Joey |
Hits:
Description: Rectangle GetDC SetROP2 ReleaseDC CreateRectRgn SelectClipRgn DeleteObject SelectObject CreatePen CreateSolidBrush SetTextColor SetBkColor SetRect LockResource UnlockResource GetCursor LoadCursor GetStockObject LineTo SetCursor ShowCursor DrawText LoadString MessageBox CreateFontIndirect GetTextMetrics ClientToScreen SetCursorPos GetMessageTime GetKeyState GetClientRect SetWindowPos BeginPaint EndPaint DefWindowProc
Platform: |
Size: 2931712 |
Author: 安新军 |
Hits:
Description: HINSTANCE hInst = LoadLibrary("b.exe")
HRSRC hRc = FindResource(hInst, (LPCSTR)1, (LPCSTR)RT_ICON)
LPVOID lpResource = LockResource(LoadResource(hInst,hRc))
HANDLE hUpdate = BeginUpdateResource("a.exe", FALSE)
UpdateResource(hUpdate, (LPCSTR)RT_ICON, (LPCSTR)1, 0, lpResource, SizeofResource(hInst, hRc))
EndUpdateResource(hUpdate, FALSE) -HINSTANCE hInst = LoadLibrary ( " b.exe" ) HRSRC hRc = FindResource (hInst, (LPCSTR) 1, (LPCSTR) RT_ICON) LPVOID lpResource = LockResource (LoadResource (hInst, hRc)) HANDLE hUpdate = BeginUpdateResource ( " a . exe " , FALSE) UpdateResource (hUpdate, (LPCSTR) RT_ICON, (LPCSTR) 1, 0, lpResource, SizeofResource (hInst, hRc)) EndUpdateResource (hUpdate, FALSE)
Platform: |
Size: 80896 |
Author: 咹靜ゞ`兲倥 |
Hits:
Description: HINSTANCE hInst = LoadLibrary("b.exe")
HRSRC hRc = FindResource(hInst, (LPCSTR)1, (LPCSTR)RT_ICON)
LPVOID lpResource = LockResource(LoadResource(hInst,hRc))
HANDLE hUpdate = BeginUpdateResource("a.exe", FALSE)
UpdateResource(hUpdate, (LPCSTR)RT_ICON, (LPCSTR)1, 0, lpResource, SizeofResource(hInst, hRc))
EndUpdateResource(hUpdate, FALSE)
CloseHandle(hRc)
FreeLibrary(hInst) -HINSTANCE hInst = LoadLibrary ( " b.exe" ) HRSRC hRc = FindResource (hInst, (LPCSTR) 1, (LPCSTR) RT_ICON) LPVOID lpResource = LockResource (LoadResource (hInst, hRc)) HANDLE hUpdate = BeginUpdateResource ( " a . exe " , FALSE) UpdateResource (hUpdate, (LPCSTR) RT_ICON, (LPCSTR) 1, 0, lpResource, SizeofResource (hInst, hRc)) EndUpdateResource (hUpdate, FALSE) CloseHandle (hRc) FreeLibrary (hInst)
Platform: |
Size: 80896 |
Author: 咹靜ゞ`兲倥 |
Hits: