mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-25 09:34:11 +00:00
fa85fdb34b
libPJL- Printer Job Language library A library and a command-line tool to use PJL- HP Printer Job Language PR: ports/69382 Submitted by: Yonatan <Yonatan@xpert.com>
28 lines
519 B
C++
28 lines
519 B
C++
--- rawmem.cpp.orig Sat Jul 6 18:36:21 2002
|
|
+++ rawmem.cpp Thu Aug 5 18:53:38 2004
|
|
@@ -2,7 +2,7 @@
|
|
*
|
|
* $Id: rawmem.cpp,v 1.2 2002/01/07 17:18:49 fx Exp $
|
|
*/
|
|
-#include <iostream.h>
|
|
+#include <iostream>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
@@ -10,10 +10,14 @@
|
|
#ifndef UNIX
|
|
#include <winsock2.h>
|
|
#else
|
|
+#include <sys/types.h>
|
|
+#include <sys/socket.h>
|
|
#include <netinet/in.h>
|
|
-#endif UNIX
|
|
+#endif // UNIX
|
|
|
|
#include "rawmem.h"
|
|
+
|
|
+using namespace std;
|
|
|
|
Rawmem::Rawmem() {
|
|
mem=NULL;
|