/[winpt]/trunk/Src/wptGPGMEData.cpp
ViewVC logotype

Diff of /trunk/Src/wptGPGMEData.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 143 by twoaday, Mon Jan 9 09:15:29 2006 UTC revision 144 by twoaday, Thu Jan 12 16:28:06 2006 UTC
# Line 244  gpg_data_readline (gpgme_data_t dh, char Line 244  gpg_data_readline (gpgme_data_t dh, char
244            
245      return pos;      return pos;
246  }  }
247    
248    
249    /* Write a single byte to data object @hd. */
250    void
251    gpg_data_putc (gpgme_data_t hd, int c)
252    {
253        BYTE ch[1];
254    
255        ch[0] = (BYTE)c;
256        ch[1] = '\0';
257        gpgme_data_write (hd, ch, 1);
258    }

Legend:
Removed from v.143  
changed lines
  Added in v.144

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26