0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

c++builder > E2342(41): E2034 'char *'型は'const wchart_t*'型に変換できない > 41行目でなく40行目の問題だった

Last updated at Posted at 2015-11-22
動作確認
C++ Builder XE4
Unit1.cpp
void __fastcall TForm1::AccessPrivilege( char *Prvlg, String ServerName, bool Mode ) throw(Exception)
{
	HANDLE htoken;
	TOKEN_PRIVILEGES  tknPrvlgs;

	bool success = OpenProcessToken( GetCurrentProcess(),
							 TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, &htoken );
	if( !success ){
		throw Exception(ErrOpenProcess);
	}

	success = LookupPrivilegeValue( ServerName.c_str(),
	Prvlg,
	&(tknPrvlgs.Privileges[0].Luid) );
...

上記をコンパイルしようとして以下のエラーが出ていた。

E2342(41): E2034 'char *'型は'const wchart_t*'型に変換できない 

41行目というのは &(tknPrvlgs.Privileges[0].Luid) );の行。

しかしながら、問題は41行目でなく40行目のPrvlg,の方だった。
Prvlgがchar *型だったのでダメだった。

エラーメッセージがmisleadingだ。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?