Writing a Windows Printer Driver

前端 未结 2 1735
滥情空心
滥情空心 2020-12-08 05:26

I want to write a application in C++ or C# that will behave as a printer driver when installed. It will be available in the drop down list in Print dialog but instead of pri

2条回答
  •  借酒劲吻你
    2020-12-08 06:09

    I'm not sure about it to be displayed in the list but I've never tried this C++ code:

    #include 
    Namespace Drivers{
    Class Printer{
    Const IOStream Printer("PRN");
    Void Send(char a[]){
    Printer<>a; 
    return a;
     };
     }
    

提交回复
热议问题