You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
669 B
24 lines
669 B
//
|
|
// MODULE: tsmfc.cpp
|
|
//
|
|
// PURPOSE: Imitate the MFC string resource functions that are not available
|
|
// in Win32 programs.
|
|
//
|
|
// PROJECT: Local Troubleshooter Launcher for the Device Manager
|
|
//
|
|
// COMPANY: Saltmine Creative, Inc. (206)-633-4743 [email protected]
|
|
//
|
|
// AUTHOR: Richard Meadows
|
|
//
|
|
// ORIGINAL DATE: 2-26-98
|
|
//
|
|
//
|
|
// Version Date By Comments
|
|
//--------------------------------------------------------------------
|
|
// V0.1 - RM Original
|
|
///////////////////////
|
|
|
|
int AfxLoadStringA(UINT nID, LPSTR lpszBuf, UINT nMaxBuf);
|
|
int AfxLoadStringW(UINT nID, LPWSTR lpszBuf, UINT nMaxBuf);
|
|
|
|
HINSTANCE AfxGetResourceHandle();
|