diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2010-07-06 16:22:29 +0200 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2010-07-06 16:22:29 +0200 |
commit | b56ceb92bf4d470af2e9172d1fcd4d85232c40a6 (patch) | |
tree | 50ab60b4715be45ed671c386c5b9336b45443539 /src/w32reg.c | |
parent | 7af07b967171736a35e0af8b6ecf6feb072184dc (diff) | |
download | emacs-b56ceb92bf4d470af2e9172d1fcd4d85232c40a6.tar.gz |
src/w32*.c: Convert function definitions to standard C.
Diffstat (limited to 'src/w32reg.c')
-rw-r--r-- | src/w32reg.c | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/src/w32reg.c b/src/w32reg.c index f9687d1effe..77667eb7dc9 100644 --- a/src/w32reg.c +++ b/src/w32reg.c @@ -58,9 +58,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ */ static char * -w32_get_rdb_resource (rdb, resource) - char *rdb; - char *resource; +w32_get_rdb_resource (char *rdb, char *resource) { char *value = rdb; int len = strlen (resource); @@ -78,9 +76,7 @@ w32_get_rdb_resource (rdb, resource) } static LPBYTE -w32_get_string_resource (name, class, dwexptype) - char *name, *class; - DWORD dwexptype; +w32_get_string_resource (char *name, char *class, DWORD dwexptype) { LPBYTE lpvalue = NULL; HKEY hrootkey = NULL; @@ -147,9 +143,7 @@ w32_get_string_resource (name, class, dwexptype) database RDB. */ char * -x_get_string_resource (rdb, name, class) - XrmDatabase rdb; - char *name, *class; +x_get_string_resource (XrmDatabase rdb, char *name, char *class) { if (rdb) { |