Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #30466

Re: How to pass FILE *

References <201209281455.07702.thudfoo@gmail.com>
Date 2012-09-28 21:27 -0700
Subject Re: How to pass FILE *
From Chris Rebert <clp2@rebertia.com>
Newsgroups comp.lang.python
Message-ID <mailman.1606.1348892836.27098.python-list@python.org> (permalink)

Show all headers | View raw


On Fri, Sep 28, 2012 at 2:55 PM, xDog Walker <thudfoo@gmail.com> wrote:
>
> The function I am trying to call wants a FILE *:
>
> dlg_progressbox(const char *title,
>                 const char *cprompt,
>                 int height,
>                 int width,
>                 int pauseopt,
>                 FILE *fp)
>
> I can open the file to be referenced:
>
> fp = os.fdopen(self.pipefds[0], 'r')
>
> Every thing I've tried ends with ctypes raising a TypeError.

What specifically did you try?

A tiny bit of googling suggests the following approach:
http://stackoverflow.com/questions/3794309/python-ctypes-python-file-object-c-file/3794401#3794401
Related POSIX docs:
http://pubs.opengroup.org/onlinepubs/009695399/functions/fdopen.html

Cheers,
Chris

Back to comp.lang.python | Previous | Next | Find similar | Unroll thread


Thread

Re: How to pass FILE * Chris Rebert <clp2@rebertia.com> - 2012-09-28 21:27 -0700

csiph-web