Added extern "C" where needed.

This commit is contained in:
Steven Fuller 2001-07-29 03:12:22 +00:00 committed by Patryk Obara
parent 3b458d2583
commit 44d4752e83
4 changed files with 18 additions and 247 deletions

View file

@ -1,6 +1,10 @@
#ifndef __FIXER_H__
#define __FIXER_H__
#ifdef __cplusplus
extern "C" {
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
@ -112,4 +116,8 @@ int GetFileAttributesA(const char *file);
int SetFilePointer(HANDLE file, int x, int y, int z);
int SetEndOfFile(HANDLE file);
#ifdef __cplusplus
};
#endif
#endif