Skip to content

Commit

Permalink
Added header comments to everything.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Feb 26, 2018
1 parent ce72cbf commit dcf40e8
Show file tree
Hide file tree
Showing 37 changed files with 295 additions and 0 deletions.
7 changes: 7 additions & 0 deletions cvtasm.pl
@@ -1,4 +1,11 @@
#!/usr/bin/perl -w
#
# 2ine; an OS/2 emulator for Linux.
#
# Please see the file LICENSE.txt in the source's root directory.
#
# This file written by Ryan C. Gordon.


# run this on the output from ndisasm.

Expand Down
8 changes: 8 additions & 0 deletions lx_dump.c
@@ -1,3 +1,11 @@
/**
* 2ine; an OS/2 emulator for Linux.
*
* Please see the file LICENSE.txt in the source's root directory.
*
* This file written by Ryan C. Gordon.
*/

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
Expand Down
8 changes: 8 additions & 0 deletions lx_loader.c
@@ -1,3 +1,11 @@
/**
* 2ine; an OS/2 emulator for Linux.
*
* Please see the file LICENSE.txt in the source's root directory.
*
* This file written by Ryan C. Gordon.
*/

#define _GNU_SOURCE 1

#include <stdio.h>
Expand Down
8 changes: 8 additions & 0 deletions lx_loader.h
@@ -1,3 +1,11 @@
/**
* 2ine; an OS/2 emulator for Linux.
*
* Please see the file LICENSE.txt in the source's root directory.
*
* This file written by Ryan C. Gordon.
*/

#ifndef _INCL_LX_LOADER_H_
#define _INCL_LX_LOADER_H_ 1

Expand Down
8 changes: 8 additions & 0 deletions native/doscalls.c
@@ -1,3 +1,11 @@
/**
* 2ine; an OS/2 emulator for Linux.
*
* Please see the file LICENSE.txt in the source's root directory.
*
* This file written by Ryan C. Gordon.
*/

#include "os2native16.h"
#include "doscalls.h"

Expand Down
8 changes: 8 additions & 0 deletions native/doscalls.h
@@ -1,3 +1,11 @@
/**
* 2ine; an OS/2 emulator for Linux.
*
* Please see the file LICENSE.txt in the source's root directory.
*
* This file written by Ryan C. Gordon.
*/

#ifndef _INCL_DOSCALLS_H_
#define _INCL_DOSCALLS_H_

Expand Down
8 changes: 8 additions & 0 deletions native/kbdcalls.c
@@ -1,3 +1,11 @@
/**
* 2ine; an OS/2 emulator for Linux.
*
* Please see the file LICENSE.txt in the source's root directory.
*
* This file written by Ryan C. Gordon.
*/

#include "os2native16.h"
#include "kbdcalls.h"

Expand Down
8 changes: 8 additions & 0 deletions native/kbdcalls.h
@@ -1,3 +1,11 @@
/**
* 2ine; an OS/2 emulator for Linux.
*
* Please see the file LICENSE.txt in the source's root directory.
*
* This file written by Ryan C. Gordon.
*/

#ifndef _INCL_KBDCALLS_H_
#define _INCL_KBDCALLS_H_

Expand Down
8 changes: 8 additions & 0 deletions native/mdm.c
@@ -1,3 +1,11 @@
/**
* 2ine; an OS/2 emulator for Linux.
*
* Please see the file LICENSE.txt in the source's root directory.
*
* This file written by Ryan C. Gordon.
*/

#include "os2native.h"
#include "mdm.h"

Expand Down
8 changes: 8 additions & 0 deletions native/mdm.h
@@ -1,3 +1,11 @@
/**
* 2ine; an OS/2 emulator for Linux.
*
* Please see the file LICENSE.txt in the source's root directory.
*
* This file written by Ryan C. Gordon.
*/

#ifndef _INCL_MDM_H_
#define _INCL_MDM_H_

Expand Down
8 changes: 8 additions & 0 deletions native/msg.c
@@ -1,3 +1,11 @@
/**
* 2ine; an OS/2 emulator for Linux.
*
* Please see the file LICENSE.txt in the source's root directory.
*
* This file written by Ryan C. Gordon.
*/

#include <unistd.h>

#include "os2native.h"
Expand Down
8 changes: 8 additions & 0 deletions native/msg.h
@@ -1,3 +1,11 @@
/**
* 2ine; an OS/2 emulator for Linux.
*
* Please see the file LICENSE.txt in the source's root directory.
*
* This file written by Ryan C. Gordon.
*/

#ifndef _INCL_MSG_H_
#define _INCL_MSG_H_

Expand Down
8 changes: 8 additions & 0 deletions native/nls.c
@@ -1,3 +1,11 @@
/**
* 2ine; an OS/2 emulator for Linux.
*
* Please see the file LICENSE.txt in the source's root directory.
*
* This file written by Ryan C. Gordon.
*/

#include "os2native.h"
#include "nls.h"

Expand Down
8 changes: 8 additions & 0 deletions native/nls.h
@@ -1,3 +1,11 @@
/**
* 2ine; an OS/2 emulator for Linux.
*
* Please see the file LICENSE.txt in the source's root directory.
*
* This file written by Ryan C. Gordon.
*/

#ifndef _INCL_NLS_H_
#define _INCL_NLS_H_

Expand Down
8 changes: 8 additions & 0 deletions native/os2.h
@@ -1,3 +1,11 @@
/**
* 2ine; an OS/2 emulator for Linux.
*
* Please see the file LICENSE.txt in the source's root directory.
*
* This file written by Ryan C. Gordon.
*/

#ifndef _INCL_OS2_H_
#define _INCL_OS2_H_

Expand Down
8 changes: 8 additions & 0 deletions native/os2errors.h
@@ -1,3 +1,11 @@
/**
* 2ine; an OS/2 emulator for Linux.
*
* Please see the file LICENSE.txt in the source's root directory.
*
* This file written by Ryan C. Gordon.
*/

#ifndef _INCL_OS2ERRORS_H_
#define _INCL_OS2ERRORS_H_

Expand Down
8 changes: 8 additions & 0 deletions native/os2native.h
@@ -1,3 +1,11 @@
/**
* 2ine; an OS/2 emulator for Linux.
*
* Please see the file LICENSE.txt in the source's root directory.
*
* This file written by Ryan C. Gordon.
*/

#ifndef _INCL_OS2NATIVE_H_
#define _INCL_OS2NATIVE_H_

Expand Down
8 changes: 8 additions & 0 deletions native/os2native16.h
@@ -1,3 +1,11 @@
/**
* 2ine; an OS/2 emulator for Linux.
*
* Please see the file LICENSE.txt in the source's root directory.
*
* This file written by Ryan C. Gordon.
*/

#ifndef _INCL_OS2NATIVE16_H_
#define _INCL_OS2NATIVE16_H_

Expand Down
8 changes: 8 additions & 0 deletions native/os2types.h
@@ -1,3 +1,11 @@
/**
* 2ine; an OS/2 emulator for Linux.
*
* Please see the file LICENSE.txt in the source's root directory.
*
* This file written by Ryan C. Gordon.
*/

#ifndef _INCL_OS2TYPES_H_
#define _INCL_OS2TYPES_H_

Expand Down
8 changes: 8 additions & 0 deletions native/pmgpi.c
@@ -1,3 +1,11 @@
/**
* 2ine; an OS/2 emulator for Linux.
*
* Please see the file LICENSE.txt in the source's root directory.
*
* This file written by Ryan C. Gordon.
*/

#include "os2native.h"
#include "pmgpi.h"

Expand Down
8 changes: 8 additions & 0 deletions native/pmgpi.h
@@ -1,3 +1,11 @@
/**
* 2ine; an OS/2 emulator for Linux.
*
* Please see the file LICENSE.txt in the source's root directory.
*
* This file written by Ryan C. Gordon.
*/

#ifndef _INCL_PMGPI_H_
#define _INCL_PMGPI_H_

Expand Down
8 changes: 8 additions & 0 deletions native/pmmerge.c
@@ -1,3 +1,11 @@
/**
* 2ine; an OS/2 emulator for Linux.
*
* Please see the file LICENSE.txt in the source's root directory.
*
* This file written by Ryan C. Gordon.
*/

#include "os2native.h"
#include "pmmerge.h"

Expand Down
8 changes: 8 additions & 0 deletions native/pmmerge.h
@@ -1,3 +1,11 @@
/**
* 2ine; an OS/2 emulator for Linux.
*
* Please see the file LICENSE.txt in the source's root directory.
*
* This file written by Ryan C. Gordon.
*/

#ifndef _INCL_PMMERGE_H_
#define _INCL_PMMERGE_H_

Expand Down
8 changes: 8 additions & 0 deletions native/pmshapi.c
@@ -1,3 +1,11 @@
/**
* 2ine; an OS/2 emulator for Linux.
*
* Please see the file LICENSE.txt in the source's root directory.
*
* This file written by Ryan C. Gordon.
*/

#include "os2native.h"
#include "pmshapi.h"

Expand Down
8 changes: 8 additions & 0 deletions native/pmshapi.h
@@ -1,3 +1,11 @@
/**
* 2ine; an OS/2 emulator for Linux.
*
* Please see the file LICENSE.txt in the source's root directory.
*
* This file written by Ryan C. Gordon.
*/

#ifndef _INCL_PMSHAPI_H_
#define _INCL_PMSHAPI_H_

Expand Down
8 changes: 8 additions & 0 deletions native/pmwin.c
@@ -1,3 +1,11 @@
/**
* 2ine; an OS/2 emulator for Linux.
*
* Please see the file LICENSE.txt in the source's root directory.
*
* This file written by Ryan C. Gordon.
*/

#include "os2native.h"
#include "pmwin.h"
#include "SDL.h"
Expand Down
8 changes: 8 additions & 0 deletions native/pmwin.h
@@ -1,3 +1,11 @@
/**
* 2ine; an OS/2 emulator for Linux.
*
* Please see the file LICENSE.txt in the source's root directory.
*
* This file written by Ryan C. Gordon.
*/

#ifndef _INCL_PMWIN_H_
#define _INCL_PMWIN_H_

Expand Down
8 changes: 8 additions & 0 deletions native/quecalls.c
@@ -1,3 +1,11 @@
/**
* 2ine; an OS/2 emulator for Linux.
*
* Please see the file LICENSE.txt in the source's root directory.
*
* This file written by Ryan C. Gordon.
*/

#include "os2native.h"
#include "quecalls.h"

Expand Down
8 changes: 8 additions & 0 deletions native/quecalls.h
@@ -1,3 +1,11 @@
/**
* 2ine; an OS/2 emulator for Linux.
*
* Please see the file LICENSE.txt in the source's root directory.
*
* This file written by Ryan C. Gordon.
*/

#ifndef _INCL_QUECALLS_H_
#define _INCL_QUECALLS_H_

Expand Down
8 changes: 8 additions & 0 deletions native/sesmgr.c
@@ -1,3 +1,11 @@
/**
* 2ine; an OS/2 emulator for Linux.
*
* Please see the file LICENSE.txt in the source's root directory.
*
* This file written by Ryan C. Gordon.
*/

#include "os2native.h"
#include "sesmgr.h"

Expand Down
8 changes: 8 additions & 0 deletions native/sesmgr.h
@@ -1,3 +1,11 @@
/**
* 2ine; an OS/2 emulator for Linux.
*
* Please see the file LICENSE.txt in the source's root directory.
*
* This file written by Ryan C. Gordon.
*/

#ifndef _INCL_SESMGR_H_
#define _INCL_SESMGR_H_

Expand Down
8 changes: 8 additions & 0 deletions native/som.c
@@ -1,3 +1,11 @@
/**
* 2ine; an OS/2 emulator for Linux.
*
* Please see the file LICENSE.txt in the source's root directory.
*
* This file written by Ryan C. Gordon.
*/

#include "os2native.h"
#include "som.h"

Expand Down
8 changes: 8 additions & 0 deletions native/som.h
@@ -1,3 +1,11 @@
/**
* 2ine; an OS/2 emulator for Linux.
*
* Please see the file LICENSE.txt in the source's root directory.
*
* This file written by Ryan C. Gordon.
*/

#ifndef _INCL_SOM_H_
#define _INCL_SOM_H_

Expand Down

0 comments on commit dcf40e8

Please sign in to comment.