public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
* No Subject
@ 1997-10-17  2:59 mjiinas
  1997-10-20  6:50 ` [] Jozsef Dojcsak
  0 siblings, 1 reply; 13+ messages in thread
From: mjiinas @ 1997-10-17  2:59 UTC (permalink / raw)
  To: gnu-win32

	Hi...  I'm an experienced C programmer, but new to C++ and Windows programming.  I 
recently bought a book on Win95 programming, and it contained some source code for a very 
simple example program of which I'll include later.  I've tried to compile this simple 
program, but failed.  I get spammed with several "undefined reference to" error messages.  
	Also, on another note, is there a way to download all the Cygnus docs off the net 
without doing it page by page?  This is extremely annoying.  DJGPP has a very informative 
and useful INFO command.  I don't want to spend hours on-line every time I want to refer to 
the docs, or have a folder full of a jumble of documents with a confusing list of pages.
	Okay, back to the code...   They are listed as follows.  
	1: compile command line.  
	2: LISTING2.H 
	3: LISTING2.CPP 
	4: LISTING2.RC 

	Any help will be greatly appreciated.  Thanks...  ^_^

g++ listing2.cpp -lstdc++

	LISTING2.H

#define IDM_EXIT           100
#define IDM_TEST           200
#define IDM_ABOUT          301

#define IDC_TEXT           101
#define IDC_EDIT           102
#define IDC_BTN            103

LRESULT CALLBACK WndProc  (HWND, UINT, WPARAM, LPARAM);
LRESULT CALLBACK About    (HWND, UINT, WPARAM, LPARAM);

	LISTING2.CPP


#include <windows.h>  
#include "listing2.h" 


#if defined (WIN32)
	#define IS_WIN32 TRUE
#else
	#define IS_WIN32 FALSE
#endif

#define IS_NT      IS_WIN32 && (BOOL)(GetVersion() < 0x80000000)
#define IS_WIN32S  IS_WIN32 && (BOOL)(!(IS_NT) && (LOBYTE(LOWORD(GetVersion()))<4))
#define IS_WIN95   (BOOL)(!(IS_NT) && !(IS_WIN32S)) && IS_WIN32

HINSTANCE hInst;   // current instance

LPCTSTR lpszAppName  = "MyApp";
LPCTSTR lpszTitle    = "Listing 3-2"; 

BOOL RegisterWin95( CONST WNDCLASS* lpwc );

int APIENTRY WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance,
                      LPTSTR lpCmdLine, int nCmdShow)
{
   MSG      msg;
   HWND     hWnd; 
   WNDCLASS wc;

   // Register the main application window class.
   //............................................
   wc.style         = CS_HREDRAW | CS_VREDRAW;
   wc.lpfnWndProc   = (WNDPROC)WndProc;       
   wc.cbClsExtra    = 0;                      
   wc.cbWndExtra    = 0;                      
   wc.hInstance     = hInstance;              
   wc.hIcon         = LoadIcon( hInstance, lpszAppName ); 
   wc.hCursor       = LoadCursor(NULL, IDC_ARROW);
   wc.hbrBackground = (HBRUSH)(COLOR_WINDOW+1);
   wc.lpszMenuName  = lpszAppName;              
   wc.lpszClassName = lpszAppName;              

   if ( IS_WIN95 )
   {
      if ( !RegisterWin95( &wc ) )
         return( FALSE );
   }
   else if ( !RegisterClass( &wc ) )
      return( FALSE );

   hInst = hInstance; 

   // Create the main application window.
   //....................................
   hWnd = CreateWindow( lpszAppName, 
                        lpszTitle,    
                        WS_OVERLAPPEDWINDOW, 
                        CW_USEDEFAULT, 0, 
                        CW_USEDEFAULT, 0,  
                        NULL,              
                        NULL,              
                        hInstance,         
                        NULL               
                      );

   if ( !hWnd ) 
      return( FALSE );

   ShowWindow( hWnd, nCmdShow ); 
   UpdateWindow( hWnd );         

   while( GetMessage( &msg, NULL, 0, 0) )   
   {
      TranslateMessage( &msg ); 
      DispatchMessage( &msg );  
   }

   return( msg.wParam ); 
}


BOOL RegisterWin95( CONST WNDCLASS* lpwc )
{
   WNDCLASSEX wcex;

   wcex.style         = lpwc->style;
   wcex.lpfnWndProc   = lpwc->lpfnWndProc;
   wcex.cbClsExtra    = lpwc->cbClsExtra;
   wcex.cbWndExtra    = lpwc->cbWndExtra;
   wcex.hInstance     = lpwc->hInstance;
   wcex.hIcon         = lpwc->hIcon;
   wcex.hCursor       = lpwc->hCursor;
   wcex.hbrBackground = lpwc->hbrBackground;
   wcex.lpszMenuName  = lpwc->lpszMenuName;
   wcex.lpszClassName = lpwc->lpszClassName;

   // Added elements for Windows 95.
   //...............................
   wcex.cbSize = sizeof(WNDCLASSEX);
   wcex.hIconSm = LoadImage(wcex.hInstance, lpwc->lpszClassName, 
                            IMAGE_ICON, 16, 16,
                            LR_DEFAULTCOLOR );
			
   return RegisterClassEx( &wcex );
}

LRESULT CALLBACK WndProc( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam )
{
static HWND hText = NULL;
static HWND hEdit = NULL;
static HWND hBtn  = NULL;

   switch ( uMsg ) 
   {
      case WM_COMMAND :
              switch( LOWORD( wParam ) )
              {
                 case IDM_TEST :
                        hText = CreateWindow( "STATIC", "Static Text",
                                              WS_CHILD | WS_VISIBLE | SS_LEFT,
                                              10, 10, 100, 15,
                                              hWnd,
                                              (HMENU)IDC_TEXT,
                                              hInst, NULL );

                        hEdit = CreateWindow( "EDIT", "",
                                              WS_CHILD | WS_VISIBLE | 
                                                ES_LEFT | WS_BORDER,
                                              110, 8, 100, 20,
                                              hWnd,
                                              (HMENU)IDC_EDIT,
                                              hInst, NULL );

                        hBtn = CreateWindow( "BUTTON", "Push Button",
                                             WS_CHILD | WS_VISIBLE | 
                                             BS_PUSHBUTTON,
                                             50, 50, 100, 32,
                                             hWnd,
                                             (HMENU)IDC_BTN,
                                             hInst, NULL );
                        break;

                 case IDM_ABOUT :
                        DialogBox( hInst, "AboutBox", hWnd, (DLGPROC)About );
                        break;

                 case IDM_EXIT :
                        DestroyWindow( hWnd );
                        break;
              }
              break;
      
      case WM_DESTROY :
              PostQuitMessage(0);
              break;

      default :
            return( DefWindowProc( hWnd, uMsg, wParam, lParam ) );
   }

   return( 0L );
}


LRESULT CALLBACK About( HWND hDlg,           
                        UINT message,        
                        WPARAM wParam,       
                        LPARAM lParam)
{
   switch (message) 
   {
       case WM_INITDIALOG: 
               return (TRUE);

       case WM_COMMAND:                              
               if (   LOWORD(wParam) == IDOK         
                   || LOWORD(wParam) == IDCANCEL)    
               {
                       EndDialog(hDlg, TRUE);        
                       return (TRUE);
               }
               break;
   }

   return (FALSE); 
}

	LISTING2.RC

#include "windows.h"
#include "listing2.h"

MYAPP                ICON    DISCARDABLE     "GENERIC.ICO"

MYAPP MENU DISCARDABLE 
BEGIN
    POPUP "&File"
    BEGIN
        MENUITEM "E&xit",                   IDM_EXIT
    END
    MENUITEM "Test!",                       IDM_TEST
    POPUP "&Help"
    BEGIN
        MENUITEM "&About Listing 3-2...",   IDM_ABOUT
    END
END


ABOUTBOX DIALOG 22, 17, 171, 43
STYLE DS_MODALFRAME | WS_OVERLAPPED | WS_CAPTION | WS_SYSMENU
CAPTION "Listing 3-2"
FONT 8, "MS Sans Serif"
{
   CONTROL "MyApp", -1, "STATIC", SS_ICON | WS_CHILD | WS_VISIBLE, 3, 2, 16, 16
   CONTROL "Generic Application", -1, "STATIC", SS_LEFT | WS_CHILD | WS_VISIBLE | WS_GROUP, 
28, 4, 100, 8
   CONTROL "OK", IDOK, "BUTTON", BS_DEFPUSHBUTTON | WS_CHILD | WS_VISIBLE | WS_GROUP | 
WS_TABSTOP, 116, 26, 50, 14
}




-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: []
  1997-10-17  2:59 No Subject mjiinas
@ 1997-10-20  6:50 ` Jozsef Dojcsak
  0 siblings, 0 replies; 13+ messages in thread
From: Jozsef Dojcsak @ 1997-10-20  6:50 UTC (permalink / raw)
  To: gnu-win32

>         Also, on another note, is there a way to download all the Cygnus docs off the net
> without doing it page by page?  This is extremely annoying.  DJGPP has a very informative
> and useful INFO command.  I don't want to spend hours on-line every time I want to refer to
> the docs, or have a folder full of a jumble of documents with a confusing list of pages.

IMHO, even windows help files are available. see cygnus gnu-win32 home.

>         Okay, back to the code...   They are listed as follows.
>         1: compile command line.
>         2: LISTING2.H
>         3: LISTING2.CPP
>         4: LISTING2.RC
>
>         Any help will be greatly appreciated.  Thanks...  ^_^
>
> g++ listing2.cpp -lstdc++

You must link this program with library user32. (In this case this is enough, but see the FAQ!)

e.g.:
g++ listing2.cpp -lstdc++ -luser32
(as I can see you don't have to use this magical c++ stuff:
"gcc listing2.cpp -luser32" works as well. I think you want to avoid the console window which
appear when the program is started. For this see the FAQ !)
Unfortunately the resource should be compiled too !

Regards,
Jozsef Dojcsak

-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".

^ permalink raw reply	[flat|nested] 13+ messages in thread

* :)
@ 2002-09-15 22:12 frank
  0 siblings, 0 replies; 13+ messages in thread
From: frank @ 2002-09-15 22:12 UTC (permalink / raw)
  To: cygwin

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain;charset="GB2312", Size: 1577 bytes --]

ÄúºÃ!   
                      Ñ×ÈÕµÄÏļ¾ÒÑ¿ì¹ýÈ¥£¬
              ÄãÊÇ·ñÔÚΪ×Ô¼ºµÄÇï¼¾ÂÃÐÐ×öЩ׼±¸ÄØ£¿
       ÏÖÔÚÎÒÃǹ«Ë¾½«¸øÄãÌṩÔÚ½ðÇïµµÆÚÍƳöµÄÓγ̹©Äú²Î¿¼¡£

ǧÀïÖ®ÐÐÂÃÓξãÀÖ²¿½ðÇᆱÐÄÍƳöÕã½­¼¦ÁúɽҰӪ̽ÏÕ¶þÈÕÓΣ¬ÎÒÃÇ»áÔÚ¶þÌìÖ®ÄÚÈÃÄãÇ×ÉíÌåÑéͽ²½´©Ô½µÄ
¼èÐÁ£¬ÅÊÑҵľªÏÕ£¬Ì½¶´µÄÐË·Ü£¬Â¶ÓªµÄÀËÂþ£¬ÉÕ¿¾µÄÇéµ÷£¬´òÁÔµÄÐÀϲ£¬¸ûÖÖµÄÂú×㣬¶øÕâÒ»ÇÐÖ»Ðè398Ôª
                  ÖÐÇïÉÍÔÂ9.21-9.22
            »¶¶È¹úÇì 10.2-10.3 10.5-10.6
ÁíÍâ ÎÒ¹«Ë¾»¹Óлª¶«ÎåÊУ¨ÉϺ££¬º¼ÖÝ£¬ÄϾ©£¬ËÕÖÝ£¬ÎÞÎý£©×ÔÖúÓΣ¬ÎÞÎýÔÂÁÁÍå¶È¼Ù´å£¨ÓéÀÖÐÍ£¬»áÒé
ÐÍ£©£¬±±¾©£¬Î÷°²£¬Çൺ£¬ÈýÏ¿×ÔÖúÓΡ£Ó¢¹ú£¬°Ä´óÀûÑǼ°Ð¼ÓƶÌÆÚÐÝѧÅàѵ¼Æ»®¡£°Ä´óÀûÑǺÍÓ¢¹ú¹ú¼Ê
ÉÌÎñÂÃÐС£»¹ÓлúƱºÍ¶©·¿ÒµÎñ¡£
»¶Ó­ÄúÀ´µç×Éѯ£º021-38825885 
µØÖ·£ºÉϺ£ÆÖ¶«´óµÀ1097ŪÖ齭õ¹å»¨Ô°±ÌÓñ¸ó14Â¥A×ù



¡¡¡¡¡¡¡¡¡¡¡¡¡¡ÖÂÀñ!

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 13+ messages in thread

* $$$
@ 2001-12-02 19:40 alan l porter
  0 siblings, 0 replies; 13+ messages in thread
From: alan l porter @ 2001-12-02 19:40 UTC (permalink / raw)
  To: cygwin

hey,

i love cygwin and i use it regularly for my work, so i feel like i owe you
guys something.  i'm already a red hat customer, but could i pitch in for a
few pizzas or something?  just let me know where to send a check.

keep up the great work!  if i could make one request, it'd be for tighter
windows gnu emacs integration.  i use that daily, too.

windows sucks, thanks for making it bearable.

alan


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: )
  2001-02-14  6:35 ) Thomas Widlar
@ 2001-02-14  7:03 ` Earnie Boyd
  0 siblings, 0 replies; 13+ messages in thread
From: Earnie Boyd @ 2001-02-14  7:03 UTC (permalink / raw)
  To: Thomas Widlar; +Cc: cygwin

Thomas Widlar wrote:
> 
> subscribe Thomas Widlar
> 

Have a look at http://cygwin.com/lists.html .

Earnie.

_________________________________________________________
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


--
Want to unsubscribe from this list?
Check out: http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 13+ messages in thread

* )
@ 2001-02-14  6:35 Thomas Widlar
  2001-02-14  7:03 ` ) Earnie Boyd
  0 siblings, 1 reply; 13+ messages in thread
From: Thomas Widlar @ 2001-02-14  6:35 UTC (permalink / raw)
  To: cygwin

subscribe Thomas Widlar


--
Want to unsubscribe from this list?
Check out: http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 13+ messages in thread

* !!!
@ 2000-10-15 19:09 Fen
  0 siblings, 0 replies; 13+ messages in thread
From: Fen @ 2000-10-15 19:09 UTC (permalink / raw)
  To: cygwin

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 9206 bytes --]

úÄÒÁ×ÓÔ×ÕÊÔÅ!

÷Ù ÈÏÔÉÔÅ ÚÁÒÁÂÁÔÙ×ÁÔØ ÏÔ $3000 × ÍÅÓÑÃ? åÓÌÉ ÄÁ, ÔÏ 
ÐÒÏÞÔÉÔÅ ÐÏÖÁÊÌÕÊÓÔÁ ÜÔÏÔ e-mail. óÏ×ÅÔÕÀ ÎÅ ÐÒÏÐÕÓËÁÔØ 
ÜÔÕ ×ÏÚÍÏÖÎÏÓÔØ - ×ÅÄØ ×ÓÑ ÉÎÆÏÒÍÁÃÉÑ ÂÅÓÐÌÁÔÎÁ É 
ÏÚÎÁËÏÍÌÅÎÉÅ Ó ÎÅÊ ÚÁÊÍÅÔ Õ ÷ÁÓ ÎÅ ÂÏÌÅÅ 5-ÔÉ ÍÉÎÕÔ, ÞÔÏ 
ÓÏ×ÅÒÛÅÎÎÏ ÎÅ ÓÒÁ×ÎÉÍÏ Ó ÔÅÍÉ ÚÁÒÁÂÏÔËÁÍÉ, ËÏÔÏÒÙÅ 
ÜÔÏÔ ÂÉÚÎÅÓ ÓÕÌÉÔ.

ôÁË ÐÏÞÅÍÕ ÎÅ ÐÏÐÒÏÂÏ×ÁÔØ?
ðÒÏÝÕ ÐÒÏÝÅÎÉÑ, ËÏÎÅÞÎÏ, ÚÁ ÂÅÓÐÏËÏÊÓÔ×Ï.
óÐÁÓÉÂÏ ÷ÁÍ ÚÁ ×ÒÅÍÑ, ËÏÔÏÒÏÅ ×Ù ÐÏÔÒÁÔÉÌÉ ÎÁ ÞÔÅÎÉÅ 
ÜÔÏÇÏ e-mail. öÅÌÁÅÍ ÷ÁÍ ÕÓÐÅÛÎÏ ÐÒÏ×ÅÓÔÉ ÄÅÎØ É ÕÄÁÞÉ!!!

éÔÁË...ÐÏÅÈÁÌÉ?

úáòáâïôáêôå 100.000,- USD úá çïä îá òåëìáíå ÷ 
éîôåòîåôå é òáóóùìëå E-MAIL!!!

÷ÁÓ ÍÏÖÎÏ ÓÞÉÔÁÔØ ÓÞÁÓÔÌÉ×ÙÍ ÞÅÌÏ×ÅËÏÍ, 
Ô.Ë. ËÏÍÐØÀÔÅÒÎÙÊ ÒÁÓÞÅÔ É ÓÉÌÙ ÐÒÏ×ÉÄÅÎÉÑ 
ÉÚÂÒÁÌÉ ÷ÁÓ ÄÌÑ ÕÞÁÓÔÉÑ × ÕÎÉËÁÌØÎÏÍ ÐÒÅÄÐÒÉÑÔÉÉ! îÁÄ 
÷ÁÍÉ ÎÁ×ÉÓÌÁ ÕÇÒÏÚÁ ËÁÔÁÓÔÒÏÆÉÞÅÓËÉ 
ÒÁÚÂÏÇÁÔÅÔØ! :)
îÏ ÞÔÏ ÓÁÍÏÅ ×ÁÖÎÏÅ: ÷ù îéþåí îå òéóëõåôå!

îå óðåûéôå óïíîå÷áôøóñ
îåðòåíåîîï ðòïþôéôå ðòéëòåðìåîîùê ë üôïíõ 
ðéóøíõ æáêì!

íÙ Õ×ÅÒÅÎÙ, ÞÔÏ ËÏÇÄÁ ÷Ù ÐÒÏÞÔÅÔÅ ÐÒÉËÒÅÐÌÅÎÎÙÊ 
ÄÏËÕÍÅÎÔ, ÏÓÔÁÔËÉ ÓËÅÐÔÉÃÉÚÍÁ (ÅÓÌÉ ÏÎ ÅÓÔØ) 
ÒÁÚ×ÅÑÔÓÑ, É Ë ÷ÁÍ ÐÒÉÄÅÔ ÏÚÁÒÅÎÉÅ: "âÏÖÅ ÍÏÊ! üÔÏ ÔÏ, 
ÞÔÏ ÎÕÖÎÏ!" æÏÒÔÕÎÁ ÕÌÙÂÎÕÌÁÓØ ÷ÁÍ, ÜÔÏ  
ÓÕÄØÂÁ..:)
îÁÖÁÔØ ËÌÁ×ÉÛÕ "Del" ÷Ù ×ÓÅÇÄÁ ÕÓÐÅÅÔÅ. îÏ ÒÁÚÕÍÎÅÅ 
ÓÎÁÞÁÌÁ ÒÁÚÏÂÒÁÔØÓÑ ÓÁÍÏÍÕ. çÌÁ×ÎÏÅ  ×ÎÉËÎÕÔØ 
É ÕÂÅÄÉÔØÓÑ × ÕÎÉËÁÌØÎÏÓÔÉ ÜÔÏÇÏ ÐÒÅÄÐÒÉÑÔÉÑ.
÷ÄÕÍÁÊÔÅÓØ: ÞÔÏ ÚÎÁÞÁÔ ÜÔÉ 
ÍÉÎÕÔÙ ÐÏ ÓÒÁ×ÎÅÎÉÀ Ó ÍÉÌÌÉÏÎÁÍÉ, ËÏÔÏÒÙÅ ÖÄÕÔ ÷ÁÓ?! 
ëÁË ÷Ù ÄÕÍÁÅÔÅ, ÞÔÏ ÓÔÁ×ÉÔ ÜÔÏÔ ÂÉÚÎÅÓ ×ÎÅ ËÏÎËÕÒÅÎÃÉÉ É 
ÐÒÉ×ÌÅËÁÅÔ Ë ÎÅÍÕ ÂÅÚÒÁÚÄÅÌØÎÏÅ ×ÎÉÍÁÎÉÅ? 
üÔÏ  ÔÏ, ÞÔÏ ÄÌÑ ÕÓÐÅÈÁ ÐÒÁËÔÉÞÅÓËÉ ÎÅ ÎÕÖÎÏ ÐÒÉÌÁÇÁÔØ 
ÎÉËÁËÉÈ ÕÓÉÌÉÊ, ËÒÏÍÅ ÒÁÚ×Å ÞÔÏ ÐÁÒÙ ÞÁÓÏ× 
× ÄÅÎØ, ÐÒÏ×ÅÄÅÎÎÙÈ ÚÁ ËÏÍÐØÀÔÅÒÏÍ. é ÷Ù ÓÔÁÎÏ×ÉÔÅÓØ 
ÏÂÌÁÄÁÔÅÌÅÍ ÂÁÓÎÏÓÌÏ×ÎÏÊ ÐÒÉÂÙÌÉ, ÄÅÊÓÔ×ÕÑ 
ÐÒÑÍÏ ÉÚ ÄÏÍÁ!!! çÄÅ ÅÓÔØ ÅÝÅ ÔÁËÏÅ?! ë ÔÏÍÕ ÖÅ ÷ÁÍ 
×Ï×ÓÅ ÎÅ ÏÂÑÚÁÔÅÌØÎÏ ÏÂÌÁÄÁÔØ ËÁËÉÍÉ-ÔÏ 
ÎÅÚÁÕÒÑÄÎÙÍÉ ÓÐÏÓÏÂÎÏÓÔÑÍÉ É ÐÒÅÄÐÒÉÉÍÞÉ×ÏÓÔØÀ, 
ÄÏÓÔÁÔÏÞÎÏ ÐÒÏÓÔÏ ÉÍÅÔØ E-mail (ÁÄÒÅÓ ÜÌÅËÔÒÏÎÎÏÊ 
ÐÏÞÔÙ) É ÄÏÓÔÕÐ Ë Internet.

ðòïþôéôå, äåêóô÷õêôå é úáòáâïôáêôå íîïçï 
äåîåç!
÷ù îéþåçï îå ôåòñåôå, ôáë ðïþåíõ âù îå 
ðïðòïâï÷áôø?!


!!!åÓÌÉ ÐÒÅÄÌÏÖÅÎÉÅ ÷ÁÓ ÎÉÞÅÍ ÎÅ ÚÁÉÎÔÅÒÅÓÏ×ÁÌÏ, 
ÐÒÉÎÏÛÕ Ó×ÏÉ ÉÚ×ÉÎÅÎÉÑ É ÎÅ ÎÁÄÏ ÓÅÒÄÉÔØÓÑ ("ÓÐÁÍ" 
ÉÍÅÅÔ Ó×ÏÉ ÉÚÄÅÒÖËÉ, ÔÁË ÖÅ ËÁË ÒÁÄÉÏ É TV), ÜÔÏ 
ÏÄÎÏÒÁÚÏ×ÁÑ ÒÁÓÓÙÌËÁ.

---------------------------------------------------------------------------------------------------

Hi!

You want to earn from $ 3000 per one month? If yes, 
Read this e-mail. I advise to not skip 
This opportunity - you see the information is free-of-charge and 
Acquaintance with it(her) will take up from you no more 5 of 
minutes, that 
At all is not comparable to those by earnings, which one 
This business promises.

So why to not try?
I shall forgive pardons, certainly, for anxiety.
Thank to you in time, which one you have spent for reading 
It e-mail. We wish you successfully to lead(carry out) day and 
good luck!!!

So... Have gone?

EARN 100.000, - USD FOR ONE YEAR ON ADVERTISING In 
the INTERNET And DISPATCH E-MAIL!!!

It is possible to consider(count) you as the happy man, 
Since the computer account also has selected you for 
involvement in the unique plant! Above 
By you the threat catastrophically has hung 
To grow rich!:)
But that most relevant: YOU RISK NOTHING!

DO NOT HASTEN TO DOUBT
BY ALL MEANS READ ADNATE To THIS 
to the LETTER the FILE!


To hit the key "Del" you always will have time(be in time). But it is 
more reasonable 
At first to clear up itself. Major to penetrate 
And to be convinced of uniqueness of this plant.
Ponder: that these mean 
The minutes as contrasted to in millions, which one wait for you?! 
As you think, that puts this business outside of a competition and 
Attracts in it(him) complete attention? 
It is not necessary to append it that for success practically 
Any efforts, except for unless steams(vapors) of hours 
Per day held behind the computer. And you become 
By the owner of the fabulous profit, operating 
Directly from houses!!! Where there is still such?! Besides you 
It is not so necessary to have any 
By uncommon capacities and enterprise, 
Is simple enough to have E-mail (address electronic 
Mail) and access to Internet.

READ, OPERATE And EARN MUCH 
MONEY!
YOU NOTHING LOSE, SO WHY NOT 
TO TRY?!


!!! If the offer has interested you by nothing, 
I bring the apologies and it is not necessary to become angry 
("SPAMM" 
Has the costs, just as a wireless and TV), it 
One-time dispatch.

[-- Attachment #2: business_eng.zip --]
[-- Type: application/zip, Size: 20181 bytes --]

[-- Attachment #3: business_rus.zip --]
[-- Type: application/zip, Size: 23934 bytes --]

^ permalink raw reply	[flat|nested] 13+ messages in thread

* !!!
@ 2000-10-15 19:09 Fen
  0 siblings, 0 replies; 13+ messages in thread
From: Fen @ 2000-10-15 19:09 UTC (permalink / raw)
  To: cygwin

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 9206 bytes --]

úÄÒÁ×ÓÔ×ÕÊÔÅ!

÷Ù ÈÏÔÉÔÅ ÚÁÒÁÂÁÔÙ×ÁÔØ ÏÔ $3000 × ÍÅÓÑÃ? åÓÌÉ ÄÁ, ÔÏ 
ÐÒÏÞÔÉÔÅ ÐÏÖÁÊÌÕÊÓÔÁ ÜÔÏÔ e-mail. óÏ×ÅÔÕÀ ÎÅ ÐÒÏÐÕÓËÁÔØ 
ÜÔÕ ×ÏÚÍÏÖÎÏÓÔØ - ×ÅÄØ ×ÓÑ ÉÎÆÏÒÍÁÃÉÑ ÂÅÓÐÌÁÔÎÁ É 
ÏÚÎÁËÏÍÌÅÎÉÅ Ó ÎÅÊ ÚÁÊÍÅÔ Õ ÷ÁÓ ÎÅ ÂÏÌÅÅ 5-ÔÉ ÍÉÎÕÔ, ÞÔÏ 
ÓÏ×ÅÒÛÅÎÎÏ ÎÅ ÓÒÁ×ÎÉÍÏ Ó ÔÅÍÉ ÚÁÒÁÂÏÔËÁÍÉ, ËÏÔÏÒÙÅ 
ÜÔÏÔ ÂÉÚÎÅÓ ÓÕÌÉÔ.

ôÁË ÐÏÞÅÍÕ ÎÅ ÐÏÐÒÏÂÏ×ÁÔØ?
ðÒÏÝÕ ÐÒÏÝÅÎÉÑ, ËÏÎÅÞÎÏ, ÚÁ ÂÅÓÐÏËÏÊÓÔ×Ï.
óÐÁÓÉÂÏ ÷ÁÍ ÚÁ ×ÒÅÍÑ, ËÏÔÏÒÏÅ ×Ù ÐÏÔÒÁÔÉÌÉ ÎÁ ÞÔÅÎÉÅ 
ÜÔÏÇÏ e-mail. öÅÌÁÅÍ ÷ÁÍ ÕÓÐÅÛÎÏ ÐÒÏ×ÅÓÔÉ ÄÅÎØ É ÕÄÁÞÉ!!!

éÔÁË...ÐÏÅÈÁÌÉ?

úáòáâïôáêôå 100.000,- USD úá çïä îá òåëìáíå ÷ 
éîôåòîåôå é òáóóùìëå E-MAIL!!!

÷ÁÓ ÍÏÖÎÏ ÓÞÉÔÁÔØ ÓÞÁÓÔÌÉ×ÙÍ ÞÅÌÏ×ÅËÏÍ, 
Ô.Ë. ËÏÍÐØÀÔÅÒÎÙÊ ÒÁÓÞÅÔ É ÓÉÌÙ ÐÒÏ×ÉÄÅÎÉÑ 
ÉÚÂÒÁÌÉ ÷ÁÓ ÄÌÑ ÕÞÁÓÔÉÑ × ÕÎÉËÁÌØÎÏÍ ÐÒÅÄÐÒÉÑÔÉÉ! îÁÄ 
÷ÁÍÉ ÎÁ×ÉÓÌÁ ÕÇÒÏÚÁ ËÁÔÁÓÔÒÏÆÉÞÅÓËÉ 
ÒÁÚÂÏÇÁÔÅÔØ! :)
îÏ ÞÔÏ ÓÁÍÏÅ ×ÁÖÎÏÅ: ÷ù îéþåí îå òéóëõåôå!

îå óðåûéôå óïíîå÷áôøóñ
îåðòåíåîîï ðòïþôéôå ðòéëòåðìåîîùê ë üôïíõ 
ðéóøíõ æáêì!

íÙ Õ×ÅÒÅÎÙ, ÞÔÏ ËÏÇÄÁ ÷Ù ÐÒÏÞÔÅÔÅ ÐÒÉËÒÅÐÌÅÎÎÙÊ 
ÄÏËÕÍÅÎÔ, ÏÓÔÁÔËÉ ÓËÅÐÔÉÃÉÚÍÁ (ÅÓÌÉ ÏÎ ÅÓÔØ) 
ÒÁÚ×ÅÑÔÓÑ, É Ë ÷ÁÍ ÐÒÉÄÅÔ ÏÚÁÒÅÎÉÅ: "âÏÖÅ ÍÏÊ! üÔÏ ÔÏ, 
ÞÔÏ ÎÕÖÎÏ!" æÏÒÔÕÎÁ ÕÌÙÂÎÕÌÁÓØ ÷ÁÍ, ÜÔÏ  
ÓÕÄØÂÁ..:)
îÁÖÁÔØ ËÌÁ×ÉÛÕ "Del" ÷Ù ×ÓÅÇÄÁ ÕÓÐÅÅÔÅ. îÏ ÒÁÚÕÍÎÅÅ 
ÓÎÁÞÁÌÁ ÒÁÚÏÂÒÁÔØÓÑ ÓÁÍÏÍÕ. çÌÁ×ÎÏÅ  ×ÎÉËÎÕÔØ 
É ÕÂÅÄÉÔØÓÑ × ÕÎÉËÁÌØÎÏÓÔÉ ÜÔÏÇÏ ÐÒÅÄÐÒÉÑÔÉÑ.
÷ÄÕÍÁÊÔÅÓØ: ÞÔÏ ÚÎÁÞÁÔ ÜÔÉ 
ÍÉÎÕÔÙ ÐÏ ÓÒÁ×ÎÅÎÉÀ Ó ÍÉÌÌÉÏÎÁÍÉ, ËÏÔÏÒÙÅ ÖÄÕÔ ÷ÁÓ?! 
ëÁË ÷Ù ÄÕÍÁÅÔÅ, ÞÔÏ ÓÔÁ×ÉÔ ÜÔÏÔ ÂÉÚÎÅÓ ×ÎÅ ËÏÎËÕÒÅÎÃÉÉ É 
ÐÒÉ×ÌÅËÁÅÔ Ë ÎÅÍÕ ÂÅÚÒÁÚÄÅÌØÎÏÅ ×ÎÉÍÁÎÉÅ? 
üÔÏ  ÔÏ, ÞÔÏ ÄÌÑ ÕÓÐÅÈÁ ÐÒÁËÔÉÞÅÓËÉ ÎÅ ÎÕÖÎÏ ÐÒÉÌÁÇÁÔØ 
ÎÉËÁËÉÈ ÕÓÉÌÉÊ, ËÒÏÍÅ ÒÁÚ×Å ÞÔÏ ÐÁÒÙ ÞÁÓÏ× 
× ÄÅÎØ, ÐÒÏ×ÅÄÅÎÎÙÈ ÚÁ ËÏÍÐØÀÔÅÒÏÍ. é ÷Ù ÓÔÁÎÏ×ÉÔÅÓØ 
ÏÂÌÁÄÁÔÅÌÅÍ ÂÁÓÎÏÓÌÏ×ÎÏÊ ÐÒÉÂÙÌÉ, ÄÅÊÓÔ×ÕÑ 
ÐÒÑÍÏ ÉÚ ÄÏÍÁ!!! çÄÅ ÅÓÔØ ÅÝÅ ÔÁËÏÅ?! ë ÔÏÍÕ ÖÅ ÷ÁÍ 
×Ï×ÓÅ ÎÅ ÏÂÑÚÁÔÅÌØÎÏ ÏÂÌÁÄÁÔØ ËÁËÉÍÉ-ÔÏ 
ÎÅÚÁÕÒÑÄÎÙÍÉ ÓÐÏÓÏÂÎÏÓÔÑÍÉ É ÐÒÅÄÐÒÉÉÍÞÉ×ÏÓÔØÀ, 
ÄÏÓÔÁÔÏÞÎÏ ÐÒÏÓÔÏ ÉÍÅÔØ E-mail (ÁÄÒÅÓ ÜÌÅËÔÒÏÎÎÏÊ 
ÐÏÞÔÙ) É ÄÏÓÔÕÐ Ë Internet.

ðòïþôéôå, äåêóô÷õêôå é úáòáâïôáêôå íîïçï 
äåîåç!
÷ù îéþåçï îå ôåòñåôå, ôáë ðïþåíõ âù îå 
ðïðòïâï÷áôø?!


!!!åÓÌÉ ÐÒÅÄÌÏÖÅÎÉÅ ÷ÁÓ ÎÉÞÅÍ ÎÅ ÚÁÉÎÔÅÒÅÓÏ×ÁÌÏ, 
ÐÒÉÎÏÛÕ Ó×ÏÉ ÉÚ×ÉÎÅÎÉÑ É ÎÅ ÎÁÄÏ ÓÅÒÄÉÔØÓÑ ("ÓÐÁÍ" 
ÉÍÅÅÔ Ó×ÏÉ ÉÚÄÅÒÖËÉ, ÔÁË ÖÅ ËÁË ÒÁÄÉÏ É TV), ÜÔÏ 
ÏÄÎÏÒÁÚÏ×ÁÑ ÒÁÓÓÙÌËÁ.

---------------------------------------------------------------------------------------------------

Hi!

You want to earn from $ 3000 per one month? If yes, 
Read this e-mail. I advise to not skip 
This opportunity - you see the information is free-of-charge and 
Acquaintance with it(her) will take up from you no more 5 of 
minutes, that 
At all is not comparable to those by earnings, which one 
This business promises.

So why to not try?
I shall forgive pardons, certainly, for anxiety.
Thank to you in time, which one you have spent for reading 
It e-mail. We wish you successfully to lead(carry out) day and 
good luck!!!

So... Have gone?

EARN 100.000, - USD FOR ONE YEAR ON ADVERTISING In 
the INTERNET And DISPATCH E-MAIL!!!

It is possible to consider(count) you as the happy man, 
Since the computer account also has selected you for 
involvement in the unique plant! Above 
By you the threat catastrophically has hung 
To grow rich!:)
But that most relevant: YOU RISK NOTHING!

DO NOT HASTEN TO DOUBT
BY ALL MEANS READ ADNATE To THIS 
to the LETTER the FILE!


To hit the key "Del" you always will have time(be in time). But it is 
more reasonable 
At first to clear up itself. Major to penetrate 
And to be convinced of uniqueness of this plant.
Ponder: that these mean 
The minutes as contrasted to in millions, which one wait for you?! 
As you think, that puts this business outside of a competition and 
Attracts in it(him) complete attention? 
It is not necessary to append it that for success practically 
Any efforts, except for unless steams(vapors) of hours 
Per day held behind the computer. And you become 
By the owner of the fabulous profit, operating 
Directly from houses!!! Where there is still such?! Besides you 
It is not so necessary to have any 
By uncommon capacities and enterprise, 
Is simple enough to have E-mail (address electronic 
Mail) and access to Internet.

READ, OPERATE And EARN MUCH 
MONEY!
YOU NOTHING LOSE, SO WHY NOT 
TO TRY?!


!!! If the offer has interested you by nothing, 
I bring the apologies and it is not necessary to become angry 
("SPAMM" 
Has the costs, just as a wireless and TV), it 
One-time dispatch.

[-- Attachment #2: business_eng.zip --]
[-- Type: application/zip, Size: 20181 bytes --]

[-- Attachment #3: business_rus.zip --]
[-- Type: application/zip, Size: 23934 bytes --]

^ permalink raw reply	[flat|nested] 13+ messages in thread

* ??
  1999-11-15 18:37 ?? White Knight
@ 1999-11-30 23:39 ` White Knight
  0 siblings, 0 replies; 13+ messages in thread
From: White Knight @ 1999-11-30 23:39 UTC (permalink / raw)
  To: cygwin

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 793 bytes --]

To Whom it may concern;
 
    I am not sure this is the right one to write to had to 
in a returned list but ....
 
    I was directed towards your product in a 
newsgroup for compiling unix code on a windows platform. The code 
I am trying to compile on a windows platform is a MUD (M.U.D. = 
Multi-User dungeon). It was ported for MSdos but having probs am currently 
using DJGPP but coming up with errors like crazy. that was when I was directed 
to you. But not sure as what to grab and what is purchase/shareware/freeware or 
what will run on windows. some of the products I found are TAR and GZ which 
is unix packing.
 
    care to assist in what I need to compile 
are run a C coded unix for windows
thanks in advance :)
Robb  

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: ??
  1999-11-15 21:12 ?? Earnie Boyd
@ 1999-11-30 23:39 ` Earnie Boyd
  0 siblings, 0 replies; 13+ messages in thread
From: Earnie Boyd @ 1999-11-30 23:39 UTC (permalink / raw)
  To: White Knight, cygwin

Please visit http://sourceware.cygnus.com/cygwin/

--- White Knight <whiteknight@innernet.net> wrote:
> To Whom it may concern;
> 
>     I am not sure this is the right one to write to had to in a returned list
> but ....
> 
>     I was directed towards your product in a newsgroup for compiling unix
> code on a windows platform. The code I am trying to compile on a windows
> platform is a MUD (M.U.D. = Multi-User dungeon). It was ported for MSdos but
> having probs am currently using DJGPP but coming up with errors like crazy.
> that was when I was directed to you. But not sure as what to grab and what is
> purchase/shareware/freeware or what will run on windows. some of the products
> I found are TAR and GZ which is unix packing.
> 
>     care to assist in what I need to compile are run a C coded unix for
> windows
> thanks in advance :)
> Robb 
> 


=====
Earnie Boyd < mailto:earnie_boyd@yahoo.com >
Cygwin Newbies, please visit
< http://www.freeyellow.com/members5/gw32/index.html >
__________________________________________________
Do You Yahoo!?
Bid and sell for free at http://auctions.yahoo.com

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: ??
@ 1999-11-15 21:12 Earnie Boyd
  1999-11-30 23:39 ` ?? Earnie Boyd
  0 siblings, 1 reply; 13+ messages in thread
From: Earnie Boyd @ 1999-11-15 21:12 UTC (permalink / raw)
  To: White Knight, cygwin

Please visit http://sourceware.cygnus.com/cygwin/

--- White Knight <whiteknight@innernet.net> wrote:
> To Whom it may concern;
> 
>     I am not sure this is the right one to write to had to in a returned list
> but ....
> 
>     I was directed towards your product in a newsgroup for compiling unix
> code on a windows platform. The code I am trying to compile on a windows
> platform is a MUD (M.U.D. = Multi-User dungeon). It was ported for MSdos but
> having probs am currently using DJGPP but coming up with errors like crazy.
> that was when I was directed to you. But not sure as what to grab and what is
> purchase/shareware/freeware or what will run on windows. some of the products
> I found are TAR and GZ which is unix packing.
> 
>     care to assist in what I need to compile are run a C coded unix for
> windows
> thanks in advance :)
> Robb 
> 


=====
Earnie Boyd < mailto:earnie_boyd@yahoo.com >
Cygwin Newbies, please visit
< http://www.freeyellow.com/members5/gw32/index.html >
__________________________________________________
Do You Yahoo!?
Bid and sell for free at http://auctions.yahoo.com

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

^ permalink raw reply	[flat|nested] 13+ messages in thread

* ??
@ 1999-11-15 18:37 White Knight
  1999-11-30 23:39 ` ?? White Knight
  0 siblings, 1 reply; 13+ messages in thread
From: White Knight @ 1999-11-15 18:37 UTC (permalink / raw)
  To: cygwin

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 793 bytes --]

To Whom it may concern;
 
    I am not sure this is the right one to write to had to 
in a returned list but ....
 
    I was directed towards your product in a 
newsgroup for compiling unix code on a windows platform. The code 
I am trying to compile on a windows platform is a MUD (M.U.D. = 
Multi-User dungeon). It was ported for MSdos but having probs am currently 
using DJGPP but coming up with errors like crazy. that was when I was directed 
to you. But not sure as what to grab and what is purchase/shareware/freeware or 
what will run on windows. some of the products I found are TAR and GZ which 
is unix packing.
 
    care to assist in what I need to compile 
are run a C coded unix for windows
thanks in advance :)
Robb  

^ permalink raw reply	[flat|nested] 13+ messages in thread

* ???
@ 1997-10-22 11:22 Karl Stiefvater
  0 siblings, 0 replies; 13+ messages in thread
From: Karl Stiefvater @ 1997-10-22 11:22 UTC (permalink / raw)
  To: gnu-win32

I notice you don't mention Alpha NT.  Why not?
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".

^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2002-09-16  3:26 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1997-10-17  2:59 No Subject mjiinas
1997-10-20  6:50 ` [] Jozsef Dojcsak
1997-10-22 11:22 ??? Karl Stiefvater
1999-11-15 18:37 ?? White Knight
1999-11-30 23:39 ` ?? White Knight
1999-11-15 21:12 ?? Earnie Boyd
1999-11-30 23:39 ` ?? Earnie Boyd
2000-10-15 19:09 !!! Fen
2000-10-15 19:09 !!! Fen
2001-02-14  6:35 ) Thomas Widlar
2001-02-14  7:03 ` ) Earnie Boyd
2001-12-02 19:40 $$$ alan l porter
2002-09-15 22:12 :) frank

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).