1

我正在使用带有 MinGW 的 Dev-C++ 4.9.9.2 来编译此代码:

  /* get the information about the group. */
  struct group* group_info = getgrnam("PLACEHOLDER");
  /* make sure this group actually exists. */

  if (!group_info) {
     printf("group 'PLACEHOLDER' does not exist.\n");
  }
  else 
  { 
     char** p_member;

     printf("Here are the members of group 'PLACEHOLDER':\n");
     for (p_member = group_info->gr_mem; *p_member; p_member++)
        printf("  %s\n", *p_member);
     } 
  }

我包括以下头文件:

  • grp.h
  • 系统/类型.h

(从 glibc 2.13 得到它们(也许这是错误的,但一位朋友告诉我这是正确的方法))

当我尝试编译代码时,我在 glibc 的标头中收到一堆错误,例如:

12 C:\glibc-2.9\include\sys\cdefs.h expected constructor, destructor, or type conversion before '(' token 
12 C:\glibc-2.9\include\sys\cdefs.h expected `,' or `;' before '(' token 
4  C:\glibc-2.9\include\grp.h expected constructor, destructor, or type conversion before '(' token   

编辑:

这是整个代码

 #include <grp.h> /* defines 'struct group', and getgrnam(). */
 #include <sys/types.h> /* defines 'gid_t', etc.              */

 BOOL getListOfGroupMembers() {

   /* get the information about the "strange" group. */
   struct group* group_info = getgrnam("PLACEHOLDER");
   /* make sure this group actually exists. */
   if (!group_info) {
      printf("group 'PLACEHOLDER' does not exist.\n");
   }
   else 
   {
      char** p_member;

      printf("Here are the members of group 'PLACEHOLDER':\n");
      for (p_member = group_info->gr_mem; *p_member; p_member++)
      {
        printf("  %s\n", *p_member);
      } 
    }

    return 0;

  }

bool 返回目前没有意义,我想在编译时更改它。

4

3 回答 3

2

您不能只将 glibc 中的几个头文件带到 windows 上的 mingw 中。这些头文件不是自包含的,它们需要很多其他头文件,甚至可能需要安装在系统上(不仅仅是在 glibc 源文件夹中引用..)

除此之外,glibc 不是为 windows 制作的——这些头文件是专门为 glibc 制作的,win32 也没有 getgrnam() 函数。(你需要 cygwin,它有自己的头文件)

于 2011-03-03T10:07:39.413 回答
0

在最低的 for 循环中缺少一个大括号,但也许它只是一个发布错误?

于 2011-03-03T10:07:09.873 回答
0

我怀疑这是问题的根源,但看起来你的 for 有一个右括号 },但缺少并打开一个。

于 2011-03-03T10:08:19.973 回答