ReactOS 0.4.15-dev-7788-g1ad9096
misc.c File Reference
#include "precomp.h"
Include dependency graph for misc.c:

Go to the source code of this file.

Functions

INT LengthOfStrResource (IN HINSTANCE hInst, IN UINT uID)
 
INT AllocAndLoadString (OUT LPTSTR *lpTarget, IN HINSTANCE hInst, IN UINT uID)
 
DWORD LoadAndFormatString (IN HINSTANCE hInstance, IN UINT uID, OUT LPTSTR *lpTarget,...)
 

Function Documentation

◆ AllocAndLoadString()

INT AllocAndLoadString ( OUT LPTSTR lpTarget,
IN HINSTANCE  hInst,
IN UINT  uID 
)

Definition at line 59 of file misc.c.

62{
63 INT ln;
64
66 uID);
67 if (ln++ > 0)
68 {
69 (*lpTarget) = (LPWSTR)LocalAlloc(LMEM_FIXED,
70 ln * sizeof(TCHAR));
71 if ((*lpTarget) != NULL)
72 {
73 INT Ret;
74 if (!(Ret = LoadString(hInst, uID, *lpTarget, ln)))
75 {
76 LocalFree((HLOCAL)(*lpTarget));
77 }
78 return Ret;
79 }
80 }
81 return 0;
82}
INT LengthOfStrResource(IN HINSTANCE hInst, IN UINT uID)
Definition: misc.c:23
#define NULL
Definition: types.h:112
HINSTANCE hInst
Definition: dxdiag.c:13
HLOCAL NTAPI LocalAlloc(UINT uFlags, SIZE_T dwBytes)
Definition: heapmem.c:1390
HLOCAL NTAPI LocalFree(HLOCAL hMem)
Definition: heapmem.c:1594
int32_t INT
Definition: typedefs.h:58
#define LMEM_FIXED
Definition: winbase.h:368
#define LoadString
Definition: winuser.h:5819
char TCHAR
Definition: xmlstorage.h:189
WCHAR * LPWSTR
Definition: xmlstorage.h:184

Referenced by _tWinMain(), AboutDialogProc(), AddToolbarButton(), ChangeListViewText(), CreateApplicationWindow(), DoCreate(), DoDeleteService(), DoOpenFile(), DoSaveFile(), FontWndProc(), FrameOnCommand(), InitDialog(), InitRecoveryPage(), LoadAndFormatString(), NewDocSelDlgProc(), OnCreate(), ResetProgressDialog(), SetServiceStatusText(), SetStartupType(), StatusBarLoadAndFormatString(), StatusBarLoadString(), TV1_AddDependantsToTree(), TV2_AddDependantsToTree(), UpdateServiceCount(), VarListLoadAndFormatString(), and wWinMain().

◆ LengthOfStrResource()

INT LengthOfStrResource ( IN HINSTANCE  hInst,
IN UINT  uID 
)

Definition at line 23 of file misc.c.

25{
26 HRSRC hrSrc;
27 HGLOBAL hRes;
28 LPWSTR lpName, lpStr;
29
30 if (hInst == NULL)
31 {
32 return -1;
33 }
34
35 /* There are always blocks of 16 strings */
36 lpName = (LPWSTR)MAKEINTRESOURCE((uID >> 4) + 1);
37
38 /* Find the string table block */
39 if ((hrSrc = FindResourceW(hInst, lpName, (LPWSTR)RT_STRING)) &&
40 (hRes = LoadResource(hInst, hrSrc)) &&
41 (lpStr = LockResource(hRes)))
42 {
43 UINT x;
44
45 /* Find the string we're looking for */
46 uID &= 0xF; /* position in the block, same as % 16 */
47 for (x = 0; x < uID; x++)
48 {
49 lpStr += (*lpStr) + 1;
50 }
51
52 /* Found the string */
53 return (int)(*lpStr);
54 }
55 return -1;
56}
HRSRC WINAPI FindResourceW(HINSTANCE hModule, LPCWSTR name, LPCWSTR type)
Definition: res.c:176
LPVOID WINAPI LockResource(HGLOBAL handle)
Definition: res.c:550
HGLOBAL WINAPI LoadResource(HINSTANCE hModule, HRSRC hRsrc)
Definition: res.c:532
GLint GLint GLint GLint GLint x
Definition: gl.h:1548
unsigned int UINT
Definition: ndis.h:50
#define RT_STRING
Definition: pedump.c:368
_In_ LPCSTR lpName
Definition: winbase.h:2789
#define MAKEINTRESOURCE
Definition: winuser.h:591

Referenced by AllocAndLoadString(), and DeviceProblemTextW().

◆ LoadAndFormatString()

DWORD LoadAndFormatString ( IN HINSTANCE  hInstance,
IN UINT  uID,
OUT LPTSTR lpTarget,
  ... 
)

Definition at line 85 of file misc.c.

89{
90 DWORD Ret = 0;
92 va_list lArgs;
93
96 uID) != 0)
97 {
98 va_start(lArgs, lpTarget);
99 /* let's use FormatMessage to format it because it has the ability to allocate
100 memory automatically */
102 lpFormat,
103 0,
104 0,
105 (LPTSTR)lpTarget,
106 0,
107 &lArgs);
108 va_end(lArgs);
109
111 }
112
113 return Ret;
114}
char * va_list
Definition: acmsvcex.h:78
#define va_end(ap)
Definition: acmsvcex.h:90
#define va_start(ap, A)
Definition: acmsvcex.h:91
INT AllocAndLoadString(OUT LPTSTR *lpTarget, IN HINSTANCE hInst, IN UINT uID)
Definition: misc.c:59
HINSTANCE hInstance
Definition: charmap.c:19
unsigned long DWORD
Definition: ntddk_ex.h:95
LPCWSTR lpFormat
Definition: trayclock.cpp:32
#define FormatMessage
Definition: winbase.h:3730
#define FORMAT_MESSAGE_FROM_STRING
Definition: winbase.h:421
#define FORMAT_MESSAGE_ALLOCATE_BUFFER
Definition: winbase.h:419
CHAR * LPTSTR
Definition: xmlstorage.h:192

Referenced by CreateFontWindow(), CreateNewConsoleTitle(), EditSecurity(), FontWndProc(), GetDisplayStringFromSidRequestResult(), GetPrincipalAccountNameString(), MainWndCommand(), and UpdateControlStates().