annotate src/proto/crypt_zip.pro @ 7309:c412b0922c27
v7.4.960
commit https://github.com/vim/vim/commit/90f5d0a5c3bbfeefcbc4d6eac59cf225ec714b28
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Dec 3 22:37:21 2015 +0100
patch 7.4.960
Problem: Detecting every version of nmake is clumsy.
Solution: Use a tiny C program to get the version of _MSC_VER. (Ken Takata)
author |
Christian Brabandt <cb@256bit.org> |
date |
Thu, 03 Dec 2015 22:45:04 +0100 |
parents |
18ac55444b37 |
children |
21b0a39d13ed |
rev |
line source |
6122
|
1 /* crypt_zip.c */
|
|
2 void crypt_zip_init __ARGS((cryptstate_T *state, char_u *key, char_u *salt, int salt_len, char_u *seed, int seed_len));
|
|
3 void crypt_zip_encode __ARGS((cryptstate_T *state, char_u *from, size_t len, char_u *to));
|
|
4 void crypt_zip_decode __ARGS((cryptstate_T *state, char_u *from, size_t len, char_u *to));
|
|
5 /* vim: set ft=c : */
|