Source code of Windows XP (NT5)
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.
|
|
//
// Enable driver verifier support for ntoskrnl
// Copyright (c) Microsoft Corporation, 1999
//
//
// module: regutil.hxx
// author: DMihai
// created: 04/19/99
// description: resources manipulation routines
//
//
#ifndef __RESUTIL_HXX_INCLUDED__
#define __RESUTIL_HXX_INCLUDED__
#include <windows.h>
#include <tchar.h>
#include <stdlib.h>
/////////////////////////////////////////////////////////////////////
BOOL GetStringFromResources( UINT uIdResource, TCHAR *strResult, int nBufferLen );
/////////////////////////////////////////////////////////////////////
void PrintStringFromResources( UINT uIdResource);
#endif //#ifndef __RESUTIL_HXX_INCLUDED__
|